Changeset 21343
- Timestamp:
- 03/21/09 09:54:51 (1 year ago)
- Files:
-
- trunk/midcom/com_rohea_account/templates/cra-show-index-info.xhtml (modified) (1 diff)
- trunk/midcom/com_rohea_account/templates/cra-show-index-login.xhtml (modified) (1 diff)
- trunk/midcom/midcom_core/configuration/defaults.yml (modified) (5 diffs)
- trunk/midcom/midcom_core/helpers/attachment.php (modified) (1 diff)
- trunk/midcom/midcom_core/static/services/uimessages/midgard.js (modified) (1 diff)
- trunk/midcom/midcom_helper_datamanager/widget/fckeditor.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/com_rohea_account/templates/cra-show-index-info.xhtml
r21310 r21343 1 1 <p> 2 2 <tal:block i18n:translate=''>key: Logged in as <tal:block i18n:name='username' tal:replace='com_rohea_account/current_person/username' /></tal:block> 3 <a href='/ __midcom/logout' i18n:translate=''>key: Logout</a>3 <a href='/mgd:logout' i18n:translate=''>key: Logout</a> 4 4 </p> trunk/midcom/com_rohea_account/templates/cra-show-index-login.xhtml
r21310 r21343 3 3 4 4 5 <form method='post' name='midcom_services_auth_frontend_form' action='/ __midcom/login'>5 <form method='post' name='midcom_services_auth_frontend_form' action='/mgd:login'> 6 6 <div> 7 7 <span i18n:translate='' style='display:block; width:130px; float:left;'>key: Username</span> trunk/midcom/midcom_core/configuration/defaults.yml
r20910 r21343 111 111 controller: midcom_core_controllers_page 112 112 action: edit 113 route: / __midcom/edit113 route: /mgd:edit 114 114 content_entry_point: midcom-edit-page 115 115 page_create: 116 116 controller: midcom_core_controllers_page 117 117 action: create 118 route: / __midcom/create118 route: /mgd:create 119 119 content_entry_point: midcom-edit-page 120 120 page_delete: 121 121 controller: midcom_core_controllers_page 122 122 action: delete 123 route: / __midcom/delete123 route: /mgd:delete 124 124 content_entry_point: midcom-delete-page 125 125 # page_configure: 126 126 # controller: midcom_core_controllers_configuration 127 127 # action: configure 128 # route: / __midcom/configure128 # route: /mgd:configure 129 129 # content_entry_point: midcom-configure-page 130 130 # component_configure: 131 131 # controller: midcom_core_controllers_configuration 132 132 # action: configure 133 # route: / __midcom/configure/{$component}/133 # route: /mgd:configure/{$component}/ 134 134 # content_entry_point: midcom-configure-component 135 135 cache_invalidate: 136 136 controller: midcom_core_controllers_cache 137 137 action: invalidate 138 route: / __midcom/cache/invalidate138 route: /mgd:cache/invalidate 139 139 root_only: true 140 140 content_entry_point: midcom-invalidate-cache … … 142 142 controller: midcom_core_controllers_about 143 143 action: about 144 route: / __midcom/144 route: /mgd:about/ 145 145 root_only: true 146 146 content_entry_point: midcom-show-about … … 148 148 controller: midcom_core_controllers_comet 149 149 action: messages 150 route: / __midcom/comet/messages150 route: /mgd:comet/messages 151 151 content_entry_point: midcom-comet-messages 152 152 serveattachment: 153 153 controller: midcom_core_controllers_attachment 154 154 action: serve 155 route: / __midcom/serveattachment/{$guid}/155 route: /mgd:serveattachment/{$guid}/ 156 156 root_only: true 157 157 fckeditor_connector: 158 158 controller: midcom_helper_datamanager_controllers_fckeditor 159 159 action: connector 160 route: / __midcom/fckeditor/160 route: /mgd:fckeditor/ 161 161 allowed_methods: 162 162 - GET … … 168 168 controller: midcom_core_controllers_authentication 169 169 action: login 170 route: / __midcom/login170 route: /mgd:login 171 171 root_only: true 172 172 content_entry_point: midcom-authentication-form … … 174 174 controller: midcom_core_controllers_authentication 175 175 action: logout 176 route: / __midcom/logout176 route: /mgd:logout 177 177 root_only: true trunk/midcom/midcom_core/helpers/attachment.php
r19573 r21343 98 98 else // if cache is not enabled or anonymous read is not allowed serving attachment through MidCOM 99 99 { 100 return '/ __midcom/serveattachment/' . $attachment->guid . '/';100 return '/mgd:serveattachment/' . $attachment->guid . '/'; 101 101 } 102 102 } trunk/midcom/midcom_core/static/services/uimessages/midgard.js
r19507 r21343 45 45 }; 46 46 47 var req = jQuery.midcom.helpers.comet.start('/ __midcom/comet/messages/', response_method);47 var req = jQuery.midcom.helpers.comet.start('/mgd:comet/messages/', response_method); 48 48 }, 49 49 create_message: function(data) { trunk/midcom/midcom_helper_datamanager/widget/fckeditor.php
r20411 r21343 110 110 $output .= " oFCKeditor{$this->namespace}_{$this->main_input_name}.Width = \"{$this->width}\";\n"; 111 111 $output .= " oFCKeditor{$this->namespace}_{$this->main_input_name}.ToolbarSet = \"{$this->toolbarset}\";\n"; 112 $output .= " oFCKeditor{$this->namespace}_{$this->main_input_name}.Config.LinkBrowserURL = oFCKeditor{$this->namespace}_{$this->main_input_name}.BasePath + 'editor/filemanager/browser/default/browser.html?Connector={$_MIDCOM->context->prefix} __midcom/fckeditor/';\n";112 $output .= " oFCKeditor{$this->namespace}_{$this->main_input_name}.Config.LinkBrowserURL = oFCKeditor{$this->namespace}_{$this->main_input_name}.BasePath + 'editor/filemanager/browser/default/browser.html?Connector={$_MIDCOM->context->prefix}mgd:fckeditor/';\n"; 113 113 114 114 // Start the editor
