Re: [appfuse-user] AppFuse Spring Security/AspectJ issues

2008-05-05 Thread Scott Hong
Matt, I've submitted an issue. http://issues.appfuse.org/browse/APF-1062 Using the original security pointcut settings, it actually took longer (10 seconds) to load the first time compared to the changes one. Thanks, -Scott Hong Scott Hong wrote: > > Hi Matt, > > I will try to reproduce usi

Re: [appfuse-user] Thin Navigation bar on some browser

2008-05-05 Thread Matt Raible
2.0.2 is not released yet, but the upgrade guide will be written before its released. Matt On Mon, May 5, 2008 at 5:17 PM, Vincenzo Caselli <[EMAIL PROTECTED]> wrote: > But what are the steps to follow in order to upgrade an existing > project from Appfuse 2.0.1 to 2.0.2? > > Vincenzo > > > > >

Re: [appfuse-user] Thin Navigation bar on some browser

2008-05-05 Thread Vincenzo Caselli
But what are the steps to follow in order to upgrade an existing project from Appfuse 2.0.1 to 2.0.2? Vincenzo On Tue, May 6, 2008 at 1:42 AM, Matt Raible <[EMAIL PROTECTED]> wrote: > You should be able to create a project with the following command: > > mvn archetype:create -DarchetypeGroupId=

Re: [appfuse-user] Thin Navigation bar on some browser

2008-05-05 Thread Vincenzo Caselli
Problem solved! You were right. I just changed the "margin-top" attribute of .scroller style in myfaces.css from -20px to 0px. Vincenzo On Tue, May 6, 2008 at 1:42 AM, Matt Raible <[EMAIL PROTECTED]> wrote: > You should be able to create a project with the following command: > > mvn archetype:c

Re: [appfuse-user] Fwd: Proper way of requesting current user

2008-05-05 Thread Matt Raible
I would suggest using an "instanceof" check to see if it's a String or a real user. We do something like this in UserSecurityAdvice: private User getCurrentUser(Authentication auth) { User currentUser; if (auth.getPrincipal() instanceof UserDetails) { currentUser =

Re: [appfuse-user] Thin Navigation bar on some browser

2008-05-05 Thread Matt Raible
You should be able to create a project with the following command: mvn archetype:create -DarchetypeGroupId=org.appfuse.archetypes -DarchetypeArtifactId=appfuse-basic-jsf -DremoteRepositories=http://static.appfuse.org/repository -DarchetypeVersion=2.0.2-SNAPSHOT -DgroupId=com.mycompany.app -Dartifa

[appfuse-user] Fwd: Proper way of requesting current user

2008-05-05 Thread ifunsu
Hi all, Just after you success register a new user in appfuse(signup.html), "current user" at the windows's middle below area will show User object's "username" property. If you go to userforms.html and save user information again, it will show User object's "firstname" plus "lastname" property. I

Re: [appfuse-user] Thin Navigation bar on some browser

2008-05-05 Thread Vincenzo Caselli
I am using version 2.0.1. How can I upgrade to 2.0.2? But above all, what are you suspecting is the cause? Vincenzo On Tue, May 6, 2008 at 12:25 AM, Matt Raible <[EMAIL PROTECTED]> wrote: > What version of AppFuse are you using? Does it happen if you use > 2.0.2-SNAPSHOT? > > Matt > > > > On

Re: [appfuse-user] Thin Navigation bar on some browser

2008-05-05 Thread Matt Raible
What version of AppFuse are you using? Does it happen if you use 2.0.2-SNAPSHOT? Matt On Mon, May 5, 2008 at 3:19 PM, Cens <[EMAIL PROTECTED]> wrote: > > On some browser (IE 6 for example) the navigation bar under the record list > is thin > http://www.nabble.com/file/p17071455/navBarThin.jpg

[appfuse-user] Thin Navigation bar on some browser

2008-05-05 Thread Cens
On some browser (IE 6 for example) the navigation bar under the record list is thin http://www.nabble.com/file/p17071455/navBarThin.jpg while it should be this way http://www.nabble.com/file/p17071455/navBarNormal.jpg do you have a solution? Vincenzo Caselli -- View this message in context: h

Re: [appfuse-user] AppFuse Spring Security/AspectJ issues

2008-05-05 Thread Scott Hong
Hi Matt, I will try to reproduce using 2.0.2 snapshot tonight. Thanks! --Scott mraible wrote: > > Can you please enter a bug in JIRA for this? If you enter it today, I > should be able to get it into the 2.0.2 release. > > Please provide steps to reproduce on a 2.0.2-SNAPSHOT project. >

Re: [appfuse-user] Beginning AppFuse, help needed!

2008-05-05 Thread Peter Schneider-Manzell
Hi Marcelo! > Firt thing I noted was the amount of errors and warnings... Add the Classpath variable "M2_REPO": In Eclipse: -> Window -> Preferences ->Java -> Buildpath-> Classpath variable-> New... Name: "M2_REPO", Folder: "/.m2/repository", e.g. something like "c:\documents and settings\marcelo

[appfuse-user] Passing from Jetty to Tomcat.

2008-05-05 Thread Hugo M.
Hello: First i'm going to apologize for my english, but i'm from Paraguay and i've not practice my english for a while. I'm developping an aplicattion in appfuse 2, and i've finish it, it works well while running with jetty, but there is a part of my application where i've an ajax piece of code t

Re: [appfuse-user] AppFuse Spring Security/AspectJ issues

2008-05-05 Thread Matt Raible
Can you please enter a bug in JIRA for this? If you enter it today, I should be able to get it into the 2.0.2 release. Please provide steps to reproduce on a 2.0.2-SNAPSHOT project. http://issues.appfuse.org Matt On Mon, May 5, 2008 at 5:52 AM, Scott Hong <[EMAIL PROTECTED]> wrote: > > Matt, >

[appfuse-user] Error executing database operation: CLEAN_INSERT

2008-05-05 Thread chandrashekar
hi i am new to maven 2 and appfuse. i am trying to build a appfuse-basic-jsf. i have freshly installed mysql 5.0.27 and its working fine with username:- root and password:- root i have changed the pom.xml: org.dbunit.dataset.datatype.DefaultDataTypeFactory CLEAN_INSERT

Re: [appfuse-user] First steps with AppFuse, fatal error

2008-05-05 Thread Marcelo de Moraes Serpa
Thank you for the replies, @Dustin, everything seems to have been downloaded fine. @Matt, thank you. Surprisingly enought, it did work with jetty:run-war and cargo.wait = true (I was able to access the app at localhost:8081) - Tomcat does not work though, I will try the workaround. Marcelo. On

Re: [appfuse-user] AppFuse Spring Security/AspectJ issues

2008-05-05 Thread Scott Hong
Matt, The problem is actually caused by Spring Security with the "PointCut" expression after tracing into the exception code. I am pretty sure of this part. Freemarker part is a separate issue on itself. Please ignore this part. Thanks, -Scott mraible wrote: > > Your first e-mail to the list

Re: [appfuse-user] cssHorizontalMenu

2008-05-05 Thread Matt Raible
I'm a bit hesitant to add this to 2.0.2 since I hope to release it in the next couple days and don't have extra bandwidth to test your fixes. It's probably best that you create a patch and attach it to the issue in JIRA. The good news is you have a solution for your project and others can use this

Re: [appfuse-user] JSF Basic fails on web-tests on fresh install

2008-05-05 Thread Matt Raible
Prior to 2.0.9, Maven would download and use any newly released plugins. As of 2.0.9, the plugin versions are hard-coded for the release so you won't get new ones unless you explicitly specify them. http://jira.codehaus.org/browse/MNG-3395 Matt On Mon, May 5, 2008 at 1:31 AM, Richard G. Reyes <[

Re: [appfuse-user] JSF Basic fails on web-tests on fresh install

2008-05-05 Thread Matt Raible
Adding spring-web as a dependency to your pom.xml will fix this issue. http://issues.appfuse.org/browse/APF-977 Matt On Mon, May 5, 2008 at 1:24 AM, Richard G. Reyes <[EMAIL PROTECTED]> wrote: > Hi Again Matt and All, > > Failing on the JSF Basic I tried the Struts 2 modular and heres what I >

Re: [appfuse-user] cssHorizontalMenu

2008-05-05 Thread oscar perez
Hi, I found the problem when using the attached file. The problem is under EnterprisesMenu. It is very odd because if I use 1 or 2 children it works fine but when I use more than two the layout is messed up. When looking at the generated code the problem seemed to be a missing . The cssHorizontalMe

RE: [appfuse-user] JSF Basic fails on web-tests on fresh install

2008-05-05 Thread Richard G. Reyes
Thanks! On our 1.9.4 devt cycle, we will usually execute ant deploy to test action changes (were using webwork). With Maven, when I run mvn compile or mvn test, will these commands fetch new versions of archetype plugins? I am wondering if working online might introduce a failed build cycle.

RE: [appfuse-user] JSF Basic fails on web-tests on fresh install

2008-05-05 Thread Richard G. Reyes
Hi Again Matt and All, Failing on the JSF Basic I tried the Struts 2 modular and heres what I got... --- T E S T S --- Running com.mycompany.app.AppTest Tests run: 1, Failures: 0, Errors: 0, S

Re: [appfuse-user] JSF Basic fails on web-tests on fresh install

2008-05-05 Thread Matt Raible
I believe this is caused by the latest version of the archetype plugin. I fixed it in SVN yesterday and it will be in the 2.0.2 release sometime this week. Matt On Mon, May 5, 2008 at 1:11 AM, Richard G. Reyes <[EMAIL PROTECTED]> wrote: > Hi Matt, > > As per subject, heres my configuration... >

[appfuse-user] JSF Basic fails on web-tests on fresh install

2008-05-05 Thread Richard G. Reyes
Hi Matt, As per subject, heres my configuration... E:\appfuse-test>mvn -version Maven version: 2.0.9 Java version: 1.5.0_11 OS name: "windows vista" version: "6.0" arch: "x86" Family: "windows" Which flavor? --- mvn archetype:create -DarchetypeGroupId=org.appfuse.archetypes -Darchetyp