Bug #18862 » view_help.diff
typo3/sysext/lang/locallang_view_help.xml (working copy) | ||
---|---|---|
<label index="goBack">Go back</label>
|
||
<label index="fullDescription">See full description of table</label>
|
||
<label index="fullDescription_module">See full description of module</label>
|
||
<label index="goToToc">Go to TOC</label>
|
||
<label index="goToToc"><< go back to Manual Index</label>
|
||
<label index="to_top">To top</label>
|
||
<label index="TOC">Table Of Contents</label>
|
||
<label index="TOC_core">TYPO3 Core Features</label>
|
||
... | ... | |
<label index="full_manual_chapters">Manual Chapters</label>
|
||
</languageKey>
|
||
</data>
|
||
</T3locallang>
|
||
</T3locallang>
|
typo3/sysext/t3skin/stylesheets/typo3-csh.css (working copy) | ||
---|---|---|
padding: 3px;
|
||
}
|
||
div.typo3-view-help {
|
||
background-color: #f7f7f9;
|
||
margin: 10px 30px;
|
||
}
|
||
div.typo3-view-help p {
|
||
padding: 4px;
|
||
font-size:12px;
|
||
line-height:1.4;
|
||
}
|
||
div.typo3-view-help h3 {
|
||
background-color:#B8BEC9;
|
||
background-image:url(../icons/gfx/alt_menu_mainitem_bg.gif);
|
||
... | ... | |
div.typo3-view-help p.c-nav a {
|
||
background-color: transparent;
|
||
}
|
||
}
|
||
div.typo3-view-help h1 {
|
||
/*border-bottom: 1px solid #000;*/
|
||
font-size:150%;
|
||
color:#000;
|
||
background: #acb3bf;
|
||
padding:10px;
|
||
text-align: left;
|
||
margin-bottom: 0px;
|
||
background: none;
|
||
}
|
||
div.typo3-view-help h2 {
|
||
/*border-bottom: 1px solid #000;*/
|
||
font-size:130%;
|
||
color:#fff;
|
||
background: #acb3bf;
|
||
padding:2px 2px 2px 12px;
|
||
background-image:url(../icons/gfx/alt_menu_mainitem_bg.gif);
|
||
background-repeat:repeat-x;
|
||
margin-top: 0;
|
||
}
|
||
div.typo3-view-help h4 {
|
||
padding:2px 6px;
|
||
background:none;
|
||
}
|
||
div.typo3-view-help div.c-toc {
|
||
/*background-color:#B8BEC9;
|
||
border:1px solid black;*/
|
||
background: none;
|
||
border:none;
|
||
padding-left:6px;
|
||
}
|
||
div.typo3-view-help div.c-toc ul {
|
||
list-style:none;
|
||
padding: 2px 5px;
|
||
}
|
||
div.typo3-view-help div.c-toc ul li ul {
|
||
list-style: disc;
|
||
margin-left:10px;
|
||
}
|
||
div.typo3-view-help div.c-toc ul li {
|
||
padding:2px;
|
||
}
|
||
div.typo3-view-help div.c-toc a:hover,
|
||
div.typo3-view-help .manual-title a:hover,
|
||
div.typo3-view-help p a:hover {
|
||
color: red;
|
||
}
|
||
div.typo3-view-help .manual-title,
|
||
div.typo3-view-help .introduction {
|
||
font-size:1.2em;
|
||
line-height:1.4;
|
||
padding: 0 12px 6px;
|
||
}
|
||
div.typo3-view-help .manual-title a,
|
||
div.typo3-view-help div.c-toc a,
|
||
div.typo3-view-help p a {
|
||
text-decoration: underline;
|
||
}
|
||
div.typo3-view-help img.c-inlineimg {
|
||
margin-left: 6px;
|
||
}
|
typo3/view_help.php (working copy) | ||
---|---|---|
$output.= '
|
||
<h1>'.$LANG->getLL('manual_title',1).'</h1>
|
||
<p>'.t3lib_BEfunc::TYPO3_copyRightNotice().'</p>';
|
||
';
|
||
$output.= '
|
||
<h1>'.$LANG->getLL('introduction',1).'</h1>
|
||
<p>'.$LANG->getLL('description',1).'</p>';
|
||
<h2>'.$LANG->getLL('introduction',1).'</h2>
|
||
<p class="introduction">'.$LANG->getLL('description',1).'</p>';
|
||
$output.= '
|
||
<h1>'.$LANG->getLL('TOC',1).'</h1>'.
|
||
<h2>'.$LANG->getLL('TOC',1).'</h2>'.
|
||
$this->render_TOC_makeTocList($tocArray);
|
||
if (!$this->renderALL) {
|
||
... | ... | |
if ($this->renderALL) {
|
||
$output.= '
|
||
<h1>'.$LANG->getLL('full_manual_chapters',1).'</h1>'.
|
||
<h2>'.$LANG->getLL('full_manual_chapters',1).'</h2>'.
|
||
implode('
|
||
<!-- NEW SECTION: -->
|
||
',$outputSections);
|
||
}
|
||
|
||
$output .= '<hr /><p class="manual-title">'.t3lib_BEfunc::TYPO3_copyRightNotice().'</p>';
|
||
|
||
return $output;
|
||
}
|
||
... | ... | |
$SOBE->init();
|
||
$SOBE->main();
|
||
$SOBE->printContent();
|
||
?>
|
||
?>
|