[00:14:39] *** daniel_hinojosa has joined #seam-dev [00:25:52] <jbossbot> git [catch] push master cd483b0.. Shane Bryzak SEAM-15 [00:25:53] <jbossbot> jira [SEAM-15] Remove prerequisite element in favor of enforcer rule in modules [Open (Unresolved) Task, Minor, Shane Bryzak] https://issues.jboss.org/browse/SEAM-15 [00:25:54] <jbossbot> git [catch] push master URL: http://github.com/seam/catch/compare/57be36a...cd483b0 [00:27:11] <jbossbot> git [persistence] push master 6e42005.. Shane Bryzak SEAM-15 [00:27:12] <jbossbot> jira [SEAM-15] Remove prerequisite element in favor of enforcer rule in modules [Open (Unresolved) Task, Minor, Shane Bryzak] https://issues.jboss.org/browse/SEAM-15 [00:27:12] <jbossbot> git [persistence] push master URL: http://github.com/seam/persistence/compare/2688516...6e42005 [00:27:45] <jbossbot> git [config] push master 80e271d.. Shane Bryzak SEAM-15 [00:27:46] <jbossbot> jira [SEAM-15] Remove prerequisite element in favor of enforcer rule in modules [Open (Unresolved) Task, Minor, Shane Bryzak] https://issues.jboss.org/browse/SEAM-15 [00:27:47] <jbossbot> git [config] push master URL: http://github.com/seam/config/compare/e02e4e9...80e271d [00:29:22] <jbossbot> git [remoting] push master b3c8d38.. Shane Bryzak SEAM-15 [00:29:23] <jbossbot> jira [SEAM-15] Remove prerequisite element in favor of enforcer rule in modules [Open (Unresolved) Task, Minor, Shane Bryzak] https://issues.jboss.org/browse/SEAM-15 [00:29:23] <jbossbot> git [remoting] push master URL: http://github.com/seam/remoting/compare/cb4a1eb...b3c8d38 [00:30:26] <daniel_hinojosa> Servlet.service() for servlet FacesServlet threw exception: java.lang.IllegalArgumentException: null source [00:30:33] <daniel_hinojosa> anyone seen that before? [00:30:54] <sbryzak> yes [00:30:59] <jbossbot> git [security] push master 033db9d.. Shane Bryzak SEAM-15 [00:31:00] <jbossbot> jira [SEAM-15] Remove prerequisite element in favor of enforcer rule in modules [Open (Unresolved) Task, Minor, Shane Bryzak] https://issues.jboss.org/browse/SEAM-15 [00:31:00] <jbossbot> git [security] push master URL: http://github.com/seam/security/compare/ac6d95e...033db9d [00:31:08] <sbryzak> it usually means there's an error in your markup [00:31:57] <daniel_hinojosa> ok [00:32:17] <sbryzak> the error message really sucks, they need to fix it [00:32:29] <daniel_hinojosa> Looks clear, but I will scour real good [00:32:30] <daniel_hinojosa> thanks [00:39:34] <daniel_hinojosa> http://pastebin.com/9c5qn6yp [00:39:46] <daniel_hinojosa> seems like a simple markup [00:46:18] <sbryzak> hmm, yeah that looks ok [00:46:26] <sbryzak> there's nothing else in the stacktrace? [00:46:42] <daniel_hinojosa> I didn't have a faces-config.xml [00:46:48] <daniel_hinojosa> I put a blank one in there [00:47:01] <daniel_hinojosa> I am assuming that all faces stuff is automatic due to [00:47:08] <daniel_hinojosa> INFO [org.jboss.seam.faces.config.FacesServletInitializer] Auto-registering FacesServlet with mappings: [/faces/*, *.jsf, *.faces] [00:49:23] <sbryzak> maybe mojavelinux would have some insight [00:49:44] <daniel_hinojosa> added a faces-config.xml [00:49:48] <daniel_hinojosa> gonna try again [00:50:19] *** bitshuffler has joined #seam-dev [00:52:40] *** gmorling1 has quit IRC [00:58:54] <bleathem> daniel_hinojosa what container are you running in? [01:11:38] <jbossbot> git [security] push master 2790180.. Shane Bryzak removed unnecessary class [01:11:38] <jbossbot> git [security] push master URL: http://github.com/seam/security/compare/033db9d...2790180 [01:13:44] <daniel_hinojosa> JBAS6Final [01:13:57] <daniel_hinojosa> bleathem ^ [01:14:16] <bleathem> do you have anything in your web.xml? [01:14:54] *** aslak has quit IRC [01:15:33] <daniel_hinojosa> yeah [01:15:34] <daniel_hinojosa> name [01:15:51] <daniel_hinojosa> session-config [01:15:55] <daniel_hinojosa> and welcome file list [01:16:00] <daniel_hinojosa> that's it [01:16:06] <bleathem> you could try initializing the Faces Servlet [01:16:20] <bleathem> <servlet> [01:16:21] <bleathem> <servlet-name>Faces Servlet</servlet-name> [01:16:23] <bleathem> <servlet-class>javax.faces.webapp.FacesServlet</servlet-class> [01:16:24] <bleathem> <load-on-startup>1</load-on-startup> [01:16:26] <bleathem> </servlet> [01:16:27] <bleathem> <servlet-mapping> [01:16:29] <bleathem> <servlet-name>Faces Servlet</servlet-name> [01:16:30] <bleathem> <url-pattern>*.jsf</url-pattern> [01:16:32] <bleathem> </servlet-mapping> [01:16:34] <bleathem> shouldn't be necessary [01:16:42] <daniel_hinojosa> right because it says it's already mapped [01:16:43] <bleathem> but it sometimes helps [01:16:46] <daniel_hinojosa> ok [01:17:01] <Diablo-D3> thats only required if you're either on a broken container, or its not a servlet/ejb 3.x project [01:17:08] <bleathem> it gets mapped dynamically by Faces, if it detects it hasn't yet been mapped [01:17:34] <Diablo-D3> or you dont have a ... faces-config.xml? [01:17:36] <Diablo-D3> something [01:17:37] <bleathem> What servlet version is in the DTD of your web.xml? [01:18:19] <bleathem> or not the DTD, but the document root [01:19:59] *** lincolnthree has quit IRC [01:23:35] <daniel_hinojosa> I have [01:23:38] <daniel_hinojosa> the xsd [01:23:50] <daniel_hinojosa> http://java.sun.com/xml/ns/javaee/web-facesconfig_2_0.xsd [01:24:23] <daniel_hinojosa> that's the 2009 version [01:25:45] <Diablo-D3> no, thats for faces [01:26:03] <Diablo-D3> <web-app xmlns="http://java.sun.com/xml/ns/javaee" [01:26:03] <Diablo-D3> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" [01:26:03] <Diablo-D3> xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" [01:26:03] <Diablo-D3> version="3.0"> [01:26:05] <Diablo-D3> you want that [01:26:50] <daniel_hinojosa> oh sorry misread [01:26:56] <daniel_hinojosa> yeah that's what I have for servlet [01:27:09] <daniel_hinojosa> this is in my web.xml [01:27:10] <daniel_hinojosa> <?xml version="1.0" encoding="UTF-8" standalone="no"?> [01:27:10] <daniel_hinojosa> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" [01:27:40] <Diablo-D3> you seem to be missing something [01:29:46] <mojavelinux> just dropping by [01:29:56] <mojavelinux> to activate jsf, you need one of three things [01:30:10] <mojavelinux> 1. seam-faces jar (that sets up jsf for you) [01:30:27] <mojavelinux> 2. if not #1, you need empty faces-config.xml (root element only, can't be blank) [01:30:46] <mojavelinux> 3. if not #1 or #2, you need web.xml w/ the Faces Servlet defined [01:30:52] <mojavelinux> bleathem: this would be good for the refguide [01:31:08] <mojavelinux> a section "How to setup JSF in a Java EE 6 webapp" [01:31:16] <mojavelinux> because it's funny how that just isn't well documented at all ;) [01:31:35] <mojavelinux> you should also mention the schema versions required, such as the one for faces-config.xml and web.xml [01:31:43] <mojavelinux> i'll make a jira, sounds like a very nice thing to offer [01:31:56] <bleathem> agreed. Right at the top og the ref guide [01:32:04] <daniel_hinojosa> I can help with that bleathem [01:32:18] <bleathem> daniel_hinojosa That'd be awesome! [01:32:26] <daniel_hinojosa> your stuff is on github bleathem? [01:32:38] <daniel_hinojosa> 95% chance of a yes [01:32:41] <daniel_hinojosa> actually no [01:32:41] <sbryzak> i think it's documented quite well in the jboss docs [01:32:42] <sbryzak> http://docs.jboss.org/jbossas/6/JSF_Guide/en-US/html/jsf.deployer.config.html [01:32:42] <bleathem> yes, https://github.com/seam/faces [01:32:45] <daniel_hinojosa> dumb Q on my part [01:33:32] <daniel_hinojosa> sbryzak: that's on the app server docs though [01:33:47] <sbryzak> yes, that's what it applies to [01:33:48] <bleathem> we could at least point in that direction [01:33:54] <sbryzak> in the seam docs we should have a link to those docs [01:33:55] <mojavelinux> SEAMFACES-124 [01:33:59] <jbossbot> jira [SEAMFACES-124] Create section that explains how to setup JSF [Open (Unresolved) Feature Request, Minor, Unassigned] https://issues.jboss.org/browse/SEAMFACES-124 [01:34:00] <sbryzak> because i don't think we could write them any better [01:34:01] <daniel_hinojosa> sbryzak: so there should there be a "Please see your containers docs for more info" [01:34:02] <daniel_hinojosa> ok [01:34:31] <bleathem> maybe include the explicit link for JBoss [01:34:52] <bleathem> Well, the one thing we add, is the seam faces registering of the servlet [01:35:01] <bleathem> that won't be included anywhere else [01:35:24] <mojavelinux> shane, it's good that it's documented in the jboss docs [01:35:30] <mojavelinux> but we still need an agnostic statement [01:35:34] <mojavelinux> perfectly fine to link there though [01:35:36] <mojavelinux> added that to the jira [01:35:44] <mojavelinux> this is a very short section, it's just a jumping off point [01:35:50] <mojavelinux> and something to clear the misconceptions [01:36:08] <mojavelinux> I think "please see your containers docs for instructions" is the root of the problem right now [01:36:14] <mojavelinux> i'm okay with it being "more details" [01:37:11] <mojavelinux> there really is mass confusion in this area right now, so part of what seam does is put this stuff in layman's terms ;) [01:37:17] <mojavelinux> I had an idea while driving today [01:37:21] <mojavelinux> seam geo [01:37:23] <mojavelinux> who's with me? [01:37:41] <mojavelinux> first, location awareness for apps (like chrome offers) but that could be part of seam social [01:37:43] <mojavelinux> I'm thinking more [01:38:05] *** jose_freitas has joined #seam-dev [01:38:11] <mojavelinux> how many times in an app do we need to say "show the closest thing to a coordinate, like a zip code or city" [01:38:18] <mojavelinux> you need that for like every web app these days [01:38:35] <Diablo-D3> heh [01:38:37] <mojavelinux> store finder, pick up location, vending machine, hotels [01:38:41] <Diablo-D3> I turn that off [01:38:56] <mojavelinux> what do you mean you turn it off? [01:39:00] <Diablo-D3> it doesnt work unless your computer has a gps device or something [01:39:09] <Diablo-D3> mojavelinux: firefox asks me if I want to let the website do it [01:39:12] <mojavelinux> no, i'm saying not the gps thing [01:39:15] <mojavelinux> that's separate [01:39:19] <mojavelinux> the logic for finding something that is close [01:39:19] <Diablo-D3> I say no [01:39:21] <sbryzak> mojavelinux: that would be a cool feature [01:39:24] <mojavelinux> so if I have a list of stores in my database [01:39:29] <sbryzak> would we make it part of the international module though? [01:39:29] <mojavelinux> I need to know which one is the closest [01:39:36] <sbryzak> as it could tie into locales and languages [01:39:38] <mojavelinux> how else do I know which restaurants you want to look at, for instance [01:39:41] <mojavelinux> yeah, totally [01:39:50] <mojavelinux> now we can integrate a library if one exists [01:39:58] <mojavelinux> so we would focus on the programming model part [01:40:01] <sbryzak> i'm pretty sure there's a library [01:40:05] <mojavelinux> but I can't write an app today that doesn't need this [01:40:13] <mojavelinux> I was thinking of creating a redbox clone [01:40:19] <mojavelinux> are you familiar with this, perhaps not in AU [01:40:23] <mojavelinux> they are vending machines [01:40:26] <mojavelinux> that have DVDs in them [01:40:30] <mojavelinux> you can reserve online [01:40:32] <mojavelinux> then go pick it up [01:40:40] <mojavelinux> like blockbuster without humans involved [01:40:55] <mojavelinux> but to make that work, we need distance calculation [01:41:03] <mojavelinux> otherwise, you will have to be driving 5 states to go pick up a DVD [01:41:06] <mojavelinux> same with pizza ordering [01:41:12] <mojavelinux> and restuarant locator and reviews [01:41:20] <sbryzak> definitely useful [01:41:23] <mojavelinux> i find it hard to think of a website to create that I don't need this feature [01:41:51] <mojavelinux> cool, so i'll add that to the whiteboard for post-final [01:42:14] <jbossbot> git [security] push master 42775f5.. Shane Bryzak added authenticator configuration methods to API [01:42:15] <sbryzak> sounds good [01:42:15] <jbossbot> git [security] push master URL: http://github.com/seam/security/compare/2790180...42775f5 [01:42:33] <bleathem> good idea! [01:47:29] <daniel_hinojosa> I have been using JBoss App Server since 2001 (I think) and I can state with certainty, documentation is a lot better. [01:50:45] <sbryzak> same here, i remember what is was like then [01:51:14] <sbryzak> btw i hate writing docs [01:52:12] <bleathem> I commented earlier today about the quality of documentation for all JBoss projects [01:52:15] <bleathem> it's awesome [01:52:28] <bleathem> Seam, RichFaces, Hibernate, JBoss AS - all have great docs [01:52:34] <sbryzak> we're getting better, i think the seam project is responsible for raising the bar though [01:52:37] <bleathem> and those are just the ones I look at [01:52:44] <sbryzak> it was the first project that had extensive reference documentation [01:52:54] <sbryzak> all thanks to gavin's initiative [01:53:02] <bleathem> right on [01:53:07] <bleathem> other projects will benefit [01:53:21] <bleathem> I gave up on CODI in a hurry, because the docs were so poor [01:53:40] <bleathem> pizza' [01:53:43] <bleathem> s here! [01:53:51] <bleathem> later all [01:53:56] <sbryzak> cya [01:54:26] *** wdrai has left #seam-dev [03:21:55] <Diablo-D3> codi? [03:23:56] <bleathem> shh.. saying codi around here is worse than saying spring!! [03:24:01] <bleathem> lol [03:24:15] <bleathem> codi is the MyFaces set of portable extensions to CDI [03:24:42] <bleathem> the "competition", and least for Seam Faces [03:25:02] <bleathem> Sweet! My first JSF component actually renders! [03:25:05] <bleathem> nice [03:25:14] <bleathem> now to make it actually do something useful [03:25:54] *** daniel_hinojosa has quit IRC [03:45:05] *** rruss has joined #seam-dev [03:46:43] *** rruss has quit IRC [03:49:25] *** daniel_hinojosa has joined #seam-dev [03:52:40] <sbryzak> we encourage competing portable extensions for cdi, just for the record ;p [03:55:00] *** bitshuffler_ has joined #seam-dev [03:55:30] *** rruss has joined #seam-dev [03:56:18] *** bitshuffler has quit IRC [04:08:56] *** jose_freitas has quit IRC [04:21:45] <daniel_hinojosa> http://pastebin.com/kKAZKgRG [04:21:59] <daniel_hinojosa> this is latest null source stack trace I am getting [04:22:27] <daniel_hinojosa> JBAS6.0 does consider my application a JSF application [04:22:42] <daniel_hinojosa> 20:20:34,706 INFO [javax.enterprise.resource.webcontainer.jsf.config] Initializing Mojarra 2.0.3 ( b05) for context '/cdi-scala_2.8.1-1.0' [04:22:53] *** bitshuffler_ has quit IRC [04:24:23] <jbossbot> git [security] push master 33e0378.. Shane Bryzak completed documentation for external auth module [04:24:24] <jbossbot> git [security] push master URL: http://github.com/seam/security/compare/42775f5...33e0378 [04:25:01] <daniel_hinojosa> Is there something in the ServletEventBridgeFilter that's causing some funkiness down the road? [04:27:54] <daniel_hinojosa> line 72: fireEvent(new ServletRequestContext(request, response), InitializedLiteral.INSTANCE) [04:28:50] <daniel_hinojosa> either the context is null, or the InitializedLiteral.INSTANCE is null [04:29:01] <daniel_hinojosa> or the path [04:31:55] <daniel_hinojosa> gonna pull it and debug it and find out what is going on. [04:40:22] *** rruss has quit IRC [05:06:35] *** echelog-2 has joined #seam-dev [05:55:27] *** gastaldi has joined #seam-dev [05:55:52] <gastaldi> hey ! [05:56:01] <gastaldi> Congratulations to all of us ! [05:58:26] <gastaldi> you guys really rock [05:59:32] <Diablo-D3> 3.0.0 final ship? [06:00:55] <gastaldi> yup, record-time bug solving [06:01:12] <bleathem> Faces repo isn't showing any tag commits [06:01:20] <bleathem> I don't think it's been released yet [06:01:51] [06:02:01] [06:02:29] <gastaldi> It will not be released until then [06:04:35] <daniel_hinojosa> wow [06:08:31] <bleathem> what's wow? [06:09:07] <daniel_hinojosa> that its going to be released? [06:09:12] <daniel_hinojosa> that wasn't a question [06:09:13] <daniel_hinojosa> ha [06:11:47] *** gastaldi has quit IRC [06:15:48] <bleathem> My opinion is now incredibly biased, but I think Seam 3 is going to be *huuge* !! [06:17:28] <daniel_hinojosa> nice. I'd like to see it fully operational...Like a Death Star! [06:17:41] <daniel_hinojosa> I have had a few bumps along the way [06:18:19] <daniel_hinojosa> Have one now with 3.0.0.CR3 [06:21:47] <Diablo-D3> wait [06:21:55] <Diablo-D3> whats the new bomb version [06:27:34] <bleathem> I just got the hudson email that there is a problem with the Faces documentation build [06:27:53] <bleathem> I assume that's something sbryzak and mojavelinux are working on right now [06:34:24] <daniel_hinojosa> I am downloading snapshots now to give it a try [06:39:08] <daniel_hinojosa> I may plugin those snapshots into my ear [06:44:18] <bleathem> hudson back to normal [06:45:52] <daniel_hinojosa> Caused by: java.lang.NoClassDefFoundError: org/jboss/seam/solder/logging/Messages [06:46:22] <daniel_hinojosa> class not found [06:47:32] <daniel_hinojosa> I am using master branch of solder [06:47:50] <bleathem> that's an old one [06:48:10] <bleathem> or maybe it was the international messages one that was old [06:48:21] <daniel_hinojosa> I just got that right now [06:48:29] <bleathem> vanilla app? [06:48:31] <daniel_hinojosa> with seam-solder-3.0.0.SNAPSHOT [06:48:39] <bleathem> did you build it? [06:48:39] <daniel_hinojosa> its my cdi-scala proj [06:48:47] <daniel_hinojosa> yeah built and installed [06:48:53] <daniel_hinojosa> into mvn repo [06:49:03] <daniel_hinojosa> and then sbt got it from there [06:49:29] <bleathem> what are your dependencies? [06:49:39] <daniel_hinojosa> well in my WEB-INF/lib [06:49:57] <daniel_hinojosa> joda-time, scala-library, seam-servlet-3.0.0-SNAPSHOT.jar [06:50:07] <daniel_hinojosa> and seam-solder-3.0.0-SNAPSHOT.jar [06:50:19] <daniel_hinojosa> and that's the latest from github [06:50:33] <Diablo-D3> er, guys? [06:50:40] <Diablo-D3> [12:22:06] <Diablo-D3> whats the new bom version [06:51:01] <bleathem> Diablo-D3 don't know [06:51:10] <Diablo-D3> bleerrrgghh [06:51:19] <bleathem> daniel_hinojosa that seems pretty vanilla [06:51:20] <Diablo-D3> I wonder if its just 3.0.0 final or something [06:51:33] <bleathem> daniel_hinojosa I wonder why it's failing... [06:51:53] <bleathem> no the bom follows a different numbering sequence [06:52:02] <daniel_hinojosa> let me see if that class is actually there [06:52:04] <bleathem> you could probably look at the pom on github [06:52:46] <bleathem> https://github.com/seam/dist/blob/master/pom.xml [06:52:51] <bleathem> looks like it's 17 [06:53:03] <bleathem> or 17 would be the next one maybe [06:53:18] <bleathem> does the bom have snapshots? [06:53:25] <bleathem> or just straight up releases. [06:53:50] <bleathem> daniel_hinojosa an amazingly insightful thing to check! :P [06:56:28] <daniel_hinojosa> and the winner is NO [06:57:09] <daniel_hinojosa> Bleathem: There is no org.jboss.seam.solder.logging.Messages [06:57:22] <bleathem> what's asking for it? [06:57:38] <bleathem> Is it your class, or a Seam class? [06:57:42] <daniel_hinojosa> org.jboss.seam.servlet.ServletExtension.<init>(ServletExtension.java:70) [06:58:03] <bleathem> lemme clone the servlet repo [06:59:59] <daniel_hinojosa> import org.jboss.seam.solder.logging.Messages; [07:00:03] <daniel_hinojosa> line 60 [07:00:11] <daniel_hinojosa> it is not in the current snapshot [07:01:27] <daniel_hinojosa> and that's because the dependency has no version [07:01:48] <bleathem> It was in solder CR4, still checking snapshot [07:02:01] <daniel_hinojosa> it's gone now [07:02:28] <bleathem> I see it [07:02:31] <bleathem> is seam solder api [07:02:39] <bleathem> ^in [07:03:07] <bleathem> fresh pull from solder repo [07:03:23] <daniel_hinojosa> oh from API [07:04:03] <bleathem> you need more "o"s in that "oh" [07:04:18] <daniel_hinojosa> so shouldn't that be in combined? [07:04:22] <bleathem> should be [07:04:32] <bleathem> it's not? [07:05:35] <bleathem> building now [07:06:16] <daniel_hinojosa> not in API either [07:06:36] <daniel_hinojosa> I think you may be looking at org.jboss.seam.solder.messages.Messages [07:06:55] <daniel_hinojosa> but seam-servlet need org.jboss.seam.solder.logging.Messages [07:07:09] <bleathem> line 60 from Servlet Extension: [07:07:11] <bleathem> import org.jboss.seam.solder.messages.Messages; [07:07:22] <bleathem> maybe it's your servlet that's stale [07:07:25] <daniel_hinojosa> looking again [07:07:29] <daniel_hinojosa> dunno [07:07:35] <bleathem> danno dunno [07:08:46] <daniel_hinojosa> weird [07:08:53] <bleathem> you sure you're pulling Servlet from https://github.com/seam/servlet ? [07:09:01] <bleathem> github remotes -v [07:09:26] <bleathem> rather [07:09:28] <bleathem> git remote -v [07:09:36] <bleathem> wrong on two counts [07:10:47] <bleathem> org.jboss.seam.solder.messages.Messages is in combined [07:11:11] <daniel_hinojosa> haha [07:11:13] <daniel_hinojosa> yep [07:11:18] <daniel_hinojosa> I had it attached to my fork [07:11:20] <daniel_hinojosa> grrr [07:13:03] <daniel_hinojosa> thanks bleathem [07:13:07] <bleathem> here's a poor soul trying to get Seam 3 to work on Websphere 7 [07:13:08] <bleathem> http://stackoverflow.com/questions/5408537/how-make-seam3-solder-with-cdi-work-in-websphere-7 [07:13:14] <bleathem> daniel_hinojosa np [07:14:38] <bleathem> I suppose I could point the websphere 7 guy to the thread on seam-dev regarding Seam 3 and websphere 8 [07:15:34] <daniel_hinojosa> nice...deployed [07:15:44] <daniel_hinojosa> still getting the ServletException: null source [07:16:21] <daniel_hinojosa> an Event Object from the one of the filters [07:36:51] *** oskutka has joined #seam-dev [07:39:25] *** daniel_hinojosa has quit IRC [07:49:03] *** daniel_hinojosa has joined #seam-dev [07:52:36] *** daniel_hinojosa has quit IRC [09:35:44] <jbossbot> git [mail] push master 7a976d8.. Dan Allen ignore junk files [09:35:44] <jbossbot> git [mail] push master URL: http://github.com/seam/mail/compare/794492d...7a976d8 [09:36:07] <jbossbot> git [mail] push master cd7b2e3.. Dan Allen update seam-bom version, remove unnecessary declarations [09:36:08] <jbossbot> git [mail] push master URL: http://github.com/seam/mail/compare/7a976d8...cd7b2e3 [09:37:51] <jbossbot> git [mail] push master 87abf3f.. Dan Allen upgrade dependencies; fix tests... [09:37:52] <jbossbot> git [mail] push master URL: http://github.com/seam/mail/compare/cd7b2e3...87abf3f [09:40:57] <mojavelinux> bleathem: amen to your comment about a way to share components [09:41:07] <mojavelinux> exactly my thought when I wrote my first component [09:41:12] <mojavelinux> perhaps forge can be that vessel [09:41:19] <mojavelinux> sfwk.org appears down, and I can't shell into it [09:41:25] <mojavelinux> tests for mail are now fixed [09:41:26] <mojavelinux> woot [09:42:02] *** kpiwko has joined #seam-dev [09:44:01] *** kpiwko has quit IRC [09:45:07] *** kpiwko has joined #seam-dev [09:48:46] *** kpiwko has quit IRC [10:06:46] *** kpiwko has joined #seam-dev [10:43:25] *** kpiwko has quit IRC [12:09:46] <Diablo-D3> Goddamnit this pisses me off [12:16:11] <Diablo-D3> hey guys [12:16:17] <Diablo-D3> where does log4j.properties go? [12:17:14] <sbryzak> in jboss the logging config is in server/default/deploy/jboss-logging.xml [12:17:27] <Diablo-D3> no, this is for prettyfaces spam [12:17:44] <sbryzak> i haven't used prettyfaces [12:17:59] <Diablo-D3> well, it says I need to put properties in log4j.properties [12:18:00] <Diablo-D3> but [12:18:05] <Diablo-D3> the internet doesnt seem to know where that file goes [12:18:20] <sbryzak> i'm pretty sure you want jboss-logging.xml [12:18:42] <Diablo-D3> but I dont want to change jboss's settings [12:18:52] <sbryzak> so you're not deploying to jboss? [12:19:10] <Diablo-D3> http://ocpsoft.com/docs/prettyfaces/snapshot/en-US/html_single/#FAQ [12:19:12] <Diablo-D3> see faq 5 [12:19:12] *** jose_freitas has joined #seam-dev [12:19:37] <sbryzak> ok... [12:19:48] <sbryzak> you need to configure the logging level for prettyfaces in jboss-logging.xml [12:20:03] * Diablo-D3 sighs. [12:20:11] <Diablo-D3> remind me to yell at lincoln when he shows up [12:26:57] *** kpiwko has joined #seam-dev [12:29:18] <Diablo-D3> sbryzak: doesnt wanna seem to work [12:29:33] <Diablo-D3> <logger category="com.ocpsoft"> [12:29:33] <Diablo-D3> <level name="TRACE"/> [12:29:33] <Diablo-D3> </logger> [12:29:35] <Diablo-D3> I added that [12:29:40] <Diablo-D3> and nothing more than usual comes out of it [12:30:34] <Diablo-D3> oh wait [12:30:41] <Diablo-D3> it puts it in the log file and not the console [12:30:43] <Diablo-D3> gee thanks jboss [12:32:49] <Diablo-D3> blergh, the log doesnt tell me why its rewriting something [12:46:43] *** kpiwko is now known as kpiwko_afk [12:53:06] *** aslak has joined #seam-dev [12:53:06] *** aslak has quit IRC [12:53:06] *** aslak has joined #seam-dev [14:04:54] <Diablo-D3> http://ocpsoft.com/support/topic/problem-with-images-and-trailingslashappend [14:04:56] <Diablo-D3> yeargh! [14:28:12] *** wdrai has joined #seam-dev [14:44:06] *** daniel_hinojosa has joined #seam-dev [14:48:37] <jbossbot> git [security] push master a5e68b7.. Shane Bryzak added identity management documentation [14:48:38] <jbossbot> git [security] push master URL: http://github.com/seam/security/compare/33e0378...a5e68b7 [14:48:59] <jbossbot> git [security] push master 8a051b0.. Shane Bryzak use explicit annotations [14:48:59] <jbossbot> git [security] push master URL: http://github.com/seam/security/compare/a5e68b7...8a051b0 [14:53:15] <daniel_hinojosa> so did you guys sleep? [14:54:25] <sbryzak> i haven't [14:54:30] <sbryzak> it's only 11pm here [14:54:45] <sbryzak> but i'm not going to start the release tonight [14:54:57] <sbryzak> last time i did the release when i was tired, i made mistakes [14:55:09] <daniel_hinojosa> yeah I never deploy stuff either when tired [14:56:35] <daniel_hinojosa> so is the new stuff on git [14:56:36] <daniel_hinojosa> ? [14:56:45] <daniel_hinojosa> because when I do a pull nothing comes down [14:56:57] <sbryzak> everything's on github [14:57:02] <sbryzak> which module are you pulling? [14:57:09] <daniel_hinojosa> servlet and solder [14:57:22] <daniel_hinojosa> origin https://github.com/seam/solder.git (fetch) [14:57:23] <daniel_hinojosa> origin https://github.com/seam/solder.git (push) [14:57:28] <sbryzak> i don't think they were updated in the last couple of days [14:58:08] <daniel_hinojosa> and you guys can run an app just fine? [14:58:14] <daniel_hinojosa> with jsf? [14:58:29] <daniel_hinojosa> if so then I'll take your word and accept I am doing something wrong. [14:58:37] <sbryzak> yes [14:58:42] <sbryzak> try deploying an example [14:58:47] <daniel_hinojosa> ok [14:59:04] <sbryzak> in fact, i recommend the booking example [15:01:29] <daniel_hinojosa> https://github.com/seam/examples ? [15:13:45] <daniel_hinojosa> looks great [15:15:44] <daniel_hinojosa> so some interesting stuff here...<servlet> is declared in the web.xml [15:16:05] <daniel_hinojosa> which is I believe in conflict with the jboss as documentation [15:16:16] <daniel_hinojosa> faces servlet I mean [15:24:45] <daniel_hinojosa> This came up: on booking: httpError: The Http Transport returned a 0 status code. This is usually the result of mixing ajax and full requests. This is usually undesired, for both performance and data integrity reasons. [15:24:58] <daniel_hinojosa> It seemed minor...should I fill out a ticket? [15:27:01] <sbryzak> hmm, let me take a look [15:31:42] <sbryzak> how do i reproduce it? [15:33:53] <daniel_hinojosa> front page of the booking example [15:34:13] <daniel_hinojosa> let me load and I will be able to tell you with some accuracy [15:38:09] <daniel_hinojosa> p.s. in seam booking search: If you type a bunch of crap in the search hotel, like just do advsadvnsdalvknsadlvkn [15:38:16] <daniel_hinojosa> all hell breaks loose [15:38:23] <daniel_hinojosa> but you have to really try on that one [15:38:24] <daniel_hinojosa> ha [15:38:34] <sbryzak> interesting [15:38:40] <sbryzak> should raise that in jira [15:38:48] <sbryzak> actually, jose_freitas: ping [15:39:35] <daniel_hinojosa> When you click on: What happens when I register? in the register page returns a 404 [15:40:16] <daniel_hinojosa> I can't reproduce the first one [15:40:31] <daniel_hinojosa> let me google it and see where that comes from [15:40:37] <sbryzak> could you please raise those two issues in jira? [15:40:46] <daniel_hinojosa> yep [15:40:50] <sbryzak> thanks [15:41:06] <daniel_hinojosa> I like it though, and it'll help me as a reference for my article [15:41:10] <daniel_hinojosa> thanks for pointing it out to me [15:41:56] <sbryzak> it's our best looking example [15:42:00] <daniel_hinojosa> it is [15:42:04] <daniel_hinojosa> it was in Seam 2 too [15:42:08] <daniel_hinojosa> this looks better [15:42:13] <sbryzak> yeah but jose made it way more sexy [15:43:07] <daniel_hinojosa> http://forums.oracle.com/forums/thread.jspa?threadID=2148500&tstart=0 [15:43:19] <daniel_hinojosa> just FYI I will put that on the ticket [15:44:17] *** bitshuffler has joined #seam-dev [15:48:55] <daniel_hinojosa> sbryzak: What project do you want me to put those in? [15:49:09] <sbryzak> http://issues.jboss.org/browse/SEAM [15:49:46] <daniel_hinojosa> ok [15:50:17] *** daniel_hinojosa has quit IRC [15:50:43] *** daniel_hinojosa has joined #seam-dev [16:02:26] <jose_freitas> sbryzak: pong [16:06:08] <daniel_hinojosa> sbryzak + jose_freitas: SEAM-63, SEAM-64, SEAM-65 in there now. [16:06:10] <jbossbot> jira [SEAM-63] When you click on: What happens when I register? in the register page returns a popup with 404 [Open (Unresolved) Bug, Major, Unassigned] https://issues.jboss.org/browse/SEAM-63 [16:06:11] <jbossbot> jira [SEAM-64] In seam booking search: If you type a bunch of text and rapidly in the search hotel. Popups with EJB errors occur [Open (Unresolved) Bug, Major, Unassigned] https://issues.jboss.org/browse/SEAM-64 [16:06:12] <jbossbot> jira [SEAM-65] The Http Transport returned a 0 status code. This is usually the result of mixing ajax and full requests. [Open (Unresolved) Bug, Major, Unassigned] https://issues.jboss.org/browse/SEAM-65 [16:06:55] <daniel_hinojosa> jose_freitas: sbryzak just wanted to talk to about some small issues I found in the booking. ;) [16:07:07] <daniel_hinojosa> I put them into JIRA [16:07:23] <jose_freitas> :) [16:08:25] <jose_freitas> how could we reproduce seam-65? [16:09:45] <jose_freitas> I mean, which page did you come across with this bug? [16:10:01] <jose_freitas> search? [16:10:13] <jose_freitas> bleathem: ping [16:10:49] *** kpiwko_afk is now known as kpiwko [16:11:03] <jose_freitas> just read about the docs sbryzak and mojavelinux are working on, did you have time to read the InputElement documentation? [16:12:03] <jose_freitas> hey daniel_hinojosa: thank you for firing some jira issues :) [16:13:05] <daniel_hinojosa> That is tough [16:13:13] <daniel_hinojosa> jose_freitas [16:13:18] <daniel_hinojosa> I got it when I first deployed [16:13:29] <daniel_hinojosa> and I start just doing stuff [16:13:44] <daniel_hinojosa> and these popups came up with that message [16:14:00] <jose_freitas> hmm [16:15:15] <daniel_hinojosa> SEAM-64. You just go hog wild on that search field [16:15:16] <jbossbot> jira [SEAM-64] In seam booking search: If you type a bunch of text and rapidly in the search hotel. Popups with EJB errors occur [Open (Unresolved) Bug, Major, Unassigned] https://issues.jboss.org/browse/SEAM-64 [16:15:24] <daniel_hinojosa> and type a bunch of stuff and fast [16:35:26] *** rruss has joined #seam-dev [16:36:11] *** aslak has quit IRC [16:52:27] <daniel_hinojosa> is there a debug window? [16:52:38] <daniel_hinojosa> like from Seam 2's debug.xhtml? [16:58:45] <Diablo-D3> man, no one seen lincoln yet? [17:00:53] <Diablo-D3> so guys, remember me banging my head on prettyfaces yesterday? [17:01:02] <Diablo-D3> "^((?!(faces|openid)).)*$" [17:01:08] <Diablo-D3> thats the regex I wanted [17:01:54] <Diablo-D3> at least, a variant of it [17:02:36] *** gastaldi has joined #seam-dev [17:02:53] <gastaldi> hey all ! [17:03:27] <gastaldi> is seam 3 final launching today ? [17:04:02] <gastaldi> expectations gone wild [17:05:14] *** gastaldi has quit IRC [17:16:15] *** rruss has quit IRC [17:23:41] *** daniel_hinojosa has quit IRC [17:23:54] *** rruss has joined #seam-dev [17:28:30] *** lincolnthree has joined #seam-dev [17:30:14] *** mgencur has joined #seam-dev [17:30:18] *** mgencur has quit IRC [17:50:09] *** rruss has quit IRC [17:53:32] *** aslak has joined #seam-dev [17:53:32] *** aslak has quit IRC [17:53:32] *** aslak has joined #seam-dev [17:56:52] <bleathem> I find myself in the middle of a twitter storm [17:57:22] <bleathem> I really should be more careful about offering criticism over twitter [17:57:33] <bleathem> it's hard to be constructive in so few words [18:05:49] *** jose_freitas has quit IRC [18:09:24] *** jose_freitas has joined #seam-dev [18:29:43] <bleathem> storm subsided, I guess 140 characters is enough after all! [18:43:24] <jbossbot> git [solder] push master 892443e.. Dan Allen examples for jboss logging section; additional clarifications [18:43:24] <jbossbot> git [solder] push master URL: http://github.com/seam/solder/compare/e4992d7...892443e [18:49:03] *** kpiwko has quit IRC [18:55:52] <Diablo-D3> hey lincolnthree [18:55:59] <Diablo-D3> <rewrite match="^/((?!(faces|openid)).)*$" trailingSlash="remove" toCase="lowercase" redirect="301"/> [18:56:00] <Diablo-D3> there. [18:56:03] <Diablo-D3> thats how its done. [18:59:24] <Diablo-D3> lincolnthree: please oh please oh please just document this somewhere in a way that makes sense [18:59:59] <Diablo-D3> I have to undo both faces/* and openid/* otherwise it fucks up richfaces and the seam security openid shit [19:00:04] <Diablo-D3> and now, I go to bed [19:00:05] <Diablo-D3> night all [19:04:39] *** Diablo-D3 has quit IRC [20:12:22] *** wdrai1 has joined #seam-dev [20:14:18] *** wdrai has quit IRC [20:27:06] *** gastaldi has joined #seam-dev [20:28:39] <gastaldi> hey again [20:38:34] *** gastaldi has quit IRC [20:45:33] *** wdrai1 has left #seam-dev [21:03:11] *** jose_freitas has quit IRC [22:01:16] *** alesj has joined #seam-dev [22:01:53] *** bitshuffler has quit IRC [22:07:32] *** aslak has quit IRC [22:07:38] *** aslak has joined #seam-dev [22:07:39] *** aslak has quit IRC [22:07:39] *** aslak has joined #seam-dev [22:17:04] *** lincolnthree has quit IRC [22:23:39] *** oskutka has quit IRC [23:24:31] *** aslak has quit IRC [23:29:41] <bleathem> Do I call my module "Seam 3 Faces" or "Seam Faces 3"? I think I prefer the former [23:41:39] *** johnament has joined #seam-dev [23:56:07] <bleathem> mojavelinux sbryzak: Can we start blogging about the Seam 3 release, or should we do we want a consolidated blogging effort co-ocrdinated with the 3.0 release? [23:56:37] <bleathem> I know the Glassfish community did this in a big way, asking people no to release their blogs until the release day itself. [23:57:17] <bleathem> In some ways, it's a bit of a waste - I'm sure a number of noteworthy posts got overlooked amidst all that noise. [23:58:11] *** daniel_hinojosa has joined #seam-dev