[jbossseam-issues] [JBoss JIRA] Commented: (JBSEAM-3066) Include JBoss 5 compatible version of Facelets

Ronald van Kuijk (JIRA) jira-events at lists.jboss.org
Wed Dec 17 20:09:54 EST 2008


    [ https://jira.jboss.org/jira/browse/JBSEAM-3066?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12443238#action_12443238 ] 

Ronald van Kuijk commented on JBSEAM-3066:
------------------------------------------

Jay,

I have a fix for the loadimplicit logging 'problem'. Can you re-release this with the following patch:

### Eclipse Workspace Patch 1.0
#P Facelets
Index: src/java/com/sun/facelets/compiler/TagLibraryConfig.java
===================================================================
RCS file: /cvs/facelets/src/java/com/sun/facelets/compiler/TagLibraryConfig.java,v
retrieving revision 1.11
diff -u -r1.11 TagLibraryConfig.java
--- src/java/com/sun/facelets/compiler/TagLibraryConfig.java 14 Jun 2007 21:59:50 -0000 1.11
+++ src/java/com/sun/facelets/compiler/TagLibraryConfig.java 18 Dec 2008 00:58:45 -0000
@@ -429,7 +429,7 @@
         for (int i = 0; i < urls.length; i++) {
             try {
                 compiler.addTagLibrary(create(urls[i]));
- log.info("Added Library from: " + urls[i]);
+ log.log(Level.INFO, "Added Library from: " + urls[i]);
             } catch (Exception e) {
                 log.log(Level.SEVERE, "Error Loading Library: " + urls[i], e);
             } 

It then logs nicely:

01:54:27,303 INFO  [RuleBase] parsing rules: /security.drl
01:54:27,514 INFO  [Contexts] starting up: org.jboss.seam.web.session
01:54:27,777 INFO  [SeamFormFilter] Ignoring http://127.0.0.1:8080/chiba-jsf/home.seam
01:54:28,171 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/jboss-seam-ui-2.1.1-SNAPSHOT.jar!/META-INF/s.taglib.xml
01:54:28,185 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/jsf-facelets-1.1.15.B1-patch.jar!/META-INF/jsf-core.taglib.xml
01:54:28,189 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/jsf-facelets-1.1.15.B1-patch.jar!/META-INF/jsf-html.taglib.xml
01:54:28,197 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/jsf-facelets-1.1.15.B1-patch.jar!/META-INF/jsf-ui.taglib.xml
01:54:28,205 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/jsf-facelets-1.1.15.B1-patch.jar!/META-INF/jstl-core.taglib.xml
01:54:28,208 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/jsf-facelets-1.1.15.B1-patch.jar!/META-INF/jstl-fn.taglib.xml
01:54:28,219 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/richfaces-ui.jar!/META-INF/a4j.taglib.xml
01:54:28,222 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/richfaces-ui.jar!/META-INF/ajax4jsf.taglib.xml
01:54:28,225 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/richfaces-ui.jar!/META-INF/jsp.taglib.xml
01:54:28,257 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/richfaces-ui.jar!/META-INF/rich.taglib.xml
01:54:28,262 INFO  [compiler] Added Library from: jar:file:/home/kukel/workspace/.metadata/.plugins/org.jboss.ide.eclipse.as.core/JBoss_4.2_Server/deploy/chiba-jsf.war/WEB-INF/lib/richfaces-ui.jar!/META-INF/richfaces.taglib.xml
01:54:30,094 INFO  [SeamFormFilter] Ignoring http://127.0.0.1:8080/chiba-jsf/stylesheet/theme.css
01:54:30,096 INFO  [SeamFormFilter] Ignoring http://127.0.0.1:8080/chiba-jsf/favicon.ico
01:54:30,112 INFO  [SeamFormFilter] Ignoring http://127.0.0.1:8080/chiba-jsf/img/seamlogo.png
01:54:30,683 INFO  [SeamFormFilter] Ignoring http://127.0.0.1:8080/chiba-jsf/favicon.ico


> Include JBoss 5 compatible version of Facelets
> ----------------------------------------------
>
>                 Key: JBSEAM-3066
>                 URL: https://jira.jboss.org/jira/browse/JBSEAM-3066
>             Project: Seam
>          Issue Type: Task
>    Affects Versions: 2.0.2.SP1
>            Reporter: Pete Muir
>            Assignee: Jay Balunas
>            Priority: Blocker
>             Fix For: 2.0.3.CR1
>
>


-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list