[JBoss JIRA] (RF-13077) Allow programatically configure Resource Mapping by exposing a service interface
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RF-13077?page=com.atlassian.jira.plugin.s... ]
Lukáš Fryč reassigned RF-13077:
-------------------------------
Assignee: Lukáš Fryč
> Allow programatically configure Resource Mapping by exposing a service interface
> --------------------------------------------------------------------------------
>
> Key: RF-13077
> URL: https://issues.jboss.org/browse/RF-13077
> Project: RichFaces
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: resource handling
> Affects Versions: 5.0.0.Alpha2
> Reporter: Lukáš Fryč
> Assignee: Lukáš Fryč
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 4 hours
> Remaining Estimate: 4 hours
>
> A concept of a service should allow to programatically provide a mapped URL for a resource, either local one (JSF resource) or remote (on static server, CDN, etc.).
> {code:java}
> public interface ResourceMapper {
> /**
> * @return null when no mapping should be involved
> public ResourceMapping mapResource(ResourceKey key);
> }
> public interface ResourceMapping {
> URL getURL(FacesContext context);
> }
> public interface StaticURLResourceMapping implements ResourceMapping {
> URL getURL();
> }
> public class FacesResourceMapping implements ResourceMapping {
> public ResourceKey getResourceKey() {
> ...
> }
> }
> {code}
> This way people may decide e.g. move all resources from given resource library to another library.
> This is related to RF-11543.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (RF-13086) Popup panel: button's label is invisible in IE8
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13086?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-13086:
-------------------------------
Fix Version/s: 4.3.3
> Popup panel: button's label is invisible in IE8
> -----------------------------------------------
>
> Key: RF-13086
> URL: https://issues.jboss.org/browse/RF-13086
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-panels-layout-themes
> Affects Versions: 4.3.1, 4.3.2
> Environment: jboss 7.1.1 gatein 3.5 portletbridge 3.2 jsf 2.1.7 (jboss7.1.1 embedded) richfaces 4.3.1(2)
> Reporter: Sergey Zubarev
> Fix For: 4.3.3
>
>
> {noformat}
> <!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>
> <ui:composition xmlns="http://www.w3.org/1999/xhtml"
> xmlns:ui="http://java.sun.com/jsf/facelets"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:a4j="http://richfaces.org/a4j"
> xmlns:rich="http://richfaces.org/rich">
> <h:form id="planningCPPRTableSettingForm">
> <rich:popupPanel modal="true" id="planningCPPRTableSettingsPanel" width="450" height="500"
> showWhenRendered="false" domElementAttachment="form">
> <f:facet name="header">
> <h:outputText value="#{msg.tableConfig_header}" />
> </f:facet>
> <f:facet name="controls">
> <h:graphicImage name="images/fil_close.png"
> style="cursor:pointer"
> onclick="#{rich:component('planningCPPRTableSettingsPanel')}.hide()" />
> </f:facet>
> <a4j:commandButton id="apply_btn" value="apply"/>
> <a4j:commandButton id="reset_btn" value="reset"/>
> <input type="button" value="cancel"
> onclick="#{rich:component('planningCPPRTableSettingsPanel')}.hide();" />
> </rich:popupPanel>
> </h:form>
> </ui:composition>
> {noformat}
> IE 8 not rendered labels for buttons.
> In HTML all ok - all buttons have labels (value tag). In IE 7,9,10 all ok. If I removed header facet from popupPanel or add autosized="true" attribute for popupPanel - button text is displayed.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (RF-13086) Popup panel: button's label is invisible in IE8
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13086?page=com.atlassian.jira.plugin.s... ]
Brian Leathem commented on RF-13086:
------------------------------------
According to RF-13087 this is also apparent when {{show="true"}}
> Popup panel: button's label is invisible in IE8
> -----------------------------------------------
>
> Key: RF-13086
> URL: https://issues.jboss.org/browse/RF-13086
> Project: RichFaces
> Issue Type: Bug
> Security Level: Public(Everyone can see)
> Components: component-panels-layout-themes
> Affects Versions: 4.3.1, 4.3.2
> Environment: jboss 7.1.1 gatein 3.5 portletbridge 3.2 jsf 2.1.7 (jboss7.1.1 embedded) richfaces 4.3.1(2)
> Reporter: Sergey Zubarev
>
> {noformat}
> <!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>
> <ui:composition xmlns="http://www.w3.org/1999/xhtml"
> xmlns:ui="http://java.sun.com/jsf/facelets"
> xmlns:h="http://java.sun.com/jsf/html"
> xmlns:f="http://java.sun.com/jsf/core"
> xmlns:a4j="http://richfaces.org/a4j"
> xmlns:rich="http://richfaces.org/rich">
> <h:form id="planningCPPRTableSettingForm">
> <rich:popupPanel modal="true" id="planningCPPRTableSettingsPanel" width="450" height="500"
> showWhenRendered="false" domElementAttachment="form">
> <f:facet name="header">
> <h:outputText value="#{msg.tableConfig_header}" />
> </f:facet>
> <f:facet name="controls">
> <h:graphicImage name="images/fil_close.png"
> style="cursor:pointer"
> onclick="#{rich:component('planningCPPRTableSettingsPanel')}.hide()" />
> </f:facet>
> <a4j:commandButton id="apply_btn" value="apply"/>
> <a4j:commandButton id="reset_btn" value="reset"/>
> <input type="button" value="cancel"
> onclick="#{rich:component('planningCPPRTableSettingsPanel')}.hide();" />
> </rich:popupPanel>
> </h:form>
> </ui:composition>
> {noformat}
> IE 8 not rendered labels for buttons.
> In HTML all ok - all buttons have labels (value tag). In IE 7,9,10 all ok. If I removed header facet from popupPanel or add autosized="true" attribute for popupPanel - button text is displayed.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (RF-11543) Refactor ResourceMappingFeature to Service
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-11543?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-11543:
-------------------------------
Sprint: 5.0.0.Alpha2 - Sprint 1
> Refactor ResourceMappingFeature to Service
> ------------------------------------------
>
> Key: RF-11543
> URL: https://issues.jboss.org/browse/RF-11543
> Project: RichFaces
> Issue Type: Task
> Security Level: Public(Everyone can see)
> Components: core
> Affects Versions: 4.1.0.Milestone3
> Reporter: Lukáš Fryč
> Assignee: Lukáš Fryč
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 2 hours
> Remaining Estimate: 2 hours
>
> ResourceMappingFeature class currently provides utilities for determining current configuration of resource mapping (enablement, location, mappingFile).
> Since referenced context-param configurations can be only literals, it does make sense to cache configuration, then it needs to be refactored from static to Service and use configuration holder.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months
[JBoss JIRA] (RF-13077) Allow programatically configure Resource Mapping by exposing a service interface
by Brian Leathem (JIRA)
[ https://issues.jboss.org/browse/RF-13077?page=com.atlassian.jira.plugin.s... ]
Brian Leathem updated RF-13077:
-------------------------------
Sprint: 5.0.0.Alpha2 - Sprint 1
> Allow programatically configure Resource Mapping by exposing a service interface
> --------------------------------------------------------------------------------
>
> Key: RF-13077
> URL: https://issues.jboss.org/browse/RF-13077
> Project: RichFaces
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Components: resource handling
> Affects Versions: 5.0.0.Alpha2
> Reporter: Lukáš Fryč
> Fix For: 5.0.0.Alpha2
>
> Original Estimate: 4 hours
> Remaining Estimate: 4 hours
>
> A concept of a service should allow to programatically provide a mapped URL for a resource, either local one (JSF resource) or remote (on static server, CDN, etc.).
> {code:java}
> public interface ResourceMapper {
> /**
> * @return null when no mapping should be involved
> public ResourceMapping mapResource(ResourceKey key);
> }
> public interface ResourceMapping {
> URL getURL(FacesContext context);
> }
> public interface StaticURLResourceMapping implements ResourceMapping {
> URL getURL();
> }
> public class FacesResourceMapping implements ResourceMapping {
> public ResourceKey getResourceKey() {
> ...
> }
> }
> {code}
> This way people may decide e.g. move all resources from given resource library to another library.
> This is related to RF-11543.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
11 years, 4 months