Skip to content

Commit 1d6e87c

Browse files
committed
0.1.0-alpha102
* Fixed bugs: * Fixed an issue where the categories tree was not displayed when adding a new category during product creation * Fixed an issue where the Template field on the New Email Template page was labeled as required * Fixed minor UI issues in Multiple Addresses Checkout for a desktop * Fixed minor UI issues with Widgets on the storefront * Fixed minor UI issues with pages printing view on the storefront * Fixed minor UI issues in items Gift message on the Order View frontend page * Fixed an issue in the Admin panel where no message was displayed after adding a product to cart with quantity exceeding the available quantity) * Framework improvements: * To enhance the readability of tables for screen readers, added the <caption> tag and the scope attribute for tables * Added customer module interfaces * Created the ability to generate API documentation * Added the following functional tests: * Create gift message in the Admin panel * Delete term * Product type switching when editing * Re-authorize tokens for the Integration * Revoke all access tokens for admin without tokens * Update custom order status * Update a product from a mini shopping cart * WebApi Framework improvements: * Added Web API support to add/override matching identifier parameter in the body from URL * Documentation: * Added README files with module description for the following modules: * Authorizenet * Centinel * Customer * CustomerImportExport * Dhl * Fedex * OfflinePayments * OfflineShipping * Ogone * PayPalRecurringPayment * Payment * Paypal * ProductAlert * RecurringPayment * Sendfriend * Shipping * Ups * Usps * Wishlist * Container-Based Page Layout: * Distributed the responsibility of View\Layout between three classes (PageLayout, PageConfig, GenericLayout) * Refactored controller actions to use ResultInterface objects: * Catalog * Backend
1 parent 328ef8d commit 1d6e87c

File tree

1,359 files changed

+30243
-15374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,359 files changed

+30243
-15374
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
0.1.0-alpha102
2+
=============
3+
* Fixed bugs:
4+
* Fixed an issue where the categories tree was not displayed when adding a new category during product creation
5+
* Fixed an issue where the Template field on the New Email Template page was labeled as required
6+
* Fixed minor UI issues in Multiple Addresses Checkout for a desktop
7+
* Fixed minor UI issues with Widgets on the storefront
8+
* Fixed minor UI issues with pages printing view on the storefront
9+
* Fixed minor UI issues in items Gift message on the Order View frontend page
10+
* Fixed an issue in the Admin panel where no message was displayed after adding a product to cart with quantity exceeding the available quantity)
11+
* Framework improvements:
12+
* To enhance the readability of tables for screen readers, added the <caption> tag and the “scope” attribute for tables
13+
* Added customer module interfaces
14+
* Created the ability to generate API documentation
15+
* Added the following functional tests:
16+
* Create gift message in the Admin panel
17+
* Delete term
18+
* Product type switching when editing
19+
* Re-authorize tokens for the Integration
20+
* Revoke all access tokens for admin without tokens
21+
* Update custom order status
22+
* Update a product from a mini shopping cart
23+
* WebApi Framework improvements:
24+
* Added Web API support to add/override matching identifier parameter in the body from URL
25+
* Documentation:
26+
* Added README files with module description for the following modules:
27+
* Authorizenet
28+
* Centinel
29+
* Customer
30+
* CustomerImportExport
31+
* Dhl
32+
* Fedex
33+
* OfflinePayments
34+
* OfflineShipping
35+
* Ogone
36+
* PayPalRecurringPayment
37+
* Payment
38+
* Paypal
39+
* ProductAlert
40+
* RecurringPayment
41+
* Sendfriend
42+
* Shipping
43+
* Ups
44+
* Usps
45+
* Wishlist
46+
* Container-Based Page Layout:
47+
* Distributed the responsibility of View\Layout between three classes (PageLayout, PageConfig, GenericLayout)
48+
* Refactored controller actions to use ResultInterface objects:
49+
* Catalog
50+
* Backend
51+
152
0.1.0-alpha101
253
=============
354
* Framework improvements:

