Interface_Install_Default - Version 1.5.1.0

Version Notes

1.5.1.0

Download this release

Release Info

Developer Magento Core Team
Extension Interface_Install_Default
Version 1.5.1.0
Comparing to
See all releases


Version 1.5.1.0

Files changed (35) hide show
  1. app/design/install/default/default/layout/main.xml +38 -0
  2. app/design/install/default/default/template/install/begin.phtml +69 -0
  3. app/design/install/default/default/template/install/config.phtml +177 -0
  4. app/design/install/default/default/template/install/create_admin.phtml +97 -0
  5. app/design/install/default/default/template/install/download.phtml +127 -0
  6. app/design/install/default/default/template/install/end.phtml +48 -0
  7. app/design/install/default/default/template/install/locale.phtml +77 -0
  8. app/design/install/default/default/template/install/state.phtml +47 -0
  9. app/design/install/default/default/template/page.phtml +121 -0
  10. package.xml +18 -0
  11. skin/install/default/default/css/boxes.css +389 -0
  12. skin/install/default/default/css/clears.css +69 -0
  13. skin/install/default/default/css/ie7minus.css +38 -0
  14. skin/install/default/default/css/iestyles.css +72 -0
  15. skin/install/default/default/css/reset.css +72 -0
  16. skin/install/default/default/favicon.ico +0 -0
  17. skin/install/default/default/images/error_msg_icon.gif +0 -0
  18. skin/install/default/default/images/footer_bg.gif +0 -0
  19. skin/install/default/default/images/footer_container_bg.gif +0 -0
  20. skin/install/default/default/images/footer_info_separator.gif +0 -0
  21. skin/install/default/default/images/footer_informational_bg.gif +0 -0
  22. skin/install/default/default/images/footer_left.gif +0 -0
  23. skin/install/default/default/images/footer_legality_bg.gif +0 -0
  24. skin/install/default/default/images/footer_right.gif +0 -0
  25. skin/install/default/default/images/header_bg.gif +0 -0
  26. skin/install/default/default/images/header_nav_bg.gif +0 -0
  27. skin/install/default/default/images/header_top_bg.jpg +0 -0
  28. skin/install/default/default/images/header_top_container_bg.jpg +0 -0
  29. skin/install/default/default/images/i_notice.gif +0 -0
  30. skin/install/default/default/images/logo.gif +0 -0
  31. skin/install/default/default/images/main_bg.gif +0 -0
  32. skin/install/default/default/images/main_container_bg.gif +0 -0
  33. skin/install/default/default/images/note_msg_icon.gif +0 -0
  34. skin/install/default/default/images/success_msg_icon.gif +0 -0
  35. skin/install/default/default/images/validation_advice_bg.gif +0 -0
