[JBoss JIRA] Created: (SEAMFACES-177) Misc documentation issues
by Jozef Hartinger (JIRA)
Misc documentation issues
-------------------------
Key: SEAMFACES-177
URL: https://issues.jboss.org/browse/SEAMFACES-177
Project: Seam Faces
Issue Type: Bug
Components: Documentation
Affects Versions: 3.0.2
Reporter: Jozef Hartinger
Priority: Minor
Typos:
Section 1.1
* inadvertantly
Section 1.3
* beacuse
Section 7.1
* suport
* annotatins
Section 7.2
* explilcitly
Sectio 7.2.2
* annoation
* annoations
* supoort
Section 7.2.3
* Restrcition
* lifecylce
* qualying
* annoation
* annoations
Other:
Sectio 2.1
* ?fid=... should be wrapped within <literal/>
Book info
* 3.0.0-SNAPSHOT - See SEAM-14
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] Created: (SEAMFACES-108) Add producer for UIViewRoot
by Dan Allen (JIRA)
Add producer for UIViewRoot
---------------------------
Key: SEAMFACES-108
URL: https://issues.jboss.org/browse/SEAMFACES-108
Project: Seam Faces
Issue Type: Feature Request
Components: CDI Integration
Affects Versions: 3.0.0.CR1
Reporter: Dan Allen
Priority: Minor
Add producer for UIViewRoot so that it can be injected. It should be dependent-scoped as it may change at any time during the request lifecycle.
Injected into an object:
{code:java}
@Inject Instance<UIViewRoot> viewRootProvider;
{code}
or into an observer:
{code:java}
public void beforeRender(@Observes @Before @RenderResponse PhaseEvent e, UIViewRoot viewRoot) {
...
}
{code}
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] Created: (JBSEAM-4778) Valid URLs are ignored on Excel Stylesheet ULink components (CSSParser.java)
by Juan Francisco Ara Monzon (JIRA)
Valid URLs are ignored on Excel Stylesheet ULink components (CSSParser.java)
----------------------------------------------------------------------------
Key: JBSEAM-4778
URL: https://issues.jboss.org/browse/JBSEAM-4778
Project: Seam
Issue Type: Bug
Components: Excel
Affects Versions: 2.2.1.Final
Environment: Standard
Reporter: Juan Francisco Ara Monzon
Priority: Trivial
Fix For: 2.3.0.ALPHA
Valid URLs are not being processed correctly by CSSParser
If you load a URL with ftp/http format (http://) works perfectly, but if you reference a resource inside the application (i.e. classLoader.getResource("whatever").toString()) the parser doesn't recognices it as a valid URL
CSSParser discriminates between resources or urls by "://" but should be doing by ":/" (as in jar:/.... or vfszip:// returned from WEB-INF/classes/ files.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] Created: (SEAMFACES-163) FacesServletInitializer interferes with FacesInitializer
by Bryn Cooke (JIRA)
FacesServletInitializer interferes with FacesInitializer
--------------------------------------------------------
Key: SEAMFACES-163
URL: https://issues.jboss.org/browse/SEAMFACES-163
Project: Seam Faces
Issue Type: Bug
Components: Configuration API
Affects Versions: 3.0.1
Environment: Glassfish 3.1. Mojarra 2.1.1, Weld 1.1.1, Seam-Faces 3.0.1
Reporter: Bryn Cooke
I have a basic 1 page JSF app on glassfish with seam-faces.
Sometimes I am getting java.lang.IllegalStateException: Application was not properly initialized at startup, could not find Factory: javax.faces.context.FacesContextFactory
After some digging I think the problem is the following:
org.jboss.seam.faces.config.FacesServletInitializer and com.sun.faces.config.FacesInitializer both have logic that tries to register the faces servlet if one isn't already registered.
Glassfish seems to execute context listeners in a random order. Whichever listener is run first will perform faces initialization (they both check to see if a faces servlet has been
configured).
com.sun.faces.config.FacesInitializer has the following code, which seems to be required to set up faces correctly.
// The following line is temporary until we can solve an ordering
// issue in V3. Right now the JSP container looks for a mapping
// of the FacesServlet in the web.xml. If it's not present, then
// it assumes that the application isn't a faces application. In this
// case the JSP container will not register the ConfigureListener
// definition from our TLD nor will it parse cause or JSP TLDs to
// be parsed.
servletContext.addListener(com.sun.faces.config.ConfigureListener.class);
This bug is not deterministic due to the random ordering of listeners by Glassfish.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months
[JBoss JIRA] Created: (SEAMFACES-147) Page action in ViewConfig
by Dupont Dupont (JIRA)
Page action in ViewConfig
-------------------------
Key: SEAMFACES-147
URL: https://issues.jboss.org/browse/SEAMFACES-147
Project: Seam Faces
Issue Type: Feature Request
Reporter: Dupont Dupont
Be able to configure a page action with ViewConfig.
For instance :
{code:java}
@ViewConfig
public interface Pages {
static enum Pages1 {
@ViewPattern("/*")
@ViewAction("#{bean.doSomething()}")
ALL;
}
}
{code}
Prettyfaces can be a source of inspiration since it has this capability, and the added bonus of specifying which phase you want this to occur.
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
13 years, 4 months