Index: Classes/Controller/PreviewController.php
===================================================================
--- Classes/Controller/PreviewController.php (revision 3682)
+++ Classes/Controller/PreviewController.php (working copy)
@@ -86,10 +86,6 @@
$wsSettingsParams = '&tx_workspaces_web_workspacesworkspaces[controller]=Review';
$wsSettingsUrl = $wsSettingsPath . $wsSettingsUri . $wsSettingsParams;
- $wsHelpUri = $uriBuilder->uriFor('help', array(), $this, 'workspaces', 'web_workspacesworkspaces');
- $wsHelpParams = '&tx_workspaces_web_workspacesworkspaces[controller]=Preview';
- $wsHelpUrl = $wsSettingsPath . $wsHelpUri . $wsHelpParams;
-
$viewDomain = t3lib_BEfunc::getViewDomain($this->pageId);
$wsBaseUrl = $viewDomain . '/index.php?id=' . $this->pageId . '&L=' . $language;
@@ -104,13 +100,11 @@
}
$this->view->assign('wsUrl', $wsBaseUrl . '&ADMCMD_view=1&ADMCMD_editIcons=1&ADMCMD_previewWS=' . $GLOBALS['BE_USER']->workspace);
$this->view->assign('wsSettingsUrl', $wsSettingsUrl);
- $this->view->assign('wsHelpUrl', $wsHelpUrl);
$this->view->assign('backendDomain', t3lib_div::getIndpEnv('TYPO3_HOST_ONLY'));
$GLOBALS['BE_USER']->setAndSaveSessionData('workspaces.backend_domain', t3lib_div::getIndpEnv('TYPO3_HOST_ONLY'));
$this->pageRenderer->addJsInlineCode("workspaces.preview.lll" , "TYPO3.LLL.Workspaces = {
visualPreview: '" . $GLOBALS['LANG']->sL('LLL:EXT:workspaces/Resources/Private/Language/locallang.xml:preview.visualPreview', true) . "',
listView: '" . $GLOBALS['LANG']->sL('LLL:EXT:workspaces/Resources/Private/Language/locallang.xml:preview.listView', true) . "',
- helpView: '" . $GLOBALS['LANG']->sL('LLL:EXT:workspaces/Resources/Private/Language/locallang.xml:preview.helpView', true) . "',
livePreview: '" . $GLOBALS['LANG']->sL('LLL:EXT:workspaces/Resources/Private/Language/locallang.xml:preview.livePreview', true) . "',
workspacePreview: '" . $GLOBALS['LANG']->sL('LLL:EXT:workspaces/Resources/Private/Language/locallang.xml:preview.workspacePreview', true) . "'
};\n");
@@ -119,13 +113,6 @@
/**
* @return void
*/
- public function helpAction() {
- // @todo Implement this action
- }
-
- /**
- * @return void
- */
public function newPageAction() {
$message = t3lib_div::makeInstance(
't3lib_FlashMessage',
Index: ext_tables.php
===================================================================
--- ext_tables.php (revision 3682)
+++ ext_tables.php (working copy)
@@ -15,7 +15,7 @@
array(
// An array holding the controller-action-combinations that are accessible
'Review' => 'index,fullIndex,singleIndex',
- 'Preview' => 'index,help,newPage'
+ 'Preview' => 'index,newPage'
),
array(
'access' => 'user,group',
Index: Resources/Private/Language/locallang.xml
===================================================================
--- Resources/Private/Language/locallang.xml (revision 3682)
+++ Resources/Private/Language/locallang.xml (working copy)
@@ -73,7 +73,6 @@
-
Index: Resources/Private/Layouts/popup.html
===================================================================
--- Resources/Private/Layouts/popup.html (revision 3682)
+++ Resources/Private/Layouts/popup.html (working copy)
@@ -4,11 +4,10 @@
var liveUrl = '{liveUrl}';
var wsUrl = '{wsUrl}';
var wsSettingsUrl = '{wsSettingsUrl}';
- var wsHelpUrl = '{wsHelpUrl}';
document.domain = '{backendDomain}';
function resize(height) {
- // poor way to avoid that we require any scrollbars within the frames
+ // poor way to avoid that we require any scrollbars within the frames
var finalHeight = height * 1.1;
Ext.getCmp('visualPanel').setHeight(finalHeight);
Ext.getCmp('wsPanel').setHeight(finalHeight);
Index: Resources/Public/JavaScript/preview.js
===================================================================
--- Resources/Public/JavaScript/preview.js (revision 3682)
+++ Resources/Public/JavaScript/preview.js (working copy)
@@ -137,16 +137,6 @@
doMask: false,
src: wsSettingsUrl
}]
- },{
- title: TYPO3.LLL.Workspaces.helpView,
- id: 'wsHelp',
- layout: 'fit',
- items: [{
- xtype: 'iframePanel',
- id: 'settingsPanel',
- doMask: false,
- src: wsHelpUrl
- }]
}]
}]
});