Version Notes
Compile mode bug fix.
Download this release
Release Info
Developer | Magento Core Team |
Extension | System_Configuration_Search |
Version | 0.6.2 |
Comparing to | |
See all releases |
Code changes from version 0.6.1 to 0.6.2
- app/code/local/Alanstormdotcom/Systemsearch/Block/Searchresults.php +12 -0
- app/code/local/Alanstormdotcom/Systemsearch/Block/Template.php +13 -2
- app/code/local/Alanstormdotcom/Systemsearch/Helper/Data.php +12 -0
- app/code/local/Alanstormdotcom/Systemsearch/Helper/Jsonconfigsearch.php +12 -0
- app/code/local/Alanstormdotcom/Systemsearch/Helper/Simplexml.php +12 -0
- app/code/local/Alanstormdotcom/Systemsearch/Model/Configsearch.php +12 -0
- app/code/local/Alanstormdotcom/Systemsearch/Model/Observer.php +12 -0
- app/code/local/Alanstormdotcom/Systemsearch/controllers/Adminhtml/AlanstormdotcomsystemsearchController.php +12 -0
- app/code/local/Alanstormdotcom/Systemsearch/etc/config.xml +1 -1
- app/etc/modules/Alanstormdotcom_Systemsearch.xml +1 -1
- package.xml +6 -6
- skin/adminhtml/default/default/images/alanstormdotcom/left.gif +0 -0
- skin/adminhtml/default/default/images/alanstormdotcom/right.gif +0 -0
app/code/local/Alanstormdotcom/Systemsearch/Block/Searchresults.php
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class Alanstormdotcom_Systemsearch_Block_Searchresults extends Alanstormdotcom_Systemsearch_Block_Template
|
3 |
{
|
4 |
protected $_resultsArray;
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Open Source Initiative OSI - The MIT License (MIT):Licensing
|
4 |
+
*
|
5 |
+
* The MIT License (MIT)
|
6 |
+
* Copyright (c) 2009 - 2011 Pulse Storm LLC
|
7 |
+
*
|
8 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
9 |
+
*
|
10 |
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
11 |
+
*
|
12 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
13 |
+
*/
|
14 |
class Alanstormdotcom_Systemsearch_Block_Searchresults extends Alanstormdotcom_Systemsearch_Block_Template
|
15 |
{
|
16 |
protected $_resultsArray;
|
app/code/local/Alanstormdotcom/Systemsearch/Block/Template.php
CHANGED
@@ -1,5 +1,16 @@
|
|
1 |
<?php
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
class Alanstormdotcom_Systemsearch_Block_Template extends Mage_Core_Block_Template
|
4 |
{
|
5 |
protected function _checkValidScriptPath($scriptPath)
|
@@ -30,7 +41,7 @@
|
|
30 |
public function fetchView($fileName)
|
31 |
{
|
32 |
//ignores file name, just uses a simple include with template name
|
33 |
-
$this->setScriptPath(
|
34 |
return parent::fetchView($this->getTemplate());
|
35 |
}
|
36 |
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Open Source Initiative OSI - The MIT License (MIT):Licensing
|
4 |
+
*
|
5 |
+
* The MIT License (MIT)
|
6 |
+
* Copyright (c) 2009 - 2011 Pulse Storm LLC
|
7 |
+
*
|
8 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
9 |
+
*
|
10 |
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
11 |
+
*
|
12 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
13 |
+
*/
|
14 |
class Alanstormdotcom_Systemsearch_Block_Template extends Mage_Core_Block_Template
|
15 |
{
|
16 |
protected function _checkValidScriptPath($scriptPath)
|
41 |
public function fetchView($fileName)
|
42 |
{
|
43 |
//ignores file name, just uses a simple include with template name
|
44 |
+
$this->setScriptPath(Mage::getConfig()->getModuleDir('','Alanstormdotcom_Systemsearch') . '/phtml');
|
45 |
return parent::fetchView($this->getTemplate());
|
46 |
}
|
47 |
|
app/code/local/Alanstormdotcom/Systemsearch/Helper/Data.php
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class Alanstormdotcom_Systemsearch_Helper_Data extends Mage_Core_Helper_Abstract
|
3 |
{
|
4 |
public function reverseTranslate($word)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Open Source Initiative OSI - The MIT License (MIT):Licensing
|
4 |
+
*
|
5 |
+
* The MIT License (MIT)
|
6 |
+
* Copyright (c) 2009 - 2011 Pulse Storm LLC
|
7 |
+
*
|
8 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
9 |
+
*
|
10 |
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
11 |
+
*
|
12 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
13 |
+
*/
|
14 |
class Alanstormdotcom_Systemsearch_Helper_Data extends Mage_Core_Helper_Abstract
|
15 |
{
|
16 |
public function reverseTranslate($word)
|
app/code/local/Alanstormdotcom/Systemsearch/Helper/Jsonconfigsearch.php
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class Alanstormdotcom_Systemsearch_Helper_Jsonconfigsearch extends Mage_Core_Helper_Abstract
|
3 |
{
|
4 |
public function prepareAndSendResponse($nodes, $terms)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Open Source Initiative OSI - The MIT License (MIT):Licensing
|
4 |
+
*
|
5 |
+
* The MIT License (MIT)
|
6 |
+
* Copyright (c) 2009 - 2011 Pulse Storm LLC
|
7 |
+
*
|
8 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
9 |
+
*
|
10 |
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
11 |
+
*
|
12 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
13 |
+
*/
|
14 |
class Alanstormdotcom_Systemsearch_Helper_Jsonconfigsearch extends Mage_Core_Helper_Abstract
|
15 |
{
|
16 |
public function prepareAndSendResponse($nodes, $terms)
|
app/code/local/Alanstormdotcom/Systemsearch/Helper/Simplexml.php
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class Alanstormdotcom_Systemsearch_Helper_Simplexml extends Mage_Core_Helper_Abstract
|
3 |
{
|
4 |
public function switchFromCommentToLabel($node)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Open Source Initiative OSI - The MIT License (MIT):Licensing
|
4 |
+
*
|
5 |
+
* The MIT License (MIT)
|
6 |
+
* Copyright (c) 2009 - 2011 Pulse Storm LLC
|
7 |
+
*
|
8 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
9 |
+
*
|
10 |
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
11 |
+
*
|
12 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
13 |
+
*/
|
14 |
class Alanstormdotcom_Systemsearch_Helper_Simplexml extends Mage_Core_Helper_Abstract
|
15 |
{
|
16 |
public function switchFromCommentToLabel($node)
|
app/code/local/Alanstormdotcom/Systemsearch/Model/Configsearch.php
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class Alanstormdotcom_Systemsearch_Model_Configsearch
|
3 |
{
|
4 |
public function searchSystemConfigForTerms($terms)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Open Source Initiative OSI - The MIT License (MIT):Licensing
|
4 |
+
*
|
5 |
+
* The MIT License (MIT)
|
6 |
+
* Copyright (c) 2009 - 2011 Pulse Storm LLC
|
7 |
+
*
|
8 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
9 |
+
*
|
10 |
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
11 |
+
*
|
12 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
13 |
+
*/
|
14 |
class Alanstormdotcom_Systemsearch_Model_Configsearch
|
15 |
{
|
16 |
public function searchSystemConfigForTerms($terms)
|
app/code/local/Alanstormdotcom/Systemsearch/Model/Observer.php
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class Alanstormdotcom_Systemsearch_Model_Observer
|
3 |
{
|
4 |
public function addSystemsearchInit($observer)
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Open Source Initiative OSI - The MIT License (MIT):Licensing
|
4 |
+
*
|
5 |
+
* The MIT License (MIT)
|
6 |
+
* Copyright (c) 2009 - 2011 Pulse Storm LLC
|
7 |
+
*
|
8 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
9 |
+
*
|
10 |
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
11 |
+
*
|
12 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
13 |
+
*/
|
14 |
class Alanstormdotcom_Systemsearch_Model_Observer
|
15 |
{
|
16 |
public function addSystemsearchInit($observer)
|
app/code/local/Alanstormdotcom/Systemsearch/controllers/Adminhtml/AlanstormdotcomsystemsearchController.php
CHANGED
@@ -1,4 +1,16 @@
|
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
class Alanstormdotcom_Systemsearch_Adminhtml_AlanstormdotcomsystemsearchController extends Mage_Adminhtml_Controller_Action {
|
3 |
protected $_publicActions = array('index');
|
4 |
public function indexAction()
|
1 |
<?php
|
2 |
+
/**
|
3 |
+
* Open Source Initiative OSI - The MIT License (MIT):Licensing
|
4 |
+
*
|
5 |
+
* The MIT License (MIT)
|
6 |
+
* Copyright (c) 2009 - 2011 Pulse Storm LLC
|
7 |
+
*
|
8 |
+
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
9 |
+
*
|
10 |
+
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
11 |
+
*
|
12 |
+
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
13 |
+
*/
|
14 |
class Alanstormdotcom_Systemsearch_Adminhtml_AlanstormdotcomsystemsearchController extends Mage_Adminhtml_Controller_Action {
|
15 |
protected $_publicActions = array('index');
|
16 |
public function indexAction()
|
app/code/local/Alanstormdotcom/Systemsearch/etc/config.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Alanstormdotcom_Systemsearch>
|
5 |
-
<version>0.
|
6 |
</Alanstormdotcom_Systemsearch>
|
7 |
</modules>
|
8 |
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Alanstormdotcom_Systemsearch>
|
5 |
+
<version>0.1.0</version>
|
6 |
</Alanstormdotcom_Systemsearch>
|
7 |
</modules>
|
8 |
|
app/etc/modules/Alanstormdotcom_Systemsearch.xml
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Alanstormdotcom_Systemsearch>
|
5 |
-
<active>
|
6 |
<codePool>local</codePool>
|
7 |
</Alanstormdotcom_Systemsearch>
|
8 |
</modules>
|
2 |
<config>
|
3 |
<modules>
|
4 |
<Alanstormdotcom_Systemsearch>
|
5 |
+
<active>false</active>
|
6 |
<codePool>local</codePool>
|
7 |
</Alanstormdotcom_Systemsearch>
|
8 |
</modules>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>System_Configuration_Search</name>
|
4 |
-
<version>0.6.
|
5 |
<stability>stable</stability>
|
6 |
-
<license>MIT
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>This extension installs a search form that allows you to quickly find System Configuration fields.</summary>
|
10 |
<description>This extension installs a search form that allows you to quickly find System Configuration fields.</description>
|
11 |
-
<notes>
|
12 |
<authors><author><name>Alan Storm</name><user>auto-converted</user><email>astorm@alanstorm.com</email></author></authors>
|
13 |
-
<date>
|
14 |
-
<time>
|
15 |
-
<contents><target name="magelocal"><dir name="Alanstormdotcom"><dir name="Systemsearch"><dir name="Block"><file name="Searchresults.php" hash="
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>System_Configuration_Search</name>
|
4 |
+
<version>0.6.2</version>
|
5 |
<stability>stable</stability>
|
6 |
+
<license>MIT</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>This extension installs a search form that allows you to quickly find System Configuration fields.</summary>
|
10 |
<description>This extension installs a search form that allows you to quickly find System Configuration fields.</description>
|
11 |
+
<notes>Compile mode bug fix.</notes>
|
12 |
<authors><author><name>Alan Storm</name><user>auto-converted</user><email>astorm@alanstorm.com</email></author></authors>
|
13 |
+
<date>2012-07-03</date>
|
14 |
+
<time>23:30:03</time>
|
15 |
+
<contents><target name="magelocal"><dir name="Alanstormdotcom"><dir name="Systemsearch"><dir name="Block"><file name="Searchresults.php" hash="21941ec0d6d7a34a794c01d314c4d7db"/><file name="Template.php" hash="b6877cdafd960b4bf00708205108cb96"/></dir><dir name="Helper"><file name="Data.php" hash="6f36455f6f82dcc71376f692a6b7219d"/><file name="Jsonconfigsearch.php" hash="ca54f296459a78eaabfe13b5e1978608"/><file name="Simplexml.php" hash="7f537b7a30b9c3c17382d0aa108e7f0c"/></dir><dir name="Model"><file name="Configsearch.php" hash="a07be252fbb112e42b2313916555234f"/><file name="Observer.php" hash="76980697dac5ee9de397a7d445b861b2"/></dir><dir name="controllers"><dir name="Adminhtml"><file name="AlanstormdotcomsystemsearchController.php" hash="f80b12dc0b1ae7bd7bec8c336a76b80e"/></dir></dir><dir name="etc"><file name="config.xml" hash="f534036cf30b1347384d583ddedb08c8"/></dir><dir name="images"><file name="left.gif" hash="c1da3e89cc4fb46463e32f9ca6a66d3e"/><file name="right.gif" hash="1214f3e4f3689a5bc4b8468f2a757910"/></dir><dir name="phtml"><file name="prototype.phtml" hash="ed9b4dfaf14915693c209ee9aefb2d32"/><file name="results.phtml" hash="127f2400470f47a2b0b3c021a19a83ef"/><file name="searchform.phtml" hash="6d50fc769c3d046cd12d463385e5e57c"/></dir></dir></dir></target><target name="mage"><dir name="app"><dir name="etc"><dir name="modules"><file name="Alanstormdotcom_Systemsearch.xml" hash="2f54bb703f2ca6f9b8c4771d9c174523"/></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies/>
|
18 |
</package>
|
skin/adminhtml/default/default/images/alanstormdotcom/left.gif
DELETED
Binary file
|
skin/adminhtml/default/default/images/alanstormdotcom/right.gif
DELETED
Binary file
|