Version Notes
1.6.0.0
Download this release
Release Info
Developer | Magento Core Team |
Extension | Interface_Install_Default |
Version | 1.6.0.0 |
Comparing to | |
See all releases |
Code changes from version 1.5.1.0 to 1.6.0.0
- app/design/install/default/default/layout/main.xml +9 -2
- app/design/install/default/default/template/install/begin.phtml +1 -1
- app/design/install/default/default/template/install/config.phtml +5 -40
- app/design/install/default/default/template/install/create_admin.phtml +1 -1
- app/design/install/default/default/template/install/db/main.phtml +75 -0
- app/design/install/default/default/template/install/db/mysql4.phtml +65 -0
- app/design/install/default/default/template/install/download.phtml +1 -1
- app/design/install/default/default/template/install/end.phtml +1 -1
- app/design/install/default/default/template/install/locale.phtml +1 -1
- app/design/install/default/default/template/install/state.phtml +1 -1
- app/design/install/default/default/template/page.phtml +2 -1
- package.xml +6 -6
app/design/install/default/default/layout/main.xml
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
*
|
22 |
* @category design
|
23 |
* @package default_default
|
24 |
-
* @copyright Copyright (c)
|
25 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
*/
|
27 |
|
@@ -32,7 +32,14 @@
|
|
32 |
<block type="core/template" name="root" output="toHtml">
|
33 |
<action method="setTemplate"><template>page.phtml</template></action>
|
34 |
<block type="core/text_list" name="left" as="left"/>
|
35 |
-
<block type="core/text_list" name="content" as="content"/>
|
36 |
</block>
|
|
|
37 |
</install_wizard>
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
</layout>
|
21 |
*
|
22 |
* @category design
|
23 |
* @package default_default
|
24 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
25 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
26 |
*/
|
27 |
|
32 |
<block type="core/template" name="root" output="toHtml">
|
33 |
<action method="setTemplate"><template>page.phtml</template></action>
|
34 |
<block type="core/text_list" name="left" as="left"/>
|
35 |
+
<block type="core/text_list" name="content" as="content" />
|
36 |
</block>
|
37 |
+
<block type="install/db_main" name="database" as="database"/>
|
38 |
</install_wizard>
|
39 |
+
<install_wizard_config>
|
40 |
+
<reference name="database">
|
41 |
+
<action method="setTemplate"><template>install/db/main.phtml</template></action>
|
42 |
+
<action method="addDatabaseBlock"><type>mysql4</type><block>install/db_type_mysql4</block><template>install/db/mysql4.phtml</template></action>
|
43 |
+
</reference>
|
44 |
+
</install_wizard_config>
|
45 |
</layout>
|
app/design/install/default/default/template/install/begin.phtml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
-
* @copyright Copyright (c)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
app/design/install/default/default/template/install/config.phtml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
-
* @copyright Copyright (c)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
@@ -28,53 +28,18 @@
|
|
28 |
* Install configuration template
|
29 |
*
|
30 |
* @see Mage_Install_Block_Config
|
|
|
31 |
*/
|
32 |
?>
|
33 |
<div class="page-head">
|
34 |
<h3><?php echo $this->__('Configuration') ?></h3>
|
35 |
</div>
|
36 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
37 |
-
|
38 |
<?php if($this->getInstaller()->getServerCheckStatus()): ?>
|
39 |
<form action="<?php echo $this->getPostUrl() ?>" method="post" id="form-validate">
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
<ul>
|
44 |
-
<li>
|
45 |
-
<div class="input-box">
|
46 |
-
<label for="host"><?php echo $this->__('Host') ?> <span class="required">*</span></label><br />
|
47 |
-
<input type="text" name="config[db_host]" id="host" value="<?php echo $this->getFormData()->getDbHost() ?>" title="<?php echo $this->__('Database host') ?>" class="required-entry input-text" />
|
48 |
-
<p style="margin-top:4px; line-height:1.3em; color:#666;">
|
49 |
-
<small><?php echo $this->__('You can specify server port, ex.: localhost:3307<br />If you are not using default UNIX socket, you can specify it here instead of host, ex.: /var/run/mysqld/mysqld.sock') ?></small>
|
50 |
-
</p>
|
51 |
-
</div>
|
52 |
-
<div class="input-box">
|
53 |
-
<label for="dbname"><?php echo $this->__('Database Name') ?> <span class="required">*</span></label><br />
|
54 |
-
<input type="text" name="config[db_name]" id="dbname" value="<?php echo $this->getFormData()->getDbName() ?>" title="<?php echo $this->__('Database Name') ?>" class="required-entry input-text" />
|
55 |
-
</div>
|
56 |
-
</li>
|
57 |
-
<li>
|
58 |
-
<div class="input-box">
|
59 |
-
<label for="user"><?php echo $this->__('User Name') ?> <span class="required">*</span></label><br />
|
60 |
-
<input type="text" name="config[db_user]" id="user" value="<?php echo $this->getFormData()->getDbUser() ?>" title="<?php echo $this->__('Database user name') ?>" class="required-entry input-text" />
|
61 |
-
</div>
|
62 |
-
<div class="input-box">
|
63 |
-
<label for="password"><?php echo $this->__('User Password') ?></label><br />
|
64 |
-
<input type="password" name="config[db_pass]" id="password" value="" title="<?php echo $this->__('Database user password') ?>" class="input-text" />
|
65 |
-
</div>
|
66 |
-
</li>
|
67 |
-
<li>
|
68 |
-
<div class="input-box">
|
69 |
-
<label for="prefix"><?php echo $this->__('Tables Prefix') ?></label><br />
|
70 |
-
<input type="text" name="config[db_prefix]" id="prefix" value="<?php echo $this->getFormData()->getDbPrefix() ?>" title="<?php echo $this->__('Tables Prefix') ?>" class="validate-data input-text" />
|
71 |
-
<p style="margin-top:4px; line-height:1.3em; color:#666;">
|
72 |
-
<small><?php echo $this->__('(Optional. Leave blank for no prefix)') ?></small>
|
73 |
-
</p>
|
74 |
-
</div>
|
75 |
-
</li>
|
76 |
-
</ul>
|
77 |
-
</fieldset>
|
78 |
|
79 |
<fieldset class="group-select">
|
80 |
<legend><?php echo $this->__('Web access options') ?></legend>
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
28 |
* Install configuration template
|
29 |
*
|
30 |
* @see Mage_Install_Block_Config
|
31 |
+
* @var $this Mage_Install_Block_Config
|
32 |
*/
|
33 |
?>
|
34 |
<div class="page-head">
|
35 |
<h3><?php echo $this->__('Configuration') ?></h3>
|
36 |
</div>
|
37 |
<?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
|
|
|
38 |
<?php if($this->getInstaller()->getServerCheckStatus()): ?>
|
39 |
<form action="<?php echo $this->getPostUrl() ?>" method="post" id="form-validate">
|
40 |
+
|
41 |
+
<!-- database connection -->
|
42 |
+
<?php echo $this->getLayout()->getBlock('database')->toHtml() ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
|
44 |
<fieldset class="group-select">
|
45 |
<legend><?php echo $this->__('Web access options') ?></legend>
|
app/design/install/default/default/template/install/create_admin.phtml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
-
* @copyright Copyright (c)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
app/design/install/default/default/template/install/db/main.phtml
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Install database configuration template
|
29 |
+
*
|
30 |
+
* @see Mage_Install_Block_Config
|
31 |
+
* @var $this Mage_Install_Block_Config
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<script type="text/javascript">
|
35 |
+
//<![CDATA[
|
36 |
+
var dbTypeIds = [];
|
37 |
+
function showContent(select)
|
38 |
+
{
|
39 |
+
dbTypeIds.each(function (name) {
|
40 |
+
$(name + '_conn_form').hide()
|
41 |
+
});
|
42 |
+
$(select.value + '_conn_form').show();
|
43 |
+
}
|
44 |
+
//]]>
|
45 |
+
</script>
|
46 |
+
|
47 |
+
<fieldset class="group-select">
|
48 |
+
<legend><?php echo $this->__('Connection') ?></legend>
|
49 |
+
<h4 class="legend"><?php echo $this->__('Database Connection') ?></h4>
|
50 |
+
<ul>
|
51 |
+
<?php $dbTypeOptions = $this->getDatabaseBlocks(); ?>
|
52 |
+
<?php if (count($dbTypeOptions) > 0): ?>
|
53 |
+
<li>
|
54 |
+
<div class="input-box">
|
55 |
+
<label for="prefix"><?php echo $this->__('Database Type') ?></label><br />
|
56 |
+
<select name="config[db_model]" onchange="showContent(this)">
|
57 |
+
<?php foreach($dbTypeOptions as $block): ?>
|
58 |
+
<option value="<?php echo $block->getIdPrefix()?>" <?php if($this->getFormData()->getDbModel() == $block->getIdPrefix()):?>selected="selected"<?php endif;?>><?php echo $block->getTitle()?></option>
|
59 |
+
<?php endforeach; ?>
|
60 |
+
</select>
|
61 |
+
</div>
|
62 |
+
</li>
|
63 |
+
<?php endif ?>
|
64 |
+
|
65 |
+
<?php foreach ($dbTypeOptions as $block): ?>
|
66 |
+
<script type="text/javascript">
|
67 |
+
//<![CDATA[
|
68 |
+
dbTypeIds[dbTypeIds.length] = "<?php echo $block->getIdPrefix(); ?>";
|
69 |
+
//]]>
|
70 |
+
</script>
|
71 |
+
<?php $block = $this->getDatabaseBlock($block->getIdPrefix()) ?>
|
72 |
+
<div id="<?php echo $block->getIdPrefix() ?>_conn_form" <?php if($this->getFormData()->getDbModel() != $block->getIdPrefix()):?>style="display:none;"<?php endif;?>><?php echo $block->toHtml(); ?></div>
|
73 |
+
<?php endforeach; ?>
|
74 |
+
</ul>
|
75 |
+
</fieldset>
|
app/design/install/default/default/template/install/db/mysql4.phtml
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Magento
|
4 |
+
*
|
5 |
+
* NOTICE OF LICENSE
|
6 |
+
*
|
7 |
+
* This source file is subject to the Academic Free License (AFL 3.0)
|
8 |
+
* that is bundled with this package in the file LICENSE_AFL.txt.
|
9 |
+
* It is also available through the world-wide-web at this URL:
|
10 |
+
* http://opensource.org/licenses/afl-3.0.php
|
11 |
+
* If you did not receive a copy of the license and are unable to
|
12 |
+
* obtain it through the world-wide-web, please send an email
|
13 |
+
* to license@magentocommerce.com so we can send you a copy immediately.
|
14 |
+
*
|
15 |
+
* DISCLAIMER
|
16 |
+
*
|
17 |
+
* Do not edit or add to this file if you wish to upgrade Magento to newer
|
18 |
+
* versions in the future. If you wish to customize Magento for your
|
19 |
+
* needs please refer to http://www.magentocommerce.com for more information.
|
20 |
+
*
|
21 |
+
* @category design
|
22 |
+
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
+
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Install mysql database configuration template
|
29 |
+
*
|
30 |
+
* @see Mage_Install_Block_Config
|
31 |
+
* @var $this Mage_Install_Block_Config
|
32 |
+
*/
|
33 |
+
?>
|
34 |
+
<li>
|
35 |
+
<div class="input-box">
|
36 |
+
<label for="host"><?php echo $this->__('Host') ?> <span class="required">*</span></label><br />
|
37 |
+
<input type="text" name="connection[<?php echo $this->getIdPrefix()?>][db_host]" id="host" value="<?php echo $this->getFormData()->getDbHost() ?>" title="<?php echo $this->__('Database host') ?>" class="required-entry input-text" />
|
38 |
+
<p style="margin-top:4px; line-height:1.3em; color:#666;">
|
39 |
+
<small><?php echo $this->__('You can specify server port, ex.: localhost:3307<br />If you are not using default UNIX socket, you can specify it here instead of host, ex.: /var/run/mysqld/mysqld.sock') ?></small>
|
40 |
+
</p>
|
41 |
+
</div>
|
42 |
+
<div class="input-box">
|
43 |
+
<label for="dbname"><?php echo $this->__('Database Name') ?> <span class="required">*</span></label><br />
|
44 |
+
<input type="text" name="connection[<?php echo $this->getIdPrefix()?>][db_name]" id="dbname" value="<?php echo $this->getFormData()->getDbName() ?>" title="<?php echo $this->__('Database Name') ?>" class="required-entry input-text" />
|
45 |
+
</div>
|
46 |
+
</li>
|
47 |
+
<li>
|
48 |
+
<div class="input-box">
|
49 |
+
<label for="user"><?php echo $this->__('User Name') ?> <span class="required">*</span></label><br />
|
50 |
+
<input type="text" name="connection[<?php echo $this->getIdPrefix()?>][db_user]" id="user" value="<?php echo $this->getFormData()->getDbUser() ?>" title="<?php echo $this->__('Database user name') ?>" class="required-entry input-text" />
|
51 |
+
</div>
|
52 |
+
<div class="input-box">
|
53 |
+
<label for="password"><?php echo $this->__('User Password') ?></label><br />
|
54 |
+
<input type="password" name="connection[<?php echo $this->getIdPrefix()?>][db_pass]" id="password" value="" title="<?php echo $this->__('Database user password') ?>" class="input-text" />
|
55 |
+
</div>
|
56 |
+
</li>
|
57 |
+
<li>
|
58 |
+
<div class="input-box">
|
59 |
+
<label for="prefix"><?php echo $this->__('Tables Prefix') ?></label><br />
|
60 |
+
<input type="text" name="connection[<?php echo $this->getIdPrefix()?>][db_prefix]" id="prefix" value="<?php echo $this->getFormData()->getDbPrefix() ?>" title="<?php echo $this->__('Tables Prefix') ?>" class="validate-data input-text" />
|
61 |
+
<p style="margin-top:4px; line-height:1.3em; color:#666;">
|
62 |
+
<small><?php echo $this->__('(Optional. Leave blank for no prefix)') ?></small>
|
63 |
+
</p>
|
64 |
+
</div>
|
65 |
+
</li>
|
app/design/install/default/default/template/install/download.phtml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
-
* @copyright Copyright (c)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
app/design/install/default/default/template/install/end.phtml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
-
* @copyright Copyright (c)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
app/design/install/default/default/template/install/locale.phtml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
-
* @copyright Copyright (c)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
|
app/design/install/default/default/template/install/state.phtml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
-
* @copyright Copyright (c)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
?>
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
?>
|
app/design/install/default/default/template/page.phtml
CHANGED
@@ -20,7 +20,7 @@
|
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
-
* @copyright Copyright (c)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
?>
|
@@ -40,6 +40,7 @@
|
|
40 |
|
41 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>prototype/prototype.js"></script>
|
42 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>prototype/validation.js"></script>
|
|
|
43 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>mage/translate.js" ></script>
|
44 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>varien/js.js"></script>
|
45 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>varien/form.js"></script>
|
20 |
*
|
21 |
* @category design
|
22 |
* @package default_default
|
23 |
+
* @copyright Copyright (c) 2011 Magento Inc. (http://www.magentocommerce.com)
|
24 |
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
25 |
*/
|
26 |
?>
|
40 |
|
41 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>prototype/prototype.js"></script>
|
42 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>prototype/validation.js"></script>
|
43 |
+
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>scriptaculous/effects.js"></script>
|
44 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>mage/translate.js" ></script>
|
45 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>varien/js.js"></script>
|
46 |
<script type="text/javascript" src="<?php echo $this->getJsUrl() ?>varien/form.js"></script>
|
package.xml
CHANGED
@@ -1,18 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Interface_Install_Default</name>
|
4 |
-
<version>1.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Default interface for Install</summary>
|
10 |
<description>Default interface for Install</description>
|
11 |
-
<notes>1.
|
12 |
<authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
|
13 |
-
<date>2011-
|
14 |
-
<time>
|
15 |
-
<contents><target name="magedesign"><dir name="install"><dir name="default"><dir name="default"><dir name="layout"><file name="main.xml" hash="
|
16 |
<compatible/>
|
17 |
-
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.
|
18 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Interface_Install_Default</name>
|
4 |
+
<version>1.6.0.0</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://opensource.org/licenses/afl-3.0.php">AFL v3.0</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Default interface for Install</summary>
|
10 |
<description>Default interface for Install</description>
|
11 |
+
<notes>1.6.0.0</notes>
|
12 |
<authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
|
13 |
+
<date>2011-08-18</date>
|
14 |
+
<time>08:29:34</time>
|
15 |
+
<contents><target name="magedesign"><dir name="install"><dir name="default"><dir name="default"><dir name="layout"><file name="main.xml" hash="633e381cfa2795533508c96f0f1835cc"/></dir><dir name="template"><dir name="install"><file name="begin.phtml" hash="f6c4ff14797c5a761515043228e05f31"/><file name="config.phtml" hash="a407acfe360e7ec8be111222ea26cb29"/><file name="create_admin.phtml" hash="3a87e351784a39ff23e35b8acbd642d2"/><dir name="db"><file name="main.phtml" hash="69cc03cb951a7f64812940cda624389b"/><file name="mysql4.phtml" hash="226e011092a2a7018135ce1111f89eb5"/></dir><file name="download.phtml" hash="227c24efc8891c35f53fd1a6e1eadd3c"/><file name="end.phtml" hash="b7cb9f445f4a7ef45e6a0ea836502288"/><file name="locale.phtml" hash="6d48d0ddb30f7c700b715aa80cac326a"/><file name="state.phtml" hash="1fa1a5b7d08ff3c854b3134d569b76d0"/></dir><file name="page.phtml" hash="f0ba1fb8a2c2b2ea0fda428f1ffd4b2e"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="install"><dir name="default"><dir name="default"><dir name="css"><file name="boxes.css" hash="31da7dcdca502c3fca21cbddc160f581"/><file name="clears.css" hash="4018383aa0ccf4a455b30714905d53a5"/><file name="ie7minus.css" hash="b973a69ca4e691f21ee58b258f5bf12c"/><file name="iestyles.css" hash="7fd4d1acd42b155b7b7ae10272b235d6"/><file name="reset.css" hash="e9397eec4802597f92bf50ccd982f840"/></dir><file name="favicon.ico" hash="88733ee53676a47fc354a61c32516e82"/><dir name="images"><file name="error_msg_icon.gif" hash="e4f28607f075a105e53fa3113d84bd26"/><file name="footer_bg.gif" hash="d59784af16fd95ea82226e5708a89232"/><file name="footer_container_bg.gif" hash="d468e3943943cbbf711586e69d40ca42"/><file name="footer_info_separator.gif" hash="7da64eefaf4da3855ab6ee76dbced0c2"/><file name="footer_informational_bg.gif" hash="72d37f4b2ea747bf8969c2654ad1d1e0"/><file name="footer_left.gif" hash="2b15a54bea9409a75c142d14a62f0149"/><file name="footer_legality_bg.gif" hash="4eb1602e3369dccd901ffe98ea0fd4b3"/><file name="footer_right.gif" hash="a45eaf35c8797d299bd4d9b936528e8f"/><file name="header_bg.gif" hash="795c6de754d0d49717ed08d5cd8168c8"/><file name="header_nav_bg.gif" hash="80c6a18686eb0243e06d6176506a2502"/><file name="header_top_bg.jpg" hash="143f524392ee62fcc8183f5930d7258b"/><file name="header_top_container_bg.jpg" hash="294c18f3f6b838bba06ae41dd3c3d638"/><file name="i_notice.gif" hash="ebd56dc80b8346e10e93628bc0e6c372"/><file name="logo.gif" hash="48b7eb03807fdf80bdfb19b872cf84b8"/><file name="main_bg.gif" hash="cf18ba9f7c7e6b058b439cde1a897e9c"/><file name="main_container_bg.gif" hash="a8f5717873dc6cf8f6bd22924b5838fe"/><file name="note_msg_icon.gif" hash="e774ee481a2820789c1a77112377c4e0"/><file name="success_msg_icon.gif" hash="834dfafd5f8b44c4b24a4c00add56fcf"/><file name="validation_advice_bg.gif" hash="b85432906de8985a8b14eeb2dc652d3c"/></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
+
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><package><name>Mage_Core_Modules</name><channel>community</channel><min>1.6.0.0</min><max>1.6.1.0</max></package></required></dependencies>
|
18 |
</package>
|