Class CombinedMarkupOutputFormat
- Since:
- 2.3.24
-
Constructor Summary
ConstructorDescriptionCombinedMarkupOutputFormat(MarkupOutputFormat outer, MarkupOutputFormat inner)
Same asCombinedMarkupOutputFormat(String, MarkupOutputFormat, MarkupOutputFormat)
withnull
as thename
parameter.CombinedMarkupOutputFormat(String name, MarkupOutputFormat outer, MarkupOutputFormat inner)
-
Method Summary
Modifier and TypeMethodDescriptionescapePlainText(String plainTextContent)
Should give the same result asMarkupOutputFormat.fromPlainTextByEscaping(String)
and thenMarkupOutputFormat.getMarkupString(TemplateMarkupOutputModel)
, but the implementation may use a more efficient solution.Returns the MIME type of the output format.getName()
The short name used to refer to this format (like in the#ftl
header).boolean
Tells if by default auto-escaping should be on for this format.boolean
isLegacyBuiltInBypassed(String builtInName)
Tells if a string built-in that can't handle aTemplateMarkupOutputModel
left hand operand can bypass this object as is.boolean
Tells if this output format allows insertingTemplateMarkupOutputModel
-s of another output formats into it.protected TemplateCombinedMarkupOutputModel
newTemplateMarkupOutputModel(String plainTextContent, String markupContent)
Creates a newCommonTemplateMarkupOutputModel
that's bound to thisOutputFormat
instance.void
Equivalent to callingMarkupOutputFormat.fromPlainTextByEscaping(String)
and thenMarkupOutputFormat.output(TemplateMarkupOutputModel, Writer)
, but the implementation may use a more efficient solution.<MO2 extends TemplateMarkupOutputModel<MO2>>
voidoutputForeign(MO2 mo, Writer out)
Outputs a value from a foreign output format; only used ifOutputFormat.isOutputFormatMixingAllowed()
returntrue
.Methods inherited from class freemarker.core.CommonMarkupOutputFormat
concat, fromMarkup, fromPlainTextByEscaping, getMarkupString, getSourcePlainText, isEmpty, output
Methods inherited from class freemarker.core.OutputFormat
toString, toStringExtraProperties
-
Constructor Details
-
CombinedMarkupOutputFormat
Same asCombinedMarkupOutputFormat(String, MarkupOutputFormat, MarkupOutputFormat)
withnull
as thename
parameter. -
CombinedMarkupOutputFormat
- Parameters:
name
- Maybenull
, in which case it defaults toouter.getName() + "{" + inner.getName() + "}"
.
-
-
Method Details
-
getName
Description copied from class:OutputFormat
The short name used to refer to this format (like in the#ftl
header).- Specified by:
getName
in classOutputFormat
-
getMimeType
Description copied from class:OutputFormat
Returns the MIME type of the output format. This might comes handy when generating a HTTP response.null
null
if this output format doesn't clearly corresponds to a specific MIME type.- Specified by:
getMimeType
in classOutputFormat
-
output
Description copied from class:MarkupOutputFormat
Equivalent to callingMarkupOutputFormat.fromPlainTextByEscaping(String)
and thenMarkupOutputFormat.output(TemplateMarkupOutputModel, Writer)
, but the implementation may use a more efficient solution.- Specified by:
output
in classCommonMarkupOutputFormat<TemplateCombinedMarkupOutputModel>
- Throws:
IOException
TemplateModelException
-
outputForeign
public <MO2 extends TemplateMarkupOutputModel<MO2>> void outputForeign(MO2 mo, Writer out) throws IOException, TemplateModelExceptionDescription copied from class:MarkupOutputFormat
Outputs a value from a foreign output format; only used ifOutputFormat.isOutputFormatMixingAllowed()
returntrue
. The default implementation inMarkupOutputFormat
will just let the otherOutputFormat
to output value, but it can be overridden to support more nuanced conversions, or to check if outputting without conversion should be allowed.- Overrides:
outputForeign
in classMarkupOutputFormat<TemplateCombinedMarkupOutputModel>
- Throws:
IOException
TemplateModelException
-
escapePlainText
Description copied from class:MarkupOutputFormat
Should give the same result asMarkupOutputFormat.fromPlainTextByEscaping(String)
and thenMarkupOutputFormat.getMarkupString(TemplateMarkupOutputModel)
, but the implementation may use a more efficient solution.- Specified by:
escapePlainText
in classMarkupOutputFormat<TemplateCombinedMarkupOutputModel>
- Throws:
TemplateModelException
-
isLegacyBuiltInBypassed
Description copied from class:MarkupOutputFormat
Tells if a string built-in that can't handle aTemplateMarkupOutputModel
left hand operand can bypass this object as is. A typical such case would be when aTemplateHTMLOutputModel
of "HTML" format bypasses?html
.- Specified by:
isLegacyBuiltInBypassed
in classMarkupOutputFormat<TemplateCombinedMarkupOutputModel>
- Throws:
TemplateModelException
-
isAutoEscapedByDefault
public boolean isAutoEscapedByDefault()Description copied from class:MarkupOutputFormat
Tells if by default auto-escaping should be on for this format. It should betrue
if you need to escape on most of the places where you insert values.- Overrides:
isAutoEscapedByDefault
in classCommonMarkupOutputFormat<TemplateCombinedMarkupOutputModel>
- See Also:
Configuration.setAutoEscapingPolicy(int)
-
isOutputFormatMixingAllowed
public boolean isOutputFormatMixingAllowed()Description copied from class:OutputFormat
Tells if this output format allows insertingTemplateMarkupOutputModel
-s of another output formats into it.If
true
, the foreignTemplateMarkupOutputModel
will be inserted into the output. If the current output format is aMarkupOutputFormat
this is done using theMarkupOutputFormat.outputForeign(TemplateMarkupOutputModel, Writer)
method, which can implement smart conversions. The default behavior (and the only behavior for non-markup outputs) is to behave as if the surrounding output format was the same; this is usually a bad idea to allow, as such an event could indicate application bugs.If this method returns
false
(recommended), then FreeMarker will try to assimilate the inserted value by converting its format to this format, which will currently (2.3.24) cause exception, unless the inserted value is made by escaping plain text and the target format is non-escaping, in which case format conversion is trivially possible. (It's not impossible that conversions will be extended beyond this, if there will be demand for that.)true
value is used byUndefinedOutputFormat
.- Overrides:
isOutputFormatMixingAllowed
in classCommonMarkupOutputFormat<TemplateCombinedMarkupOutputModel>
-
getOuterOutputFormat
-
getInnerOutputFormat
-
newTemplateMarkupOutputModel
protected TemplateCombinedMarkupOutputModel newTemplateMarkupOutputModel(String plainTextContent, String markupContent)Description copied from class:CommonMarkupOutputFormat
Creates a newCommonTemplateMarkupOutputModel
that's bound to thisOutputFormat
instance. When this is called fromCommonMarkupOutputFormat
, exactly one of the parameters will be non-null
.- Specified by:
newTemplateMarkupOutputModel
in classCommonMarkupOutputFormat<TemplateCombinedMarkupOutputModel>
- Parameters:
plainTextContent
-null
if the content is markup that possibly can be described as plain text without loss.markupContent
- Typically will benull
ifplainTextContent
is notnull
. While the plain text always can be converted to markup viaMarkupOutputFormat.escapePlainText(String)
, it's up to the implementation if it wants to do that now and store the markup, or later on demand (like each time whenCommonMarkupOutputFormat.getMarkupString(CommonTemplateMarkupOutputModel)
is called).
-