Skip to content
This repository has been archived by the owner on May 16, 2018. It is now read-only.

Removed TinySrc helper as the service itself no longer works. #221

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -532,12 +532,6 @@ echo '/>';
devices you wish to support, and then using the device capabilities to determine
which image to use.
</para>

<para>
Another approach is to use third-party services. Zend Framework provides one
such capability via the <link
linkend="zend.view.helpers.initial.tiny-src">TinySrc view helper</link>.
</para>
</note>
</sect2>
</sect1>
391 changes: 0 additions & 391 deletions documentation/manual/en/module_specs/Zend_View-Helpers-TinySrc.xml

This file was deleted.

1 change: 0 additions & 1 deletion documentation/manual/en/module_specs/Zend_View-Helpers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,6 @@ echo $this->serverUrl();
<xi:include href="Zend_View-Helpers-RenderToPlaceholder.xml" />
<xi:include href="Zend_View-Helpers-Json.xml" />
<xi:include href="Zend_View-Helpers-Navigation.xml" />
<xi:include href="Zend_View-Helpers-TinySrc.xml" />
<xi:include href="Zend_View-Helpers-Translate.xml" />
<xi:include href="Zend_View-Helpers-UserAgent.xml" />
</sect2>
Expand Down
5 changes: 1 addition & 4 deletions documentation/manual/fr/module_specs/Zend_View-Helpers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -402,9 +402,6 @@ array('us' => 'Etats-Unis', 'fr' => 'France', 'de' => 'Allemagne').
<xi:include href="Zend_View-Helpers-Navigation.xml">
<xi:fallback><xi:include href="../../en/module_specs/Zend_View-Helpers-Navigation.xml" /></xi:fallback>
</xi:include>
<xi:include href="Zend_View-Helpers-TinySrc.xml">
<xi:fallback><xi:include href="../../en/module_specs/Zend_View-Helpers-TinySrc.xml" /></xi:fallback>
</xi:include>
<xi:include href="Zend_View-Helpers-Translate.xml" />
<xi:include href="Zend_View-Helpers-UserAgent.xml">
<xi:fallback><xi:include href="../../en/module_specs/Zend_View-Helpers-UserAgent.xml" /></xi:fallback>
Expand Down Expand Up @@ -633,4 +630,4 @@ $view->registerHelper($helper, 'foo');
</para>
</note>
</sect2>
</sect1>
</sect1>
3 changes: 0 additions & 3 deletions documentation/manual/ja/module_specs/Zend_View-Helpers.xml
Original file line number Diff line number Diff line change
Expand Up @@ -718,9 +718,6 @@ echo $this->serverUrl();
<xi:include href="Zend_View-Helpers-Navigation.xml">
<xi:fallback><xi:include href="../../en/module_specs/Zend_View-Helpers-Navigation.xml" /></xi:fallback>
</xi:include>
<xi:include href="Zend_View-Helpers-TinySrc.xml">
<xi:fallback><xi:include href="../../en/module_specs/Zend_View-Helpers-TinySrc.xml" /></xi:fallback>
</xi:include>
<xi:include href="Zend_View-Helpers-Translate.xml" />
<xi:include href="Zend_View-Helpers-UserAgent.xml">
<xi:fallback><xi:include href="../../en/module_specs/Zend_View-Helpers-UserAgent.xml" /></xi:fallback>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,6 @@ echo $this->formCheckbox('foo',
<xi:include href="Zend_View-Helpers-InlineScript.xml" />
<xi:include href="Zend_View-Helpers-Json.xml" />
<xi:include href="Zend_View-Helpers-Navigation.xml" />
<xi:include href="Zend_View-Helpers-TinySrc.xml" />
<xi:include href="Zend_View-Helpers-Translate.xml" />
<xi:include href="Zend_View-Helpers-UserAgent.xml" />
</sect2>
Expand Down
317 changes: 0 additions & 317 deletions library/Zend/View/Helper/TinySrc.php

This file was deleted.

2 changes: 0 additions & 2 deletions tests/Zend/View/Helper/AllTests.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
require_once 'Zend/View/Helper/Placeholder/RegistryTest.php';
require_once 'Zend/View/Helper/Placeholder/StandaloneContainerTest.php';
require_once 'Zend/View/Helper/ServerUrlTest.php';
require_once 'Zend/View/Helper/TinySrcTest.php';
require_once 'Zend/View/Helper/TranslateTest.php';
require_once 'Zend/View/Helper/UrlTest.php';
require_once 'Zend/View/Helper/UserAgentTest.php';
Expand Down Expand Up @@ -139,7 +138,6 @@ public static function suite()
$suite->addTestSuite('Zend_View_Helper_Placeholder_RegistryTest');
$suite->addTestSuite('Zend_View_Helper_Placeholder_StandaloneContainerTest');
$suite->addTestSuite('Zend_View_Helper_ServerUrlTest');
$suite->addTestSuite('Zend_View_Helper_TinySrcTest');
$suite->addTestSuite('Zend_View_Helper_TranslateTest');
$suite->addTestSuite('Zend_View_Helper_UrlTest');
$suite->addTestSuite('Zend_View_Helper_UserAgentTest');
Expand Down
Loading