Re: [appfuse-user] ACEGI SECURITY

2007-01-04 Thread Yesh
hi, Thanks for your response.If the Url pattern is http://localhost:8080/appfuse/forge,then how should i mention it in security.xml to protect the files inside forge dir. -Yesh Michael Horwitz wrote: > > You will need to protect the URL used to a

Re: [appfuse-user] Translations needed - Locale de

2007-01-04 Thread The Teknologist
Hi Matt, Here are the translations in French: activeUsers.summary={0} Utilisateur(s) trouvé(s), {1} utilisateur(s) affiché(s), de {2} à {3}. Page {4} / {5} Cheers Eric On 1/5/07, Georg Henzler <[EMAIL PROTECTED]> wrote: Hi Matt, Here's the German one: activeUsers.summary={0} Benutzer ge

RE: [appfuse-user] Translations needed

2007-01-04 Thread WANG Chi
here is zh_CN locale, activeUsers.summary=找到 {0} 个用户,显示 {1} 个用户,从 {2} 到 {3}。 {4} / {5} 页 -Original Message- From: Matt Raible [mailto:[EMAIL PROTECTED] Sent: Friday, January 05, 2007 6:56 AM ? To: AppFuse Subject: [appfuse-user] Translations needed Hello all, I need a translation of th

Re: [appfuse-user] Translations needed - Locale de

2007-01-04 Thread Georg Henzler
Hi Matt, Here's the German one: activeUsers.summary={0} Benutzer gefunden, {1} Benutzer angezeigt von Position {2} bis {3}. Seite {4} / {5} Cheers, Georg Matt Raible wrote: Hello all, I need a translation of the following for all the locales supported in AppFuse: activeUsers.summary={

[appfuse-user] Problem with XFireServlet startup - NoClassDefFoundError: org/springframework/beans/factory/support/ReaderContext

2007-01-04 Thread Eric Taieb
Hi, First thanks for creating Appfuse. It has been a major help on developing with Spring/JSF/Hibernate (very useful to learn how these interact) Everything works perfectly except for XFire. I have followed all tutorials (checked that the automatic procedure with ant in extras/xfire produced the

Re: [appfuse-user] Translations needed

2007-01-04 Thread André Faria
Brazilian Portuguese: {0} Usuários(s) encontrados, exibindo {1} usuário(s), de {2} até {3}. Página {4} / {5} André Faria Jason Brice escreveu: Spanish (locale es): {0} Usuario(s) encontrado(s), muestra {1} usuario(s), del {2} al {3}. Página {4} / {5} Jason On 1/4/07, Matt Raible <

Re: [appfuse-user] Translations needed

2007-01-04 Thread Jason Brice
Spanish (locale es): {0} Usuario(s) encontrado(s), muestra {1} usuario(s), del {2} al {3}. Página {4} / {5} Jason On 1/4/07, Matt Raible <[EMAIL PROTECTED]> wrote: Hello all, I need a translation of the following for all the locales supported in AppFuse: activeUsers.summary={0} User(s) foun

Re: [appfuse-user] For info: Struts2 ajax theme tree control conflict with scriptaculous

2007-01-04 Thread Tim Azzopardi
I tried the upgrade to 1.6.5 still haveexacly the same problem on firefox 1.5.0.9 (Cleared all firefox caches and undeploy, deploy etc, restart, cleared tomcat/work) The screen does work on IE6.x though. (Is there a jascript console in IE??) Maybe some FF javascript issue. Thanks anyway, and ha

Re: [appfuse-user] For info: Struts2 ajax theme tree control conflict with scriptaculous

2007-01-04 Thread Matt Raible
I've seen this issue before when integrating Dojo and Scriptaculous. I believe if you upgrade to the latest Scriptaculous (1.6.5), it should fix the problem. Matt On 1/4/07, Tim Azzopardi <[EMAIL PROTECTED]> wrote: See also http://www.webdeveloper.com/forum/showthread.php?t=114238 for similar

Re: [appfuse-user] For info: Struts2 ajax theme tree control conflict with scriptaculous

2007-01-04 Thread Tim Azzopardi
See also http://www.webdeveloper.com/forum/showthread.php?t=114238 for similar symptoms (Could not load 'dojo.io.IframeIO'; last tried '__package__.js' ") -- View this message in context: http://www.nabble.com/For-info%3A-Struts2-ajax-theme-tree-control-conflict-with-scriptaculous-tf2922724s236

Re: [appfuse-user] Translations needed

2007-01-04 Thread Gilberto C Andrade
Matt Raible escreveu: Hello all, I need a translation of the following for all the locales supported in AppFuse: activeUsers.summary={0} User(s) found, displaying {1} user(s), from {2} to {3}. Page {4} / {5} Hi Matt! Happy new year! For pt_BR: activeUsers.summary={0} Usuário(s) encontrado

[appfuse-user] For info: Struts2 ajax theme tree control conflict with scriptaculous

2007-01-04 Thread Tim Azzopardi
I'm integrating the struts2.0.1 tree control into my appfuse (1.9.4) app by copying the dynamic tree example in the struts2.0.1 showcase application Appfuse includes these scripts by default Then using the struts2 tree tag requires the use of the struts ajax theme

[appfuse-user] Translations needed

2007-01-04 Thread Matt Raible
Hello all, I need a translation of the following for all the locales supported in AppFuse: activeUsers.summary={0} User(s) found, displaying {1} user(s), from {2} to {3}. Page {4} / {5} Locales: de, en, es, fr, it, nl, pt, pt_BR, zh, zh_CN Thanks! Matt -- http://raibledesigns.com --

Re: [appfuse-user] simple login question

2007-01-04 Thread chekirge
Thanks for the answer, but i want to do this right after user logins. I guess i am going to try something according to Matt's below suggestion. --You could try using an HttpSessionListener. Take a look at UserCounterListener for an example.-- Bryan Noll-2 wrote: > > You should be able to

Re: [appfuse-user] simple login question

2007-01-04 Thread Sanjiv Jivan
I think Matt's suggestion of using Acegi events for login / logout (as used in UserCounterListener) is the cleanest and would work across web frameworks. Sanjiv On 1/4/07, Bryan Noll <[EMAIL PROTECTED]> wrote: You should be able to access the HttpSession by using the 'getSession()' method on

Re: [appfuse-user] simple login question

2007-01-04 Thread Bryan Noll
You should be able to access the HttpSession by using the 'getSession()' method on the HttpServletRequest. An instance of HttpServletRequest is passed in method implemented in one of your controller classes. chekirge wrote: I am using Spring MVC.. Bryan Noll-2 wrote: It will depend on wh

Re: [appfuse-user] Session FlushMode ?!

2007-01-04 Thread Matt Raible
This problem happens when you call get* on a Manager method and then call save* or remove* in the same transaction. You might try removing the "readOnly" indicator from the transaction attributes in your Spring context files. Just search for readOnly in *.xml. Matt On 1/4/07, Luiz Fernando Rod

Re: [appfuse-user] simple login question

2007-01-04 Thread chekirge
I am using Spring MVC.. Bryan Noll-2 wrote: > > It will depend on which web framework you're using. They each have > their own way of calling down into that api. Which one are you writing > your app with? > > chekirge wrote: >> When a user login, I want to put an object to his session. Co

Re: [appfuse-user] AppFuse 1.9.3 - WebWork 2.2.4 migrate to Struts2

2007-01-04 Thread Matt Raible
On 1/4/07, Matt Finholt <[EMAIL PROTECTED]> wrote: Hi Matt, Thanks for your advice! It was very helpful in exposing another layer of the issue! As it turns out, the error isn't related to the initial page request at all. Instead, the error is thrown when a css file is requested that doesn't ex

[appfuse-user] Session FlushMode ?!

2007-01-04 Thread Luiz Fernando Rodrigues
Hello, I ran into this problem this afternoon. Where can I set this in appfuse? And what is this?! ;-) error: Write operations are not allowed in read-only mode (FlushMode.NEVER) - turn your Session into FlushMode.AUTO or remove 'readOnly' marker from transaction definition thanks, Luiz

[appfuse-user] content editors? html cleaners?

2007-01-04 Thread Dale Newfield
I was hoping to find an open source tool (like JForum, etc.) that could be easily integrated into my app to provide comment/forum functionality for various objects in my model, but I found none that were really set up to integrate well into a separate webapp. That means I'm back to rolling my

Re: [appfuse-user] AppFuse 1.9.3 - WebWork 2.2.4 migrate to Struts2

2007-01-04 Thread Matt Finholt
Hi Matt, Thanks for your advice! It was very helpful in exposing another layer of the issue! As it turns out, the error isn't related to the initial page request at all. Instead, the error is thrown when a css file is requested that doesn't exist within the file system. On a hunch, I temporaril

Re: [appfuse-user] change number format ?

2007-01-04 Thread Dale Newfield
Matt Raible wrote: For Struts tags, you'll need a converter. Look at the ones registered at the top of BaseAction.java and possibly write/add a new one based on your type. In 1.9.x these are present in src/web/org/appfuse/webapp/action/BaseAction.java but not in extras/webwork/src/web/org/ap

Re: [appfuse-user] change number format ?

2007-01-04 Thread Matt Raible
For Struts tags, you'll need a converter. Look at the ones registered at the top of BaseAction.java and possibly write/add a new one based on your type. Matt On 1/4/07, Oliver Raupach <[EMAIL PROTECTED]> wrote: Yes, JSTL's tag works fine form me. But what's about this:

AW: [appfuse-user] change number format ?

2007-01-04 Thread Oliver Raupach
Yes, JSTL's tag works fine form me. But what's about this: If I filled this form with "123,45" it is converted to "0". -- Oliver Raupach -Ursprüngliche Nachricht- Von: Matt Raible [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 4. Januar 2

Re: [appfuse-user] Using XInclude with dbunit?

2007-01-04 Thread Matt Raible
You should be able to use XML entity includes like we do for config.xml and login.xml in web-tests.xml. http://www-128.ibm.com/developerworks/xml/library/x-tipgentity.html Matt On 1/4/07, mas <[EMAIL PROTECTED]> wrote: The fact that dbunit uses a single XML file to do it's inserts has bec

Re: [appfuse-user] Struts 2 + Dojo

2007-01-04 Thread Matt Raible
Do you have in the head of your JSP? I haven't worked much with Struts 2's Dojo integration - you might be better off asking on their user list. If you use Nabble, you can post and subscribe to a single message. http://www.nabble.com/Struts---User-f206.html Don't forget to search for your ans

Re: [appfuse-user] change number format ?

2007-01-04 Thread Matt Raible
Which web framework are you using? You should be able to use JSTL's tag. http://ndpsoftware.com/JSPXMLCheatSheet.html Matt On 1/4/07, Oliver Raupach <[EMAIL PROTECTED]> wrote: Hi, how to change the number format of type float? At the moment it is formatted like this: 1234.56 Euro I would l

Re: Re: [appfuse-user] missing cargo-maven2-plugin

2007-01-04 Thread Matt Raible
You shouldn't have to install Cargo from source. I deleted Cargo from appfuse.org/repository so hopefully that helps. Matt On 1/4/07, Viggo Navarsete <[EMAIL PROTECTED]> wrote: Great, I will try that :) Do I have to do any changes to the AppFuse configuration (pom.xml) as well? Viggo On 1/4/

[appfuse-user] change number format ?

2007-01-04 Thread Oliver Raupach
Hi, how to change the number format of type float? At the moment it is formatted like this: 1234.56 Euro I would like to have this: 1234,56 Euro -- Oliver Raupach - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional c

Re: Re: [appfuse-user] missing cargo-maven2-plugin

2007-01-04 Thread Viggo Navarsete
Great, I will try that :) Do I have to do any changes to the AppFuse configuration (pom.xml) as well? Viggo On 1/4/07, J. David Mendoza <[EMAIL PROTECTED]> wrote: Hi, viggo... To get it working I had to install cargo from the source... Hope it helps... David M. From: viggo To: users@appfus

Re: [appfuse-user] simple login question

2007-01-04 Thread Matt Raible
You could try using an HttpSessionListener. Take a look at UserCounterListener for an example. Matt On 1/4/07, chekirge <[EMAIL PROTECTED]> wrote: When a user login, I want to put an object to his session. Could not find where to write the code. I lost a lot of time on this. Any help? sorry

Re: [appfuse-user] simple login question

2007-01-04 Thread Bryan Noll
It will depend on which web framework you're using. They each have their own way of calling down into that api. Which one are you writing your app with? chekirge wrote: When a user login, I want to put an object to his session. Could not find where to write the code. I lost a lot of time on

[appfuse-user] simple login question

2007-01-04 Thread chekirge
When a user login, I want to put an object to his session. Could not find where to write the code. I lost a lot of time on this. Any help? sorry if the answer is so trivial. -- View this message in context: http://www.nabble.com/simple-login-question-tf2920608s2369.html#a8162835 Sent from

[appfuse-user] Struts 2 + Dojo

2007-01-04 Thread André Faria
I have a problem with Dojo in Struts 2. When the page loads a method dojo named makeWidgets is called, that method searchs for the dojo widgets and attach the necessary events to dojo listeners. Example: Div 1 the ftl adds some dojo notations dojoType, etc... The method onLoad (makeWidgets)

RE: [appfuse-user] Using XInclude with dbunit?

2007-01-04 Thread Smiley, Stuart A.
In build.xml, within the dbunit tag you can have multiple operation tags, each loading a different file. Stuart -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] ]On Behalf Of mas Sent: Thursday, January 04, 2007 9:10 AM To: users@appfuse.dev.java.net Subject: [ap

[appfuse-user] Re: need help for decorators

2007-01-04 Thread andrea cossu
Ok, i discovered what i have to do! :-) andrea -- andrea cossu "andrea cossu" <[EMAIL PROTECTED]> ha scritto nel messaggio news:[EMAIL PROTECTED] >I need to apply a my own decorator to a particular jsp page (report page) > located in /pages as the others jsp > What i have to do? > tnks > > --

[appfuse-user] Using XInclude with dbunit?

2007-01-04 Thread maskkkk
The fact that dbunit uses a single XML file to do it's inserts has become a point of contention since the version control we use uses a locking mechanism. Is there any way to split sample-data.xml into more than one file? I tried to use the http://www.w3.org/2001/XInclude namespace (see the h

[appfuse-user] need help for decorators

2007-01-04 Thread andrea cossu
I need to apply a my own decorator to a particular jsp page (report page) located in /pages as the others jsp What i have to do? tnks -- andrea cossu - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail

Re: [appfuse-user] ACEGI SECURITY

2007-01-04 Thread Michael Horwitz
You will need to protect the URL used to access the files. In security.xmllook for the section: PATTERN_TYPE_APACHE_ANT /clickstreams.jsp*=admin /flushCache.*=admin /passwordHint.html*=ROLE_ANONYMOUS,

Re: [appfuse-user] doesn't work!!! * * * HELP * * *

2007-01-04 Thread Attila
Hello how can I define the tag? like this, or how? http://www.w3.org/1999/xhtml"; xmlns:c="http://java.sun.com/jstl/core"; xmlns:f="http://java.sun.com/jsf/core"; xmlns:h="http://java.sun.com/jsf/html"; xmlns:ui="http://java.sun.com/jsf/facelets"

Re: [appfuse-user] missing cargo-maven2-plugin

2007-01-04 Thread viggo
Hi Matt, and happy new year :) I tried to get AppFuse 2.0 up and running yesterday by following the QuickStart Guide. I'm also getting the same error as David. I have tried several times to run the target, but always with the same error. I have also tried to clean my locale m2 repository, but wi