Created
April 24, 2013 17:24
-
-
Save jaguerra/5453891 to your computer and use it in GitHub Desktop.
TYPO3 RTE htmlarea allow iframe, script and html5 data attributes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Permitir iframe, embed, script en RTE | |
# | |
RTE.default.proc.allowTags := addToList(iframe,embed,script,object,param,a,ul,li,ol) | |
RTE.default.proc.allowTagsOutside := addToList(iframe,embed,script,object,param,a,ul,li,ol) | |
RTE.default.removeTagsAndContents := removeFromList(script,object,param,a,ul,li,ol) | |
RTE.default.proc.HTMLparser_db = 0 | |
RTE.default.proc.entryHTMLparser_db = 0 | |
RTE.default.proc.exitHTMLparser_db = 0 | |
RTE.default.proc.HTMLparser_rte = 0 | |
RTE.default.proc.entryHTMLparser_rte = 0 | |
RTE.default.proc.exitHTMLparser_rte = 0 | |
RTE.default.proc.HTMLparser_db > | |
RTE.default.proc.entryHTMLparser_db > | |
RTE.default.proc.exitHTMLparser_db > | |
RTE.default.proc.HTMLparser_rte > | |
RTE.default.proc.entryHTMLparser_rte > | |
RTE.default.proc.exitHTMLparser_rte > | |
RTE.default.FE > |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lib.parseFunc_RTE.allowTags = acronym,abbr,b,i,u,a,img,br,div,center,pre,font,hr,sub,sup,p,strong,em,li,ul,ol,blockquote,strike,span,h1,h2,h3,h4,h5,h6,iframe,script,embed,object,param | |
lib.parseFunc_RTE.nonTypoTagStdWrap.HTMLparser.htmlSpecialChars = 0 | |
lib.parseFunc_RTE.nonTypoTagStdWrap.HTMLparser.keepNonMatchedTags = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Deactivating all parsers is not about allowing anything but about removing every control.