[
http://issues.apache.org/jira/browse/TOBAGO-119?page=comments#action_12437753 ]
Bernd Bohmann commented on TOBAGO-119:
--------------------------------------
In the nightly build you can add a markup configuration section in the
tobago-theme.xml in your tobago-theme for example
<renderers>
<renderer>
<name>Out</name>
<supported-markup>
<markup>strong</markup>
<markup>deleted</markup>
<markup>infotext</markup>
</supported-markup>
</renderer>
</renderers>
the standard theme defined the base markup for Out.
I didn't feel lucky about the tag renderers.
If someone has has a better name please add a comment.
This works only for Out, until now.
> Allow custom markup - styles in <tc:out>
> ----------------------------------------
>
> Key: TOBAGO-119
> URL: http://issues.apache.org/jira/browse/TOBAGO-119
> Project: MyFaces Tobago
> Issue Type: Improvement
> Components: Core
> Affects Versions: 1.0.7, 1.0.8
> Environment: tobago 1.0.8 nightly jdk 1.4 retro
> Reporter: Rainer Rohloff
> Assigned To: Bernd Bohmann
> Fix For: 1.0.9
>
>
> In order to guarantee CI, we need additional layout styles within the tag
> <tc:out>
> I think an good solution is not to limit the range of values.
> i.e.
> <tc:out value="Hello world" markup="infotext1" />
> with theme-definition
> .tobago-out-markup-infotext1 {
> ...
> border-bottom: 1px solid #b2b2b2;
> ...
> }
> possible patch ?
> public final class HtmlRendererUtil {
> if (StringUtils.isNotEmpty(markup)) {
> if (markup.equals("strong") || markup.equals("deleted")) {
> tobagoClass.append(prefix).append("-markup-").append(markup).append("
> ");
> } else {
> LOG.warn("Unknown markup='" + markup + "'");
> }
> change to:
> if (StringUtils.isNotEmpty(markup)) {
> tobagoClass.append(prefix).append("-markup-").append(markup).append("
> ");
> if (!markup.equals("strong") && !markup.equals("deleted")) {
> LOG.info("Not a standard markup='" + markup + "'");
> }
>
> OutTagDeclaration:
> @UIComponentTagAttribute(defaultValue = "none", allowedValues = { "none",
> "strong", "deleted" })
> change to ???:
> @UIComponentTagAttribute(defaultValue = "none")
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira