Revision: 42077
Author: philip.breau
Date: August-06-14 2:52:57 PM
Message:
MOBI-700
Leverage ICEfaces Resource Coalescing
change DeviceResourceRenderer to create an OutputStyleSheet component for the theme, which can then participate in proper ICEfaces resource handling and be specified in the resource-dependency.xml file
added sample resource-dependency.xml to showcase
Modified : /icemobile/trunk/icemobile/jsf/components/component/resources/icefaces.ace/META-INCLUDE/faces-config.xml
Modified : /icemobile/trunk/icemobile/jsf/components/component/src/org/icefaces/mobi/component/deviceresource/DeviceResourceRenderer.java
Added : /icemobile/trunk/icemobile/samples/jsf/mobileshowcase/src/main/resources/META-INF
Added : /icemobile/trunk/icemobile/samples/jsf/mobileshowcase/src/main/resources/META-INF/resource-dependency.xml
Example resource-dependency.xml:
**********************************************
<dependencies>
<resource name="showcase.css" library="css">
<requires>
<resource name="android_light.css" library="org.icefaces.component.skins"/>
<resource name="android_dark.css" library="org.icefaces.component.skins"/>
<resource name="archaic.css" library="org.icefaces.component.skins"/>
<resource name="bb10.css" library="org.icefaces.component.skins"/>
<resource name="bberry.css" library="org.icefaces.component.skins"/>
<resource name="ios7.css" library="org.icefaces.component.skins"/>
<resource name="ipad.css" library="org.icefaces.component.skins"/>
<resource name="iphone.css" library="org.icefaces.component.skins"/>
<resource name="jqm.css" library="org.icefaces.component.skins"/>
<resource name="simulator.css" library="org.icefaces.component.skins"/>
</requires>
</resource>
</dependencies>
Attached test case that shows the issue. Note: the war file needs to icefaces-ee-mobi.jar to be added back in.
To see the issue, run welcomeICEmobile.jsf and view the rendered code through some browser tools. The style.css should be the last one in the head tag but with 1.3.1 it is further up the head section.