Jelajahi Sumber

Docs for Technorati removed

Frank Brückner 10 tahun lalu
induk
melakukan
d7261155b6

+ 0 - 1
documentation/manual/de/module_specs/Zend_Service.xml

@@ -35,7 +35,6 @@
         <listitem><para><link linkend="zend.service.recaptcha">ReCaptcha</link></para></listitem>
         <listitem><para><link linkend="zend.service.slideshare">SlideShare</link></para></listitem>
         <listitem><para><link linkend="zend.service.strikeiron">StrikeIron</link></para></listitem>
-        <listitem><para><link linkend="zend.service.technorati">Technorati</link></para></listitem>
         <listitem><para><link linkend="zend.service.twitter">Twitter</link></para></listitem>
 
         <listitem>

+ 0 - 1045
documentation/manual/de/module_specs/Zend_Service_Technorati.xml

@@ -1,1045 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- EN-Revision: 24249 -->
-<!-- Reviewed: no -->
-<sect1 id="zend.service.technorati">
-    <title>Zend_Service_Technorati</title>
-
-    <sect2 id="zend.service.technorati.introduction">
-        <title>Einführung</title>
-
-        <para>
-            <classname>Zend_Service_Technorati</classname> bietet ein einfaches, intuitives und
-            objekt-orientiertes Interface für die Verwendung der Technorati <acronym>API</acronym>.
-            Es bietet Zugriff zu allen vorhandenen <ulink
-                url="http://technorati.com/developers/api/">Technorati <acronym>API</acronym>
-                Abfragen</ulink> und gibt die originalen <acronym>XML</acronym> Antworten als
-            freundliches <acronym>PHP</acronym> Objekt zurück.
-        </para>
-
-        <para>
-            <ulink url="http://technorati.com/">Technorati</ulink> ist eine der populärsten Blog
-            Suchmaschinen. Das <acronym>API</acronym> Interface ermöglicht es Entwicklern
-            Informationen über einen spezifischen Blog zu erhalten, Blogs zu suchen die einem
-            einzelnen Tag oder einer Phrase entsprechen und Informationen über einen spezifischen
-            Author (Blogger) erhalten. Für eine komplette Liste von vorhandenen Abfragen kann in die
-            <ulink url="http://technorati.com/developers/api/">Technorati <acronym>API</acronym>
-                Dokumentation</ulink> oder die <link
-                linkend="zend.service.technorati.queries">vorhandenen Technorati Abfragen</link>
-            Sektion dieses Dokuments gesehen werden.
-        </para>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.getting-started">
-        <title>Anfangen</title>
-
-        <para>
-            Technorati benötigt einen gültigen <acronym>API</acronym> Schlüssel zur Verwendung. Um
-            einen eigenen <acronym>API</acronym> Schlüssel zu erhalten muss <ulink
-                url="http://technorati.com/signup/">ein neuer Technorati Account erstellt
-                werden</ulink>, und anschließend die <ulink
-                url="http://technorati.com/developers/apikey.html">API Schlüssel Sektion</ulink>
-            besucht werden.
-        </para>
-
-        <note>
-            <title>API Schlüssel Beschränkungen</title>
-
-            <para>
-                Es können bis zu 500 Technirati <acronym>API</acronym> Aufrufe pro Tag durchgeführt
-                werden ohne das Kosten anfallen. Andere Limitationen der Verwendung können vorhanden
-                sein, abhängig von der aktuellen Technorati <acronym>API</acronym> Lizenz.
-            </para>
-        </note>
-
-        <para>
-            Sobald man einen gültigen <acronym>API</acronym> Schlüssel hat, kann man beginnen
-            <classname>Zend_Service_Technorati</classname> zu verwenden.
-        </para>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.making-first-query">
-        <title>Die erste Abfrage durchführen</title>
-
-        <para>
-            Um eine Abfrage durchzuführen, benötigt man zuerst eine
-            <classname>Zend_Service_Technorati</classname> Instanz mit einem gültigen
-            <acronym>API</acronym> Schlüssel. Dann kann eine der vorhandenen Abfragemethoden
-            ausgewählt werden, und durch Angabe der benötigen Argumente aufgerufen werden.
-        </para>
-
-        <example id="zend.service.technorati.making-first-query.example-1">
-            <title>Die erste Abfragen senden</title>
-
-            <programlisting language="php"><![CDATA[
-// ein neues Zend_Service_Technorati mit einem gültigen API_KEY erstellen
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Technorati nach dem Schlüsselwort PHP durchsuchen
-$resultSet = $technorati->search('PHP');
-]]></programlisting>
-        </example>
-
-        <para>
-            Jede Abfragemethode akzeptiert ein Array von optionalen Parametern die verwendet werden
-            kann um die Abfrage zu verfeinern.
-        </para>
-
-        <example id="zend.service.technorati.making-first-query.example-2">
-            <title>Verfeinern der Abfrage</title>
-
-            <programlisting language="php"><![CDATA[
-// ein neues Zend_Service_Technorati mit einem gültigen API_KEY erstellen
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Die Abfrage nach Ergebnissen mit etwas Authority filtern
-// (Ergebnisse von Blogs mit einer Handvoll Links)
-$options = array('authority' => 'a4');
-
-// Technorati nach dem Schlüsselwort PHP durchsuchen
-$resultSet = $technorati->search('PHP', $options);
-]]></programlisting>
-        </example>
-
-        <para>
-            Eine <classname>Zend_Service_Technorati</classname> Instanz ist kein einmal zu
-            verwendendes Objekt. Deswegen muß keine neue Instanz für jede Abfrage erstellt werden;
-            es kann einfach das aktuelle <classname>Zend_Service_Technorati</classname> Objekt
-            solange verwendet werden wie es benötigt wird.
-        </para>
-
-        <example id="zend.service.technorati.making-first-query.example-3">
-            <title>
-                Mehrfache Abfragen mit der gleichen Zend_Service_Technorati Instanz senden
-            </title>
-
-            <programlisting language="php"><![CDATA[
-// ein neues Zend_Service_Technorati mit einem gültigen API_KEY erstellen
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Technorati nach dem Schlüsselwort PHP durchsuchen
-$search = $technorati->search('PHP');
-
-// Top Tags die von Technorati indiziert wurden erhalten
-$topTags = $technorati->topTags();
-]]></programlisting>
-        </example>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.consuming-results">
-        <title>Ergebnisse verarbeiten</title>
-
-        <para>
-            Es kann einer von zwei Typen von Ergebnisobjekten als Antwort auf eine Abfrage empfangen
-            werden.
-        </para>
-
-        <para>
-            Die erste Gruppe wird durch <classname>Zend_Service_Technorati_*ResultSet</classname>
-            Objekte repräsentiert. Ein Ergebnisset Objekt ist grundsätzlich eine Kollektion von
-            Ergebnisobjekten. Es erweitert die grundsätzliche
-            <classname>Zend_Service_Technorati_ResultSet</classname> Klasse und implementiert das
-            <acronym>PHP</acronym> Interface <classname>SeekableIterator</classname>. Der beste Weg
-            um ein Ergebnisset Objekt zu verarbeiten ist dieses mit einem <acronym>PHP</acronym>
-            <methodname>foreach()</methodname> Statement zu durchlaufen.
-        </para>
-
-        <example id="zend.service.technorati.consuming-results.example-1">
-            <title>Ein Ergebnisset Objekt verarbeiten</title>
-
-            <programlisting language="php"><![CDATA[
-// ein neues Zend_Service_Technorati mit einem gültigen API_KEY erstellen
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Technorati nach dem PHP Schlüsselwort durchsuchen
-// $resultSet ist eine Instanz von Zend_Service_Technorati_SearchResultSet
-$resultSet = $technorati->search('PHP');
-
-// Alle Ergebnisobjekte durchlaufen
-foreach ($resultSet as $result) {
-    // $result ist eine Instanz von Zend_Service_Technorati_SearchResult
-}
-]]></programlisting>
-        </example>
-
-        <para>
-            Weil <classname>Zend_Service_Technorati_ResultSet</classname> das
-            <classname>SeekableIterator</classname> Interface implementiert, kann ein spezifisches
-            Ergebnisobjekt gesucht werden indem dessen Position in der Ergebnissammlung verwendet
-            wird.
-        </para>
-
-        <example id="zend.service.technorati.consuming-results.example-2">
-            <title>Ein spezifisches Ergebnisset Objekt suchen</title>
-
-            <programlisting language="php"><![CDATA[
-// ein neues Zend_Service_Technorati mit einem gültigen API_KEY erstellen
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Technorati nach dem PHP Schlüsselwort durchsuchen
-// $resultSet ist eine Instanz von Zend_Service_Technorati_SearchResultSet
-$resultSet = $technorati->search('PHP');
-
-// $result ist eine Instanz von Zend_Service_Technorati_SearchResult
-$resultSet->seek(1);
-$result = $resultSet->current();
-]]></programlisting>
-        </example>
-
-        <note>
-            <para>
-                <classname>SeekableIterator</classname> arbeitet als Array und zählt Positionen
-                beginnend vom Index 0. Das Holen der Position 1 bedeutet das man das zweite Ergebnis
-                der Kollektion erhält.
-            </para>
-        </note>
-
-        <para>
-            Die zweite Gruppe wird durch spezielle alleinstehende Ergebnisobjekte repräsentiert.
-            <classname>Zend_Service_Technorati_GetInfoResult</classname>,
-            <classname>Zend_Service_Technorati_BlogInfoResult</classname> und
-            <classname>Zend_Service_Technorati_KeyInfoResult</classname> funktionieren als Wrapper
-            für zusätzliche Objekte, wie <classname>Zend_Service_Technorati_Author</classname> und
-            <classname>Zend_Service_Technorati_Weblog</classname>.
-        </para>
-
-        <example id="zend.service.technorati.consuming-results.example-3">
-            <title>Ein alleinstehendes Ergebnisobjekt verarbeiten</title>
-
-            <programlisting language="php"><![CDATA[
-// ein neues Zend_Service_Technorati mit einem gültigen API_KEY erstellen
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Infos über weppos Author erhalten
-$result = $technorati->getInfo('weppos');
-
-$author = $result->getAuthor();
-echo '<h2>Blogs authorisiert von ' . $author->getFirstName() . " " .
-          $author->getLastName() . '</h2>';
-echo '<ol>';
-foreach ($result->getWeblogs() as $weblog) {
-    echo '<li>' . $weblog->getName() . '</li>';
-}
-echo "</ol>";
-]]></programlisting>
-        </example>
-
-        <para>
-            Bitte lesen Sie das
-            <link linkend="zend.service.technorati.classes">Zend_Service_Technorati Klassen</link>
-            Kapitel für weitere Details über Antwortklassen.
-        </para>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.handling-errors">
-        <title>Fehler behandeln</title>
-
-        <para>
-            Jede <classname>Zend_Service_Technorati</classname> Abfragemethode wirft bei einem
-            Fehler eine <classname>Zend_Service_Technorati_Exception</classname> Ausnahme mit einer
-            bedeutungsvollen Fehlermeldung.
-        </para>
-
-        <para>
-            Es gibt verschiedene Gründe die Verursachen können das eine
-            <classname>Zend_Service_Technorati</classname> Abfrage fehlschlägt.
-            <classname>Zend_Service_Technorati</classname> prüft alle Parameter für jegliche
-            Abfrageanfragen. Wenn ein Parameter ungültig ist oder er einen ungültigen Wert enthält,
-            wird eine neue <classname>Zend_Service_Technorati_Exception</classname> Ausnahme
-            geworfen. Zusätzlich kann das Technorati <acronym>API</acronym> Interface temporär
-            unerreichbar sein, oder es kann eine Antwort zurückgeben die nicht gültig ist.
-        </para>
-
-        <para>
-            Eine Technorati Abfrage sollte immer mit einem <command>try ... catch</command>
-            Block umhüllt werden.
-        </para>
-
-        <example id="zend.service.technorati.handling-errors.example-1">
-            <title>Eine Abfrageausnahme behandeln</title>
-
-            <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-try {
-    $resultSet = $technorati->search('PHP');
-} catch(Zend_Service_Technorati_Exception $e) {
-    echo "Ein Fehler ist aufgetreten: " $e->getMessage();
-}
-]]></programlisting>
-        </example>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.checking-api-daily-usage">
-        <title>Prüfen der täglichen Verwendung des eigenen API Schlüssels</title>
-
-        <para>
-            Von Zeit zu Zeit wird man die tägliche Verwendung des <acronym>API</acronym> Schlüssels
-            prüfen wollen. Standardmäßig limitiert Technorati die <acronym>API</acronym> Verwendung
-            auf 500 Aufrufe pro Tag, und eine Ausnahme wird durch
-            <classname>Zend_Service_Technorati</classname> zurückgegeben wenn versucht wird dieses
-            Limit zu überschreiten. Man kann diese Information über die Verwendung des eigenen
-            <acronym>API</acronym> Schlüssels erhalten indem die
-            <methodname>Zend_Service_Technorati::keyInfo()</methodname> Methode verwendet wird.
-        </para>
-
-        <para>
-            <methodname>Zend_Service_Technorati::keyInfo()</methodname> gibt ein
-            <classname>Zend_Service_Technorati_KeyInfoResult</classname> Object zurück. Für
-            vollständige Details kann im <ulink url="http://framework.zend.com/apidoc/core/">API
-                Referenz Guide</ulink> nachgesehen werden.
-        </para>
-
-        <example id="zend.service.technorati.checking-api-daily-usage.example-1">
-            <title>Die Information über die tägliche Verwendung des API Schlüssels erhalten</title>
-
-            <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$key = $technorati->keyInfo();
-
-echo "API Schlüssel: " . $key->getApiKey() . "<br />";
-echo "Tägliche Verwendung: " . $key->getApiQueries() . "/" .
-     $key->getMaxQueries() . "<br />";
-]]></programlisting>
-        </example>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.queries">
-        <title>Vorhandene Technorati Abfragen</title>
-
-        <para>
-            <classname>Zend_Service_Technorati</classname> bietet Unterstützung für die folgenden
-            Abfragen:
-
-            <itemizedlist>
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.cosmos">Cosmos</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.search">Search</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.tag">Tag</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.dailycounts">DailyCounts</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.toptags">TopTags</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.bloginfo">BlogInfo</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.blogposttags">BlogPostTags</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.getinfo">GetInfo</link>
-                    </para>
-                </listitem>
-            </itemizedlist>
-        </para>
-
-        <sect3 id="zend.service.technorati.queries.cosmos">
-            <title>Technorati Cosmos</title>
-
-            <para>
-                Eine <ulink url="http://technorati.com/developers/api/cosmos.html">Cosmos</ulink>
-                Abfrage lässt einen Sehen welche Blog zu einer gegebenen <acronym>URL</acronym>
-                verknüpft sind. Sie gibt ein <link
-                    linkend="zend.service.technorati.classes.cosmosresultset"><classname>Zend_Service_Technorati_CosmosResultSet</classname></link>
-                Objekt zurück. Für vollständige Details kann nach
-                <methodname>Zend_Service_Technorati::cosmos()</methodname> im <ulink
-                    url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink>
-                nachgesehen werden.
-            </para>
-
-            <example id="zend.service.technorati.queries.cosmos.example-1">
-                <title>Cosmos Abfrage</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->cosmos('http://devzone.zend.com/');
-
-echo "<p>Liest " . $resultSet->totalResults() .
-     " von " . $resultSet->totalResultsAvailable() .
-     " vorhandenen Ergebnissen</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getWeblog()->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.search">
-            <title>Technorati Search</title>
-
-            <para>
-                Die <ulink url="http://technorati.com/developers/api/search.html">Search</ulink>
-                Abfrage lässt einen Sehen welche Blogs einen gegebenen Suchstring enthalten. Sie
-                gibt ein <link
-                    linkend="zend.service.technorati.classes.searchresultset"><classname>Zend_Service_Technorati_SearchResultSet</classname></link>
-                Objekt zurück. Für vollständige Details kann nach
-                <methodname>Zend_Service_Technorati::search()</methodname> im <ulink
-                    url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink>
-                nachgesehen werden.
-            </para>
-
-            <example id="zend.service.technorati.queries.search.example-1">
-                <title>Suchabfrage</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->search('zend framework');
-
-echo "<p>Liest " . $resultSet->totalResults() .
-     " von " . $resultSet->totalResultsAvailable() .
-     " vorhandenen Ergebnissen</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getWeblog()->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.tag">
-            <title>Technorati Tag</title>
-
-            <para>
-                Die <ulink url="http://technorati.com/developers/api/tag.html">Tag</ulink> Abfrage
-                lässt einen Sehen welche Antworten mit einem gegebenen Tag assoziiert sind. Sie gibt
-                ein <link
-                    linkend="zend.service.technorati.classes.tagresultset"><classname>Zend_Service_Technorati_TagResultSet</classname></link>
-                Objekt zurück. Für vollständige Details kann nach
-                <methodname>Zend_Service_Technorati::tag()</methodname> im <ulink
-                    url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink>
-                nachgesehen werden.
-            </para>
-
-            <example id="zend.service.technorati.queries.tag.example-1">
-                <title>Tag Abfrage</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->tag('php');
-
-echo "<p>Liest " . $resultSet->totalResults() .
-     " von " . $resultSet->totalResultsAvailable() .
-     " vorhandenen Ergebnissen</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getWeblog()->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.dailycounts">
-            <title>Technorati DailyCounts</title>
-
-            <para>
-                Die <ulink
-                    url="http://technorati.com/developers/api/dailycounts.html">DailyCounts</ulink>
-                Abfrage bietet tägliche Anzahlen von Antworten die ein abgefragtes Schlüsselwort
-                enthalten. Sie gibt ein <link
-                    linkend="zend.service.technorati.classes.dailycountsresultset"><classname>Zend_Service_Technorati_DailyCountsResultSet</classname></link>
-                Objekt zurück. Für vollständige Details kann nach
-                <methodname>Zend_Service_Technorati::dailyCounts()</methodname> im
-                <ulink url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink>
-                nachgesehen werden.
-            </para>
-
-            <example id="zend.service.technorati.queries.dailycounts.example-1">
-                <title>DailyCounts Abfrage</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->dailyCounts('php');
-
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getDate() .
-         "(" . $result->getCount() . ")</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.toptags">
-            <title>Technorati TopTags</title>
-
-            <para>
-                Die <ulink url="http://technorati.com/developers/api/toptags.html">TopTags</ulink>
-                Abfrage bietet Informationen über Top Tags die durch Technorati indiziert sind. Sie
-                gibt ein <link
-                    linkend="zend.service.technorati.classes.tagsresultset"><classname>Zend_Service_Technorati_TagsResultSet</classname></link>
-                Objekt zurück. Für vollständige Details kann nach
-                <methodname>Zend_Service_Technorati::topTags()</methodname> im
-                <ulink url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink>
-                nachgesehen werden.
-            </para>
-
-            <example id="zend.service.technorati.queries.toptags.example-1">
-                <title>TopTags Abfrage</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->topTags();
-
-echo "<p>Liest " . $resultSet->totalResults() .
-     " von " . $resultSet->totalResultsAvailable() .
-     "  vorhandenen Ergebnissen</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getTag() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.bloginfo">
-            <title>Technorati BlogInfo</title>
-
-            <para>
-                Eine <ulink
-                    url="http://technorati.com/developers/api/bloginfo.html">BlogInfo</ulink>
-                Abfrage bietet Informationen darüber welcher Blog, wenn überhaupt, mit einer
-                gegebenen <acronym>URL</acronym> assoziiert ist. Sie gibt ein <link
-                    linkend="zend.service.technorati.classes.bloginforesult"><classname>Zend_Service_Technorati_BlogInfoResult</classname></link>
-                Objekt zurück. Für vollständige Details kann nach
-                <methodname>Zend_Service_Technorati::blogInfo()</methodname> im
-                <ulink url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink>
-                nachgesehen werden.
-            </para>
-
-            <example id="zend.service.technorati.queries.bloginfo.example-1">
-                <title>BlogInfo Abfrage</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$result = $technorati->blogInfo('http://devzone.zend.com/');
-
-echo '<h2><a href="' . (string) $result->getWeblog()->getUrl() . '">' .
-     $result->getWeblog()->getName() . '</a></h2>';
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.blogposttags">
-            <title>Technorati BlogPostTags</title>
-
-            <para>
-                Eine <ulink
-                    url="http://technorati.com/developers/api/blogposttags.html">BlogPostTags</ulink>
-                Abfrage bietet Informationen über Top Tags die von einem spezifischen Blog verwendet
-                werden. Sie gibt ein <link
-                    linkend="zend.service.technorati.classes.tagsresultset"><classname>Zend_Service_Technorati_TagsResultSet</classname></link>
-                Objekt zurück. Für vollständige Details kann nach
-                <methodname>Zend_Service_Technorati::blogPostTags()</methodname> im
-                <ulink url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink>
-                nachgesehen werden.
-            </para>
-
-            <example id="zend.service.technorati.queries.blogposttags.example-1">
-                <title>BlogPostTags Abfrage</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->blogPostTags('http://devzone.zend.com/');
-
-echo "<p>Liest " . $resultSet->totalResults() .
-     " von " . $resultSet->totalResultsAvailable() .
-     " vorhandenen Ergebnissen</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getTag() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.getinfo">
-            <title>Technorati GetInfo</title>
-
-            <para>
-                Eine <ulink url="http://technorati.com/developers/api/getinfo.html">GetInfo</ulink>
-                Abfrage teilt mit was Technorati über ein Mitglied weiß. Sie gibt ein <link
-                    linkend="zend.service.technorati.classes.getinforesult"><classname>Zend_Service_Technorati_GetInfoResult</classname></link>
-                Objekt zurück. Für vollständige Details kann nach
-                <methodname>Zend_Service_Technorati::getInfo()</methodname> im
-                <ulink url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink>
-                nachgesehen werden.
-            </para>
-
-            <example id="zend.service.technorati.queries.getinfo.example-1">
-                <title>GetInfo Abfrage</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$result = $technorati->getInfo('weppos');
-
-$author = $result->getAuthor();
-echo "<h2>Blogs authorisiert von " . $author->getFirstName() . " " .
-     $author->getLastName() . "</h2>";
-echo "<ol>";
-foreach ($result->getWeblogs() as $weblog) {
-    echo "<li>" . $weblog->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.keyinfo">
-            <title>Technorati KeyInfo</title>
-
-            <para>
-                Die KeyInfo Abfrage bietet Informationen über die tägliche Verwendung eines
-                <acronym>API</acronym> Schlüssels. Sie gibt ein <link
-                    linkend="zend.service.technorati.classes.keyinforesult"><classname>Zend_Service_Technorati_KeyInfoResult</classname></link>
-                Objekt zurück. Für vollständige Details kann nach
-                <methodname>Zend_Service_Technorati::keyInfo()</methodname> im
-                <ulink url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink>
-                nachgesehen werden.
-            </para>
-        </sect3>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.classes">
-        <title>Zend_Service_Technorati Klassen</title>
-
-        <para>
-            Die folgenden Klassen werden von den verschiedenen Technorati Anfragen zurückgegeben.
-            Jede <classname>Zend_Service_Technorati_*ResultSet</classname> Klasse enthält ein
-            typ-spezifisches Ergebnisset welches einfach, mit jedem Ergebnis das in einem Typ
-            Ergebnisobjekt enthalten ist, iteriert werden kann. Alle Ergebnisset Klassen erweitern
-            die <classname>Zend_Service_Technorati_ResultSet</classname> Klasse und implementieren
-            das <classname>SeekableIterator</classname> Interface, welches eine einfache Iteration
-            und Suche nach einem spezifischen Ergebnis erlaubt.
-
-            <itemizedlist>
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.resultset"><classname>Zend_Service_Technorati_ResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.cosmosresultset"><classname>Zend_Service_Technorati_CosmosResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.searchresultset"><classname>Zend_Service_Technorati_SearchResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.tagresultset"><classname>Zend_Service_Technorati_TagResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.dailycountsresultset"><classname>Zend_Service_Technorati_DailyCountsResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.tagsresultset"><classname>Zend_Service_Technorati_TagsResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.result"><classname>Zend_Service_Technorati_Result</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.cosmosresult"><classname>Zend_Service_Technorati_CosmosResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.searchresult"><classname>Zend_Service_Technorati_SearchResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.tagresult"><classname>Zend_Service_Technorati_TagResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.dailycountsresult"><classname>Zend_Service_Technorati_DailyCountsResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.tagsresult"><classname>Zend_Service_Technorati_TagsResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.getinforesult"><classname>Zend_Service_Technorati_GetInfoResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.bloginforesult"><classname>Zend_Service_Technorati_BlogInfoResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.keyinforesult"><classname>Zend_Service_Technorati_KeyInfoResult</classname></link>
-                    </para>
-                </listitem>
-            </itemizedlist>
-        </para>
-
-        <note>
-            <para>
-                <classname>Zend_Service_Technorati_GetInfoResult</classname>,
-                <classname>Zend_Service_Technorati_BlogInfoResult</classname> und
-                <classname>Zend_Service_Technorati_KeyInfoResult</classname> repräsentieren
-                Ausnahmen zu den obigen weil Sie nicht zu einem ergebnisset gehören und sie kein
-                Interface implementieren. Sie repräsentieren ein einzelnes Antwortobjekt und sie
-                funktionieren als Wrapper für zusätzliche
-                <classname>Zend_Service_Technorati</classname> Objekte, wie
-                <classname>Zend_Service_Technorati_Author</classname> und
-                <classname>Zend_Service_Technorati_Weblog</classname>.
-            </para>
-        </note>
-
-        <para>
-            Die <classname>Zend_Service_Technorati</classname> Bibliothek beinhaltet zusätzliche
-            bequeme Klassen die spezifische Antwortobjekte repräsentieren.
-            <classname>Zend_Service_Technorati_Author</classname> repräsentiert einen einzelnen
-            Technorati Account, welcher auch als Blog Author oder Blogger bekannt ist.
-            <classname>Zend_Service_Technorati_Weblog</classname> repräsentiert ein einzelnes Weblog
-            Objekt, zusätzlich mit allen spezifischen Weblog Eigenschaften die Feed
-            <acronym>URL</acronym>s oder Blog Namen. Für komplette Details kann nach
-            <classname>Zend_Service_Technorati</classname> im <ulink
-                url="http://framework.zend.com/apidoc/core/">API Referenz Guide</ulink> nachgesehen
-            werden.
-        </para>
-
-        <sect3 id="zend.service.technorati.classes.resultset">
-            <title>Zend_Service_Technorati_ResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_ResultSet</classname> ist das am meisten
-                essentielle Ergebnisset. Der Zweck dieser Klasse ist es von einer
-                abfrage-spezifischen Kind-Ergebnisset-Klasse erweitert zu werden, und sie sollte
-                niemals verwendet werden um ein alleinstehendes Objekt zu initialisieren. Jedes der
-                spezifischen Ergebnissets repräsentiert eine Kollektion von abfrage-spezifischen
-                <link
-                    linkend="zend.service.technorati.classes.result"><classname>Zend_Service_Technorati_Result</classname></link>
-                Objekte.
-            </para>
-
-            <para>
-                <classname>Zend_Service_Technorati_ResultSet</classname> Implementiert das
-                <acronym>PHP</acronym> <classname>SeekableIterator</classname> Interface, und man
-                kann durch alle Ergebnisobjekte mit dem <acronym>PHP</acronym> Statement
-                <methodname>foreach()</methodname> iterieren.
-            </para>
-
-            <example id="zend.service.technorati.classes.resultset.example-1">
-                <title>Über Ergebnisobjekte von einer Ergebnisset Kollektion iterieren</title>
-
-                <programlisting language="php"><![CDATA[
-// eine einfache Abfrage durchlaufen
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->search('php');
-
-// $resultSet ist jetzt eine Instanz von
-// Zend_Service_Technorati_SearchResultSet
-// sie erweitert Zend_Service_Technorati_ResultSet
-foreach ($resultSet as $result) {
-    // irgendwas mit dem Zend_Service_Technorati_SearchResult Objekt anfangen
-}
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.cosmosresultset">
-            <title>Zend_Service_Technorati_CosmosResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_CosmosResultSet</classname> repräsentiert ein
-                Technorati Cosmos Abfrage Ergebnisset.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_CosmosResultSet</classname> erweitert <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.searchresultset">
-            <title>Zend_Service_Technorati_SearchResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_SearchResultSet</classname> repräsentiert ein
-                Technorati Search Abfrage Ergebnisset.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_SearchResultSet</classname> erweitert <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagresultset">
-            <title>Zend_Service_Technorati_TagResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_TagResultSet</classname> repräsentiert ein
-                Technorati Tag Abfrage Ergebnisset.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagResultSet</classname> erweitert <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.dailycountsresultset">
-            <title>Zend_Service_Technorati_DailyCountsResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_DailyCountsResultSet</classname> repräsentiert
-                ein Technorati DailyCounts Abfrage Ergebnisset.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_DailyCountsResultSet</classname> erweitert
-                    <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagsresultset">
-            <title>Zend_Service_Technorati_TagsResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_TagsResultSet</classname> repräsentiert ein
-                Technorati TopTags oder BlogPostTags Abfrage Ergebnisset.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagsResultSet</classname> erweitert <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.result">
-            <title>Zend_Service_Technorati_Result</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_Result</classname> ist das wichtigste
-                Ergebnisobjekt. Der Zweck dieser Klasse ist es, durch eine abfrage-spezifische
-                Kind-Ergebnisklasse erweitert zu werden, und Sie sollte nie verwendet werden um ein
-                alleinstehendes Objekt zu initiieren.
-            </para>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.cosmosresult">
-            <title>Zend_Service_Technorati_CosmosResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_CosmosResult</classname> repräsentiert ein
-                einzelnes Technorati Cosmos Abfrageobjekt. Es wird nie als alleinstehendes Objekt
-                zurückgegeben, aber es gehört immer einem gültigen <link
-                    linkend="zend.service.technorati.classes.cosmosresultset">Zend_Service_Technorati_CosmosResultSet</link>
-                Objekt an.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_CosmosResult</classname> erweitert <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.searchresult">
-            <title>Zend_Service_Technorati_SearchResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_SearchResult</classname> repräsentiert ein
-                einzelnes Technorati Search Abfrage Ergebnisobjekt. Es wird nie als alleinstehendes
-                Objekt zurückgegeben, aber es gehört immer einem gültigen <link
-                    linkend="zend.service.technorati.classes.searchresultset">Zend_Service_Technorati_SearchResultSet</link>
-                Objekt an.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_SearchResult</classname> erweitert <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagresult">
-            <title>Zend_Service_Technorati_TagResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_TagResult</classname> repräsentiert ein einzelnes
-                Technorati Tag Abfrage Ergebnisobjekt. Es wird nie als alleinstehendes Objekt
-                zurückgegeben, aber es gehört immer einem gültigen <link
-                    linkend="zend.service.technorati.classes.tagresultset">Zend_Service_Technorati_TagResultSet</link>
-                Objekt an.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagResult</classname> erweitert <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.dailycountsresult">
-            <title>Zend_Service_Technorati_DailyCountsResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_DailyCountsResult</classname> repräsentiert ein
-                einzelnes Technorati DailyCounts Abfrage Ergebnisobjekt. Es wird nie als
-                alleinstehendes Objekt zurückgegeben, aber es gehört immer einem gültigen <link
-                    linkend="zend.service.technorati.classes.dailycountsresultset">Zend_Service_Technorati_DailyCountsResultSet</link>
-                Objekt an.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_DailyCountsResult</classname> erweitert <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagsresult">
-            <title>Zend_Service_Technorati_TagsResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_TagsResult</classname> repräsentiert ein
-                einzelnes Technorati TopTags oder BlogPostTags Abfrage Ergebnisobjekt. Es wird nie
-                als alleinstehendes Objekt zurückgegeben, aber es gehört immer einem gültigen <link
-                    linkend="zend.service.technorati.classes.tagsresultset">Zend_Service_Technorati_TagsResultSet</link>
-                Objekt an.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagsResult</classname> erweitert <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.getinforesult">
-            <title>Zend_Service_Technorati_GetInfoResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_GetInfoResult</classname> repräsentiert ein
-                einzelnes Technorati GetInfo Abfrage Ergebnisobjekt.
-            </para>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.bloginforesult">
-            <title>Zend_Service_Technorati_BlogInfoResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_BlogInfoResult</classname> repräsentiert ein
-                einzelnes Technorati BlogInfo Abfrage Ergebnisobjekt.
-            </para>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.keyinforesult">
-            <title>Zend_Service_Technorati_KeyInfoResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_KeyInfoResult</classname> repräsentiert ein
-                einzelnes Technorati KeyInfo Abfrage Ergebnisobjekt. Es bietet Informationen über
-                die eigene <link linkend="zend.service.technorati.checking-api-daily-usage">tägliche
-                Verwendung des Technorati <acronym>API</acronym> Schlüssels</link>.
-            </para>
-        </sect3>
-    </sect2>
-</sect1>

+ 0 - 1
documentation/manual/en/manual-print2.xml.in

@@ -200,7 +200,6 @@
         <xi:include href="module_specs/Zend_Service_StrikeIron-Overview.xml" />
         <xi:include href="module_specs/Zend_Service_StrikeIron-BundledServices.xml" />
         <xi:include href="module_specs/Zend_Service_StrikeIron-AdvancedUses.xml" />
-        <xi:include href="module_specs/Zend_Service_Technorati.xml" />
         <xi:include href="module_specs/Zend_Service_Twitter.xml" parse="xml" />
         <xi:include href="module_specs/Zend_Service_Yahoo.xml" />
     </chapter>

+ 0 - 5
documentation/manual/en/manual.xml.in

@@ -2012,11 +2012,6 @@
                     <xi:include href="../en/module_specs/Zend_Service_StrikeIron-AdvancedUses.xml" />
                 </xi:fallback>
             </xi:include>
-            <xi:include href="module_specs/Zend_Service_Technorati.xml">
-                <xi:fallback>
-                    <xi:include href="../en/module_specs/Zend_Service_Technorati.xml" />
-                </xi:fallback>
-            </xi:include>
             <xi:include href="module_specs/Zend_Service_Twitter.xml" parse="xml">
                 <xi:fallback>
                     <xi:include href="../en/module_specs/Zend_Service_Twitter.xml" parse="xml" />

+ 0 - 6
documentation/manual/en/module_specs/Zend_Service.xml

@@ -89,12 +89,6 @@
 
         <listitem>
             <para>
-                <link linkend="zend.service.technorati">Technorati</link>
-            </para>
-        </listitem>
-
-        <listitem>
-            <para>
                 <link linkend="zend.service.twitter">Twitter</link>
             </para>
         </listitem>

+ 0 - 1021
documentation/manual/en/module_specs/Zend_Service_Technorati.xml

@@ -1,1021 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Reviewed: no -->
-<sect1 id="zend.service.technorati">
-    <title>Zend_Service_Technorati</title>
-
-    <sect2 id="zend.service.technorati.introduction">
-        <title>Introduction</title>
-
-        <para>
-            <classname>Zend_Service_Technorati</classname> provides an easy, intuitive and
-            object-oriented interface for using the Technorati <acronym>API</acronym>. It provides
-            access to all available <ulink url="http://technorati.com/developers/api/">Technorati
-            <acronym>API</acronym> queries</ulink> and returns the original <acronym>XML</acronym>
-            response as a friendly <acronym>PHP</acronym> object.
-        </para>
-
-        <para>
-            <ulink url="http://technorati.com/">Technorati</ulink> is one of the most popular blog
-            search engines. The <acronym>API</acronym> interface enables developers to retrieve
-            information about a specific blog, search blogs matching a single tag or phrase and get
-            information about a specific author (blogger). For a full list of available queries
-            please see the <ulink url="http://technorati.com/developers/api/">Technorati
-                <acronym>API</acronym> documentation</ulink> or the <link
-                linkend="zend.service.technorati.queries">Available Technorati queries</link>
-            section of this document.
-        </para>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.getting-started">
-        <title>Getting Started</title>
-
-        <para>
-            Technorati requires a valid <acronym>API</acronym> key for usage. To get your own
-            <acronym>API</acronym> Key you first need to <ulink
-                url="http://technorati.com/signup/">create a new Technorati account</ulink>, then
-            visit the <ulink url="http://technorati.com/developers/apikey.html">API Key
-                section</ulink>.
-        </para>
-
-        <note>
-            <title>API Key limits</title>
-
-            <para>
-                You can make up to 500 Technorati <acronym>API</acronym> calls per day, at no
-                charge. Other usage limitations may apply, depending on the current Technorati
-                <acronym>API</acronym> license.
-            </para>
-        </note>
-
-        <para>
-            Once you have a valid <acronym>API</acronym> key, you're ready to start using
-            <classname>Zend_Service_Technorati</classname>.
-        </para>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.making-first-query">
-        <title>Making Your First Query</title>
-
-        <para>
-            In order to run a query, first you need a <classname>Zend_Service_Technorati</classname>
-            instance with a valid <acronym>API</acronym> key. Then choose one of the available query
-            methods, and call it providing required arguments.
-        </para>
-
-        <example id="zend.service.technorati.making-first-query.example-1">
-            <title>Sending your first query</title>
-
-            <programlisting language="php"><![CDATA[
-// create a new Zend_Service_Technorati
-// with a valid API_KEY
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// search Technorati for PHP keyword
-$resultSet = $technorati->search('PHP');
-]]></programlisting>
-        </example>
-
-        <para>
-            Each query method accepts an array of optional parameters that can be used to refine
-            your query.
-        </para>
-
-        <example id="zend.service.technorati.making-first-query.example-2">
-            <title>Refining your query</title>
-
-            <programlisting language="php"><![CDATA[
-// create a new Zend_Service_Technorati
-// with a valid API_KEY
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// filter your query including only results
-// with some authority (Results from blogs with a handful of links)
-$options = array('authority' => 'a4');
-
-// search Technorati for PHP keyword
-$resultSet = $technorati->search('PHP', $options);
-]]></programlisting>
-        </example>
-
-        <para>
-            A <classname>Zend_Service_Technorati</classname> instance is not a single-use object.
-            That is, you don't need to create a new instance for each query call; simply use your
-            current <classname>Zend_Service_Technorati</classname> object as long as you need it.
-        </para>
-
-        <example id="zend.service.technorati.making-first-query.example-3">
-            <title>Sending multiple queries with the same Zend_Service_Technorati instance</title>
-
-            <programlisting language="php"><![CDATA[
-// create a new Zend_Service_Technorati
-// with a valid API_KEY
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// search Technorati for PHP keyword
-$search = $technorati->search('PHP');
-
-// get top tags indexed by Technorati
-$topTags = $technorati->topTags();
-]]></programlisting>
-        </example>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.consuming-results">
-        <title>Consuming Results</title>
-
-        <para>
-            You can get one of two types of result object in response to a query.
-        </para>
-
-        <para>
-            The first group is represented by
-            <classname>Zend_Service_Technorati_*ResultSet</classname> objects. A result set object
-            is basically a collection of result objects. It extends the basic
-            <classname>Zend_Service_Technorati_ResultSet</classname> class and implements the
-            <classname>SeekableIterator</classname> <acronym>PHP</acronym> interface. The best way
-            to consume a result set object is to loop over it with the <acronym>PHP</acronym>
-            <methodname>foreach()</methodname> statement.
-        </para>
-
-        <example id="zend.service.technorati.consuming-results.example-1">
-            <title>Consuming a result set object</title>
-
-            <programlisting language="php"><![CDATA[
-// create a new Zend_Service_Technorati
-// with a valid API_KEY
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// search Technorati for PHP keyword
-// $resultSet is an instance of Zend_Service_Technorati_SearchResultSet
-$resultSet = $technorati->search('PHP');
-
-// loop over all result objects
-foreach ($resultSet as $result) {
-    // $result is an instance of Zend_Service_Technorati_SearchResult
-}
-]]></programlisting>
-        </example>
-
-        <para>
-            Because <classname>Zend_Service_Technorati_ResultSet</classname> implements the
-            <classname>SeekableIterator</classname> interface, you can seek a specific result
-            object using its position in the result collection.
-        </para>
-
-        <example id="zend.service.technorati.consuming-results.example-2">
-            <title>Seeking a specific result set object</title>
-
-            <programlisting language="php"><![CDATA[
-// create a new Zend_Service_Technorati
-// with a valid API_KEY
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// search Technorati for PHP keyword
-// $resultSet is an instance of Zend_Service_Technorati_SearchResultSet
-$resultSet = $technorati->search('PHP');
-
-// $result is an instance of Zend_Service_Technorati_SearchResult
-$resultSet->seek(1);
-$result = $resultSet->current();
-]]></programlisting>
-        </example>
-
-        <note>
-            <para>
-                <classname>SeekableIterator</classname> works as an array and counts positions
-                starting from index 0. Fetching position number 1 means getting the second result
-                in the collection.
-            </para>
-        </note>
-
-        <para>
-            The second group is represented by special standalone result objects.
-            <classname>Zend_Service_Technorati_GetInfoResult</classname>,
-            <classname>Zend_Service_Technorati_BlogInfoResult</classname> and
-            <classname>Zend_Service_Technorati_KeyInfoResult</classname> act as wrappers for
-            additional objects, such as <classname>Zend_Service_Technorati_Author</classname> and
-            <classname>Zend_Service_Technorati_Weblog</classname>.
-        </para>
-
-        <example id="zend.service.technorati.consuming-results.example-3">
-            <title>Consuming a standalone result object</title>
-
-            <programlisting language="php"><![CDATA[
-// create a new Zend_Service_Technorati
-// with a valid API_KEY
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// get info about weppos author
-$result = $technorati->getInfo('weppos');
-
-$author = $result->getAuthor();
-echo '<h2>Blogs authored by ' . $author->getFirstName() . " " .
-          $author->getLastName() . '</h2>';
-echo '<ol>';
-foreach ($result->getWeblogs() as $weblog) {
-    echo '<li>' . $weblog->getName() . '</li>';
-}
-echo "</ol>";
-]]></programlisting>
-        </example>
-
-        <para>
-            Please read the <link linkend="zend.service.technorati.classes">Zend_Service_Technorati
-                Classes</link> section for further details about response classes.
-        </para>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.handling-errors">
-        <title>Handling Errors</title>
-
-        <para>
-            Each <classname>Zend_Service_Technorati</classname> query method throws a
-            <classname>Zend_Service_Technorati_Exception</classname> exception on failure with a
-            meaningful error message.
-        </para>
-
-        <para>
-            There are several reasons that may cause a
-            <classname>Zend_Service_Technorati</classname> query to fail.
-            <classname>Zend_Service_Technorati</classname> validates all parameters for any query
-            request. If a parameter is invalid or it contains an invalid value, a new
-            <classname>Zend_Service_Technorati_Exception</classname> exception is thrown.
-            Additionally, the Technorati <acronym>API</acronym> interface could be temporally
-            unavailable, or it could return a response that is not well formed.
-        </para>
-
-        <para>
-            You should always wrap a Technorati query with a <command>try ... catch</command>
-            block.
-        </para>
-
-        <example id="zend.service.technorati.handling-errors.example-1">
-            <title>Handling a Query Exception</title>
-
-            <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-try {
-    $resultSet = $technorati->search('PHP');
-} catch(Zend_Service_Technorati_Exception $e) {
-    echo "An error occurred: " $e->getMessage();
-}
-]]></programlisting>
-        </example>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.checking-api-daily-usage">
-        <title>Checking Your API Key Daily Usage</title>
-
-        <para>
-            From time to time you probably will want to check your <acronym>API</acronym> key daily
-            usage. By default Technorati limits your <acronym>API</acronym> usage to 500 calls per
-            day, and an exception is returned by <classname>Zend_Service_Technorati</classname> if
-            you try to use it beyond this limit. You can get information about your
-            <acronym>API</acronym> key usage using the
-            <methodname>Zend_Service_Technorati::keyInfo()</methodname> method.
-        </para>
-
-        <para>
-            <methodname>Zend_Service_Technorati::keyInfo()</methodname> returns a
-            <classname>Zend_Service_Technorati_KeyInfoResult</classname> object. For full details
-            please see the <ulink url="http://framework.zend.com/apidoc/core/">API reference
-                guide</ulink>.
-        </para>
-
-        <example id="zend.service.technorati.checking-api-daily-usage.example-1">
-            <title>Getting API key daily usage information</title>
-
-            <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$key = $technorati->keyInfo();
-
-echo "API Key: " . $key->getApiKey() . "<br />";
-echo "Daily Usage: " . $key->getApiQueries() . "/" .
-     $key->getMaxQueries() . "<br />";
-]]></programlisting>
-        </example>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.queries">
-        <title>Available Technorati Queries</title>
-
-        <para>
-            <classname>Zend_Service_Technorati</classname> provides support for the following
-            queries:
-
-            <itemizedlist>
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.cosmos">Cosmos</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.search">Search</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link linkend="zend.service.technorati.queries.tag">Tag</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.dailycounts">DailyCounts</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.toptags">TopTags</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.bloginfo">BlogInfo</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.blogposttags">BlogPostTags</link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.queries.getinfo">GetInfo</link>
-                    </para>
-                </listitem>
-            </itemizedlist>
-        </para>
-
-        <sect3 id="zend.service.technorati.queries.cosmos">
-            <title>Technorati Cosmos</title>
-
-            <para>
-                <ulink url="http://technorati.com/developers/api/cosmos.html">Cosmos</ulink> query
-                lets you see what blogs are linking to a given <acronym>URL</acronym>. It returns a
-                <link
-                    linkend="zend.service.technorati.classes.cosmosresultset"><classname>Zend_Service_Technorati_CosmosResultSet</classname></link>
-                object. For full details please see
-                <methodname>Zend_Service_Technorati::cosmos()</methodname> in the
-                <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-            </para>
-
-            <example id="zend.service.technorati.queries.cosmos.example-1">
-                <title>Cosmos Query</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->cosmos('http://devzone.zend.com/');
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getWeblog()->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.search">
-            <title>Technorati Search</title>
-
-            <para>
-                The <ulink url="http://technorati.com/developers/api/search.html">Search</ulink>
-                query lets you see what blogs contain a given search string. It returns a <link
-                    linkend="zend.service.technorati.classes.searchresultset"><classname>Zend_Service_Technorati_SearchResultSet</classname></link>
-                object. For full details please see
-                <methodname>Zend_Service_Technorati::search()</methodname> in the
-                <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-            </para>
-
-            <example id="zend.service.technorati.queries.search.example-1">
-                <title>Search Query</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->search('zend framework');
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getWeblog()->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.tag">
-            <title>Technorati Tag</title>
-
-            <para>
-                The <ulink url="http://technorati.com/developers/api/tag.html">Tag</ulink> query
-                lets you see what posts are associated with a given tag. It returns a <link
-                    linkend="zend.service.technorati.classes.tagresultset"><classname>Zend_Service_Technorati_TagResultSet</classname></link>
-                object. For full details please see
-                <methodname>Zend_Service_Technorati::tag()</methodname> in the
-                <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-            </para>
-
-            <example id="zend.service.technorati.queries.tag.example-1">
-                <title>Tag Query</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->tag('php');
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getWeblog()->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.dailycounts">
-            <title>Technorati DailyCounts</title>
-
-            <para>
-                The <ulink
-                    url="http://technorati.com/developers/api/dailycounts.html">DailyCounts</ulink>
-                query provides daily counts of posts containing the queried keyword. It returns a
-                <link
-                    linkend="zend.service.technorati.classes.dailycountsresultset"><classname>Zend_Service_Technorati_DailyCountsResultSet</classname></link>
-                object. For full details please see
-                <methodname>Zend_Service_Technorati::dailyCounts()</methodname> in the
-                <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-            </para>
-
-            <example id="zend.service.technorati.queries.dailycounts.example-1">
-                <title>DailyCounts Query</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->dailyCounts('php');
-
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getDate() .
-         "(" . $result->getCount() . ")</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.toptags">
-            <title>Technorati TopTags</title>
-
-            <para>
-                The <ulink url="http://technorati.com/developers/api/toptags.html">TopTags</ulink>
-                query provides information on top tags indexed by Technorati. It returns a <link
-                    linkend="zend.service.technorati.classes.tagsresultset"><classname>Zend_Service_Technorati_TagsResultSet</classname></link>
-                object. For full details please see
-                <methodname>Zend_Service_Technorati::topTags()</methodname> in the
-                <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-            </para>
-
-            <example id="zend.service.technorati.queries.toptags.example-1">
-                <title>TopTags Query</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->topTags();
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getTag() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.bloginfo">
-            <title>Technorati BlogInfo</title>
-
-            <para>
-                The <ulink url="http://technorati.com/developers/api/bloginfo.html">BlogInfo</ulink>
-                query provides information on what blog, if any, is associated with a given
-                <acronym>URL</acronym>. It returns a <link
-                    linkend="zend.service.technorati.classes.bloginforesult"><classname>Zend_Service_Technorati_BlogInfoResult</classname></link>
-                object. For full details please see
-                <methodname>Zend_Service_Technorati::blogInfo()</methodname> in the
-                <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-            </para>
-
-            <example id="zend.service.technorati.queries.bloginfo.example-1">
-                <title>BlogInfo Query</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$result = $technorati->blogInfo('http://devzone.zend.com/');
-
-echo '<h2><a href="' . (string) $result->getWeblog()->getUrl() . '">' .
-     $result->getWeblog()->getName() . '</a></h2>';
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.blogposttags">
-            <title>Technorati BlogPostTags</title>
-
-            <para>
-                The <ulink
-                    url="http://technorati.com/developers/api/blogposttags.html">BlogPostTags</ulink>
-                query provides information on the top tags used by a specific blog. It returns a
-                <link
-                    linkend="zend.service.technorati.classes.tagsresultset"><classname>Zend_Service_Technorati_TagsResultSet</classname></link>
-                object. For full details please see
-                <methodname>Zend_Service_Technorati::blogPostTags()</methodname> in the
-                <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-            </para>
-
-            <example id="zend.service.technorati.queries.blogposttags.example-1">
-                <title>BlogPostTags Query</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->blogPostTags('http://devzone.zend.com/');
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getTag() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.getinfo">
-            <title>Technorati GetInfo</title>
-
-            <para>
-                The <ulink url="http://technorati.com/developers/api/getinfo.html">GetInfo</ulink>
-                query tells you things that Technorati knows about a member. It returns a <link
-                    linkend="zend.service.technorati.classes.getinforesult"><classname>Zend_Service_Technorati_GetInfoResult</classname></link>
-                object. For full details please see
-                <methodname>Zend_Service_Technorati::getInfo()</methodname> in the
-                <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-            </para>
-
-            <example id="zend.service.technorati.queries.getinfo.example-1">
-                <title>GetInfo Query</title>
-
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$result = $technorati->getInfo('weppos');
-
-$author = $result->getAuthor();
-echo "<h2>Blogs authored by " . $author->getFirstName() . " " .
-     $author->getLastName() . "</h2>";
-echo "<ol>";
-foreach ($result->getWeblogs() as $weblog) {
-    echo "<li>" . $weblog->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.keyinfo">
-            <title>Technorati KeyInfo</title>
-
-            <para>
-                The KeyInfo query provides information on daily usage of an <acronym>API</acronym>
-                key. It returns a <link
-                    linkend="zend.service.technorati.classes.keyinforesult"><classname>Zend_Service_Technorati_KeyInfoResult</classname></link>
-                object. For full details please see
-                <methodname>Zend_Service_Technorati::keyInfo()</methodname> in the
-                <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-            </para>
-        </sect3>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.classes">
-        <title>Zend_Service_Technorati Classes</title>
-
-        <para>
-            The following classes are returned by the various Technorati queries. Each
-            <classname>Zend_Service_Technorati_*ResultSet</classname> class holds a type-specific
-            result set which can be easily iterated, with each result being contained in a type
-            result object. All result set classes extend
-            <classname>Zend_Service_Technorati_ResultSet</classname> class and implement the
-            <classname>SeekableIterator</classname> interface, allowing for easy iteration and
-            seeking to a specific result.
-
-            <itemizedlist>
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.resultset"><classname>Zend_Service_Technorati_ResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.cosmosresultset"><classname>Zend_Service_Technorati_CosmosResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.searchresultset"><classname>Zend_Service_Technorati_SearchResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.tagresultset"><classname>Zend_Service_Technorati_TagResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.dailycountsresultset"><classname>Zend_Service_Technorati_DailyCountsResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.tagsresultset"><classname>Zend_Service_Technorati_TagsResultSet</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.result"><classname>Zend_Service_Technorati_Result</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.cosmosresult"><classname>Zend_Service_Technorati_CosmosResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.searchresult"><classname>Zend_Service_Technorati_SearchResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.tagresult"><classname>Zend_Service_Technorati_TagResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.dailycountsresult"><classname>Zend_Service_Technorati_DailyCountsResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.tagsresult"><classname>Zend_Service_Technorati_TagsResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.getinforesult"><classname>Zend_Service_Technorati_GetInfoResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.bloginforesult"><classname>Zend_Service_Technorati_BlogInfoResult</classname></link>
-                    </para>
-                </listitem>
-
-                <listitem>
-                    <para>
-                        <link
-                            linkend="zend.service.technorati.classes.keyinforesult"><classname>Zend_Service_Technorati_KeyInfoResult</classname></link>
-                    </para>
-                </listitem>
-            </itemizedlist>
-        </para>
-
-        <note>
-            <para>
-                <classname>Zend_Service_Technorati_GetInfoResult</classname>,
-                <classname>Zend_Service_Technorati_BlogInfoResult</classname> and
-                <classname>Zend_Service_Technorati_KeyInfoResult</classname> represent exceptions to
-                the above because they don't belong to a result set and they don't implement any
-                interface. They represent a single response object and they act as a wrapper for
-                additional <classname>Zend_Service_Technorati</classname> objects, such as
-                <classname>Zend_Service_Technorati_Author</classname> and
-                <classname>Zend_Service_Technorati_Weblog</classname>.
-            </para>
-        </note>
-
-        <para>
-            The <classname>Zend_Service_Technorati</classname> library includes additional
-            convenient classes representing specific response objects.
-            <classname>Zend_Service_Technorati_Author</classname> represents a single Technorati
-            account, also known as a blog author or blogger.
-            <classname>Zend_Service_Technorati_Weblog</classname> represents a single weblog object,
-            along with all specific weblog properties such as feed <acronym>URL</acronym>s or blog
-            name. For full details please see <classname>Zend_Service_Technorati</classname> in the
-            <ulink url="http://framework.zend.com/apidoc/core/">API reference guide</ulink>.
-        </para>
-
-        <sect3 id="zend.service.technorati.classes.resultset">
-            <title>Zend_Service_Technorati_ResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_ResultSet</classname> is the most essential
-                result set. The scope of this class is to be extended by a query-specific child
-                result set class, and it should never be used to initialize a standalone object.
-                Each of the specific result sets represents a collection of query-specific <link
-                    linkend="zend.service.technorati.classes.result"><classname>Zend_Service_Technorati_Result</classname></link>
-                objects.
-            </para>
-
-            <para>
-                <classname>Zend_Service_Technorati_ResultSet</classname> implements the
-                <acronym>PHP</acronym> <classname>SeekableIterator</classname> interface, and you
-                can iterate all result objects via the <acronym>PHP</acronym>
-                <methodname>foreach()</methodname> statement.
-            </para>
-
-            <example id="zend.service.technorati.classes.resultset.example-1">
-                <title>Iterating result objects from a resultset collection</title>
-
-                <programlisting language="php"><![CDATA[
-// run a simple query
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->search('php');
-
-// $resultSet is now an instance of
-// Zend_Service_Technorati_SearchResultSet
-// it extends Zend_Service_Technorati_ResultSet
-foreach ($resultSet as $result) {
-    // do something with your
-    // Zend_Service_Technorati_SearchResult object
-}
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.cosmosresultset">
-            <title>Zend_Service_Technorati_CosmosResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_CosmosResultSet</classname> represents a
-                Technorati Cosmos query result set.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_CosmosResultSet</classname> extends <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.searchresultset">
-            <title>Zend_Service_Technorati_SearchResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_SearchResultSet</classname> represents a
-                Technorati Search query result set.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_SearchResultSet</classname> extends <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagresultset">
-            <title>Zend_Service_Technorati_TagResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_TagResultSet</classname> represents a Technorati
-                Tag query result set.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagResultSet</classname> extends <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.dailycountsresultset">
-            <title>Zend_Service_Technorati_DailyCountsResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_DailyCountsResultSet</classname> represents a
-                Technorati DailyCounts query result set.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_DailyCountsResultSet</classname> extends
-                    <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagsresultset">
-            <title>Zend_Service_Technorati_TagsResultSet</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_TagsResultSet</classname> represents a Technorati
-                TopTags or BlogPostTags queries result set.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagsResultSet</classname> extends
-                    <link
-                        linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.result">
-            <title>Zend_Service_Technorati_Result</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_Result</classname> is the most essential result
-                object. The scope of this class is to be extended by a query specific child result
-                class, and it should never be used to initialize a standalone object.
-            </para>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.cosmosresult">
-            <title>Zend_Service_Technorati_CosmosResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_CosmosResult</classname> represents a single
-                Technorati Cosmos query result object. It is never returned as a standalone object,
-                but it always belongs to a valid <link
-                    linkend="zend.service.technorati.classes.cosmosresultset">Zend_Service_Technorati_CosmosResultSet</link>
-                object.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_CosmosResult</classname> extends <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.searchresult">
-            <title>Zend_Service_Technorati_SearchResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_SearchResult</classname> represents a single
-                Technorati Search query result object. It is never returned as a standalone object,
-                but it always belongs to a valid <link
-                    linkend="zend.service.technorati.classes.searchresultset">Zend_Service_Technorati_SearchResultSet</link>
-                object.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_SearchResult</classname> extends <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagresult">
-            <title>Zend_Service_Technorati_TagResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_TagResult</classname> represents a single
-                Technorati Tag query result object. It is never returned as a standalone object, but
-                it always belongs to a valid <link
-                    linkend="zend.service.technorati.classes.tagresultset">Zend_Service_Technorati_TagResultSet</link>
-                object.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagResult</classname> extends <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.dailycountsresult">
-            <title>Zend_Service_Technorati_DailyCountsResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_DailyCountsResult</classname> represents a single
-                Technorati DailyCounts query result object. It is never returned as a standalone
-                object, but it always belongs to a valid <link
-                    linkend="zend.service.technorati.classes.dailycountsresultset">Zend_Service_Technorati_DailyCountsResultSet</link>
-                object.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_DailyCountsResult</classname> extends <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagsresult">
-            <title>Zend_Service_Technorati_TagsResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_TagsResult</classname> represents a single
-                Technorati TopTags or BlogPostTags query result object. It is never returned as a
-                standalone object, but it always belongs to a valid <link
-                    linkend="zend.service.technorati.classes.tagsresultset">Zend_Service_Technorati_TagsResultSet</link>
-                object.
-            </para>
-
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagsResult</classname> extends <link
-                        linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>.
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.getinforesult">
-            <title>Zend_Service_Technorati_GetInfoResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_GetInfoResult</classname> represents a single
-                Technorati GetInfo query result object.
-            </para>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.bloginforesult">
-            <title>Zend_Service_Technorati_BlogInfoResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_BlogInfoResult</classname> represents a single
-                Technorati BlogInfo query result object.
-            </para>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.keyinforesult">
-            <title>Zend_Service_Technorati_KeyInfoResult</title>
-
-            <para>
-                <classname>Zend_Service_Technorati_KeyInfoResult</classname> represents a single
-                Technorati KeyInfo query result object. It provides information about your
-                <link linkend="zend.service.technorati.checking-api-daily-usage">Technorati
-                    <acronym>API</acronym> Key daily usage</link>.
-            </para>
-        </sect3>
-    </sect2>
-</sect1>

+ 0 - 108
documentation/manual/en/ref/requirements-dependencies-table.xml

@@ -4658,114 +4658,6 @@
                 </entry>
             </row>
             <row>
-                <entry morerows="11" valign="middle">
-                    <emphasis>
-                        <ulink
-                            url="&zf.manual.link;/zend.service.technorati.html">
-                            <classname>Zend_Service_Technorati</classname>
-                        </ulink>
-                    </emphasis>
-                </entry>
-                <entry morerows="4" valign="middle">&requirements.hard;</entry>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.date.html">
-                        <classname>Zend_Date</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.exception.html">
-                        <classname>Zend_Exception</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.http.html">
-                        <classname>Zend_Http</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.uri.html">
-                        <classname>Zend_Uri</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.locale.html">
-                        <classname>Zend_Locale</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>&requirements.soft;</entry>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.rest.html">
-                        <classname>Zend_Rest</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry morerows="3" valign="middle">&requirements.fix;</entry>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.loader.html">
-                        <classname>Zend_Loader</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.server.html">
-                        <classname>Zend_Server</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.service.html">
-                        <classname>Zend_Service</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.validate.html">
-                        <classname>Zend_Validate</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry morerows="1" valign="middle">&requirements.sub;</entry>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.filter.html">
-                        <classname>Zend_Filter</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="&zf.manual.link;/zend.registry.html">
-                        <classname>Zend_Registry</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
                 <entry morerows="13" valign="middle">
                     <emphasis>
                         <ulink

+ 0 - 12
documentation/manual/en/ref/requirements-zendcomponents-table.xml

@@ -1014,18 +1014,6 @@
                 <entry>
                     <emphasis>
                         <ulink
-                            url="&zf.manual.link;/zend.service.technorati.html">
-                            <classname>Zend_Service_Technorati</classname>
-                        </ulink>
-                    </emphasis>
-                </entry>
-                <entry>---</entry>
-                <entry>---</entry>
-            </row>
-            <row>
-                <entry>
-                    <emphasis>
-                        <ulink
                             url="&zf.manual.link;/zend.service.twitter.html">
                             <classname>Zend_Service_Twitter</classname>
                         </ulink>

+ 0 - 95
documentation/manual/es/ref/requirements-dependencies-table.xml

@@ -4058,101 +4058,6 @@
                 </entry>
             </row>
             <row>
-                <entry morerows="11" valign="middle">
-                    <emphasis>
-                        <ulink url="http://framework.zend.com/manual/en/zend.service.technorati.html">
-                            <classname>Zend_Service_Technorati</classname>
-                        </ulink>
-                    </emphasis>
-                </entry>
-                <entry morerows="4" valign="middle">Hard</entry>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.date.html">
-                        <classname>Zend_Date</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.exception.html">
-                        <classname>Zend_Exception</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.http.html">
-                        <classname>Zend_Http</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.uri.html">
-                        <classname>Zend_Uri</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.locale.html">
-                        <classname>Zend_Locale</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>Soft</entry>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.rest.html">
-                        <classname>Zend_Rest</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry morerows="3" valign="middle">Fix</entry>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.loader.html">
-                        <classname>Zend_Loader</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.server.html">
-                        <classname>Zend_Server</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.service.html">
-                        <classname>Zend_Service</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.validate.html">
-                        <classname>Zend_Validate</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry morerows="1" valign="middle">Sub</entry>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.filter.html">
-                        <classname>Zend_Filter</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink url="http://framework.zend.com/manual/en/zend.registry.html">
-                        <classname>Zend_Registry</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
                 <entry morerows="13" valign="middle">
                     <emphasis>
                         <ulink url="http://framework.zend.com/manual/en/zend.service.twitter.html">

+ 0 - 11
documentation/manual/es/ref/requirements-zendcomponents-table.xml

@@ -858,17 +858,6 @@
             <row>
                 <entry>
                     <emphasis>
-                        <ulink url="http://framework.zend.com/manual/en/zend.service.technorati.html">
-                            <classname>Zend_Service_Technorati</classname>
-                        </ulink>
-                    </emphasis>
-                </entry>
-                <entry>---</entry>
-                <entry>---</entry>
-            </row>
-            <row>
-                <entry>
-                    <emphasis>
                         <ulink url="http://framework.zend.com/manual/en/zend.service.twitter.html">
                             <classname>Zend_Service_Twitter</classname>
                         </ulink>

+ 0 - 6
documentation/manual/fr/module_specs/Zend_Service.xml

@@ -91,12 +91,6 @@
 
         <listitem>
             <para>
-                <link linkend="zend.service.technorati">Technorati</link>
-            </para>
-        </listitem>
-
-        <listitem>
-            <para>
                 <link linkend="zend.service.twitter">Twitter</link>
             </para>
         </listitem>

+ 0 - 46
documentation/manual/he/ref/requirements.xml

@@ -1039,11 +1039,6 @@
                             <entry><ulink url="http://www.php.net/manual/en/ref.soap.php"><code>soap</code></ulink></entry>
                         </row>
                         <row>
-                            <entry><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.technorati.html"><code>Zend_Service_Technorati</code></ulink></emphasis></entry>
-                            <entry>---</entry>
-                            <entry>---</entry>
-                        </row>
-                        <row>
                             <entry><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.twitter.html"><code>Zend_Service_Twitter</code></ulink></emphasis></entry>
                             <entry>---</entry>
                             <entry>---</entry>
@@ -2889,47 +2884,6 @@
                             <entry><ulink url="http://framework.zend.com/manual/en/zend.registry.html"><code>Zend_Registry</code></ulink></entry>
                         </row>
                         <row>
-                            <entry morerows="11" valign="middle"><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.technorati.html"><code>Zend_Service_Technorati</code></ulink></emphasis></entry>
-                            <entry morerows="4" valign="middle">תלוי מאוד</entry>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.date.html"><code>Zend_Date</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.exception.html"><code>Zend_Exception</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.uri.html"><code>Zend_Uri</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.locale.html"><code>Zend_Locale</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry>לא תלוי</entry>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.rest.html"><code>Zend_Rest</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry morerows="3" valign="middle">תיקון</entry>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.loader.html"><code>Zend_Loader</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.server.html"><code>Zend_Server</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.service.html"><code>Zend_Service</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.validate.html"><code>Zend_Validate</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry morerows="1" valign="middle">תת</entry>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.filter.html"><code>Zend_Filter</code></ulink></entry>
-                        </row>
-                        <row>
-                            <entry><ulink url="http://framework.zend.com/manual/en/zend.registry.html"><code>Zend_Registry</code></ulink></entry>
-                        </row>
-                        <row>
                             <entry morerows="13" valign="middle"><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.twitter.html"><code>Zend_Service_Twitter</code></ulink></emphasis></entry>
                             <entry morerows="5" valign="middle">תלוי מאוד</entry>
                             <entry><ulink url="http://framework.zend.com/manual/en/zend.exception.html"><code>Zend_Exception</code></ulink></entry>

+ 0 - 108
documentation/manual/hu/ref/requirements-dependencies-table.xml

@@ -4608,114 +4608,6 @@
                 </entry>
             </row>
             <row>
-                <entry morerows="11" valign="middle">
-                    <emphasis>
-                        <ulink
-                            url="http://framework.zend.com/manual/en/zend.service.technorati.html">
-                            <classname>Zend_Service_Technorati</classname>
-                        </ulink>
-                    </emphasis>
-                </entry>
-                <entry morerows="4" valign="middle">Erős</entry>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.date.html">
-                        <classname>Zend_Date</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.exception.html">
-                        <classname>Zend_Exception</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.http.html">
-                        <classname>Zend_Http</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.uri.html">
-                        <classname>Zend_Uri</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.locale.html">
-                        <classname>Zend_Locale</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>Gyenge</entry>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.rest.html">
-                        <classname>Zend_Rest</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry morerows="3" valign="middle">Állandó</entry>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.loader.html">
-                        <classname>Zend_Loader</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.server.html">
-                        <classname>Zend_Server</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.service.html">
-                        <classname>Zend_Service</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.validate.html">
-                        <classname>Zend_Validate</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry morerows="1" valign="middle">Al-</entry>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.filter.html">
-                        <classname>Zend_Filter</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
-                <entry>
-                    <ulink
-                        url="http://framework.zend.com/manual/en/zend.registry.html">
-                        <classname>Zend_Registry</classname>
-                    </ulink>
-                </entry>
-            </row>
-            <row>
                 <entry morerows="13" valign="middle">
                     <emphasis>
                         <ulink

+ 0 - 12
documentation/manual/hu/ref/requirements-zendcomponents-table.xml

@@ -966,18 +966,6 @@
                 <entry>
                     <emphasis>
                         <ulink
-                            url="http://framework.zend.com/manual/en/zend.service.technorati.html">
-                            <classname>Zend_Service_Technorati</classname>
-                        </ulink>
-                    </emphasis>
-                </entry>
-                <entry>–</entry>
-                <entry>–</entry>
-            </row>
-            <row>
-                <entry>
-                    <emphasis>
-                        <ulink
                             url="http://framework.zend.com/manual/en/zend.service.twitter.html">
                             <classname>Zend_Service_Twitter</classname>
                         </ulink>

+ 0 - 27
documentation/manual/id/ref/requirements.xml

@@ -1050,12 +1050,6 @@
                         <entry><ulink url="http://www.php.net/manual/en/ref.soap.php"><code>soap</code></ulink></entry>
                     </row>
                     <row>
-                        <entry><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.technorati.html"><code>Zend_Service_Technorati</code></ulink></emphasis></entry>
-                        <entry>---</entry>
-                        <entry>---</entry>
-                        <entry>---</entry>
-                    </row>
-                    <row>
                         <entry morerows="1" valign="middle"><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.yahoo.html"><code>Zend_Service_Yahoo</code></ulink></emphasis></entry>
                         <entry morerows="1" valign="middle">Hard</entry>
                         <entry morerows="1" valign="middle">---</entry>
@@ -1608,26 +1602,6 @@
                         <entry><ulink url="http://framework.zend.com/manual/en/zend.loader.html"><code>Zend_Loader</code></ulink></entry>
                     </row>
                     <row>
-                        <entry morerows="5" valign="middle"><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.technorati.html"><code>Zend_Service_Technorati</code></ulink></emphasis></entry>
-                        <entry morerows="5" valign="middle">Hard</entry>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.date.html"><code>Zend_Date</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.exception.html"><code>Zend_Exception</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.locale.html"><code>Zend_Locale</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.rest.html"><code>Zend_Rest</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.uri.html"><code>Zend_Uri</code></ulink></entry>
-                    </row>
-                    <row>
                         <entry morerows="3" valign="middle"><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.yahoo.html"><code>Zend_Service_Yahoo</code></ulink></emphasis></entry>
                         <entry morerows="3" valign="middle">Hard</entry>
                         <entry><ulink url="http://framework.zend.com/manual/en/zend.exception.html"><code>Zend_Exception</code></ulink></entry>
@@ -1795,7 +1769,6 @@ Service_Delicious
 Service_Flickr
 Service_SlideShare
 Service_StrikeIron
-Service_Technorati
 Service_Yahoo
 Session
 TimeSync

+ 0 - 6
documentation/manual/ja/module_specs/Zend_Service.xml

@@ -82,12 +82,6 @@
             </para>
         </listitem>
 
-         <listitem>
-             <para>
-                <link linkend="zend.service.technorati">Technorati</link>
-            </para>
-        </listitem>
-
         <listitem>
             <para>
                 <link linkend="zend.service.twitter">Twitter</link>

+ 0 - 799
documentation/manual/ja/module_specs/Zend_Service_Technorati.xml

@@ -1,799 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- Reviewed: no -->
-<!-- EN-Revision: 24249 -->
-<sect1 id="zend.service.technorati">
-    <title>Zend_Service_Technorati(日本語)</title>
-    <!-- Skip-EN-Revisions: 22768 -->
-    <para>注意:このドキュメントでは、英語版のリビジョン 22768 の更新内容をスキップしています。</para>
-    <sect2 id="zend.service.technorati.introduction">
-        <title>導入</title>
-        <para>
-            <classname>Zend_Service_Technorati</classname> は、Technorati <acronym>API</acronym>
-            を使うための簡単で直感的なオブジェクト指向インターフェイスを提供します。
-            利用可能なすべての
-            <ulink url="http://technorati.com/developers/api/">Technorati <acronym>API</acronym> クエリ</ulink>
-            にアクセスすることができ、<acronym>API</acronym> が返す XML
-            形式のレスポンスを <acronym>PHP</acronym> で扱いやすいオブジェクトで返します。
-        </para>
-        <para>
-            <ulink url="http://technorati.com/">Technorati</ulink>
-            は、人気のあるブログ検索エンジンのひとつです。その <acronym>API</acronym> を使用すると、
-            特定のブログについての情報を取得したり、
-            指定したタグやフレーズにマッチするブログの著者の情報を取得したりできます。
-            使用できるクエリの一覧は、
-            <ulink url="http://technorati.com/developers/api/">Technorati <acronym>API</acronym> ドキュメント</ulink>
-            あるいはこのドキュメントの
-            <link linkend="zend.service.technorati.queries">使用できる Technorati クエリ</link>
-            を参照ください。
-        </para>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.getting-started">
-        <title>さあ始めましょう</title>
-        <para>
-            Technorati <acronym>API</acronym> を使用するには、キーが必要です。
-            <acronym>API</acronym> キーを取得するには、まず最初に
-            <ulink url="http://technorati.com/signup/">Technorati アカウントを作成</ulink>
-            し、それから
-            <ulink url="http://technorati.com/developers/apikey.html"><acronym>API</acronym> キーのセクション</ulink>
-            に行ってください。
-        </para>
-        <note>
-            <title>API キーの制限</title>
-            <para>
-                一日あたり最大 500 までの Technorati <acronym>API</acronym> コールを無料で行うことができます。
-                現在の Technorati <acronym>API</acronym> のライセンスによってはその他の使用制限が適用されるかもしれません。
-            </para>
-        </note>
-        <para>
-            <acronym>API</acronym> キーを取得したら、いよいよ <classname>Zend_Service_Technorati</classname>
-            を使うことができます。
-        </para>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.making-first-query">
-        <title>はじめてのクエリ</title>
-        <para>
-            クエリを実行するにはまず最初に <acronym>API</acronym> キーを使用して
-            <classname>Zend_Service_Technorati</classname> のインスタンスを作成します。
-            そしてクエリの形式を選択し、引数を指定したうえでそれをコールします。
-        </para>
-        <example id="zend.service.technorati.making-first-query.example-1">
-            <title>はじめてのクエリの実行</title>
-            <programlisting language="php"><![CDATA[
-// API_KEY を指定して
-// Zend_Service_Technorati を作成します
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Technorati で PHP というキーワードを検索します
-$resultSet = $technorati->search('PHP');
-]]></programlisting>
-        </example>
-        <para>
-            検索用のメソッドにはオプションパラメータの配列を渡すことができます。
-            これを使用すると、クエリをさらに絞り込むことができます。
-        </para>
-        <example id="zend.service.technorati.making-first-query.example-2">
-            <title>クエリの精度の向上</title>
-            <programlisting language="php"><![CDATA[
-// API_KEY を指定して
-// Zend_Service_Technorati を作成します
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// クエリをフィルタリングし、あまり影響力のない
-// (あまり他からリンクされていない) ブログを結果から除外します
-$options = array('authority' => 'a4');
-
-// Technorati で PHP というキーワードを検索します
-$resultSet = $technorati->search('PHP', $options);
-]]></programlisting>
-        </example>
-        <para>
-            <classname>Zend_Service_Technorati</classname> のインスタンスは使い捨てのオブジェクトではありません。
-            したがって、クエリをコールするたびに毎回新たなインスタンスを作成するなどということは不要です。
-            一度作成した <classname>Zend_Service_Technorati</classname>
-            オブジェクトを、気の済むまで使い回せばいいのです。
-        </para>
-        <example id="zend.service.technorati.making-first-query.example-3">
-            <title>ひとつの Zend_Service_Technorati インスタンスでの複数のクエリの送信</title>
-            <programlisting language="php"><![CDATA[
-// API_KEY を指定して
-// Zend_Service_Technorati を作成します
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Technorati で PHP というキーワードを検索します
-$search = $technorati->search('PHP');
-
-// Technorati で一番よく登録されているタブを取得します
-$topTags = $technorati->topTags();
-]]></programlisting>
-        </example>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.consuming-results">
-        <title>結果の取得</title>
-        <para>
-            クエリの結果は、二種類の結果オブジェクトのうちのいずれかの形式で取得できます。
-        </para>
-        <para>
-            まず最初の形式は <classname>Zend_Service_Technorati_*ResultSet</classname>
-            オブジェクトで表されるものです。結果セットオブジェクトは、
-            基本的には結果オブジェクトのコレクションとなります。これは基底クラス
-            <classname>Zend_Service_Technorati_ResultSet</classname> を継承したもので、
-            <acronym>PHP</acronym> の <code>SeekableIterator</code> インターフェイスを実装しています。
-            この結果セットを使用するいちばんよい方法は、<acronym>PHP</acronym> の <code>foreach</code>
-            文を用いてループ処理することです。
-        </para>
-        <example id="zend.service.technorati.consuming-results.example-1">
-            <title>結果セットオブジェクトの取得</title>
-            <programlisting language="php"><![CDATA[
-// API_KEY を指定して
-// Zend_Service_Technorati を作成します
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Technorati で PHP というキーワードを検索します
-// $resultSet は Zend_Service_Technorati_SearchResultSet のインスタンスです
-$resultSet = $technorati->search('PHP');
-
-// 結果オブジェクトをループします
-foreach ($resultSet as $result) {
-    // $result は Zend_Service_Technorati_SearchResult のインスタンスです
-}
-]]></programlisting>
-        </example>
-        <para>
-            <classname>Zend_Service_Technorati_ResultSet</classname> は <code>SeekableIterator</code>
-            インターフェイスを実装しているので、結果コレクション内での位置を指定して
-            特定の結果オブジェクトを取得することもできます。
-        </para>
-        <example id="zend.service.technorati.consuming-results.example-2">
-            <title>特定の結果セットオブジェクトの取得</title>
-            <programlisting language="php"><![CDATA[
-// API_KEY を指定して
-// Zend_Service_Technorati を作成します
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// Technorati で PHP というキーワードを検索します
-// $resultSet は Zend_Service_Technorati_SearchResultSet のインスタンスです
-$resultSet = $technorati->search('PHP');
-
-// $result は Zend_Service_Technorati_SearchResult のインスタンスです
-$resultSet->seek(1);
-$result = $resultSet->current();
-]]></programlisting>
-        </example>
-        <note>
-            <para>
-                <code>SeekableIterator</code> は配列として動作し、
-                そのインデックスは 0 から始まります。インデックス 1
-                を指定すると、コレクション内の 2 番目の結果を取得することになります。
-            </para>
-        </note>
-        <para>
-            2 番目の形式は、単体の特別な結果オブジェクトで表されるものです。
-            <classname>Zend_Service_Technorati_GetInfoResult</classname>、<classname>Zend_Service_Technorati_BlogInfoResult</classname>
-            および <classname>Zend_Service_Technorati_KeyInfoResult</classname> は、
-            <classname>Zend_Service_Technorati_Author</classname> や <classname>Zend_Service_Technorati_Weblog</classname>
-            といったオブジェクトのラッパーとして働きます。
-        </para>
-        <example id="zend.service.technorati.consuming-results.example-3">
-            <title>単体の結果オブジェクトの取得</title>
-            <programlisting language="php"><![CDATA[
-// API_KEY を指定して
-// Zend_Service_Technorati を作成します
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-
-// weppos についての情報を取得します
-$result = $technorati->getInfo('weppos');
-
-$author = $result->getAuthor();
-echo '<h2>' . $author->getFirstName() . ' ' . $author->getLastName() .
-     ' のブログ</h2>';
-echo '<ol>';
-foreach ($result->getWeblogs() as $weblog) {
-    echo '<li>' . $weblog->getName() . '</li>';
-}
-echo "</ol>";
-]]></programlisting>
-        </example>
-        <para>
-            レスポンスクラスの詳細については
-            <link linkend="zend.service.technorati.classes">Zend_Service_Technorati クラス</link>
-            のセクションを参照ください。
-        </para>
-
-    </sect2>
-
-    <sect2 id="zend.service.technorati.handling-errors">
-        <title>エラー処理</title>
-        <para>
-            <classname>Zend_Service_Technorati</classname> のクエリメソッドは、失敗したときには
-            <classname>Zend_Service_Technorati_Exception</classname> をスローします。
-            またその際にはわかりやすいエラーメッセージを提供します。
-        </para>
-        <para>
-            <classname>Zend_Service_Technorati</classname> のクエリが失敗する原因は、いくつか考えられます。
-            <classname>Zend_Service_Technorati</classname> は、クエリを送信する際にすべてのパラメータを検証します。
-            もし無効なパラメータや無効な値を指定していた場合は
-            <classname>Zend_Service_Technorati_Exception</classname> をスローします。
-            さらに、Technorati <acronym>API</acronym> が一時的に使用できなくなっていたり、
-            そのレスポンスが整形式でない場合もあり得るでしょう。
-        </para>
-        <para>
-            Technorati のクエリは、常に <code>try</code>...<code>catch</code>
-            ブロック内に記述するようにしましょう。
-        </para>
-        <example id="zend.service.technorati.handling-errors.example-1">
-            <title>クエリの例外処理</title>
-            <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-try {
-    $resultSet = $technorati->search('PHP');
-} catch(Zend_Service_Technorati_Exception $e) {
-    echo "エラーが発生しました: " $e->getMessage();
-}
-]]></programlisting>
-        </example>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.checking-api-daily-usage">
-        <title>API キーの使用限度の確認</title>
-        <para>
-            今日は後何回 <acronym>API</acronym> キーが使えるのかを調べたいことも多々あるでしょう。
-            デフォルトでは、Technorati の <acronym>API</acronym> は 1 日あたり 500 回までしか使用することができません。
-            それを超えて使用しようとすると、<classname>Zend_Service_Technorati</classname>
-            は例外を返します。自分の <acronym>API</acronym> キーの使用状況を取得するには
-            <methodname>Zend_Service_Technorati::keyInfo()</methodname> メソッドを使用します。
-        </para>
-        <para>
-            <methodname>Zend_Service_Technorati::keyInfo()</methodname> は
-            <classname>Zend_Service_Technorati_KeyInfoResult</classname> オブジェクトを返します。
-            詳細は
-            <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-            を参照ください。
-        </para>
-        <example id="zend.service.technorati.checking-api-daily-usage.example-1">
-            <title>API キーの使用状況の取得</title>
-            <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$key = $technorati->keyInfo();
-
-echo "API Key: " . $key->getApiKey() . "<br />";
-echo "Daily Usage: " . $key->getApiQueries() . "/" .
-     $key->getMaxQueries() . "<br />";
-]]></programlisting>
-        </example>
-    </sect2>
-
-    <sect2 id="zend.service.technorati.queries">
-        <title>使用できる Technorati クエリ</title>
-        <para>
-            <classname>Zend_Service_Technorati</classname> は以下のクエリをサポートしています。
-            <itemizedlist>
-                <listitem><para><link linkend="zend.service.technorati.queries.cosmos"><code>Cosmos</code></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.queries.search"><code>Search</code></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.queries.tag"><code>Tag</code></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.queries.dailycounts"><code>DailyCounts</code></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.queries.toptags"><code>TopTags</code></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.queries.bloginfo"><code>BlogInfo</code></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.queries.blogposttags"><code>BlogPostTags</code></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.queries.getinfo"><code>GetInfo</code></link></para></listitem>
-            </itemizedlist>
-        </para>
-
-        <sect3 id="zend.service.technorati.queries.cosmos">
-            <title>Technorati Cosmos</title>
-            <para>
-                <ulink url="http://technorati.com/developers/api/cosmos.html">Cosmos</ulink>
-                クエリは、指定した URL にリンクしているブログを探します。このクエリは
-                <link linkend="zend.service.technorati.classes.cosmosresultset"><classname>Zend_Service_Technorati_CosmosResultSet</classname></link>
-                オブジェクトを返します。詳細は
-                <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-                の <classname>Zend_Service_Technorati::cosmos()</classname> を参照ください。
-            </para>
-            <example id="zend.service.technorati.queries.cosmos.example-1">
-                <title>Cosmos クエリ</title>
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->cosmos('http://devzone.zend.com/');
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getWeblog()->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.search">
-            <title>Technorati Search</title>
-            <para>
-                <ulink url="http://technorati.com/developers/api/search.html">Search</ulink>
-                クエリは、指定した検索文字列を含むブログを探します。このクエリは
-                <link linkend="zend.service.technorati.classes.searchresultset"><classname>Zend_Service_Technorati_SearchResultSet</classname></link>
-                オブジェクトを返します。詳細は
-                <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-                の <classname>Zend_Service_Technorati::search()</classname> を参照ください。
-            </para>
-            <example id="zend.service.technorati.queries.search.example-1">
-                <title>Search クエリ</title>
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->search('zend framework');
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getWeblog()->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.tag">
-            <title>Technorati Tag</title>
-            <para>
-                <ulink url="http://technorati.com/developers/api/tag.html">Tag</ulink>
-                クエリは、指定したタグがつけられている投稿を探します。このクエリは
-                <link linkend="zend.service.technorati.classes.tagresultset"><classname>Zend_Service_Technorati_TagResultSet</classname></link>
-                オブジェクトを返します。詳細は
-                <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-                の <classname>Zend_Service_Technorati::tag()</classname> を参照ください。
-            </para>
-            <example id="zend.service.technorati.queries.tag.example-1">
-                <title>Tag クエリ</title>
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->tag('php');
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getWeblog()->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.dailycounts">
-            <title>Technorati DailyCounts</title>
-            <para>
-                <ulink url="http://technorati.com/developers/api/dailycounts.html">DailyCounts</ulink>
-                クエリは、指定したキーワードを含む投稿の 1 日あたりの数を返します。このクエリは
-                <link linkend="zend.service.technorati.classes.dailycountsresultset"><classname>Zend_Service_Technorati_DailyCountsResultSet</classname></link>
-                オブジェクトを返します。詳細は
-                <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-                の <classname>Zend_Service_Technorati::dailyCounts()</classname> を参照ください。
-            </para>
-            <example id="zend.service.technorati.queries.dailycounts.example-1">
-                <title>DailyCounts クエリ</title>
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->dailyCounts('php');
-
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getDate() .
-         "(" . $result->getCount() . ")</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.toptags">
-            <title>Technorati TopTags</title>
-            <para>
-                <ulink url="http://technorati.com/developers/api/toptags.html">TopTags</ulink>
-                クエリは、Technorati にもっとも多く登録されているタグの情報を返します。このクエリは
-                <link linkend="zend.service.technorati.classes.tagsresultset"><classname>Zend_Service_Technorati_TagsResultSet</classname></link>
-                オブジェクトを返します。詳細は
-                <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-                の <classname>Zend_Service_Technorati::topTags()</classname> を参照ください。
-            </para>
-            <example id="zend.service.technorati.queries.toptags.example-1">
-                <title>TopTags タグ</title>
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->topTags();
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getTag() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.bloginfo">
-            <title>Technorati BlogInfo</title>
-            <para>
-                <ulink url="http://technorati.com/developers/api/bloginfo.html">BlogInfo</ulink>
-                は、指定した URL に関連するブログの情報を返します。このクエリは
-                <link linkend="zend.service.technorati.classes.bloginforesult"><classname>Zend_Service_Technorati_BlogInfoResult</classname></link>
-                オブジェクトを返します。詳細は
-                <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-                の <classname>Zend_Service_Technorati::blogInfo()</classname> を参照ください。
-            </para>
-            <example id="zend.service.technorati.queries.bloginfo.example-1">
-                <title>BlogInfo クエリ</title>
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$result = $technorati->blogInfo('http://devzone.zend.com/');
-
-echo '<h2><a href="' . (string) $result->getWeblog()->getUrl() . '">' .
-     $result->getWeblog()->getName() . '</a></h2>';
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.blogposttags">
-            <title>Technorati BlogPostTags</title>
-            <para>
-                <ulink url="http://technorati.com/developers/api/blogposttags.html">BlogPostTags</ulink>
-                クエリは、そのブログでよく使われているタグの情報を返します。このクエリは
-                <link linkend="zend.service.technorati.classes.tagsresultset"><classname>Zend_Service_Technorati_TagsResultSet</classname></link>
-                オブジェクトを返します。詳細は
-                <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-                の <classname>Zend_Service_Technorati::blogPostTags()</classname> を参照ください。
-            </para>
-            <example id="zend.service.technorati.queries.blogposttags.example-1">
-                <title>BlogPostTags クエリ</title>
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->blogPostTags('http://devzone.zend.com/');
-
-echo "<p>Reading " . $resultSet->totalResults() .
-     " of " . $resultSet->totalResultsAvailable() .
-     " available results</p>";
-echo "<ol>";
-foreach ($resultSet as $result) {
-    echo "<li>" . $result->getTag() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.getinfo">
-            <title>Technorati GetInfo</title>
-            <para>
-                <ulink url="http://technorati.com/developers/api/getinfo.html">GetInfo</ulink>
-                クエリは、あるメンバーについて Technorati が把握している情報を返します。このクエリは
-                <link linkend="zend.service.technorati.classes.getinforesult"><classname>Zend_Service_Technorati_GetInfoResult</classname></link>
-                オブジェクトを返します。詳細は
-                <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-                の <classname>Zend_Service_Technorati::getInfo()</classname> を参照ください。
-            </para>
-            <example id="zend.service.technorati.queries.getinfo.example-1">
-                <title>GetInfo クエリ</title>
-                <programlisting language="php"><![CDATA[
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$result = $technorati->getInfo('weppos');
-
-$author = $result->getAuthor();
-echo "<h2>Blogs authored by " . $author->getFirstName() . " " .
-     $author->getLastName() . "</h2>";
-echo "<ol>";
-foreach ($result->getWeblogs() as $weblog) {
-    echo "<li>" . $weblog->getName() . "</li>";
-}
-echo "</ol>";
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.queries.keyinfo">
-            <title>Technorati KeyInfo</title>
-            <para>
-               KeyInfo クエリは、<acronym>API</acronym> キーの使用状況についての情報を返します。このクエリは
-               <link linkend="zend.service.technorati.classes.keyinforesult"><classname>Zend_Service_Technorati_KeyInfoResult</classname></link>
-               オブジェクトを返します。詳細は
-               <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-               の <classname>Zend_Service_Technorati::keyInfo()</classname> を参照ください。
-            </para>
-        </sect3>
-
-    </sect2>
-
-    <sect2 id="zend.service.technorati.classes">
-        <title>Zend_Service_Technorati クラス</title>
-        <para>
-            以下のクラスは、Technorati の各種クエリから返されるものです。
-            <classname>Zend_Service_Technorati_*ResultSet</classname> 系のクラスは、
-            それぞれの形式にあわせた結果セットを保持します。
-            その中身は形式にあわせた結果オブジェクトであり、容易に処理できます。
-            これらの結果セットクラスはすべて
-            <classname>Zend_Service_Technorati_ResultSet</classname> クラスを継承しており、かつ
-            <code>SeekableIterator</code> インターフェイスを実装しています。
-            これによって、結果のループ処理や特定の結果の取り出しが簡単にできるようになります。
-            <itemizedlist>
-                <listitem><para><link linkend="zend.service.technorati.classes.resultset"><classname>Zend_Service_Technorati_ResultSet</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.cosmosresultset"><classname>Zend_Service_Technorati_CosmosResultSet</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.searchresultset"><classname>Zend_Service_Technorati_SearchResultSet</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.tagresultset"><classname>Zend_Service_Technorati_TagResultSet</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.dailycountsresultset"><classname>Zend_Service_Technorati_DailyCountsResultSet</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.tagsresultset"><classname>Zend_Service_Technorati_TagsResultSet</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.result"><classname>Zend_Service_Technorati_Result</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.cosmosresult"><classname>Zend_Service_Technorati_CosmosResult</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.searchresult"><classname>Zend_Service_Technorati_SearchResult</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.tagresult"><classname>Zend_Service_Technorati_TagResult</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.dailycountsresult"><classname>Zend_Service_Technorati_DailyCountsResult</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.tagsresult"><classname>Zend_Service_Technorati_TagsResult</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.getinforesult"><classname>Zend_Service_Technorati_GetInfoResult</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.bloginforesult"><classname>Zend_Service_Technorati_BlogInfoResult</classname></link></para></listitem>
-                <listitem><para><link linkend="zend.service.technorati.classes.keyinforesult"><classname>Zend_Service_Technorati_KeyInfoResult</classname></link></para></listitem>
-            </itemizedlist>
-        </para>
-        <note>
-            <para>
-                <classname>Zend_Service_Technorati_GetInfoResult</classname>、
-                <classname>Zend_Service_Technorati_BlogInfoResult</classname>
-                そして <classname>Zend_Service_Technorati_KeyInfoResult</classname>
-                には上にあげたクラスと異なる点があります。これらは結果セットに属しておらず、
-                インターフェイスを実装していません。これらは単一のレスポンスオブジェクトを表し、
-                <classname>Zend_Service_Technorati_Author</classname> や <classname>Zend_Service_Technorati_Weblog</classname>
-                といった <classname>Zend_Service_Technorati</classname> のオブジェクトのラッパーとして働きます。
-            </para>
-        </note>
-        <para>
-            <classname>Zend_Service_Technorati</classname> には、これ以外にも
-            特定のレスポンスオブジェクトを表す便利なクラスが含まれています。
-            <classname>Zend_Service_Technorati_Author</classname> は、Technorati のアカウント
-            (ブログの著者、いわゆるブロガー) を表します。
-            <classname>Zend_Service_Technorati_Weblog</classname> は単一のウェブログオブジェクトを表します。
-            ここには、フィードの URL やブログ名などの情報が含まれます。詳細は
-            <ulink url="http://framework.zend.com/apidoc/core/"><acronym>API</acronym> リファレンスガイド</ulink>
-            の <classname>Zend_Service_Technorati</classname> を参照ください。
-        </para>
-
-        <sect3 id="zend.service.technorati.classes.resultset">
-            <title>Zend_Service_Technorati_ResultSet</title>
-            <para>
-                <classname>Zend_Service_Technorati_ResultSet</classname> は最も重要な結果セットです。
-                クエリ固有の結果セットクラス群はこのクラスを継承して作成しています。
-                このクラス自体のインスタンスを直接作成してはいけません。
-                各子クラスは、クエリの種類に応じた
-                <link linkend="zend.service.technorati.classes.result"><classname>Zend_Service_Technorati_Result</classname></link>
-                オブジェクトのコレクションを表します。
-            </para>
-            <para>
-                <classname>Zend_Service_Technorati_ResultSet</classname> は <acronym>PHP</acronym> の <code>SeekableIterator</code>
-                インターフェイスを実装しており、<code>foreach</code>
-                文で結果を処理できます。
-            </para>
-            <example id="zend.service.technorati.classes.resultset.example-1">
-                <title>結果セットコレクション内の結果オブジェクトの反復処理</title>
-                <programlisting language="php"><![CDATA[
-// 単純なクエリを実行します
-$technorati = new Zend_Service_Technorati('VALID_API_KEY');
-$resultSet = $technorati->search('php');
-
-// $resultSet は Zend_Service_Technorati_SearchResultSet
-// のインスタンスです
-// これは Zend_Service_Technorati_ResultSet を継承しています
-foreach ($resultSet as $result) {
-    // Zend_Service_Technorati_SearchResult オブジェクトに対して
-    // 何らかの操作をします
-}
-]]></programlisting>
-            </example>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.cosmosresultset">
-            <title>Zend_Service_Technorati_CosmosResultSet</title>
-            <para>
-                <classname>Zend_Service_Technorati_CosmosResultSet</classname> は
-                Technorati Cosmos クエリの結果セットを表します。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_CosmosResultSet</classname> は
-                    <link linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.searchresultset">
-            <title>Zend_Service_Technorati_SearchResultSet</title>
-            <para>
-                <classname>Zend_Service_Technorati_SearchResultSet</classname> は
-                Technorati Search クエリの結果セットを表します。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_SearchResultSet</classname> は
-                    <link linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagresultset">
-            <title>Zend_Service_Technorati_TagResultSet</title>
-            <para>
-                <classname>Zend_Service_Technorati_TagResultSet</classname> は
-                Technorati Tag クエリの結果セットを表します。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagResultSet</classname> は
-                    <link linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.dailycountsresultset">
-            <title>Zend_Service_Technorati_DailyCountsResultSet</title>
-            <para>
-                <classname>Zend_Service_Technorati_DailyCountsResultSet</classname> は
-                Technorati DailyCounts クエリの結果セットを表します。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_DailyCountsResultSet</classname> は
-                    <link linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagsresultset">
-            <title>Zend_Service_Technorati_TagsResultSet</title>
-            <para>
-                <classname>Zend_Service_Technorati_TagsResultSet</classname> は
-                Technorati TopTags あるいは BlogPostTags クエリの結果セットを表します。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagsResultSet</classname> は
-                    <link linkend="zend.service.technorati.classes.resultset">Zend_Service_Technorati_ResultSet</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.result">
-            <title>Zend_Service_Technorati_Result</title>
-            <para>
-                <classname>Zend_Service_Technorati_Result</classname> は最も重要な結果オブジェクトです。
-                クエリ固有の結果クラス群はこのクラスを継承して作成しています。
-                このクラス自体のインスタンスを直接作成してはいけません。
-            </para>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.cosmosresult">
-            <title>Zend_Service_Technorati_CosmosResult</title>
-            <para>
-                <classname>Zend_Service_Technorati_CosmosResult</classname> は
-                Technorati Cosmos クエリの単一の結果オブジェクトを表します。
-                単体のオブジェクトとして返されることはなく、常に
-                <link linkend="zend.service.technorati.classes.cosmosresultset">Zend_Service_Technorati_CosmosResultSet</link>
-                オブジェクトに含まれる形式で返されます。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_CosmosResult</classname> は
-                    <link linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.searchresult">
-            <title>Zend_Service_Technorati_SearchResult</title>
-            <para>
-                <classname>Zend_Service_Technorati_SearchResult</classname> は
-                Technorati Search クエリの単一の結果オブジェクトを表します。
-                単体のオブジェクトとして返されることはなく、常に
-                <link linkend="zend.service.technorati.classes.searchresultset">Zend_Service_Technorati_SearchResultSet</link>
-                オブジェクトに含まれる形式で返されます。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_SearchResult</classname> は
-                    <link linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagresult">
-            <title>Zend_Service_Technorati_TagResult</title>
-            <para>
-                <classname>Zend_Service_Technorati_TagResult</classname> は
-                Technorati Tag クエリの単一の結果オブジェクトを表します。
-                単体のオブジェクトとして返されることはなく、常に
-                <link linkend="zend.service.technorati.classes.tagresultset">Zend_Service_Technorati_TagResultSet</link>
-                オブジェクトに含まれる形式で返されます。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagResult</classname> は
-                    <link linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.dailycountsresult">
-            <title>Zend_Service_Technorati_DailyCountsResult</title>
-            <para>
-                <classname>Zend_Service_Technorati_DailyCountsResult</classname> は
-                Technorati DailyCounts クエリの単一の結果オブジェクトを表します。
-                単体のオブジェクトとして返されることはなく、常に
-                <link linkend="zend.service.technorati.classes.dailycountsresultset">Zend_Service_Technorati_DailyCountsResultSet</link>
-                オブジェクトに含まれる形式で返されます。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_DailyCountsResult</classname> は
-                    <link linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.tagsresult">
-            <title>Zend_Service_Technorati_TagsResult</title>
-            <para>
-                <classname>Zend_Service_Technorati_TagsResult</classname> は
-                Technorati TopTags あるいは BlogPostTags クエリの単一の結果オブジェクトを表します。
-                単体のオブジェクトとして返されることはなく、常に
-                <link linkend="zend.service.technorati.classes.tagsresultset">Zend_Service_Technorati_TagsResultSet </link>
-                オブジェクトに含まれる形式で返されます。
-            </para>
-            <note>
-                <para>
-                    <classname>Zend_Service_Technorati_TagsResult</classname> は
-                    <link linkend="zend.service.technorati.classes.result">Zend_Service_Technorati_Result</link>
-                    を継承しています。
-                </para>
-            </note>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.getinforesult">
-            <title>Zend_Service_Technorati_GetInfoResult</title>
-            <para>
-                <classname>Zend_Service_Technorati_GetInfoResult</classname> は
-                Technorati GetInfo クエリの単一の結果オブジェクトを表します。
-            </para>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.bloginforesult">
-            <title>Zend_Service_Technorati_BlogInfoResult</title>
-            <para>
-                <classname>Zend_Service_Technorati_BlogInfoResult</classname> は
-                Technorati BlogInfo クエリの単一の結果オブジェクトを表します。
-            </para>
-        </sect3>
-
-        <sect3 id="zend.service.technorati.classes.keyinforesult">
-            <title>Zend_Service_Technorati_KeyInfoResult</title>
-            <para>
-                <classname>Zend_Service_Technorati_KeyInfoResult</classname> は
-                Technorati KeyInfo クエリの単一の結果オブジェクトを表します。
-                これは
-                <link linkend="zend.service.technorati.checking-api-daily-usage">Technorati <acronym>API</acronym> キーの使用状況</link>
-                についての情報を提供します。
-            </para>
-        </sect3>
-
-    </sect2>
-
-</sect1>

+ 0 - 27
documentation/manual/pl/ref/requirements.xml

@@ -1059,12 +1059,6 @@
                         <entry><ulink url="http://www.php.net/manual/en/ref.soap.php"><code>soap</code></ulink></entry>
                     </row>
                     <row>
-                        <entry><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.technorati.html"><code>Zend_Service_Technorati</code></ulink></emphasis></entry>
-                        <entry>---</entry>
-                        <entry>---</entry>
-                        <entry>---</entry>
-                    </row>
-                    <row>
                         <entry morerows="1" valign="middle"><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.yahoo.html"><code>Zend_Service_Yahoo</code></ulink></emphasis></entry>
                         <entry morerows="1" valign="middle">Silna</entry>
                         <entry morerows="1" valign="middle">---</entry>
@@ -1617,26 +1611,6 @@
                         <entry><ulink url="http://framework.zend.com/manual/en/zend.loader.html"><code>Zend_Loader</code></ulink></entry>
                     </row>
                     <row>
-                        <entry morerows="5" valign="middle"><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.technorati.html"><code>Zend_Service_Technorati</code></ulink></emphasis></entry>
-                        <entry morerows="5" valign="middle">Silna</entry>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.date.html"><code>Zend_Date</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.exception.html"><code>Zend_Exception</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.http.html"><code>Zend_Http</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.locale.html"><code>Zend_Locale</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.rest.html"><code>Zend_Rest</code></ulink></entry>
-                    </row>
-                    <row>
-                        <entry><ulink url="http://framework.zend.com/manual/en/zend.uri.html"><code>Zend_Uri</code></ulink></entry>
-                    </row>
-                    <row>
                         <entry morerows="3" valign="middle"><emphasis role="strong"><ulink url="http://framework.zend.com/manual/en/zend.service.yahoo.html"><code>Zend_Service_Yahoo</code></ulink></emphasis></entry>
                         <entry morerows="3" valign="middle">Silna</entry>
                         <entry><ulink url="http://framework.zend.com/manual/en/zend.exception.html"><code>Zend_Exception</code></ulink></entry>
@@ -1804,7 +1778,6 @@ Service_Delicious
 Service_Flickr
 Service_SlideShare
 Service_StrikeIron
-Service_Technorati
 Service_Yahoo
 Session
 TimeSync

+ 0 - 6
documentation/manual/pt-br/module_specs/Zend_Service.xml

@@ -91,12 +91,6 @@
 
         <listitem>
             <para>
-                <link linkend="zend.service.technorati">Technorati</link>
-            </para>
-        </listitem>
-
-        <listitem>
-            <para>
                 <link linkend="zend.service.twitter">Twitter</link>
             </para>
         </listitem>