[00:00:06] *** lightguard_jp has joined #seam-dev [00:00:06] *** ChanServ sets mode: +o lightguard_jp [00:00:19] <hannelita> he asked me to fork it and adjust it to run on tomcat. I'd like to know if I can upgrade to beta3 [00:00:26] <hannelita> lightguard_jp: ^ [00:00:48] <sbryzak> it runs on beta3, i've tested it [00:01:07] <lightguard_jp> hannelita: Yes, we really should try to keep it up to date with the most current release if possible. [00:01:15] <lightguard_jp> I thought it was on beta3 [00:01:18] <hannelita> no [00:01:25] <hannelita> 3.1 snapshot i think [00:01:33] <hannelita> lightguard_jp: let me check at github [00:01:41] <bleathem> clerum, in the backlog, I see you meantioned a problem redirecting to your request after log in? [00:01:54] <bleathem> I just merged a pull request along those lines [00:02:04] <bleathem> is this a problem you are seeing in the latest snapshot? [00:02:08] <sbryzak> examples-parent uses beta3 [00:02:44] <sbryzak> https://github.com/seam/examples/blob/master/pom.xml [00:02:58] <hannelita> https://github.com/seam/examples/blob/master/booking/pom.xml [00:03:05] <hannelita> sbryzak: sure? [00:03:34] <hannelita> sbryzak: Oh, ok, i just looked at booking pom [00:03:41] <sbryzak> yep, i updated it myself [00:03:55] <hannelita> sbryzak: ok :) [00:04:57] <hannelita> lightguard_jp: forked, i'll try to find motivation to use tomcat again after as7 hehe [00:05:34] <lightguard_jp> hannelita: You'll have to drop the SF/LSB instants and probably use session scoped CDI beans. [00:05:43] <lightguard_jp> Then you'll have to get JTA in there. [00:05:54] <hannelita> yep [00:06:05] <lightguard_jp> Of course all the needed deps like JSF, Hibernate, etc, but I think those are the two main things. [00:06:06] <hannelita> lightguard_jp: transactions [00:06:30] *** daniel_hinojosa has quit IRC [00:06:47] <hannelita> lightguard_jp sbryzak ok thanks :) [00:07:47] *** hannelita has quit IRC [00:08:24] *** koentsje has joined #seam-dev [00:09:18] *** hannelita has joined #seam-dev [00:11:08] *** daniel_hinojosa has joined #seam-dev [00:12:25] *** jbott has quit IRC [00:15:29] <clerum> bleathem: lemmie test with the latest snapshot [00:15:38] <clerum> I need to test my logging change anyway [00:15:44] <bleathem> k, thx [00:15:45] <clerum> your change was in develop? [00:16:14] <bleathem> fixed my PrimeFaces/RichFaces problem - I needed to add <rich:jQuery rendered="false" /> [00:16:21] <bleathem> yeah, the change was in develop [00:16:24] <clerum> k [00:16:30] <bleathem> er, merged into develop [00:16:35] <clerum> yep [00:16:36] <clerum> gottcha [00:20:57] *** edburns_away is now known as edburns [00:24:50] <clerum> bleathem: nope [00:24:55] <clerum> doesn't work [00:25:12] <bleathem> but it used to? [00:25:18] <clerum> yea [00:25:34] <bleathem> huh [00:25:35] <clerum> I don't know when it broke though...it could have been something in my faces-config [00:25:45] <bleathem> ok, keep me posted [00:26:08] <clerum> https://gist.github.com/fe135554ded8afd557c5 [00:26:35] * bleathem appreciates that clerum is like a real-world jenkins, finding bugs in all the snapshots! [00:27:09] <bleathem> yeah, that faces-config is incompatible with ViewConfig [00:27:13] <bleathem> unfortunately [00:27:29] <bleathem> oh wait [00:27:39] <bleathem> I might be confused [00:27:48] <clerum> hmm [00:27:52] <clerum> so I can remove that [00:28:00] <bleathem> I've never had that [00:28:02] <bleathem> right [00:28:08] <bleathem> succs takes you to where you were going [00:28:13] <bleathem> ^success [00:28:22] <bleathem> failed takes you back to the login page [00:28:41] <clerum> trying [00:28:42] <bleathem> if you have that, you override the behavior to take you to where you were going [00:28:50] <bleathem> which is a Seam Faces "value-add" [00:29:00] *** tsurdilo has joined #seam-dev [00:29:58] *** koentsje has quit IRC [00:31:26] <clerum> hmm [00:31:35] <clerum> so if someone navigated direct to the login page [00:31:39] <clerum> like say bookmarked it [00:31:46] <clerum> how to I send them to home after login? [00:32:11] <bleathem> I dunno [00:32:13] <bleathem> ;) [00:32:38] <clerum> I think I handled that before [00:32:39] <clerum> <s:viewAction action="#{alreadyLoggedIn.alreadyLoggedIn}" /> [00:32:43] <bleathem> what would be a good solution do you think? [00:32:51] <clerum> where that alreadyLoginedIn returns a view id [00:32:59] <clerum> ...but I think thats broke in the 2.1 jsf right? [00:33:06] <clerum> navigation in a viewAction? [00:33:17] <bleathem> yeah, the latest Seam FAces viewAction is broken :( [00:33:22] <lightguard_jp> Yes, don't do navigation from a viewAction [00:33:25] <bleathem> the navigation part is [00:33:38] <clerum> so what would be a good solution for that [00:33:39] <clerum> hmm [00:33:59] <clerum> need like a default page to go to off the login page if you are already logged in [00:34:08] <bleathem> @DefaultPage [00:34:14] <bleathem> in the viewconfig [00:34:24] <bleathem> or [00:34:30] <bleathem> we have an AccessDeniedPaged [00:34:42] <bleathem> rather AccessDeniedView [00:34:54] <bleathem> we could have AccessGrantedDefaultView [00:34:59] <bleathem> that's kind of long [00:35:01] <clerum> hmm default page [00:35:06] <clerum> that might be good [00:35:21] <bleathem> DefaultPage is kind of ambiguous [00:35:31] <clerum> @HomePage [00:35:36] <clerum> @AfterLogin [00:35:56] <bleathem> Would this page be used in any other circumstance? [00:36:12] <clerum> most apps have a page they redirect to after login right? [00:36:22] <clerum> the issue only is if someone bookmarks the login page [00:36:30] <clerum> and navigates to that directly [00:38:09] <bleathem> well, is that really a problem? [00:38:17] <clerum> I'm thinking [00:38:23] <bleathem> i think JavaEE/web.xml does the same thing [00:38:38] <bleathem> when you navigate directly to the login page [00:39:01] <bleathem> you could have some text on the login page conditionally rendered if they are loggedin [00:39:14] <clerum> <rich:panel header="Login" rendered="#{identity.loggedIn}" styleClass="pagePanel" style="width:500px"> [00:39:14] <clerum> Already Logged In. You Should Go <h:link value="Home" outcome="/s/home.xhtml" /> [00:39:14] <clerum> </rich:panel> [00:39:19] <clerum> thats what I currently have [00:39:24] <clerum> I'll roll with that for now [00:39:31] <clerum> yell at people who bookmark the home [00:39:42] <clerum> and see if it really is a problem [00:41:06] <bleathem> if you don't faces-redirect to the login page, they will never be able to bookmark it [00:41:37] <clerum> yeah thats what I'm thinking changing my welcome page [00:55:55] <jbossbot> git [faces] push develop b7ab9a4.. Cody Lerum SEAMFACES-204 - lower logging verbosity [00:55:56] <jbossbot> jira [SEAMFACES-204] Non-BeanManaged converter warning is too verbose [Open (Unresolved) Bug, Major, Unassigned] https://issues.jboss.org/browse/SEAMFACES-204 [00:55:56] <jbossbot> git [faces] push develop a956437.. Brian Leathem Merge pull request #59 from codylerum/SEAMFACES-204... [00:55:57] <jbossbot> git [faces] push develop URL: http://github.com/seam/faces/compare/392e1c0...a956437 [00:56:19] <clerum> thats quick [00:56:24] <bleathem> :D [00:56:45] * bleathem <# github [00:56:49] <bleathem> doh [00:56:52] <bleathem> smiley fail [00:56:56] <clerum> ;-) [00:57:48] <clerum> github's new styling is throwing me off today [00:58:18] <clerum> Not sure if this was there before [00:58:18] <clerum> https://github.com/seam/faces/contributors [00:58:20] <clerum> but nice [01:00:06] <clerum> hmm [01:00:55] <clerum> bleathem: so does this seem correct to you [01:01:16] <clerum> web.xml - https://gist.github.com/8c71de44862603d8bbda [01:01:36] <clerum> viewconfig - https://gist.github.com/e621038909d6a8b27b21 [01:01:47] <clerum> so my welcomefile points to a secured resource [01:02:14] <clerum> it doesn't redirect to login.xhtml [01:02:48] <clerum> probably because the browser url is just http://localhost:8080/oss [01:02:49] <bleathem> I don't get this: [01:02:50] <bleathem> <welcome-file-list> <welcome-file>/s/home.xhtml</welcome-file> </welcome-file-list> [01:03:03] <clerum> if you browse to http://localhost:8080/oss [01:03:05] <bleathem> why the /s/ in the filenme [01:03:11] <clerum> it's a folder [01:03:13] <bleathem> does that work? [01:03:17] <clerum> everything below s is secured [01:03:18] <clerum> yes [01:03:21] <bleathem> I though it had to be a file [01:03:27] <clerum> path to a file [01:03:39] <bleathem> ok cool [01:03:50] <clerum> it's like it needs to do a faces redirect [01:03:56] <bleathem> security isn't based on browser url [01:04:00] <bleathem> but rather on viewId [01:04:08] <clerum> hmm that might be a bug then [01:04:20] <bleathem> rather than use a welcome-file trick [01:04:27] <bleathem> I'd use a pretty faces rule [01:07:21] <clerum> hmm [01:07:25] <clerum> just wonder if that is an issue [01:07:41] <clerum> you can load my /s/home.xhtml [01:07:58] <clerum> and the instant you click on any links it redriects to login [01:08:04] <clerum> which is correct [01:08:13] <clerum> welcome file seems to bypass [01:09:13] <bleathem> hmm [01:09:52] <bleathem> an answer might be that web.xml configures URL level behavoiur (and security) and isn't compatible with JSF [01:10:00] <bleathem> or rather Seam Faces [01:10:03] <clerum> if my home page displayed sensitive data that could be bad [01:10:04] <clerum> right [01:10:07] <bleathem> which uses views for security [01:10:25] <clerum> might be a caution to note in docs [01:10:37] <clerum> that the welcome file in web xml can subvert the security rules [01:10:38] <bleathem> lightguard_jp: how can I get IntelliJ to create thSerialVersionUid for me? [01:11:18] <bleathem> clerum: possibly, I didn't even know you could inlcude a folder in a welcome file [01:11:49] <clerum> that the welcome file could be outside of the root [01:11:51] <clerum> ? [01:12:06] <bleathem> I alway viewed it as a welcome file for a folder [01:12:15] <bleathem> if I went to: host.com/a/b/c/ [01:12:28] <bleathem> then the welcome files would be searchd for in the folder c/ [01:12:39] <clerum> ah [01:13:18] <clerum> that gets me back to my welcome file being the login.xhtml [01:13:25] <clerum> which is fine [01:13:34] <clerum> I could use a rewrite rule [01:14:38] <clerum> this is the kind of stuff that comes up fast if we have a public example running that anyone can hit [01:17:47] <clerum> bleathem: I should be able to do a redirect in the servlet right [01:17:51] <clerum> within that viewAction? [01:18:06] <clerum> the returned string just won't be evaluated for navigation? [01:18:32] <bleathem> what do you mean in the servlet? [01:19:17] *** bananamilk has joined #seam-dev [01:19:22] <clerum> response.sendRedirect(request.getContextPath() + viewId); [01:19:57] <clerum> response being HttpServletResponse [01:22:49] <lightguard_jp> bleathem: There's an intention setting [01:22:51] <clerum> doesn't appear to [01:22:53] <clerum> oh well [01:23:26] <lightguard_jp> clerum: Search for serialVersionUID and you'll find it. [01:23:50] <lightguard_jp> Going dark for a little while (again *sigh*). I'm available via IM at least. [01:24:03] <clerum> guessing that was for bleathem: [01:24:10] <clerum> ^^ [01:28:04] *** lightguard_jp has quit IRC [01:34:07] *** maxandersen has quit IRC [01:36:44] *** hannelita has quit IRC [01:53:36] *** jbott has joined #seam-dev [02:12:32] *** jamezp has quit IRC [02:14:17] *** jamezp has joined #seam-dev [02:14:17] *** ChanServ sets mode: +v jamezp [02:21:43] *** jbott has quit IRC [02:22:02] *** jbott has joined #seam-dev [02:25:48] *** rruss has quit IRC [02:27:36] *** lincolnthree has joined #seam-dev [02:27:36] *** ChanServ sets mode: +v lincolnthree [02:27:45] *** tkimura has joined #seam-dev [02:29:14] *** tsurdilo has quit IRC [02:34:14] *** rruss has joined #seam-dev [02:49:11] *** daniel_hinojosa has quit IRC [02:50:06] *** lincolnthree has quit IRC [02:50:07] *** daniel_hinojosa has joined #seam-dev [02:54:30] *** daniel_hinojosa has quit IRC [02:55:27] *** rruss has quit IRC [02:55:31] *** jamezp is now known as jamezp_afk [02:56:47] *** sannegrinovero has quit IRC [02:58:16] *** daniel_hinojosa has joined #seam-dev [03:00:30] *** maximilienw has quit IRC [03:03:06] *** maximilienw has joined #seam-dev [03:28:31] *** akazakov has quit IRC [03:34:46] *** mbg has quit IRC [03:39:35] *** lincolnthree has joined #seam-dev [03:39:35] *** ChanServ sets mode: +v lincolnthree [03:43:45] *** mbg has joined #seam-dev [03:43:45] *** ChanServ sets mode: +v mbg [03:51:11] *** mbg has quit IRC [03:57:28] *** maximilienw has quit IRC [04:25:31] *** hannelita has joined #seam-dev [04:26:53] *** Diablo-D3 has quit IRC [04:39:42] *** rruss has joined #seam-dev [04:42:34] *** hannelita has quit IRC [04:44:04] *** hannelita has joined #seam-dev [04:45:53] <bleathem> ping stuartdouglas [04:46:29] <stuartdouglas> hey [04:50:52] *** rruss has quit IRC [05:25:50] <bleathem> hey stuartdouglas, sorry, I was going to ask you if I could use CATALINA_OPTS with AS& instead of JAVA_OPTS (for the debug ports. [05:25:50] <bleathem> I decided to just try it, instead of bugging with the question... [05:25:50] <bleathem> and lo and behold, it works! [05:27:08] <bleathem> oh no wait, silly me, I just came back to it [05:27:18] <bleathem> and I'm running tomcat right now, so of course it works [05:27:22] <bleathem> still need to try AS7 [05:43:59] *** jamezp_afk has quit IRC [05:45:20] *** jamezp has joined #seam-dev [05:45:20] *** ChanServ sets mode: +v jamezp [05:54:33] *** clerum has quit IRC [05:58:42] *** lincolnthree has quit IRC [05:59:02] <bleathem> Nope, AS7 doesn't work with CATALINA_OPTS [05:59:03] <bleathem> too bad [05:59:26] <bleathem> I'll just have to remember to unset the JAVA_OPTS when starting tomcat [06:00:41] *** lincolnthree has joined #seam-dev [06:00:41] *** ChanServ sets mode: +v lincolnthree [06:03:13] *** lincolnthree has quit IRC [06:13:01] *** lincolnthree has joined #seam-dev [06:13:02] *** ChanServ sets mode: +v lincolnthree [06:15:05] *** rruss has joined #seam-dev [06:22:15] *** hannelita has quit IRC [06:23:41] *** lincolnthree has quit IRC [06:24:31] *** lincolnthree1 has joined #seam-dev [06:24:31] *** ChanServ sets mode: +v lincolnthree1 [06:55:07] *** jamezp is now known as jamezp_afk [07:05:19] *** lincolnthree1 has quit IRC [07:40:30] *** maxandersen has joined #seam-dev [07:40:57] *** maxandersen1 has joined #seam-dev [07:40:57] *** maxandersen has quit IRC [07:42:36] *** msmigielski has joined #seam-dev [07:44:07] *** tremes has joined #seam-dev [07:44:08] *** tremes has left #seam-dev [07:44:10] *** tremes has joined #seam-dev [07:47:37] *** cbrock has joined #seam-dev [07:47:44] *** cbrock has quit IRC [07:51:45] *** mkouba has joined #seam-dev [08:00:13] *** maxandersen1 has quit IRC [08:08:51] *** mgoldmann has joined #seam-dev [08:10:48] *** koentsje has joined #seam-dev [08:24:57] *** mnovotny has joined #seam-dev [08:26:11] *** oskutka has joined #seam-dev [08:26:50] *** bleathem has quit IRC [08:41:26] *** rruss has quit IRC [08:43:02] *** jharting has joined #seam-dev [08:43:02] *** ChanServ sets mode: +v jharting [08:44:17] *** tkimura has quit IRC [08:47:48] *** maxiphone has joined #seam-dev [08:48:26] *** kevinpollet has joined #seam-dev [08:59:07] *** maxiphone has quit IRC [09:17:17] *** mathieuancelin has joined #seam-dev [09:25:09] *** tkimura has joined #seam-dev [09:27:16] *** maschmid has joined #seam-dev [09:27:37] *** maxandersen has joined #seam-dev [09:44:08] *** jbossbot has quit IRC [09:51:48] *** lightguard_jp has joined #seam-dev [09:51:48] *** ChanServ sets mode: +o lightguard_jp [09:54:14] <lightguard_jp> Trying to get Faces to work with our testing simply blows [09:56:33] *** alesj has joined #seam-dev [09:59:40] <lightguard_jp> Hey, all you QE people, I have something to run by you all. [09:59:47] *** maxandersen has quit IRC [09:59:55] <jharting> lightguard_jp: go ahead [10:01:27] <lightguard_jp> I've been trying to get Faces setup with the new testing structure. I got things to work with weld-ee-embedded, but when I tried to get it to work with AS7 it doesn't work, and it breaks weld-ee-embedded. Looks like it breaks because the tests are relying on a lot of mocking of the JSF classes. This conflicts with things once you deploy to a full server. [10:01:36] <lightguard_jp> I'm not quite sure what we want to do here. [10:02:07] <lightguard_jp> My first reaction is to make it all work with weld-embedded-ee, then have a bunch of JSFUnit tests for when we deploy to servers. [10:02:26] <lightguard_jp> Those tests will end up testing the same thing, but be different tests. [10:02:33] <lightguard_jp> Thoughts, other ideas? [10:05:32] *** msmigielski has joined #seam-dev [10:05:35] <jharting> lightguard_jp: sounds good [10:05:36] <maschmid> lightguard_jp: is it worth in the long term managing a separate testsuite just for weld-embedded-ee; would it be better to just focus on the JSFUnit tests? [10:05:46] <jharting> lightguard_jp: haven;t seen the testsuite lately, though [10:07:02] <lightguard_jp> maschmid: That may be the better route to go. There probably are some things that could be tested outside of JSF, but that might be a very small percentage of features [10:07:45] *** maxandersen has joined #seam-dev [10:13:12] *** msmigielski has quit IRC [10:15:51] *** sannegrinovero has joined #seam-dev [10:35:02] *** daniel_hinojosa has quit IRC [10:35:54] *** maxandersen has quit IRC [10:37:05] *** rruss has joined #seam-dev [10:37:30] *** rruss has quit IRC [10:37:38] *** clerum has joined #seam-dev [10:37:38] *** ChanServ sets mode: +v clerum [10:38:42] *** kpiwko has joined #seam-dev [10:43:42] *** kpiwko has quit IRC [10:44:02] *** kpiwko has joined #seam-dev [10:44:22] *** lightguard_jp has quit IRC [10:46:48] <clerum> sbryzak: ping [10:52:58] *** emmanuel has joined #seam-dev [10:55:59] <sbryzak> clerum: pong [10:59:44] *** bananamilk has quit IRC [11:00:00] <clerum> I got it figured out. [11:00:15] <clerum> mail still had a reft to mail-impl in it's root pom [11:00:18] <clerum> https://github.com/seam/mail/commit/2865735de79329a5843d24445a6bc149524a3d00 [11:01:24] <clerum> I did get the ref guide figured out a bit too so I think I can write the docs on my own - http://docs.jboss.org/seam/3/mail/snapshot/reference/en-US/html_single/ [11:11:46] *** maxandersen has joined #seam-dev [11:13:13] <clerum> sbryzak: does it seem right that if I have the seam bom in my app defined as beta3 [11:13:39] <clerum> a dep for seam-faces with version of 3.1-SNAPSHOT [11:14:01] <clerum> that mvn pulls in seam-faces-3.1-SNAPSHOT but seam-faces-api-3.1.Beta3? [11:15:33] <clerum> I guess should the bom define versions for both the seam-faces and seam-faces-api [11:16:05] <clerum> if the bom just defined the seam-faces (impl) shoudln't it suck in the right version of the api [11:16:34] <clerum> by defining them both in the bom I have to define both the impl and the api to override the version [11:18:16] <clerum> or am I missing something [11:44:01] <clerum> sbryzak: done for the night (3am here) I'll check the irc logs in the am [11:46:05] *** clerum has quit IRC [12:05:10] *** tkimura has quit IRC [12:27:51] *** emmanuel has quit IRC [13:25:15] *** epbernard has joined #seam-dev [13:25:15] *** epbernard is now known as emmanuel [13:36:31] *** alesj has quit IRC [13:40:41] *** edburns is now known as edburns_away [13:53:23] *** rmartinelli has joined #seam-dev [13:59:44] *** jose_freitas has joined #seam-dev [14:04:24] *** alesj has joined #seam-dev [14:08:18] *** kevinpollet has quit IRC [14:16:47] *** maxandersen1 has joined #seam-dev [14:16:47] *** maxandersen has quit IRC [14:37:17] *** iphands has quit IRC [14:41:00] *** Diablo-D3 has joined #seam-dev [14:55:16] *** iphands has joined #seam-dev [15:32:25] *** tsurdilo has joined #seam-dev [16:18:24] *** maxandersen1 has quit IRC [16:35:27] *** alesj has quit IRC [16:45:38] *** mkouba has quit IRC [16:46:22] *** hannelita has joined #seam-dev [16:47:04] *** jbossbot has joined #seam-dev [16:50:25] *** aslak has joined #seam-dev [16:50:37] *** clerum has joined #seam-dev [16:50:37] *** ChanServ sets mode: +v clerum [16:51:43] *** daniel_hinojosa has joined #seam-dev [16:55:33] *** mbg has joined #seam-dev [16:55:33] *** ChanServ sets mode: +v mbg [16:59:37] *** koentsje has quit IRC [17:01:12] *** edburns_away is now known as edburns [17:03:42] <clerum> any seam mail users around? [17:04:53] *** sbryzak has quit IRC [17:08:46] *** tsurdilo has quit IRC [17:09:17] *** tsurdilo has joined #seam-dev [17:11:23] *** jamezp_afk is now known as jamezp [17:12:05] *** oskutka has quit IRC [17:13:12] *** bleathem has joined #seam-dev [17:13:12] *** ChanServ sets mode: +v bleathem [17:13:57] *** daniel_hinojosa has quit IRC [17:14:28] *** daniel_hinojosa has joined #seam-dev [17:14:31] *** tremes has quit IRC [17:15:25] *** stuartdouglas has quit IRC [17:19:29] *** stuartdouglas has joined #seam-dev [17:19:30] *** ChanServ sets mode: +v stuartdouglas [17:21:39] *** sbryzak has joined #seam-dev [17:21:39] *** sbryzak has joined #seam-dev [17:21:39] *** ChanServ sets mode: +o sbryzak [17:21:45] *** mnovotny has quit IRC [17:23:56] *** mgoldmann has quit IRC [17:27:32] *** daniel_hinojosa has quit IRC [17:39:50] *** daniel_hinojosa has joined #seam-dev [17:41:41] *** tremes has joined #seam-dev [17:41:42] *** tremes has left #seam-dev [17:51:19] <jbossbot> git [solder] push develop 7f0c0c5.. Jozef Hartinger Tests for ExceptionHandledInterceptor (SOLDER-290, SOLDER-291) [17:51:20] <jbossbot> jira [SOLDER-290] Rethrown checked exception should not be wrapped within ObserverException [Open (Unresolved) Bug, Major, Unassigned] https://issues.jboss.org/browse/SOLDER-290 [17:51:21] <jbossbot> jira [SOLDER-291] ExceptionHandledInterceptor does not treat primitive values consistently [Open (Unresolved) Bug, Major, Unassigned] https://issues.jboss.org/browse/SOLDER-291 [17:51:21] <jbossbot> git [solder] push develop URL: http://github.com/seam/solder/compare/f9e4740...7f0c0c5 [17:51:28] *** emmanuel has quit IRC [17:54:49] *** akazakov has joined #seam-dev [17:59:21] *** tsurdilo has quit IRC [17:59:40] *** rruss has joined #seam-dev [17:59:57] *** tsurdilo has joined #seam-dev [18:00:01] *** mathieuancelin has left #seam-dev [18:02:34] <jbossbot> git [solder] push develop 3015549.. Marek Schmidt experimental jacoco profile [18:02:34] <jbossbot> git [solder] push develop URL: http://github.com/seam/solder/compare/7f0c0c5...3015549 [18:03:00] *** maxandersen has joined #seam-dev [18:03:25] *** duncan_ is now known as dabloem [18:06:56] *** maschmid has quit IRC [18:12:05] *** daniel_hinojosa has quit IRC [18:12:17] *** daniel_hinojosa has joined #seam-dev [18:12:43] *** jharting has quit IRC [18:16:41] *** epbernard has joined #seam-dev [18:16:41] *** epbernard is now known as emmanuel [18:25:44] *** sgilda_ has joined #seam-dev [18:26:02] *** emmanuel has quit IRC [18:59:30] *** daniel_hinojosa has quit IRC [19:11:40] *** kevinpollet has joined #seam-dev [19:13:07] *** mathieuancelin has joined #seam-dev [19:13:55] *** daniel_hinojosa has joined #seam-dev [19:34:31] *** tsurdilo has quit IRC [20:01:04] *** rruss has quit IRC [20:04:08] *** jharting has joined #seam-dev [20:04:08] *** ChanServ sets mode: +v jharting [20:07:41] *** koentsje has joined #seam-dev [20:07:59] *** koentsje has quit IRC [20:15:56] *** kevinpollet has quit IRC [20:21:44] *** lightguard_jp has joined #seam-dev [20:21:45] *** ChanServ sets mode: +o lightguard_jp [20:26:20] <lightguard_jp> bleathem: ping [20:26:29] <bleathem> pong lightguard_jp [20:26:49] <lightguard_jp> I tried to get the Faces test suite to work, but it's exceptionally difficult. [20:26:54] <bleathem> :( [20:27:02] <lightguard_jp> I can get it to run on weld-ee-embedded but not in container due to all the mocking [20:27:07] <bleathem> what makes it difficult? [20:27:13] <bleathem> ah, the mocking [20:27:15] <lightguard_jp> So what we're thinking of for Faces is to simply do JSFUnit tests [20:27:20] <bleathem> +1 [20:27:29] *** mathieuancelin has quit IRC [20:27:43] <lightguard_jp> I can commit what I have now (it working weld-ee-embedded) but we need to move those tests to JSFUnit and just run in container. [20:27:44] <bleathem> the mocked tests should just be vanilla jUnit tests [20:27:45] *** mathieuancelin has joined #seam-dev [20:27:52] <bleathem> not in the testsuite [20:27:52] <lightguard_jp> I think you have a branch that has most of that done, correct? [20:28:03] <lightguard_jp> bleathem: Ah, that makes sense. [20:28:13] <bleathem> the test branch I have predates the introduction of the Seam test suite idea [20:28:14] <lightguard_jp> They should probably be moved to api / impl then. [20:28:27] <lightguard_jp> bleathem: Do you think it would be difficult to port over? [20:28:32] <bleathem> right, move the mock tests back to impl is a good idea [20:28:47] <bleathem> I'm not sure what you mean [20:28:50] <bleathem> wanna skype? [20:29:42] <lightguard_jp> Don't have skype installed. G+ hangout works though if you're setup. [20:30:07] <bleathem> I'm setup [20:30:18] <lightguard_jp> Okay [20:30:26] <bleathem> creating a hangout [20:31:15] <clerum> when you guys are done I have a question on the bom [20:32:22] <jose_freitas> hey guys [20:33:46] <clerum> hey [20:39:40] *** bleathem has quit IRC [20:39:56] *** bleathem has joined #seam-dev [20:39:57] *** ChanServ sets mode: +v bleathem [20:39:57] <lightguard_jp> clerum: ask away [20:41:37] <clerum> lightguard_jp: so if using the bom in my applicaiton [20:41:50] <clerum> and I need to override the seam-faces version for example to snapshot [20:42:20] <lightguard_jp> jose_freitas: Hey [20:42:24] <clerum> I have to define both the seam-faces and seam-faces-api [20:42:41] <clerum> otherwise I get seam-faces snapshot and seam-faces-api beta3 [20:42:50] <lightguard_jp> clerum: You could just reference seam-faces and have the api pulled in via transitive deps [20:42:55] <clerum> nope [20:43:07] <clerum> that doesn't work because the version for the api is also defined in the bom [20:43:17] <clerum> I'm thinknig maybe the api doesn't need to be in the bom [20:43:30] <clerum> so that it can transitivly pull in the api with the correct version [20:44:00] <clerum> https://repository.jboss.org/nexus/service/local/repositories/snapshots/content/org/jboss/seam/seam-bom/3.1.0-SNAPSHOT/seam-bom-3.1.0-20111013.040211-61.pom [20:44:13] *** jamezp has quit IRC [20:44:32] <clerum> if you just override the version on seam-faces then you get seam-faces snapshot and seam-faces-api beta3 [20:44:42] <clerum> because it pulls that version for the api from the bom [20:44:50] <jharting> clerum: instead of defining dependencies, cannot you override a property? [20:45:01] <jharting> clerum: e.g. seam.faces.version=3.1.0-SNAPSHOT [20:45:08] *** jamezp has joined #seam-dev [20:45:08] *** ChanServ sets mode: +v jamezp [20:45:22] <jharting> clerum: in the xml way [20:45:50] <clerum> I would but I would still have to define the api and the impl in thepom [20:46:02] <clerum> I'm wondering why the api is even listed in the bom [20:46:22] <clerum> if we are telling people to only define the seam-faces and let the api be pulled in automatically [20:47:00] <clerum> this guy ran into the same issue https://issues.jboss.org/browse/SEAMFACES-216 [20:47:01] <jbossbot> jira [SEAMFACES-216] java.lang.NoClassDefFoundError: org/jboss/seam/faces/projectstage/ProjectStageDetector [Resolved (Done) Bug, Major, Unassigned] https://issues.jboss.org/browse/SEAMFACES-216 [20:47:41] *** tsurdilo has joined #seam-dev [20:47:58] <lightguard_jp> I think it's there for those that want to list both [20:48:05] <lightguard_jp> And actually do things the correct way (IMO) [20:48:24] <lightguard_jp> So that you're explicitly stating your compile and runtime deps [20:48:38] <lightguard_jp> Instead of relying on Maven to pull everything in. [20:50:14] *** sannegrinovero has quit IRC [20:51:56] <clerum> ok. if thats why it's there then cool. [20:52:22] <clerum> docs are telling the users to do it as a single def in the pom [20:52:34] <clerum> but I doubt most will be overiding the versions [20:52:58] <lightguard_jp> yep. [20:54:03] <clerum> bleathem: did you see my email about seam-faces and prettyfaces [20:54:21] <bleathem> yeah, about ti breaking the viewAction? [20:54:22] <clerum> any idea where to look at why adding the prettyfaces dep kills s:viewAction entirely? [20:54:48] <bleathem> is this new with the latest Pretty faces? [20:54:49] <clerum> it happens silently [20:54:56] *** maxandersen has quit IRC [20:55:00] <clerum> this is the first I have ever used prettyfaces [20:55:09] <bleathem> hmm [20:55:15] <clerum> just using the ver from the bom [20:55:23] <bleathem> we need a JsfUnit test for ths (cough lightguard_jp) [20:55:35] <clerum> prettyfaces-jsf2 [20:55:51] <bleathem> I don't know why that would be the case [20:55:52] <clerum> as soon as I remove that dep it works [20:56:02] <bleathem> we can ask Lincoln about that [20:56:06] <clerum> no config or any acutal use of the rewrite [20:56:07] <bleathem> when he get's online [20:56:08] <clerum> k [20:56:14] <clerum> I'll pounce when I see him [20:56:23] <bleathem> it must be one of the phase listeneres is interfering or something [20:56:49] <clerum> yeah I was trying to figure out how it works from breakpoints but it's in the guts of jsf [20:56:58] <clerum> which is beyond me still [20:57:00] <bleathem> that's a scary place [20:57:12] <clerum> agreed [20:57:16] *** mathieuancelin has left #seam-dev [21:05:24] <clerum> bleathem: now I just need to bait lincolnthree into IRC with a twitter post mentioning something forge'y happening on seam-dev [21:05:42] <bleathem> lol [21:05:52] <bleathem> he's in commute right now from DC [21:06:04] <bleathem> I'm sure he'll be online when he arrives [21:06:39] <clerum> :-) [21:15:18] *** jamezp is now known as jamezp_afk [21:19:24] *** gastaldi has joined #seam-dev [21:19:24] *** ChanServ sets mode: +v gastaldi [21:21:25] *** gastaldi has quit IRC [21:21:38] *** lincolnthree has joined #seam-dev [21:21:38] *** ChanServ sets mode: +v lincolnthree [21:22:13] *** lincolnthree1 has joined #seam-dev [21:22:14] *** ChanServ sets mode: +v lincolnthree1 [21:24:21] *** lincolnthree has quit IRC [21:29:58] *** edburns is now known as edburns_away [21:30:05] <clerum> lincolnthree1:ping [21:30:13] <lincolnthree1> clerum: pong [21:30:44] <Diablo-D3> clerum: your plan worked [21:30:55] <clerum> :-) [21:31:11] <clerum> so I tried using prettyfaces for the first time last night in my cdi app [21:31:34] <clerum> but my simply adding the dep for prettyfaces it completely stoped the s:viewAction from seam faces beta 3 from working [21:31:46] <lincolnthree1> clerum: which version of PF? [21:31:47] <clerum> the artifact prettyfaces-jsf2 [21:31:54] <clerum> the one in the seam bom [21:31:55] <clerum> um.. [21:32:08] <clerum> <prettyfaces.version>3.2.0</prettyfaces.version> [21:32:10] *** tremes has joined #seam-dev [21:32:13] <lincolnthree1> Try 3.3.1-SNAPSHOT, yeah, 3.2.0 has horrible bugs [21:32:21] <clerum> will do [21:32:21] <lincolnthree1> you could also try 3.3.0 Stable [21:32:31] <lincolnthree1> i should file an issue to upgrade that [21:32:33] <clerum> I'll try the stable first [21:33:54] <lincolnthree1> ok, let me know if it works so i can put the right info into JIRA [21:34:06] <clerum> will do. trying right now [21:35:33] <clerum> lincolnthree1: looks good [21:35:44] <clerum> s:viewActions are triggering again [21:35:47] <clerum> running 3.3.0 [21:36:46] <clerum> I can open a jira if you want [21:37:18] <clerum> under just the root seam jira? since it's a bom issue [21:37:29] <lincolnthree1> sure [21:37:33] <lincolnthree1> that works :) [21:37:34] <lincolnthree1> thanks! [21:38:09] *** jamezp_afk is now known as jamezp [21:39:43] <clerum> https://issues.jboss.org/browse/SEAM-109 [21:39:45] <jbossbot> jira [SEAM-109] Update PrettyFaces version to 3.3.0 in bom [Open (Unresolved) Task, Major, Unassigned] https://issues.jboss.org/browse/SEAM-109 [21:44:30] <lincolnthree1> https://github.com/seam/dist/pull/5 [21:44:33] <lincolnthree1> SEAM-109 [21:44:34] <jbossbot> jira [SEAM-109] PrettyFaces version in BOM is incompatible with s:viewAction (upgrade to 3.3.0 in bom) [Pull Request Sent (Unresolved) Bug, Major, Unassigned] https://issues.jboss.org/browse/SEAM-109 [21:45:08] *** kevinpollet has joined #seam-dev [21:46:35] <clerum> cool [21:52:40] <jbossbot> git [dist] push master f7aae64.. Lincoln Baxter, III Edited pom.xml via GitHub [21:52:40] <jbossbot> git [dist] push master 0b90f10.. George Gastaldi Merge pull request #5 from lincolnthree/patch-1... [21:52:40] <jbossbot> git [dist] push master URL: http://github.com/seam/dist/compare/6c8a38d...0b90f10 [21:54:37] *** kpiwko has quit IRC [21:55:49] <jose_freitas> is there something harder than keep up the documentation with the code? [22:14:09] *** tremes has left #seam-dev [22:52:16] <bleathem> hey jose_freitas [22:53:08] <jose_freitas> hey bleathem! howdy? [22:53:19] <bleathem> how's it going jose_freitas? [22:55:15] <jose_freitas> Although I don't remind having so little time for myself, I'm pretty good. [22:55:57] <jose_freitas> I've been working out hard a lot lately. [22:56:00] <jose_freitas> and you? [22:56:23] <bleathem> prertty good - busy, butt good [22:56:41] <bleathem> I'm curious to hear your feedback on the CSV issue you filed [22:56:49] <bleathem> when you get the chance to test it [22:58:09] <jose_freitas> do you have a snapshot with it already? [22:59:54] <bleathem> hmm, I don't know when the last snapshot was built [22:59:58] <bleathem> presumably last night [23:00:09] <bleathem> but you might want to give it a couple of days, to be sure [23:00:44] <jose_freitas> ok. I'll try it next week then [23:06:57] *** lincolnthree1 has quit IRC [23:10:14] *** sannegrinovero has joined #seam-dev [23:16:10] *** tsurdilo1 has joined #seam-dev [23:17:14] *** lincolnthree has joined #seam-dev [23:17:14] *** ChanServ sets mode: +v lincolnthree [23:17:42] *** daniel_hinojosa has quit IRC [23:17:43] <sbryzak> good morning all [23:18:23] *** tsurdilo has quit IRC [23:18:34] <clerum> morning [23:18:37] <jose_freitas> good morning sbryzak [23:18:41] <sbryzak> ooh, it's seam hack night isn't it [23:18:51] <sbryzak> it's actually seam hack morning for me [23:19:38] *** daniel_hinojosa has joined #seam-dev [23:28:53] <jbossbot> git [mail] push develop 359fd6f.. Cody Lerum remove test deps from impl... [23:28:53] <jbossbot> git [mail] push develop URL: http://github.com/seam/mail/compare/2865735...359fd6f [23:29:25] *** mbg has quit IRC [23:29:27] *** rmartinelli has quit IRC [23:34:33] *** lincolnthree has quit IRC [23:39:05] *** jamezp is now known as jamezp_afk [23:43:19] *** maxandersen has joined #seam-dev [23:43:49] *** jamezp_afk is now known as jamezp [23:56:41] *** sgilda is now known as sgilda_afk [23:56:46] *** jamezp has quit IRC [23:57:42] *** jamezp has joined #seam-dev [23:57:42] *** ChanServ sets mode: +v jamezp [23:57:45] *** nikic has joined #seam-dev