Changeset 12108
- Timestamp:
- 09/10/07 16:07:38 (1 year ago)
- Files:
-
- branches/MidCOM_2_8/org.maemo.devcodes/handler/application/list.php (added)
- branches/MidCOM_2_8/org.maemo.devcodes/handler/device/view.php (modified) (2 diffs)
- branches/MidCOM_2_8/org.maemo.devcodes/style/list-applications-footer.php (added)
- branches/MidCOM_2_8/org.maemo.devcodes/style/list-applications-header.php (added)
- branches/MidCOM_2_8/org.maemo.devcodes/style/list-applications-item.php (added)
- branches/MidCOM_2_8/org.maemo.devcodes/style/list-applications-noresults.php (added)
- branches/MidCOM_2_8/org.maemo.devcodes/viewer.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/MidCOM_2_8/org.maemo.devcodes/handler/device/view.php
r12107 r12108 61 61 MIDCOM_TOOLBAR_LABEL => $this->_l10n_midcom->get('list codes'), 62 62 MIDCOM_TOOLBAR_ICON => 'stock-icons/16x16/printer.png', 63 MIDCOM_TOOLBAR_ACCESSKEY => 'l',64 63 MIDCOM_TOOLBAR_ENABLED => $this->_device->can_do('midgard:read'), 65 64 )); … … 72 71 MIDCOM_TOOLBAR_ENABLED => $this->_device->can_do('midgard:create'), 73 72 )); 73 74 $this->_view_toolbar->add_item(Array( 75 MIDCOM_TOOLBAR_URL => "application/list/{$this->_device->guid}.html", 76 MIDCOM_TOOLBAR_LABEL => $this->_l10n_midcom->get('list code applications'), 77 MIDCOM_TOOLBAR_ICON => 'stock-icons/16x16/printer.png', 78 MIDCOM_TOOLBAR_ENABLED => $this->_device->can_do('midgard:read'), 79 )); 80 74 81 } 75 82 branches/MidCOM_2_8/org.maemo.devcodes/viewer.php
r12107 r12108 148 148 'variable_args' => 1, 149 149 'handler' => Array('org_maemo_devcodes_handler_application_admin', 'delete'), 150 ); 151 152 // Handle /application/list/<device_guid> 153 $this->_request_switch['list-applications'] = array 154 ( 155 'fixed_args' => Array('application', 'list'), 156 'variable_args' => 1, 157 'handler' => Array('org_maemo_devcodes_handler_application_list', 'list'), 150 158 ); 151 159