app/code/Magento/AdminNotification/composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.4.11|~5.5.0",
6-
"magento/module-store": "0.1.0-alpha101",
7-
"magento/module-core": "0.1.0-alpha101",
8-
"magento/module-backend": "0.1.0-alpha101",
9-
"magento/framework": "0.1.0-alpha101",
6+
"magento/module-store": "0.1.0-alpha102",
7+
"magento/module-core": "0.1.0-alpha102",
8+
"magento/module-backend": "0.1.0-alpha102",
9+
"magento/framework": "0.1.0-alpha102",
1010
"lib-libxml": "*",
1111
"magento/magento-composer-installer": "*"
1212
},
1313
"type": "magento2-module",
14-
"version": "0.1.0-alpha101",
14+
"version": "0.1.0-alpha102",
1515
"extra": {
1616
"map": [
1717
[

app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_block.xml

Lines changed: 58 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -24,69 +24,71 @@
2424
*/
2525
-->
2626
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
27-
<referenceBlock name="adminhtml.notification.container">
28-
<block class="Magento\Backend\Block\Widget\Grid" name="adminhtml.notification.container.grid" as="grid">
29-
<arguments>
30-
<argument name="id" xsi:type="string">notificationGrid</argument>
31-
<argument name="dataSource" xsi:type="object">Magento\AdminNotification\Model\Resource\Grid\Collection</argument>
32-
<argument name="default_dir" xsi:type="string">DESC</argument>
33-
<argument name="default_sort" xsi:type="string">date_added</argument>
34-
<argument name="save_parameters_in_session" xsi:type="string">1</argument>
35-
</arguments>
36-
<block class="Magento\Backend\Block\Widget\Grid\ColumnSet" name="adminhtml.notification.container.grid.columnSet" as="grid.columnSet">
27+
<body>
28+
<referenceBlock name="adminhtml.notification.container">
29+
<block class="Magento\Backend\Block\Widget\Grid" name="adminhtml.notification.container.grid" as="grid">
3730
<arguments>
38-
<argument name="filter_visibility" xsi:type="string">0</argument>
31+
<argument name="id" xsi:type="string">notificationGrid</argument>
32+
<argument name="dataSource" xsi:type="object">Magento\AdminNotification\Model\Resource\Grid\Collection</argument>
33+
<argument name="default_dir" xsi:type="string">DESC</argument>
34+
<argument name="default_sort" xsi:type="string">date_added</argument>
35+
<argument name="save_parameters_in_session" xsi:type="string">1</argument>
3936
</arguments>
40-
<block class="Magento\Backend\Block\Widget\Grid\Column" as="severity">
37+
<block class="Magento\Backend\Block\Widget\Grid\ColumnSet" name="adminhtml.notification.container.grid.columnSet" as="grid.columnSet">
4138
<arguments>
42-
<argument name="header" xsi:type="string" translate="true">Severity</argument>
43-
<argument name="index" xsi:type="string">severity</argument>
44-
<argument name="renderer" xsi:type="string">Magento\AdminNotification\Block\Grid\Renderer\Severity</argument>
39+
<argument name="filter_visibility" xsi:type="string">0</argument>
4540
</arguments>
41+
<block class="Magento\Backend\Block\Widget\Grid\Column" as="severity">
42+
<arguments>
43+
<argument name="header" xsi:type="string" translate="true">Severity</argument>
44+
<argument name="index" xsi:type="string">severity</argument>
45+
<argument name="renderer" xsi:type="string">Magento\AdminNotification\Block\Grid\Renderer\Severity</argument>
46+
</arguments>
47+
</block>
48+
<block class="Magento\Backend\Block\Widget\Grid\Column" as="date_added">
49+
<arguments>
50+
<argument name="header" xsi:type="string" translate="true">Date Added</argument>
51+
<argument name="id" xsi:type="string">date_added</argument>
52+
<argument name="index" xsi:type="string">date_added</argument>
53+
<argument name="type" xsi:type="string">datetime</argument>
54+
<argument name="column_css_class" xsi:type="string">col-date</argument>
55+
<argument name="header_css_class" xsi:type="string">col-date</argument>
56+
</arguments>
57+
</block>
58+
<block class="Magento\Backend\Block\Widget\Grid\Column" as="title">
59+
<arguments>
60+
<argument name="header" xsi:type="string" translate="true">Message</argument>
61+
<argument name="index" xsi:type="string">title</argument>
62+
<argument name="renderer" xsi:type="string">Magento\AdminNotification\Block\Grid\Renderer\Notice</argument>
63+
</arguments>
64+
</block>
65+
<block class="Magento\Backend\Block\Widget\Grid\Column" as="actions">
66+
<arguments>
67+
<argument name="header" xsi:type="string" translate="true">Actions</argument>
68+
<argument name="sortable" xsi:type="string">0</argument>
69+
<argument name="renderer" xsi:type="string">Magento\AdminNotification\Block\Grid\Renderer\Actions</argument>
70+
</arguments>
71+
</block>
4672
</block>
47-
<block class="Magento\Backend\Block\Widget\Grid\Column" as="date_added">
73+
<block class="Magento\Backend\Block\Widget\Grid\Massaction" name="adminhtml.block.notification.massactions" as="grid.massaction">
4874
<arguments>
49-
<argument name="header" xsi:type="string" translate="true">Date Added</argument>
50-
<argument name="id" xsi:type="string">date_added</argument>
51-
<argument name="index" xsi:type="string">date_added</argument>
52-
<argument name="type" xsi:type="string">datetime</argument>
53-
<argument name="column_css_class" xsi:type="string">col-date</argument>
54-
<argument name="header_css_class" xsi:type="string">col-date</argument>
75+
<argument name="massaction_id_field" xsi:type="string">notification_id</argument>
76+
<argument name="form_field_name" xsi:type="string">notification</argument>
77+
<argument name="use_select_all" xsi:type="string">1</argument>
78+
<argument name="options" xsi:type="array">
79+
<item name="mark_as_read" xsi:type="array">
80+
<item name="label" xsi:type="string" translate="true">Mark as Read</item>
81+
<item name="url" xsi:type="string">*/*/massMarkAsRead</item>
82+
</item>
83+
<item name="remove" xsi:type="array">
84+
<item name="label" xsi:type="string" translate="true">Remove</item>
85+
<item name="url" xsi:type="string">*/*/massRemove</item>
86+
<item name="confirm" xsi:type="string" translate="true">Are you sure?</item>
87+
</item>
88+
</argument>
5589
</arguments>
5690
</block>
57-
<block class="Magento\Backend\Block\Widget\Grid\Column" as="title">
58-
<arguments>
59-
<argument name="header" xsi:type="string" translate="true">Message</argument>
60-
<argument name="index" xsi:type="string">title</argument>
61-
<argument name="renderer" xsi:type="string">Magento\AdminNotification\Block\Grid\Renderer\Notice</argument>
62-
</arguments>
63-
</block>
64-
<block class="Magento\Backend\Block\Widget\Grid\Column" as="actions">
65-
<arguments>
66-
<argument name="header" xsi:type="string" translate="true">Actions</argument>
67-
<argument name="sortable" xsi:type="string">0</argument>
68-
<argument name="renderer" xsi:type="string">Magento\AdminNotification\Block\Grid\Renderer\Actions</argument>
69-
</arguments>
70-
</block>
71-
</block>
72-
<block class="Magento\Backend\Block\Widget\Grid\Massaction" name="adminhtml.block.notification.massactions" as="grid.massaction">
73-
<arguments>
74-
<argument name="massaction_id_field" xsi:type="string">notification_id</argument>
75-
<argument name="form_field_name" xsi:type="string">notification</argument>
76-
<argument name="use_select_all" xsi:type="string">1</argument>
77-
<argument name="options" xsi:type="array">
78-
<item name="mark_as_read" xsi:type="array">
79-
<item name="label" xsi:type="string" translate="true">Mark as Read</item>
80-
<item name="url" xsi:type="string">*/*/massMarkAsRead</item>
81-
</item>
82-
<item name="remove" xsi:type="array">
83-
<item name="label" xsi:type="string" translate="true">Remove</item>
84-
<item name="url" xsi:type="string">*/*/massRemove</item>
85-
<item name="confirm" xsi:type="string" translate="true">Are you sure?</item>
86-
</item>
87-
</argument>
88-
</arguments>
8991
</block>
90-
</block>
91-
</referenceBlock>
92+
</referenceBlock>
93+
</body>
9294
</page>

app/code/Magento/AdminNotification/view/adminhtml/layout/adminhtml_notification_index.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@
2525
-->
2626
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
2727
<update handle="adminhtml_notification_block"/>
28-
<referenceContainer name="content">
29-
<block class="Magento\AdminNotification\Block\Inbox" name="adminhtml.notification.container"/>
30-
</referenceContainer>
28+
<body>
29+
<referenceContainer name="content">
30+
<block class="Magento\AdminNotification\Block\Inbox" name="adminhtml.notification.container"/>
31+
</referenceContainer>
32+
</body>
3133
</page>

app/code/Magento/AdminNotification/view/adminhtml/layout/default.xml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,17 @@
2424
*/
2525
-->
2626
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
27-
<referenceContainer name="notifications">
28-
<block class="Magento\AdminNotification\Block\System\Messages" name="system_messages" as="system_messages" before="-" template="Magento_AdminNotification::system/messages.phtml"/>
29-
<block class="Magento\AdminNotification\Block\System\Messages\UnreadMessagePopup" name="unread_system_messages" as="unread_system_messages" after="system_messages" template="Magento_AdminNotification::system/messages/popup.phtml"/>
30-
<block class="Magento\AdminNotification\Block\Window" name="notification_window" as="notification_window" acl="Magento_AdminNotification::show_toolbar" template="notification/window.phtml"/>
31-
</referenceContainer>
32-
<referenceContainer name="header">
33-
<block class="Magento\AdminNotification\Block\ToolbarEntry" before="user" template="toolbar_entry.phtml" />
34-
</referenceContainer>
3527
<head>
3628
<css src="Magento_Core::prototype/magento.css"/>
3729
</head>
30+
<body>
31+
<referenceContainer name="notifications">
32+
<block class="Magento\AdminNotification\Block\System\Messages" name="system_messages" as="system_messages" before="-" template="Magento_AdminNotification::system/messages.phtml"/>
33+
<block class="Magento\AdminNotification\Block\System\Messages\UnreadMessagePopup" name="unread_system_messages" as="unread_system_messages" after="system_messages" template="Magento_AdminNotification::system/messages/popup.phtml"/>
34+
<block class="Magento\AdminNotification\Block\Window" name="notification_window" as="notification_window" acl="Magento_AdminNotification::show_toolbar" template="notification/window.phtml"/>
35+
</referenceContainer>
36+
<referenceContainer name="header">
37+
<block class="Magento\AdminNotification\Block\ToolbarEntry" before="user" template="toolbar_entry.phtml"/>
38+
</referenceContainer>
39+
</body>
3840
</page>

app/code/Magento/Authorization/composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
"description": "Authorization module provides access to Magento ACL functionality.",
44
"require": {
55
"php": "~5.4.11|~5.5.0",
6-
"magento/module-backend": "0.1.0-alpha101",
7-
"magento/framework": "0.1.0-alpha101",
6+
"magento/module-backend": "0.1.0-alpha102",
7+
"magento/framework": "0.1.0-alpha102",
88
"magento/magento-composer-installer": "*"
99
},
1010
"type": "magento2-module",
11-
"version": "0.1.0-alpha101",
11+
"version": "0.1.0-alpha102",
1212
"extra": {
1313
"map": [
1414
[
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
The Magento_Authorizenet module implements the integration with the Authorize.Net payment gateway and makes the latter available as a payment method in Magento.

app/code/Magento/Authorizenet/composer.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
"description": "N/A",
44
"require": {
55
"php": "~5.4.11|~5.5.0",
6-
"magento/module-sales": "0.1.0-alpha101",
7-
"magento/module-checkout": "0.1.0-alpha101",
8-
"magento/module-backend": "0.1.0-alpha101",
9-
"magento/module-core": "0.1.0-alpha101",
10-
"magento/module-payment": "0.1.0-alpha101",
11-
"magento/module-centinel": "0.1.0-alpha101",
12-
"magento/module-catalog": "0.1.0-alpha101",
13-
"magento/framework": "0.1.0-alpha101",
6+
"magento/module-sales": "0.1.0-alpha102",
7+
"magento/module-checkout": "0.1.0-alpha102",
8+
"magento/module-backend": "0.1.0-alpha102",
9+
"magento/module-core": "0.1.0-alpha102",
10+
"magento/module-payment": "0.1.0-alpha102",
11+
"magento/module-centinel": "0.1.0-alpha102",
12+
"magento/module-catalog": "0.1.0-alpha102",
13+
"magento/framework": "0.1.0-alpha102",
1414
"magento/magento-composer-installer": "*"
1515
},
1616
"type": "magento2-module",
17-
"version": "0.1.0-alpha101",
17+
"version": "0.1.0-alpha102",
1818
"extra": {
1919
"map": [
2020
[

app/code/Magento/Authorizenet/view/frontend/layout/checkout_onepage_index.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@
2424
*/
2525
-->
2626
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
27-
<referenceBlock name="head.components">
28-
<block class="Magento\Framework\View\Element\Js\Components" name="authorizenet_page_head_components" template="Magento_Authorizenet::js/components.phtml"/>
29-
</referenceBlock>
27+
<body>
28+
<referenceBlock name="head.components">
29+
<block class="Magento\Framework\View\Element\Js\Components" name="authorizenet_page_head_components" template="Magento_Authorizenet::js/components.phtml"/>
30+
</referenceBlock>
31+
</body>
3032
</page>

app/code/Magento/Authorizenet/view/frontend/layout/checkout_onepage_review.xml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@
2424
*/
2525
-->
2626
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../../lib/internal/Magento/Framework/View/Layout/etc/page_configuration.xsd">
27-
<referenceContainer name="checkout.onepage.review.info.items.after">
28-
<block class="Magento\Authorizenet\Block\Directpost\Form" name="payment.form.directpost" template="directpost/form.phtml">
29-
<action method="setMethodInfo"/>
30-
</block>
31-
</referenceContainer>
27+
<body>
28+
<referenceContainer name="checkout.onepage.review.info.items.after">
29+
<block class="Magento\Authorizenet\Block\Directpost\Form" name="payment.form.directpost" template="directpost/form.phtml">
30+
<action method="setMethodInfo"/>
31+
</block>
32+
</referenceContainer>
33+
</body>
3234
</page>

0 commit comments

Comments
 (0)