1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# siehe http://wiki.innovations.at/bin/view/Knowledge/Typo3Backend mod.SHARED { defaultLanguageFlag=de defaultLanguageLabel=Deutsch # links = 1, mitte = 0, rechts = 2, rand = 3 colPos_list = 1,0,2 } # bei seiten kopieren nicht (kopie) und unsichtbar TCEMAIN.table { pages.disablePrependAtCopy = 1 pages.disableHideAtCopy =1 tt_content.disablePrependAtCopy = 1 } # rechte für benutzergruppe TCEMAIN.permissions { groupid = 1 group = show, editcontent, edit, delete, new everybody = } TCEFORM.tt_content { #colPos.disabled = 1 header_layout.removeItems = 1,3,4,5 header_layout.altLabels.0 = Überschrift (groß) header_layout.altLabels.2 = Überschrift (klein) header_link.disabled = 1 header_position.disabled = 1 imageborder.disabled = 1 image_compression.disabled = 1 image_effects.disabled = 1 image_frames.disabled = 1 longdescURL.disabled = 1 sys_language_uid.disabled = 1 spaceBefore.disabled = 1 spaceAfter.disabled = 1 section_frame.disabled = 1 sectionIndex.disabled = 1 text_properties.disabled = 1 text_align.disabled = 1 text_face.disabled = 1 text_size.disabled = 1 text_color.disabled = 1 linkToTop.disabled = 1 date.disabled = 1 layout.disabled = 1 fe_group.disabled = 1 hidden.disabled = 1 } RTE.classesAnchor.mail.titleText > RTE.classesAnchor.externalLinkInNewWindow.titleText > RTE.classesAnchor.externalLink.titleText > RTE.classesAnchor.internalLink.titleText > RTE.classesAnchor.download.titleText > RTE.default { hideButtons = subscript,superscript,outdent,indent,textcolor,bgcolor,table,blockstylelabel, blockstyle, textstylelabel, textstyle, formatblock hidePStyleItems = PRE, H1, H2, H3, H4, H5, H6, pre, address,blockquote,div } |
1 2 3 4 5 6 |
# Ausblenden der Suchbox im Page-Modul mod.web_layout.disableSearchBox = 1 # Ausblenden der Suchbox im List-Modul # Funktioniert erst ab TYPO3 4.6 mod.web_list.disableSearchBox = 1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
RTE.default.enableWordClean.HTMLparser { allowTags = a,abbr,acronym,b,bdo,blockquote,br,cite,code,col, colgroup,del,dfn,div,em,h1,h2,h3,h4,h5,h6,hr,i,img,li,ol, p,span,strike,strong,sub,sup,table,thead,tbody,tfoot,td,tr,th, ul,pre,dl,dd,dt tags { p { allowedAttribs = id, title, dir, lang, xml:lang, class fixAttrib.align.unset = 1 fixAttrib.style.unset = 1 } div < .p h1 < .p h2 < .p h3 < .p h4 < .p h5 < .p h6 < .p table < .p thead < .p tbody < .p tfoot < .p th < .p tr < .p td < .p caption < .p span < .p ul < .p ol < .p li < .p dfn < .p hr < .p strong < .p em < .p del < .p q < .p code < .p blockquote < .p b < .p i < .p sub < .p sup < .p hr < .p dl < .p dd < .p dt < .p pre < .p a { # entfernt die Anker aus Word-Dokumenten # und die Style-Attribute, die Safari sonst in die Links schreibt. allowedAttribs = id, title, dir, lang, xml:lang, class, href fixAttrib.style.unset = 1 } } # das a ist neu hier, für die Anker aus Word rmTagIfNoAttrib = span,div,a removeTags = center, font, o:p, sdfield, strike, u # das brauchts, weil Safari sonst sogar auf br das style-Atribut setzt noAttrib = br } |