Github user cnenning commented on the pull request:

    https://github.com/apache/struts/pull/60#issuecomment-166308691
  
    The new version looks awesome!
    
    Just a small addon to constructor of 
`StrutsWildcardServletTilesApplicationContext`, that re-enables loading of 
`tiles*.xml` from classpath and works in IBM stuff, too:
    ```
            Enumeration<URL> cpResources = 
getClass().getClassLoader().getResources("/");
            while (cpResources.hasMoreElements()) {
                URL cpResource = cpResources.nextElement();
                urls.add(cpResource);
            }
    ```
    
    
    Regarding the other issues:
    * css looks alright again in FF, seems like it was a FF bug
    * About EL stuff: I'm pretty helpless and pretty confused. That log message 
is created in `freemarker.ext.jsp.TaglibFactory`. It looks for a `BeansWrapper` 
which struts creates in `FreemarkerManager.createObjectWrapper()`. When 
tiles-layout is created with a JSP, and just tiles-attributes are done with 
FTLs everything seems OK. But when tiles-layout is done with FTL that message 
is logged and EL support seems broken.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@struts.apache.org
For additional commands, e-mail: dev-h...@struts.apache.org

Reply via email to