[JBoss JIRA] (RFPL-3074) Verify archetypes
by Matej Novotny (JIRA)
[ https://issues.jboss.org/browse/RFPL-3074?page=com.atlassian.jira.plugin.... ]
Matej Novotny resolved RFPL-3074.
---------------------------------
Resolution: Done
> Verify archetypes
> -----------------
>
> Key: RFPL-3074
> URL: https://issues.jboss.org/browse/RFPL-3074
> Project: RichFaces Planning
> Issue Type: Sub-task
> Security Level: Public(Everyone can see)
> Components: QE
> Reporter: Pavol Pitonak
> Assignee: Matej Novotny
> Fix For: 5.0.0.Alpha2
>
>
> * simpleapp on desktop
> {code}mvn archetype:generate -DarchetypeGroupId=org.richfaces.archetypes -DarchetypeArtifactId=richfaces-archetype-simpleapp -DarchetypeVersion=4.3.4.Final -DgroupId=org.richfaces.test -DartifactId=simpleapp-test -Denterprise=false -Dmobile-optimized=false{code}
> * simpleapp on mobile
> {code}mvn archetype:generate -DarchetypeGroupId=org.richfaces.archetypes -DarchetypeArtifactId=richfaces-archetype-simpleapp -DarchetypeVersion=4.3.4.Final -DgroupId=org.richfaces.test -DartifactId=simpleapp-test -Denterprise=false -Dmobile-optimized=true{code}
> * kitchensink on desktop and mobile
> {code}mvn archetype:generate -DarchetypeGroupId=org.richfaces.archetypes -DarchetypeArtifactId=richfaces-archetype-kitchensink -DarchetypeVersion=$VERSION -DgroupId=org.richfaces.test -DartifactId=kitchensink-test -Denterprise=false{code}
> (replace $VERSION with current release version, e.g. 5.0.0.Alpha2)
--
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
12 years, 3 months
[JBoss JIRA] (RFPL-3074) Verify archetypes
by Matej Novotny (JIRA)
[ https://issues.jboss.org/browse/RFPL-3074?page=com.atlassian.jira.plugin.... ]
Matej Novotny commented on RFPL-3074:
-------------------------------------
Ok I verified it, and it works fine now.
Resolving issue.
> Verify archetypes
> -----------------
>
> Key: RFPL-3074
> URL: https://issues.jboss.org/browse/RFPL-3074
> Project: RichFaces Planning
> Issue Type: Sub-task
> Security Level: Public(Everyone can see)
> Components: QE
> Reporter: Pavol Pitonak
> Assignee: Matej Novotny
> Fix For: 5.0.0.Alpha2
>
>
> * simpleapp on desktop
> {code}mvn archetype:generate -DarchetypeGroupId=org.richfaces.archetypes -DarchetypeArtifactId=richfaces-archetype-simpleapp -DarchetypeVersion=4.3.4.Final -DgroupId=org.richfaces.test -DartifactId=simpleapp-test -Denterprise=false -Dmobile-optimized=false{code}
> * simpleapp on mobile
> {code}mvn archetype:generate -DarchetypeGroupId=org.richfaces.archetypes -DarchetypeArtifactId=richfaces-archetype-simpleapp -DarchetypeVersion=4.3.4.Final -DgroupId=org.richfaces.test -DartifactId=simpleapp-test -Denterprise=false -Dmobile-optimized=true{code}
> * kitchensink on desktop and mobile
> {code}mvn archetype:generate -DarchetypeGroupId=org.richfaces.archetypes -DarchetypeArtifactId=richfaces-archetype-kitchensink -DarchetypeVersion=$VERSION -DgroupId=org.richfaces.test -DartifactId=kitchensink-test -Denterprise=false{code}
> (replace $VERSION with current release version, e.g. 5.0.0.Alpha2)
--
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
12 years, 3 months
[JBoss JIRA] (RFPL-3150) Suggest concept of ResourceTracker to JSF SPEC
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RFPL-3150?page=com.atlassian.jira.plugin.... ]
Lukáš Fryč commented on RFPL-3150:
----------------------------------
Additionally this class could consider:
* importance of [Resource Ordering|https://issues.jboss.org/browse/RF-12537]
* resource aggregation (the ResourceTracker could take over resource rendering at all, not just ability to detect state of rendering)
> Suggest concept of ResourceTracker to JSF SPEC
> ----------------------------------------------
>
> Key: RFPL-3150
> URL: https://issues.jboss.org/browse/RFPL-3150
> Project: RichFaces Planning
> Issue Type: Enhancement
> Security Level: Public(Everyone can see)
> Reporter: Lukáš Fryč
>
> From the class source:
> {code}
> /**
> * Tracks what external resources are renderered to the page
> *
> * @author Lukas Fryc
> *
> */
> public interface ResourceTracker {
> /**
> * Returns true if given resource has been already renderered to the page
> *
> * @return true if given resource has been already renderered to the page; false otherwise
> */
> boolean isResourceRenderered(FacesContext facesContext, ResourceKey resourceKey);
> /**
> * Marks given resource as renderered
> */
> void markResourceRendered(FacesContext facesContext, ResourceKey resourceKey);
> }
> {code}
> See https://github.com/richfaces/richfaces/blob/5.0.0.Alpha2/framework/src/ma...
> Currently we need to use two JSF-impl specific classes:
> * {{[ResourceTrackerForMojarra|https://github.com/richfaces/richfaces/blob/5.0.0.Alpha2/framework/src/main/java/org/richfaces/resource/external/ResourceTrackerForMojarra.java]}}
> * {{[ResourceTrackerForMyFaces|https://github.com/richfaces/richfaces/blob/5.0.0.Alpha2/framework/src/main/java/org/richfaces/resource/external/ResourceTrackerForMyFaces.java]}}
--
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
12 years, 3 months
[JBoss JIRA] (RFPL-3150) Suggest concept of ResourceTracker to JSF SPEC
by Lukáš Fryč (JIRA)
Lukáš Fryč created RFPL-3150:
--------------------------------
Summary: Suggest concept of ResourceTracker to JSF SPEC
Key: RFPL-3150
URL: https://issues.jboss.org/browse/RFPL-3150
Project: RichFaces Planning
Issue Type: Enhancement
Security Level: Public (Everyone can see)
Reporter: Lukáš Fryč
>From the class source:
{code}
/**
* Tracks what external resources are renderered to the page
*
* @author Lukas Fryc
*
*/
public interface ResourceTracker {
/**
* Returns true if given resource has been already renderered to the page
*
* @return true if given resource has been already renderered to the page; false otherwise
*/
boolean isResourceRenderered(FacesContext facesContext, ResourceKey resourceKey);
/**
* Marks given resource as renderered
*/
void markResourceRendered(FacesContext facesContext, ResourceKey resourceKey);
}
{code}
See https://github.com/richfaces/richfaces/blob/5.0.0.Alpha2/framework/src/ma...
Currently we need to use two JSF-impl specific classes:
* {{[ResourceTrackerForMojarra|https://github.com/richfaces/richfaces/blob/5.0.0.Alpha2/framework/src/main/java/org/richfaces/resource/external/ResourceTrackerForMojarra.java]}}
* {{[ResourceTrackerForMyFaces|https://github.com/richfaces/richfaces/blob/5.0.0.Alpha2/framework/src/main/java/org/richfaces/resource/external/ResourceTrackerForMyFaces.java]}}
--
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
12 years, 3 months
[JBoss JIRA] (RFPL-3074) Verify archetypes
by Lukáš Fryč (JIRA)
[ https://issues.jboss.org/browse/RFPL-3074?page=com.atlassian.jira.plugin.... ]
Lukáš Fryč commented on RFPL-3074:
----------------------------------
[~manovotn] I found that the associated issues are covered - have you verified fixed archetypes? Can we resolve this issue?
> Verify archetypes
> -----------------
>
> Key: RFPL-3074
> URL: https://issues.jboss.org/browse/RFPL-3074
> Project: RichFaces Planning
> Issue Type: Sub-task
> Security Level: Public(Everyone can see)
> Components: QE
> Reporter: Pavol Pitonak
> Assignee: Matej Novotny
> Fix For: 5.0.0.Alpha2
>
>
> * simpleapp on desktop
> {code}mvn archetype:generate -DarchetypeGroupId=org.richfaces.archetypes -DarchetypeArtifactId=richfaces-archetype-simpleapp -DarchetypeVersion=4.3.4.Final -DgroupId=org.richfaces.test -DartifactId=simpleapp-test -Denterprise=false -Dmobile-optimized=false{code}
> * simpleapp on mobile
> {code}mvn archetype:generate -DarchetypeGroupId=org.richfaces.archetypes -DarchetypeArtifactId=richfaces-archetype-simpleapp -DarchetypeVersion=4.3.4.Final -DgroupId=org.richfaces.test -DartifactId=simpleapp-test -Denterprise=false -Dmobile-optimized=true{code}
> * kitchensink on desktop and mobile
> {code}mvn archetype:generate -DarchetypeGroupId=org.richfaces.archetypes -DarchetypeArtifactId=richfaces-archetype-kitchensink -DarchetypeVersion=$VERSION -DgroupId=org.richfaces.test -DartifactId=kitchensink-test -Denterprise=false{code}
> (replace $VERSION with current release version, e.g. 5.0.0.Alpha2)
--
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
12 years, 3 months