app/design/install/default/default/layout/main.xml ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <!--
3
+ /**
4
+ * Magento
5
+ *
6
+ * NOTICE OF LICENSE
7
+ *
8
+ * This source file is subject to the Academic Free License (AFL 3.0)
9
+ * that is bundled with this package in the file LICENSE_AFL.txt.
10
+ * It is also available through the world-wide-web at this URL:
11
+ * http://opensource.org/licenses/afl-3.0.php
12
+ * If you did not receive a copy of the license and are unable to
13
+ * obtain it through the world-wide-web, please send an email
14
+ * to license@magentocommerce.com so we can send you a copy immediately.
15
+ *
16
+ * DISCLAIMER
17
+ *
18
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
19
+ * versions in the future. If you wish to customize Magento for your
20
+ * needs please refer to http://www.magentocommerce.com for more information.
21
+ *
22
+ * @category design
23
+ * @package default_default
24
+ * @copyright Copyright (c) 2010 Magento Inc. (http://www.magentocommerce.com)
25
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
26
+ */
27
+
28
+ -->
29
+ <layout>
30
+ <install_wizard>
31
+ <!-- Mage_Install -->
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>
app/design/install/default/default/template/install/begin.phtml ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ * Installation start page
29
+ *
30
+ * @see Mage_Install_Block_Begin
31
+ */
32
+ ?>
33
+ <div class="page-head">
34
+ <h3><?php echo $this->__("Welcome to Magento's Installation Wizard") ?>!</h3>
35
+ </div>
36
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
37
+ <?php if(count($this->getMessagesBlock()->getMessages())==0): ?>
38
+ <form action="<?php echo $this->getPostUrl() ?>" method="post">
39
+ <div style="height:20em; border:1px solid #ccc; margin-bottom:8px; padding:5px; background:#fff; overflow: auto; overflow-x:hidden; overflow-y:scroll;">
40
+ <?php echo $this->getLicenseHtml() ?>
41
+ </div>
42
+
43
+ <script type="text/javascript">
44
+ //<![CDATA[
45
+ function changeSubmitStatus(obj) {
46
+ $('submitButton').disabled = !obj.checked;
47
+ if(obj.checked){
48
+ $('submitButton').setStyle({'background':'#f18200','borderColor':'','cursor':'pointer','color':'#C73615'});
49
+ }
50
+ else{
51
+ $('submitButton').setStyle({'background':'#bbb','borderColor':'#bbb','cursor':'default','color':'white'});
52
+ }
53
+ }
54
+ //]]>
55
+ </script>
56
+ <p>
57
+ <input type="checkbox" name="agree" value="1" id="agree" onclick="changeSubmitStatus(this)" class="checkbox" />
58
+ <label for="agree"><?php echo $this->__('I agree to the above terms and conditions.') ?></label>
59
+ </p>
60
+ <div class="button-set">
61
+ <button class="form-button" type="submit" id="submitButton" disabled="disabled"><span><?php echo $this->__('Continue') ?></span></button>
62
+ </div>
63
+ </form>
64
+ <script type="text/javascript">
65
+ //<![CDATA[
66
+ changeSubmitStatus($('agree'));
67
+ //]]>
68
+ </script>
69
+ <?php endif ?>
app/design/install/default/default/template/install/config.phtml ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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 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
+ <fieldset class="group-select">
41
+ <legend><?php echo $this->__('Connection') ?></legend>
42
+ <h4 class="legend"><?php echo $this->__('Database Connection') ?></h4>
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>
81
+ <h4 class="legend"><?php echo $this->__('Web access options') ?></h4>
82
+ <ul>
83
+ <li>
84
+ <label for="base_url"><?php echo $this->__('Base URL') ?> <span class="required">*</span></label><br />
85
+ <input type="text" name="config[unsecure_base_url]" id="base_url" value="<?php echo $this->getFormData()->getUnsecureBaseUrl() ?>" title="<?php echo $this->__('Base URL') ?>" class="required-entry validate-url input-text" />
86
+ </li>
87
+ <li>
88
+ <label for="admin_frontname"><?php echo $this->__('Admin Path') ?> <span class="required">*</span></label><br />
89
+ <input type="text" name="config[admin_frontname]" id="admin_frontname" value="<?php echo $this->getFormData()->getAdminFrontname() ?>" title="<?php echo $this->__('Admin Path') ?>" class="required-entry validate-data input-text" />
90
+ <p style="margin-top:4px; line-height:1.3em; color:#666;">
91
+ <small><?php echo $this->__('Additional path added after Base URL to access your Administrative Panel (e.g. admin, backend, control etc.).') ?></small>
92
+ </p>
93
+ </li>
94
+ <li>
95
+ <input type="checkbox" name="config[enable_charts]" id="enable_charts" value="1" <?php if($this->getFormData()->getEnableCharts()): ?>checked="checked"<?php endif; ?> />
96
+ <label for="enable_charts"><?php echo $this->__('Enable Charts') ?></label><br />
97
+ <p style="margin-top:4px; line-height:1.3em; color:#666;">
98
+ <small><?php echo $this->__('Enable this option if you want the charts to be displayed on Dashboard.') ?></small>
99
+ </p>
100
+ </li>
101
+ <li>
102
+ <input type="checkbox" name="skip_base_url_validation" id="skip_base_url_validation" value="1" <?php if($this->getSkipBaseUrlValidation()): ?>checked="checked"<?php endif; ?> />
103
+ <label for="skip_base_url_validation"><?php echo $this->__('Skip Base URL Validation Before the Next Step') ?></label><br />
104
+ <p style="margin-top:4px; line-height:1.3em; color:#666;">
105
+ <small><?php echo $this->__('Check this box only if it is not possible to automatically validate the Base URL.') ?></small>
106
+ </p>
107
+ </li>
108
+ <li>
109
+ <input type="checkbox" name="config[use_rewrites]" id="use_rewrites" value="1" <?php if($this->getFormData()->getUseRewrites()): ?>checked="checked"<?php endif; ?> />
110
+ <label for="use_rewrites"><?php echo $this->__('Use Web Server (Apache) Rewrites') ?></label><br />
111
+ <p style="margin-top:4px; line-height:1.3em; color:#666;">
112
+ <small>
113
+ <?php echo $this->__('You could enable this option to use web server rewrites functionality for improved search engines optimization.') ?><br />
114
+ <strong><?php echo $this->__('Please make sure that <code>mod_rewrite</code> is enabled in Apache configuration.') ?></strong>
115
+ </small>
116
+ </p>
117
+ </li>
118
+ <li>
119
+ <input type="checkbox" name="config[use_secure]" id="use_secure" value="1" <?php if($this->getFormData()->getUseSecure()): ?>checked="checked"<?php endif ?> onclick="this.checked ? $('use_secure_options').show() : $('use_secure_options').hide(); return true;" />
120
+ <label for="use_secure"><?php echo $this->__('Use Secure URLs (SSL)') ?></label><br />
121
+ <p style="margin-top:4px; line-height:1.3em; color:#666;">
122
+ <small><?php echo $this->__('Enable this option only if you have SSL available.') ?></small>
123
+ </p>
124
+ </li>
125
+ </ul>
126
+ <ul id="use_secure_options" <?php if(!$this->getFormData()->getUseSecure()): ?>style="display:none"<?php endif ?>>
127
+ <li>
128
+ <label for="secure_base_url"><?php echo $this->__('Secure Base URL') ?> <span class="required">*</span></label><br />
129
+ <input type="text" name="config[secure_base_url]" id="secure_base_url" value="<?php echo $this->getFormData()->getSecureBaseUrl() ?>" title="<?php echo $this->__('Secure Base URL') ?>" class="required-entry validate-url input-text" />
130
+ <p style="margin-top:4px; line-height:1.3em; color:#666;">
131
+ <small><?php echo $this->__('Provide a complete base URL for SSL connection. For example: %s', '<strong>https://www.mydomain.com/magento/</strong>') ?></small>
132
+ </p>
133
+ </li>
134
+ <li>
135
+ <input type="checkbox" name="config[use_secure_admin]" id="use_secure_admin" value="1" <?php if($this->getFormData()->getUseSecureAdmin()): ?>checked="checked"<?php endif; ?> />
136
+ <label for="use_secure_admin"><?php echo $this->__('Run admin interface with SSL') ?></label><br />
137
+ <!--<p style="margin-top:4px; line-height:1.3em; color:#666;">
138
+ <small><?php echo $this->__('') ?></small>
139
+ </p>-->
140
+ </li>
141
+ <li>
142
+ <input type="checkbox" name="skip_url_validation" id="skip_url_validation" value="1" <?php if($this->getSkipUrlValidation()): ?>checked="checked"<?php endif; ?> />
143
+ <label for="skip_url_validation"><?php echo $this->__('Skip Secure URL validation before next step') ?></label><br />
144
+ <p style="margin-top:4px; line-height:1.3em; color:#666;">
145
+ <small><?php echo $this->__('Check this box only if it is not possible to automatically validate Secure URL, for example if HTTP authentication is required.') ?></small>
146
+ </p>
147
+ </li>
148
+ </ul>
149
+ </fieldset>
150
+
151
+ <fieldset class="group-select">
152
+ <legend><?php echo $this->__('Session Storage Options') ?></legend>
153
+ <h4 class="legend"><?php echo $this->__('Session Storage Options') ?></h4>
154
+ <ul>
155
+ <li>
156
+ <div class="input-box">
157
+ <label for="password"><?php echo $this->__('Save Session Data In') ?></label><br />
158
+ <?php echo $this->getSessionSaveSelect() ?>
159
+ </div>
160
+ </li>
161
+ </ul>
162
+ </fieldset>
163
+
164
+ <div class="button-set">
165
+ <p class="required">* <?php echo $this->__('Required Fields') ?></p>
166
+ <button class="form-button" type="submit"><span><?php echo $this->__('Continue') ?></span></button>
167
+ </div>
168
+ </form>
169
+ <script type="text/javascript">
170
+ var dataForm = new VarienForm('form-validate');
171
+ </script>
172
+ <?php else: ?>
173
+ <div><?php echo $this->__('Please set all required settings before clicking Continue') ?></div>
174
+ <div class="button-set">
175
+ <button class="form-button" type="button" onclick="setLocation('<?php echo $this->getUrl('*/*/*', array('_current'=>true)) ?>')"><span><?php echo $this->__('Continue') ?></span></button>
176
+ </div>
177
+ <?php endif; ?>
app/design/install/default/default/template/install/create_admin.phtml ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ * Administrator account installation
29
+ *
30
+ * @see Mage_Install_Block_Admin
31
+ */
32
+ ?>
33
+ <div class="page-head">
34
+ <h3><?php echo $this->__('Create Admin Account') ?></h3>
35
+ </div>
36
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
37
+ <form action="<?php echo $this->getPostUrl() ?>" method="post" id="form-validate">
38
+ <fieldset class="group-select wide">
39
+ <legend><?php echo $this->__('Personal Information') ?></legend>
40
+ <h4 class="legend"><?php echo $this->__('Personal Information') ?></h4>
41
+ <ul>
42
+ <li>
43
+ <div class="input-box">
44
+ <label for="firstname"><?php echo $this->__('First Name') ?> <span class="required">*</span></label><br/>
45
+ <input type="text" name="admin[firstname]" id="firstname" value="<?php echo $this->getFormData()->getFirstname() ?>" title="<?php echo $this->__('First Name') ?>" class="required-entry input-text"/>
46
+ </div>
47
+ <div class="input-box">
48
+ <label for="lastname"><?php echo $this->__('Last Name') ?> <span class="required">*</span></label><br/>
49
+ <input type="text" name="admin[lastname]" id="lastname" value="<?php echo $this->getFormData()->getLastname() ?>" title="<?php echo $this->__('Last Name') ?>" class="required-entry input-text"/>
50
+ </div>
51
+ </li>
52
+ <li>
53
+ <label for="email_address"><?php echo $this->__('Email') ?> <span class="required">*</span></label><br/>
54
+ <input type="text" name="admin[email]" id="email_address" value="<?php echo $this->getFormData()->getEmail() ?>" title="<?php echo $this->__('Email Address') ?>" class="validate-email required-entry input-text"/>
55
+ </li>
56
+ </ul>
57
+ </fieldset>
58
+ <fieldset class="group-select wide">
59
+ <legend><?php echo $this->__('Login Information') ?></legend>
60
+ <h4 class="legend"><?php echo $this->__('Login Information') ?></h4>
61
+ <ul>
62
+ <li>
63
+ <label for="username"><?php echo $this->__('Username') ?> <span class="required">*</span></label><br/>
64
+ <input type="text" name="admin[username]" id="username" value="<?php echo $this->getFormData()->getUsername() ?>" title="<?php echo $this->__('Username') ?>" class="required-entry input-text"/>
65
+ </li>
66
+ <li>
67
+ <div class="input-box">
68
+ <label for="password"><?php echo $this->__('Password') ?> <span class="required">*</span></label><br/>
69
+ <input type="password" name="admin[new_password]" id="password" title="<?php echo $this->__('Password') ?>" class="required-entry validate-admin-password input-text"/>
70
+ </div>
71
+ <div class="input-box">
72
+ <label for="confirmation"><?php echo $this->__('Confirm Password') ?> <span class="required">*</span></label><br/>
73
+ <input type="password" name="admin[password_confirmation]" title="<?php echo $this->__('Password Confirmation') ?>" id="confirmation" class="required-entry validate-cpassword input-text"/>
74
+ </div>
75
+ </li>
76
+ </ul>
77
+ </fieldset>
78
+ <fieldset class="group-select wide">
79
+ <legend><?php echo $this->__('Encryption Key') ?></legend>
80
+ <h4 class="legend"><?php echo $this->__('Encryption Key') ?></h4>
81
+ <ul>
82
+ <li>
83
+ <input type="text" name="encryption_key" id="encryption_key" value="<?php echo $this->getFormData()->getEncryptionKey() ?>" title="<?php echo $this->__('Encryption Key') ?>" class="input-text"/>
84
+ <p style="margin-top:4px; line-height:1.3em; color:#666;">
85
+ <small><?php echo $this->__('Magento uses this key to encrypt passwords, credit cards and more. If this field is left empty the system will create an encryption key for you and will display it on the next page.') ?></small>
86
+ </p>
87
+ </li>
88
+ </ul>
89
+ </fieldset>
90
+ <div class="button-set">
91
+ <p class="required">* <?php echo $this->__('Required Fields') ?></p>
92
+ <button class="form-button" type="submit"><span><?php echo $this->__('Continue') ?></span></button>
93
+ </div>
94
+ </form>
95
+ <script type="text/javascript">
96
+ var dataForm = new VarienForm('form-validate');
97
+ </script>
app/design/install/default/default/template/install/download.phtml ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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 download choice template
29
+ *
30
+ * @see Mage_Install_Block_Download
31
+ */
32
+ ?>
33
+ <script type="text/javascript">
34
+ function startInstall(state)
35
+ {
36
+ $$('button').each(function(el) {
37
+ el.disabled = true;
38
+ el.addClassName('disabled');
39
+ });
40
+ var install = $('install_iframe');
41
+ install.setStyle({'display':'block', 'width':'100%', 'height':'300px'});
42
+ install.src = '<?php echo $this->getUrl('*/*/install') ?>do/start/state/'+state;
43
+ }
44
+
45
+ function installSuccess()
46
+ {
47
+ alert("<?php echo $this->__("All packages were installed, click 'OK' to continue with installation.") ?>");
48
+ location.href = "<?php echo $this->getNextUrl() ?>";
49
+ $$('button').each(function(el) {
50
+ el.disabled = true;
51
+ el.removeClassName('disabled');
52
+ });
53
+ }
54
+
55
+ function installFailure()
56
+ {
57
+ alert("<?php echo $this->__("There was a problem installing Magento packages. Please read the log, correct errors and try again.") ?>\n<?php echo $this->__("Alternatively you could try the 'Manual Downloads and Upgrades' method.") ?>");
58
+ $$('button').each(function(el) {
59
+ el.disabled = true;
60
+ el.removeClassName('disabled');
61
+ });
62
+ }
63
+
64
+ </script>
65
+ <div class="page-head">
66
+ <h3><?php echo $this->__('Download Magento Core Modules and Updates') ?></h3>
67
+ </div>
68
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
69
+
70
+ <form action="<?php echo $this->getPostUrl() ?>" method="post" id="form-validate">
71
+ <input type="hidden" id="continue" name="continue" value="svn" />
72
+ <?php if($this->hasLocalCopy()): ?>
73
+ <fieldset class="group-select">
74
+ <legend><?php echo $this->__('Full Download / SVN Installation') ?></legend>
75
+ <h4 class="legend"><?php echo $this->__('Full Download / SVN Installation') ?></h4>
76
+
77
+ <p><?php echo $this->__("If you have downloaded the full package or installed Magento through SVN, you should skip packages installation and validation by clicking the button below.") ?></p>
78
+
79
+ <p><button class="form-button" type="submit" onclick="$('continue').value='svn'"><span><?php echo $this->__('Continue Full Download / SVN Installation') ?></span></button></p>
80
+ </fieldset>
81
+ <?php endif; ?>
82
+
83
+ <fieldset class="group-select">
84
+ <legend><?php echo $this->__('Package Management through the Web') ?></legend>
85
+ <h4 class="legend"><?php echo $this->__('Package Management through the Web') ?></h4>
86
+
87
+ <p><?php echo $this->__("If you wish to manage Magento packages through the web admin interface, you will need to have web writeable permissions applied to all Magento folders and files.") ?></p>
88
+ <p><?php echo $this->__("If your server is running on MS Windows, most probably you will not need to change anything.") ?></p>
89
+ <p><?php echo $this->__("If you are running PHP as CGI, your PHP processes may run under the same user as the user you used when uploading Magento files.") ?></p>
90
+ <p><?php echo $this->__("In other cases you will need to make Magento files writeable for the user that the web server process is running under.") ?></p>
91
+
92
+ <h4><?php echo $this->__("Preferred stability: %s", $this->__("BETA")) ?></h4>
93
+ <p><?php echo $this->__("Currently this is the most stable state available for Magento packages.") ?><br/><?php echo $this->__("Choose this if you would like to test frontend and backend functionality.") ?></p>
94
+ <p><button class="form-button" type="button" onclick="startInstall('beta')"><span><?php echo $this->__('Proceed With Automatic Download (%s)', $this->__('Beta')) ?></span></button></p>
95
+ <br/>
96
+ <h4><?php echo $this->__("Preferred stability: %s", $this->__("ALPHA")) ?></h4>
97
+ <p><?php echo $this->__("If you are a developer and would like to have the latest public updates, choose this option.") ?><br/><?php echo $this->__("Please note that it is much less stable than beta.") ?></p>
98
+ <p><button class="form-button" type="button" onclick="startInstall('alpha')"><span><?php echo $this->__('Proceed With Automatic Download (%s)', $this->__('Alpha')) ?></span></button></p>
99
+ <br/>
100
+ <iframe id="install_iframe" src="<?php echo $this->getUrl('*/*/install') ?>" style="display:none" frameborder="no"></iframe>
101
+ </fieldset>
102
+
103
+ <fieldset class="group-select">
104
+ <legend><?php echo $this->__('Manual Downloads and Upgrades') ?></legend>
105
+ <h4 class="legend"><?php echo $this->__('Manual Downloads and Upgrades') ?></h4>
106
+
107
+ <p><?php echo $this->__("If you are running the install wizard over a previously downloaded and installed Magento installation, proceed with this method.") ?></p>
108
+ <p><?php echo $this->__("If you do not wish or are not able to have Magento folders writeable for the web process, you could use PEAR executable located in the root of Magento installation.") ?></p>
109
+ <p><?php echo $this->__("Please note that only UNIX, Linux and Mac OS X shells are currently supported. For Windows use the '%s' option.", $this->__('Package Management through the Web')) ?></p>
110
+ <p><?php echo $this->__("Run this in your shell from Magento root folder:") ?></p>
111
+ <pre>
112
+ ./pear mage-setup
113
+ ./pear install mage-core/Mage_Pear_Helpers mage-core/Lib_ZF mage-core/Lib_Varien
114
+ ./pear install mage-core/Mage_All mage-core/Interface_Install_Default
115
+ ./pear install mage-core/Interface_Frontend_Default mage-core/Interface_Adminhtml_Default
116
+
117
+ </pre>
118
+ <p><?php echo $this->__("After successfull installation please click the button below.") ?></p>
119
+
120
+ <p><button class="form-button" type="submit" onclick="$('continue').value='manual'"><span><?php echo $this->__('Continue After Manual Download') ?></span></button></p>
121
+ </fieldset>
122
+
123
+ </form>
124
+
125
+ <script type="text/javascript">
126
+ var tabs = new Varien.Tabs('.tabs');
127
+ </script>
app/design/install/default/default/template/install/end.phtml ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ * Installation end page
29
+ *
30
+ * @see Mage_Install_Block_End
31
+ */
32
+ ?>
33
+ <div class="page-head">
34
+ <h3><?php echo $this->__("You're All Set") ?>!</h3>
35
+ </div>
36
+ <?php if ($this->getIframeSourceUrl()): ?>
37
+ <iframe id="iframe_box" src="<?php echo $this->getIframeSourceUrl() ?>" frameborder="0" width="650" height="600"></iframe>
38
+ <?php endif; ?>
39
+ <p><?php echo $this->__('Get ready to experience Open-Source eCommerce Evolved.') ?></p>
40
+ <?php if($this->getEncryptionKey()): ?>
41
+ <p><?php echo $this->__('Before you continue to your store, please make a note of your encryption key (Magento uses it to encrypt passwords, credit cards and more).') ?></p>
42
+ <p><strong><big><?php echo $this->getEncryptionKey() ?></big></strong></p>
43
+ <p><?php echo $this->__('(Make sure you keep it in a safe place.)') ?></p>
44
+ <?php endif; ?>
45
+ <div class="button-set">
46
+ <button class="form-button" onclick="window.open('<?php echo $this->getUrl('') ?>')" type="button"><?php echo $this->__('Go to Frontend') ?></button>&nbsp;&nbsp;
47
+ <button class="form-button" onclick="window.open('<?php echo $this->getUrl('adminhtml') ?>')" type="button"><?php echo $this->__('Go to Backend') ?></button>
48
+ </div>
app/design/install/default/default/template/install/locale.phtml ADDED
@@ -0,0 +1,77 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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 localization template
29
+ *
30
+ * @see Mage_Install_Block_Locale
31
+ */
32
+ ?>
33
+ <div class="page-head">
34
+ <h3><?php echo $this->__('Localization') ?></h3>
35
+ </div>
36
+ <?php echo $this->getMessagesBlock()->getGroupedHtml() ?>
37
+
38
+ <form action="<?php echo $this->getPostUrl() ?>" method="get" id="form-validate">
39
+ <fieldset class="group-select">
40
+ <legend><?php echo $this->__('Locale') ?></legend>
41
+ <h4 class="legend"><?php echo $this->__('Locale settings') ?></h4>
42
+ <ul>
43
+ <li>
44
+ <div class="input-box">
45
+ <label for="locale"><?php echo $this->__('Locale') ?> <span class="required">*</span></label><br/>
46
+ <?php echo $this->getLocaleSelect() ?>
47
+ </div>
48
+ </li>
49
+ <li>
50
+ <div class="input-box">
51
+ <label for="timezone"><?php echo $this->__('Time Zone') ?> <span class="required">*</span></label><br/>
52
+ <?php echo $this->getTimezoneSelect() ?>
53
+ </div>
54
+ <div class="input-box">
55
+ <label for="currency"><?php echo $this->__('Default Currency') ?> <span class="required">*</span></label><br/>
56
+ <?php echo $this->getCurrencySelect() ?>
57
+ </div>
58
+ </li>
59
+ </ul>
60
+ </fieldset>
61
+ <div class="button-set">
62
+ <p class="required">* <?php echo $this->__('Required Fields') ?></p>
63
+ <button class="form-button" type="submit"><span><?php echo $this->__('Continue') ?></span></button>
64
+ </div>
65
+ </form>
66
+ <script type="text/javascript">
67
+ function changeLocale(event){
68
+ var elem = Event.element(event);
69
+ if(elem){
70
+ setLocation('<?php echo $this->getChangeUrl() ?>locale/'+elem.value+'/?timezone='+$('timezone').value+'&amp;currency='+$('currency').value);
71
+ }
72
+ }
73
+ var dataForm = new VarienForm('form-validate');
74
+ if($('locale')){
75
+ Event.observe($('locale'), 'change', changeLocale);
76
+ }
77
+ </script>
app/design/install/default/default/template/install/state.phtml ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ <div style="border:1px solid #ccc; background:#f6f6f6;">
28
+ <h2 style="margin-bottom:0; border-bottom:1px solid #ccc; padding:4px 10px; color:#3c5974; font-size:1.4em;"><?php echo $this->__('Installation') ?></h2>
29
+ <ol style="padding:10px; border-top:1px solid #fff;">
30
+ <?php foreach($this->getDownloaderSteps() as $step): ?>
31
+ <li><?php echo $step ?></li>
32
+ <?php endforeach; ?>
33
+ <li><?php echo $this->__('Download')?></li>
34
+ <?php foreach($steps as $_step): ?>
35
+ <li <?php if($_step->getActive()): ?>style="color:green; font-weight:bold; "<?php endif ?>><?php echo $this->__($_step->getCode()) ?></li>
36
+ <?php endforeach ?>
37
+ </ol>
38
+ </div>
39
+
40
+ <br/>
41
+ <p>
42
+ <?php echo $this->__('Having trouble installing Magento?') ?>
43
+ <?php echo $this->__('Check out our') ?> <a href="http://www.magentocommerce.com/install" id="installation_guide_link"><?php echo $this->__('Installation Guide') ?></a>
44
+ <script type="text/javascript">
45
+ $('installation_guide_link').target = "installation_guide";
46
+ </script>
47
+ </p>
app/design/install/default/default/template/page.phtml ADDED
@@ -0,0 +1,121 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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) 2010 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
+ <?php
28
+ /**
29
+ * Template for Mage_Page_Block_Html
30
+ */
31
+ ?>
32
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
33
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
34
+ <head>
35
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
36
+ <title><?php echo Mage::helper('install')->__('Magento Installation Wizard') ?></title>
37
+
38
+ <link rel="icon" href="<?php echo $this->getSkinUrl('favicon.ico') ?>" type="image/x-icon" />
39
+ <link rel="shortcut icon" href="<?php echo $this->getSkinUrl('favicon.ico') ?>" type="image/x-icon" />
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>
46
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl('css/reset.css') ?>" type="text/css" media="all" />
47
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl('css/boxes.css') ?>" type="text/css" media="all" />
48
+ <link rel="stylesheet" href="<?php echo $this->getSkinUrl('css/clears.css') ?>" type="text/css" media="all" />
49
+ <!--[if IE]><link rel="stylesheet" href="<?php echo $this->getSkinUrl('css/iestyles.css') ?>" type="text/css" media="all" /><![endif]-->
50
+ <!--[if lt IE 7]><link rel="stylesheet" href="<?php echo $this->getSkinUrl('css/ie7minus.css') ?>" type="text/css" media="all" /><![endif]-->
51
+
52
+ <?php echo $this->helper('core/js')->getTranslatorScript() ?>
53
+
54
+ </head>
55
+
56
+ <body>
57
+ <!-- [start] header -->
58
+ <div class="header">
59
+ <div class="header-top-container">
60
+ <div class="header-top">
61
+ <h1 id="logo">
62
+ <a href="<?php echo $this->getUrl('') ?>"><img src="<?php echo $this->getSkinUrl('images/logo.gif') ?>" title="<?php echo Mage::helper('install')->__('Magento') ?>" alt="<?php echo Mage::helper('install')->__('Magento') ?>" /></a>
63
+ </h1>
64
+
65
+ <?php echo $this->getChildHtml('topSearch') ?>
66
+
67
+ <div class="quick-access">
68
+ <div class="account-access">
69
+ <strong>&nbsp;<?php echo $this->getWelcome() ?></strong> <?php echo $this->getChildHtml('topLeftLinks') ?>
70
+ </div>
71
+ <div class="shop-access">
72
+ <?php echo $this->getChildHtml('topRightLinks') ?>
73
+ </div>
74
+ </div>
75
+
76
+ </div>
77
+ </div>
78
+ <?php echo $this->getChildHtml('topMenu') ?>
79
+ </div>
80
+ <!-- [end] header -->
81
+
82
+ <!-- [start] middle -->
83
+ <?php echo $this->getChildHtml('store') ?>
84
+ <div class="middle-container">
85
+ <div class="middle col-2-left-layout">
86
+ <?php echo $this->getChildHtml('breadcrumbs') ?>
87
+
88
+ <!-- [start] left -->
89
+ <div class="col-left side-col">
90
+ <?php echo $this->getChildHtml('left') ?>
91
+ </div>
92
+ <div id="main" class="col-main">
93
+ <!-- [start] global messages -->
94
+ <?php echo $this->getChildHtml('global_messages') ?>
95
+ <!-- [end] global messages -->
96
+ <!-- [start] content -->
97
+ <?php echo $this->getChildHtml('content') ?>
98
+ <!-- [end] content -->
99
+ </div>
100
+ </div>
101
+ <!-- [end] center -->
102
+ </div>
103
+ <!-- [end] middle -->
104
+
105
+ <!-- [start] footer -->
106
+ <div class="footer-container">
107
+ <div class="footer">
108
+ <p class="legality">
109
+ <?php echo Mage::helper('install')->__('Help Us to Keep Magento Healthy') ?> - <a href="http://www.magentocommerce.com/bug-tracking" id="bug_tracking_link"><strong><?php echo Mage::helper('install')->__('Report All Bugs') ?></strong></a> <?php echo Mage::helper('install')->__('(ver. %s)', Mage::getVersion()) ?><br/>
110
+ <script type="text/javascript">
111
+ //<![CDATA[
112
+ $('bug_tracking_link').target = "varien_external";
113
+ //]]>
114
+ </script>
115
+ <?php echo Mage::helper('install')->__('Magento is a trademark of Magento Inc. Copyright &copy; %s Magento Inc.', date('Y')) ?>
116
+ </p>
117
+ </div>
118
+ </div>
119
+ <!-- [end] footer -->
120
+ </body>
121
+ </html>
package.xml ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?xml version="1.0"?>
2
+ <package>
3
+ <name>Interface_Install_Default</name>
4
+ <version>1.5.1.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.5.1.0</notes>
12
+ <authors><author><name>Magento Core Team</name><user>core</user><email>core@magentocommerce.com</email></author></authors>
13
+ <date>2011-04-26</date>
14
+ <time>18:29:09</time>
15
+ <contents><target name="magedesign"><dir name="install"><dir name="default"><dir name="default"><dir name="layout"><file name="main.xml" hash="53cc5031c592e2c4f6083710eb4a774e"/></dir><dir name="template"><dir name="install"><file name="begin.phtml" hash="09a3002ae6b1c0ca1da93c15858b1ddb"/><file name="config.phtml" hash="0be5a19fa0f0d55ee3274c269e36807f"/><file name="create_admin.phtml" hash="ce87d731454e540daa613492ae8f9626"/><file name="download.phtml" hash="b0ae018ab7ce212fe19ed0f0c5349520"/><file name="end.phtml" hash="f97b6c65cafc36cfbbe8e02e77687d02"/><file name="locale.phtml" hash="fd39dcd4e715201d0cfef357280083fa"/><file name="state.phtml" hash="1c7024fa9eaa396951a5c874c9bdcad3"/></dir><file name="page.phtml" hash="56b53db3c5b20fe501a832b9817d9985"/></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.5.1.0</min><max>1.6.0.0</max></package></required></dependencies>
18
+ </package>
skin/install/default/default/css/boxes.css ADDED
@@ -0,0 +1,389 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Magento
3
+ *
4
+ * NOTICE OF LICENSE
5
+ *
6
+ * This source file is subject to the Academic Free License (AFL 3.0)
7
+ * that is bundled with this package in the file LICENSE_AFL.txt.
8
+ * It is also available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/afl-3.0.php
10
+ * If you did not receive a copy of the license and are unable to
11
+ * obtain it through the world-wide-web, please send an email
12
+ * to license@magentocommerce.com so we can send you a copy immediately.
13
+ *
14
+ * DISCLAIMER
15
+ *
16
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
17
+ * versions in the future. If you wish to customize Magento for your
18
+ * needs please refer to http://www.magentocommerce.com for more information.
19
+ *
20
+ * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
21
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
22
+ */
23
+
24
+ /****************************************************/
25
+ /***********[ Mage_CSS_B Common Elements ]***********/
26
+ /****************************************************/
27
+
28
+
29
+ /********************** Columns */
30
+
31
+ /* All */
32
+ .col2-set, .col3-set, .col4-set, .col5-set { clear:both; }
33
+
34
+ /* Col2 */
35
+ .col2-set .col-1, .col2-set .col-2 { width:48.5%; }
36
+ .col2-set .col-1 { float:left; }
37
+ .col2-set .col-2 { float:right;}
38
+
39
+ /* Col2-alt */
40
+ .col2-alt-set .col-1 { width:32%; }
41
+ .col2-alt-set .col-2 { width:65%; }
42
+ .col2-alt-set .col-1 { float:left; }
43
+ .col2-alt-set .col-2 { float:right;}
44
+
45
+ /* Col3 */
46
+ .col3-set .col-1, .col3-set .col-2, .col3-set .col-3 { float:left; width:31.3%; }
47
+ .col3-set .col-1, .col3-set .col-2 { margin-right:3%; }
48
+
49
+ /* Col4 */
50
+ .col4-set .col-1, .col4-set .col-2, .col4-set .col-3, .col4-set .col-4 { float:left; width:22%; }
51
+ .col4-set .col-1, .col4-set .col-2, .col4-set .col-3 { margin-right:4%; }
52
+
53
+ /* Table Columns */
54
+ table .col-1, table .col-2, table .col-3, table .col-4 { float:none !important; margin:0 !important; }
55
+ .col3-set td.spacer { width:3%; }
56
+ .col4-set td.spacer { width:4%; }
57
+
58
+
59
+
60
+ /********************** Form */
61
+
62
+ /* Form Elements */
63
+ input.input-text, select, textarea { border:1px solid #b6b6b6; font:12px arial, helvetica, sans-serif; }
64
+ option, optgroup { font:12px arial, helvetica, sans-serif; }
65
+ optgroup { font-weight:bold; }
66
+ input.input-text, textarea { padding:2px; }
67
+ input.radio,
68
+ input.checkbox { margin-right:5px; }
69
+ .qty { width:2.5em; }
70
+ .group-select label, .form-list label, .payment-methods label { font-weight:bold;}
71
+ .button-set { /* Container for form buttons*/
72
+ clear:both;
73
+ margin-top:4em;
74
+ border-top:1px solid #e4e4e4;
75
+ padding-top:8px;
76
+ text-align:right;
77
+ }
78
+ .form-button, .form-button-alt {
79
+ overflow:visible;
80
+ width:auto;
81
+ padding:1px 8px;
82
+ background:#f18200;
83
+ color:#fff;
84
+ border:1px solid #de5400;
85
+ font:bold 12px arial, sans-serif !important;
86
+ cursor:pointer;
87
+ text-align:center;
88
+ vertical-align:middle;
89
+ }
90
+ .form-button span, .form-button-alt span {
91
+ white-space:nowrap;
92
+ }
93
+ .form-button-alt {
94
+ border:1px solid #406a83;
95
+ background-color:#618499;
96
+ }
97
+
98
+
99
+ /* Form lists */
100
+ .form-list li { margin-bottom:6px; }
101
+ .form-list li .input-box .input-text, .form-list li .input-box textarea { width:250px; }
102
+ .form-list li .input-box select { width:256px;}
103
+
104
+ .group-select {
105
+ margin:28px 0;
106
+ border:1px solid #bbafa0;
107
+ padding:22px 25px 12px 25px;
108
+ background:#fbfaf6;
109
+ }
110
+ .group-select .legend {
111
+ margin-top:-33px;
112
+ float:left;
113
+ border:1px solid #f19900;
114
+ background:#F9F3E3;
115
+ padding:0 8px;
116
+ color:#E76200;
117
+ font-weight:bold;
118
+ font-size:1.1em;
119
+ }
120
+ .group-select li { padding:4px 8px !important; }
121
+ .group-select li .input-box { float:left; width:275px; }
122
+ .group-select li .input-text, .group-select li select, .group-select li textarea { width:525px; }
123
+ .group-select li .input-box .input-text, .group-select li .input-box textarea { width:250px; }
124
+ .group-select li .input-box select { width:256px;}
125
+
126
+
127
+ /* Form Messages */
128
+ .validation-advice, .required { color:#EB340A; }
129
+ .validation-advice {
130
+ clear:both;
131
+ min-height:15px;
132
+ margin-top:3px;
133
+ background:url(../images/validation_advice_bg.gif) no-repeat 2px 1px;
134
+ padding-left:17px;
135
+ font-size:.95em;
136
+ font-weight:bold;
137
+ line-height:1.25em;
138
+ }
139
+ .validation-failed {
140
+ border:1px dashed #EB340A !important;
141
+ background:#faebe7 !important;
142
+ }
143
+ label.required {
144
+ font-weight:bold;
145
+ }
146
+ p.required {
147
+ font-size:.95em;
148
+ text-align:right;
149
+ }
150
+
151
+
152
+
153
+ /********************** Messages */
154
+ .success { color:#3d6611; }
155
+ .error { color:#df280a; }
156
+ .success, .error { font-weight:bold; }
157
+ .error-msg, .success-msg, .notice-msg, .note-msg {
158
+ min-height:23px !important;
159
+ margin-bottom:1em !important;
160
+ border-style:solid !important;
161
+ border-width:1px !important;
162
+ background-repeat:no-repeat !important;
163
+ background-position:10px 10px !important;
164
+ padding:8px 8px 8px 32px !important;
165
+ font-size:.95em !important;
166
+ font-weight:bold !important;
167
+ }
168
+ .error-msg li, .success-msg li, .notice-msg li {margin-bottom:.2em; }
169
+ .error-msg {
170
+ border-color:#f16048;
171
+ color:#df280a;
172
+ background-color:#faebe7;
173
+ background-image:url(../images/error_msg_icon.gif);
174
+ }
175
+ .success-msg {
176
+ border-color:#446423;
177
+ color:#3d6611;
178
+ background-color:#eff5ea;
179
+ background-image:url(../images/success_msg_icon.gif);
180
+ }
181
+ .notice-msg, .note-msg {
182
+ border-color:#fcd344;
183
+ color:#3d6611;
184
+ background-color:#fafaec;
185
+ background-image:url(../images/note_msg_icon.gif);
186
+ }
187
+
188
+
189
+
190
+ /********************** Headings */
191
+
192
+ .head, .inner-head { line-height:1.25em; text-align:right; }
193
+ .head h1,.head h2, .head h3, .head h4, .head h5,
194
+ .inner-head h1,.inner-head h2, .inner-head h3, .inner-head h4, .inner-head h5{ margin:0; float:left; }
195
+
196
+
197
+ /* Page heading */
198
+ .page-head { margin:0 0 25px 0; border-bottom:1px solid #ccc; }
199
+ .page-head-alt { margin:0 0 12px 0; }
200
+ .page-head, .page-head-alt { text-align:right; }
201
+ .page-head h3, .page-head-alt h3 {
202
+ margin:0;
203
+ font-size:1.7em !important;
204
+ font-weight:normal !important;
205
+ text-transform:none !important;
206
+ text-align:left;
207
+ }
208
+ .button-level h3 { /* heading level with buttons */
209
+ float:left;
210
+ width:60%;
211
+ }
212
+
213
+
214
+ /* Category list heading */
215
+ .category-head {
216
+ margin-bottom:7px;
217
+ }
218
+ .category-head h2 {
219
+ margin:0;
220
+ padding:3px 0;
221
+ color:#0a263c;
222
+ font-size:1.6em;
223
+ line-height:1.3em;
224
+ font-weight:normal;
225
+ }
226
+
227
+
228
+
229
+
230
+ /********************** Lists */
231
+ .disc { margin-bottom:10px; }
232
+ .disc li { margin-left:20px; list-style:disc; }
233
+
234
+
235
+ /* Bare List */ /* Unstyled list */
236
+ .bare-list { margin:5px 0; }
237
+ .bare-list li { margin:3px 0; }
238
+
239
+
240
+
241
+ /********************** Space Creators */
242
+
243
+ .no-show { display:none; }
244
+ .no-wrap { white-space:nowrap; }
245
+ .content-box { min-height:250px; } /* Set minimum height for visual presentation */
246
+ .content { padding:12px 12px 12px 15px; } /* Sets default padding */
247
+ .actions { line-height:1.3em; }
248
+ .separator { padding:0 5px;}
249
+ .pipe { padding:0 4px; font-size:.95em; }
250
+ .divider {
251
+ margin:10px 0;
252
+ height:1px;
253
+ background:url(../images/dotted_divider.gif) repeat-x;
254
+ font-size:1px;
255
+ line-height:1em;
256
+ overflow:hidden;
257
+ }
258
+
259
+
260
+
261
+
262
+ /************************************************************/
263
+ /********************[ Mage_CSS_C Layout]********************/
264
+ /************************************************************/
265
+
266
+
267
+ /********************** Base Layout */
268
+
269
+ /* Structure */
270
+ .header { text-align:left; }
271
+ .header-top { width:930px; margin:0 auto; }
272
+ .header-nav { width:950px; margin:0 auto; }
273
+ .middle { min-height:400px; width:900px; margin:0 auto; text-align:left; position:relative; }
274
+ .side-col { width:195px; }
275
+ .col-left { float:left; }
276
+ .col-main { float:left; }
277
+ .col-right { float:right; }
278
+ .col-1-layout .col-main { float:none; margin:0; }
279
+ .col-2-right-layout .col-main { float:left; width:685px; }
280
+ .col-2-left-layout .col-main { float:right; width:685px; }
281
+ .col-3-layout .col-main { width:475px; margin-left:17px; }
282
+
283
+ /* Style */
284
+ .header { border-top:5px solid #0d2131; }
285
+ .header-top-container { border-bottom:1px solid #415966; background:url(../images/header_top_container_bg.jpg) repeat-x 50% 0; }
286
+ .header-top { padding:10px 10px 20px; }
287
+ .header-nav-container { background:url(../images/nav_bg.jpg) repeat-y 50% 0 #0a263d; }
288
+ .middle-container { background:url(../images/main_container_bg.gif) no-repeat 50% 0 #fbfaf6; }
289
+ .middle { background:url(../images/main_bg.gif) no-repeat #fffffe; padding:25px 25px 80px 25px; }
290
+
291
+
292
+
293
+ /********************** Header */
294
+
295
+ /* Logo */
296
+ h1#logo { float:left; width:202px; margin:3px 0 0 12px; }
297
+ .page-popup h1#logo { display:none; }
298
+
299
+
300
+ /* Quick Access*/
301
+ .quick-access {
302
+ width:390px;
303
+ float:right;
304
+ margin-top:28px;
305
+ text-align:right;
306
+ padding:0 10px;
307
+ color:#fff;
308
+ }
309
+ .quick-access p { margin-bottom:4px; }
310
+ .quick-access li {
311
+ display:inline;
312
+ background:url(../images/shop_access_pipe.gif) no-repeat 100% .35em;
313
+ padding-right:7px;
314
+ padding-left:3px;
315
+ }
316
+ .quick-access li.first { padding-left:0;}
317
+ .quick-access li.last { padding-right:0; background:none;}
318
+ .account-access p, .account-access ul, .account-access li { display:inline; color:#fff; }
319
+ .account-access a, .account-access a:hover { color:#e1f1fb; }
320
+ .account-access ul { padding-left:10px; font-size:.95em; }
321
+ .shop-access a, .shop-access a:hover { color:#ebbc58; font-size:.95em; }
322
+
323
+
324
+ /* Breadcrumbs */
325
+ .breadcrumbs { margin-bottom:13px; font-size:.95em; line-height:1.25em; }
326
+ .breadcrumbs li { display:inline; }
327
+
328
+
329
+
330
+ /********************** Footer */
331
+ .footer-container { border-top:15px solid #B6D1E2; }
332
+ .footer {
333
+ width:930px;
334
+ margin:0 auto;
335
+ padding:1em 1em 4em 1em;
336
+ position:relative;
337
+ }
338
+ .footer .store-switcher { display:inline; padding:0 10px 0 0; vertical-align:middle; }
339
+ .footer .informational label { color:#fff; font-weight:bold; padding-right:3px; }
340
+ .footer .informational ul {
341
+ display:inline;
342
+ }
343
+ .footer .informational li {
344
+ display:inline;
345
+ background:url(../images/footer_info_separator.gif) no-repeat 100% 50%;
346
+ padding-right:8px;
347
+ padding-left:4px;
348
+ }
349
+ .footer .informational li.last { background:none; padding-right:0; }
350
+ .footer .informational a, .footer .informational a:hover { color:#fff; }
351
+ .footer .informational a { text-decoration:none; }
352
+ .footer .legality {
353
+ padding:13px 0;
354
+ color:#ecf3f6;
355
+ text-align:center;
356
+ }
357
+ .footer .legality a, .footer .legality a:hover { color:#ecf3f6; }
358
+
359
+
360
+ /************************************************************/
361
+ /******************[ Mage_CSS_F Overrides]*******************/
362
+ /************************************************************/
363
+
364
+
365
+ /* Alignment */
366
+ .v-top { vertical-align:top; }
367
+ .v-middle { vertical-align:middle; }
368
+ .v-bottom { vertical-align:bottom; }
369
+ .a-left { text-align:left; }
370
+ .a-center { text-align:center; }
371
+ .a-right { text-align:right; }
372
+ .left { float:left; }
373
+ .right { float:right !important; }
374
+
375
+ .normal-weight { font-weight:normal; }
376
+ .auto-width { width:auto;}
377
+
378
+ /* Link highlights */
379
+ .link-cart { color:#DC6809 !important; font-weight:bold !important;}
380
+ .link-remove { color:#646464 !important;}
381
+ .link-print { background:url(../images/icon_printer.gif) no-repeat 0 2px; padding-left:23px; }
382
+
383
+ /* Noscript Notice */
384
+ .noscript { border:1px solid #000; border-width:0 0 1px; background:#ffff90; font-size:12px; line-height:1.25; text-align:center; color:#2f2f2f; }
385
+ .noscript .noscript-inner { width:950px; margin:0 auto; padding:12px 0 12px; background:url(../images/i_notice.gif) 20px 50% no-repeat; }
386
+ .noscript p { margin:0; }
387
+
388
+ /* For Demo store only */
389
+ .demo-notice { margin:0; background:#d75f07; padding:5px 10px 6px 10px; color:#fff; line-height:1em; text-align:center; }
skin/install/default/default/css/clears.css ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Magento
3
+ *
4
+ * NOTICE OF LICENSE
5
+ *
6
+ * This source file is subject to the Academic Free License (AFL 3.0)
7
+ * that is bundled with this package in the file LICENSE_AFL.txt.
8
+ * It is also available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/afl-3.0.php
10
+ * If you did not receive a copy of the license and are unable to
11
+ * obtain it through the world-wide-web, please send an email
12
+ * to license@magentocommerce.com so we can send you a copy immediately.
13
+ *
14
+ * DISCLAIMER
15
+ *
16
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
17
+ * versions in the future. If you wish to customize Magento for your
18
+ * needs please refer to http://www.magentocommerce.com for more information.
19
+ *
20
+ * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
21
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
22
+ */
23
+
24
+ /****************************************************/
25
+ /****************[ Mage_CSS_B Clears ]***************/
26
+ /****************************************************/
27
+
28
+ .page-head:after,
29
+ .page-head-alt:after,
30
+ .clear:after,
31
+ .col2-set:after,
32
+ .col3-set:after,
33
+ .col4-set:after,
34
+ .col2-alt-set:after,
35
+ .head:after,
36
+ .inner-head:after,
37
+ .header-top:after,
38
+ .quick-access:after,
39
+ .header-nav:after,
40
+ #nav:after,
41
+ .middle:after,
42
+ .product-essential:after,
43
+ .button-set:after,
44
+ .actions:after,
45
+ .legend:after,
46
+ .form-list li:after,
47
+ .button-container:after,
48
+ .ratings:after,
49
+ .page-head:after,
50
+ .page-head-alt:after,
51
+ .group-select li:after,
52
+ .search-autocomplete li:after,
53
+ .side-col li:after,
54
+ .account-box li:after,
55
+ .address-list li:after,
56
+ .generic-product-list li:after,
57
+ .listing-type-list .listing-item:after,
58
+ .listing-type-list .product-info .product-reviews:after,
59
+ .my-review-detail:after {
60
+ content:".";
61
+ display:block;
62
+ clear:both;
63
+ height:0;
64
+ font-size:0;
65
+ line-height:0em;
66
+ visibility:hidden;
67
+ overflow:hidden;
68
+ }
69
+ .middle {display:inline-block;}
skin/install/default/default/css/ie7minus.css ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Magento
3
+ *
4
+ * NOTICE OF LICENSE
5
+ *
6
+ * This source file is subject to the Academic Free License (AFL 3.0)
7
+ * that is bundled with this package in the file LICENSE_AFL.txt.
8
+ * It is also available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/afl-3.0.php
10
+ * If you did not receive a copy of the license and are unable to
11
+ * obtain it through the world-wide-web, please send an email
12
+ * to license@magentocommerce.com so we can send you a copy immediately.
13
+ *
14
+ * DISCLAIMER
15
+ *
16
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
17
+ * versions in the future. If you wish to customize Magento for your
18
+ * needs please refer to http://www.magentocommerce.com for more information.
19
+ *
20
+ * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
21
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
22
+ */
23
+
24
+ h1#logo { display:inline; }
25
+ .form-button, .form-button-alt { margin-bottom:1px; }
26
+ .group-select .legend { position:relative; zoom:1; }
27
+
28
+ /* Min-height for IE */
29
+ .login-box .content { height:180px; }
30
+ .content-box { height:250px; }
31
+ #main { height:400px; }
32
+
33
+ .validation-advice { height:15px; }
34
+ .error-msg, .success-msg, .note-msg { height:23px; }
35
+ .currency-switcher h4 { height:21px; }
36
+ .base-mini .head h4, .shopping-cart-collaterals h4 { height:16px; }
37
+ .login-box h4 { height:16px; }
38
+ .login-box .content { height:230px; }
skin/install/default/default/css/iestyles.css ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Magento
3
+ *
4
+ * NOTICE OF LICENSE
5
+ *
6
+ * This source file is subject to the Academic Free License (AFL 3.0)
7
+ * that is bundled with this package in the file LICENSE_AFL.txt.
8
+ * It is also available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/afl-3.0.php
10
+ * If you did not receive a copy of the license and are unable to
11
+ * obtain it through the world-wide-web, please send an email
12
+ * to license@magentocommerce.com so we can send you a copy immediately.
13
+ *
14
+ * DISCLAIMER
15
+ *
16
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
17
+ * versions in the future. If you wish to customize Magento for your
18
+ * needs please refer to http://www.magentocommerce.com for more information.
19
+ *
20
+ * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
21
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
22
+ */
23
+ .col2-set,
24
+ .col3-set,
25
+ .col4-set,
26
+ .col2-alt-set,
27
+ .head,
28
+ .page-head,
29
+ .page-head-alt,
30
+ .header-top-container,
31
+ .header-top,
32
+ .header-nav-container,
33
+ .header-nav,
34
+ .quick-access,
35
+ #nav,
36
+ #nav li,
37
+ #nav a,
38
+ .middle,
39
+ .product-essential,
40
+ .button-set,
41
+ .actions,
42
+ .form-list li,
43
+ .button-container,
44
+ .ratings,
45
+ .page-head,
46
+ .page-head-alt,
47
+ .group-select li,
48
+ .search-autocomplete li,
49
+ .side-col li,
50
+ .account-box li,
51
+ .address-list li,
52
+ .listing-type-list .listing-item,
53
+ .listing-type-list .product-info .product-reviews,
54
+ .account-nav a,
55
+ .account-box,
56
+ .my-review-detail,
57
+ .generic-product-list li { zoom:1; }
58
+
59
+ .clear { display:block; clear:both; height:0; font-size:0; line-height:0; overflow:hidden; }
60
+
61
+ input.radio,
62
+ input.checkbox { width:13px; height:13px; }
63
+ .multi-address-checkout-box .box { zoom:1; }
64
+ .multi-address-checkout-box .legend { zoom:1; position:relative; margin-left:8px;}
65
+ .quick-access li { padding-right:4px; padding-left:6px;}
66
+ .search-autocomplete { left:39px !important; }
67
+ .mini-search { padding-top:-1px; line-height:1em;}
68
+ .home-spot { display:inline; }
69
+ .mini-related-items .product-details { margin-left:76px; }
70
+ .mini-related-items .product-images input { float:left; margin:-4px 2px 0 -4px; }
71
+ .mini-related-items .product-images img { float:left; }
72
+ #nav ul li.parent { margin-bottom:-3px;}
skin/install/default/default/css/reset.css ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Magento
3
+ *
4
+ * NOTICE OF LICENSE
5
+ *
6
+ * This source file is subject to the Academic Free License (AFL 3.0)
7
+ * that is bundled with this package in the file LICENSE_AFL.txt.
8
+ * It is also available through the world-wide-web at this URL:
9
+ * http://opensource.org/licenses/afl-3.0.php
10
+ * If you did not receive a copy of the license and are unable to
11
+ * obtain it through the world-wide-web, please send an email
12
+ * to license@magentocommerce.com so we can send you a copy immediately.
13
+ *
14
+ * DISCLAIMER
15
+ *
16
+ * Do not edit or add to this file if you wish to upgrade Magento to newer
17
+ * versions in the future. If you wish to customize Magento for your
18
+ * needs please refer to http://www.magentocommerce.com for more information.
19
+ *
20
+ * @copyright Copyright (c) 2008 Irubin Consulting Inc. DBA Varien (http://www.varien.com)
21
+ * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
22
+ */
23
+ /******************************************/
24
+ /***********[ Mage_CSS_A Reset ]***********/
25
+ /******************************************/
26
+
27
+ * { margin:0; padding:0; }
28
+
29
+ body { background-color:#496778; color:#2f2f2f; font:12px/1.5 arial, helvetica, sans-serif; text-align:center; }
30
+
31
+ a { color:#1e7ec8; text-decoration:underline; }
32
+ a:hover { color:#1e7ec8; text-decoration:underline; }
33
+ :focus { outline: 0; }
34
+
35
+ img { border:0; }
36
+
37
+ /* Heading */
38
+ h1, h2, h3, h4, h5, h6, .head { margin-bottom:.4em; line-height:1.3em; color:#0A263C; }
39
+ h2 { font-size:1.5em; }
40
+ h3 { font-size:1.35em; }
41
+ h4 { font-size:1.05em; }
42
+ h5 { font-size:1.05em; }
43
+ h6 { font-size:.95em; }
44
+
45
+ /* Table */
46
+ th { padding:0; text-align:left; vertical-align:top; }
47
+ td {padding:0;vertical-align:top;}
48
+
49
+ /* Paragraph */
50
+ p { margin-bottom:.8em; }
51
+ address { margin-bottom:.4em; }
52
+ address { font-style:normal; line-height:1.4em;}
53
+ cite { font-style:normal; font-size:10px;}
54
+ q:before, q:after{content:'';}
55
+
56
+ /* Form */
57
+ form { display:inline;}
58
+ fieldset { border:none; }
59
+ legend { display:none; display:block !important; height:0; line-height:0; margin:0; overflow:hidden; padding:0; width:0; visibility:hidden; }
60
+ label { color:#666; /*font-size:.95em;*/ font-weight:bold; }
61
+ input, select, button { vertical-align:middle; }
62
+
63
+ /* Lists */
64
+ dt { display:block; font-weight:bold; }
65
+ ul,ol { list-style:none; }
66
+
67
+ /* Size */
68
+ small { font-size:.9em; }
69
+ big { font-size:1.1em; }
70
+
71
+ .nowrap { white-space:nowrap; }
72
+ .bold { font-weight:bold; }
skin/install/default/default/favicon.ico ADDED
Binary file
skin/install/default/default/images/error_msg_icon.gif ADDED
Binary file
skin/install/default/default/images/footer_bg.gif ADDED
Binary file
skin/install/default/default/images/footer_container_bg.gif ADDED
Binary file
skin/install/default/default/images/footer_info_separator.gif ADDED
Binary file
skin/install/default/default/images/footer_informational_bg.gif ADDED
Binary file
skin/install/default/default/images/footer_left.gif ADDED
Binary file
skin/install/default/default/images/footer_legality_bg.gif ADDED
Binary file
skin/install/default/default/images/footer_right.gif ADDED
Binary file
skin/install/default/default/images/header_bg.gif ADDED
Binary file
skin/install/default/default/images/header_nav_bg.gif ADDED
Binary file
skin/install/default/default/images/header_top_bg.jpg ADDED
Binary file
skin/install/default/default/images/header_top_container_bg.jpg ADDED
Binary file
skin/install/default/default/images/i_notice.gif ADDED
Binary file
skin/install/default/default/images/logo.gif ADDED
Binary file
skin/install/default/default/images/main_bg.gif ADDED
Binary file
skin/install/default/default/images/main_container_bg.gif ADDED
Binary file
skin/install/default/default/images/note_msg_icon.gif ADDED
Binary file
skin/install/default/default/images/success_msg_icon.gif ADDED
Binary file
skin/install/default/default/images/validation_advice_bg.gif ADDED
Binary file