Re: How to validate wicket FileUploadField?

2007-10-22 Thread Bruno Borges
)) error(getString(LuceneFileNameValidator.invalidFile )); } }); and it works fine. For your situation, maybe you could ask to see if input is not null, and if it is, add an error message. Regards, -- Bruno Borges blog.brunoborges.com.br +55 1185657739 The glory

Re: OutOfMemoryError

2007-10-24 Thread Bruno Borges
(Thread.java:595) *root cause* java.lang.OutOfMemoryError: PermGen space -- Bruno Borges blog.brunoborges.com.br +55 1185657739 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld

Re: OutOfMemoryError

2007-10-24 Thread Bruno Borges
: The problem occurs in development environment. I am doing lots of re-deploys. I dont have lots of classes Bruno Borges wrote: Try increasing your PermGen: -XX:PermSize=64m -XX:MaxPermSize=64m The PermGen is not increased when you put parameters like -Xms and -Xmx. These only

JSF: standards versus OSS

2007-10-24 Thread Bruno Borges
For those who may be interested in JavaServer Faces or alternatives frameworks like Wicket, I posted in my blog my point-of-view about the differences, and why JSF is not cool (today). http://blog.brunoborges.com.br/2007/10/jsf-today-standards-versus-oss.html Regards, -- Bruno Borges

Re: hot deploy new/updated components?

2007-10-25 Thread Bruno Borges
for, is good for what the company wants, but because of Wicket's nature, that can't work in the same way. What you can argue is this: If there's a new version of a JSP page, so it's a new version of the entire website. New version means, usually, redeploy. cheers -- Bruno Borges blog.brunoborges.com.br +55

Re: recommend a CMS to integrate w/our wicket-based webapp?

2007-10-29 Thread Bruno Borges
It's possible to develop some cool stuff with Magnolia, just by loading wicket apps inside Iframes. It's not the best solution, but it will probably give you a quick start. :) regards -- Bruno Borges blog.brunoborges.com.br +55 1185657739 The glory of great men should always be measured

Re: Multiple wicket:child / tags on a single base page?

2007-11-05 Thread Bruno Borges
abstract class MyBasePage { MyBasePage() { add(method1()); add(method2()); } abstract Panel method1() abstract Panel method2() } as far as i know you have pretty much exactly what you describe. johan -- Bruno Borges blog.brunoborges.com.br

Re: wicket-contrib-datepicker

2007-11-05 Thread Bruno Borges
-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Bruno Borges blog.brunoborges.com.br +55

Re: Multiple wicket:child / tags on a single base page?

2007-11-05 Thread Bruno Borges
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Bruno Borges blog.brunoborges.com.br +55 1185657739 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld

Re: Multiple wicket:child / tags on a single base page?

2007-11-07 Thread Bruno Borges
. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Bruno Borges blog.brunoborges.com.br +55 1185657739 The glory of great men should always be measured by the means they have used to acquire

Re: Multiple wicket:child / tags on a single base page?

2007-11-07 Thread Bruno Borges
PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Bruno Borges blog.brunoborges.com.br +55 1185657739 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld

Re: Multiple wicket:child / tags on a single base page?

2007-11-07 Thread Bruno Borges
] - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Bruno Borges blog.brunoborges.com.br +55 1185657739 The glory of great men should always be measured by the means they have used

Re: Multiple wicket:child / tags on a single base page?

2007-11-07 Thread Bruno Borges
compatible with child/extend (which can be proofed with the existing junit test for markup inheritance) just a question: do i start to convince you? ;) best regards Bruno Borges wrote: Let me paste what I commented in WICKET-1134: *I think this improvement is just more of a way to override

Re: DateTimeField and java.util.Calendar

2008-11-27 Thread Bruno Borges
, that documentation didn't quite help too much to find out what was going on on weird exceptions... ;-) []'s Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Thu, Nov 27, 2008 at 5

Re: [VOTE] Consistent naming for Wicket Stuff projects

2008-11-27 Thread Bruno Borges
[X] YES But I'd like to suggest to use wicket-stuff-myproject I like the 'stuff' word instead of 'contrib'... sounds more ... cool! :D cheers, Bruno Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire

Re: [VOTE] End of Life wicket-contrib-gmap?

2008-11-27 Thread Bruno Borges
Create a branch named 'attic' and put dead projects there... :-) Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Thu, Nov 27, 2008 at 7:49 PM, Jeremy Thomerson

Re: using annotation @AuthorizeInstantiation

2008-12-04 Thread Bruno Borges
You simply can't do that because the nature of Annotations. Even if AuthorizeInstantiation's values were of type Object[] you wouldn't be able to do that with Enums. You will have to use Strings. Although there's some hack you can make using Java 6 to accomplish what you want. If you are

Re: using annotation @AuthorizeInstantiation

2008-12-04 Thread Bruno Borges
{}; } class Role { } class User extends Role { } class Admin extends Role { } So, the only thing that must change is the annotation @AuthorizeInstantiation, to accept classes that extends roles. Thoughts anyone? cheers, Bruno Bruno Borges wrote: You simply can't do that because

Re: using annotation @AuthorizeInstantiation

2008-12-04 Thread Bruno Borges
price to pay, but it just feels wrong. On Thu, Dec 4, 2008 at 10:33 PM, Bruno Borges [EMAIL PROTECTED]wrote: I've found a way to implement a type-safe check for this. Here it goes: import java.lang.annotation.Documented; import java.lang.annotation.ElementType; import

Re: using annotation @AuthorizeInstantiation

2008-12-04 Thread Bruno Borges
Well... you can't do this: @Foo(values={MyEnum.FOO, MyEnum.BAR}); @interface Foo { Object[] values() default {}; } James Carman wrote: What do you mean by Enums as Objects? On Thu, Dec 4, 2008 at 11:11 PM, Bruno Borges [EMAIL PROTECTED]wrote: Well... You don't have to create one java

Re: using annotation @AuthorizeInstantiation

2008-12-04 Thread Bruno Borges
to an enum from the outside. But, that kind of goes against the idea of an enum, doesn't it? On Thu, Dec 4, 2008 at 11:51 PM, Bruno Borges [EMAIL PROTECTED]wrote: Well... you can't do this: @Foo(values={MyEnum.FOO, MyEnum.BAR}); @interface Foo { Object[] values() default {}; } James Carman

Re: using annotation @AuthorizeInstantiation

2008-12-05 Thread Bruno Borges
Yes Adriano, that's what I said on my last reply. :-) So, the only way, for now, to have type-safety is using that Class-thing. I don't vote for this though. A simple class with String constants does de job quite well. :-D Cheers, Bruno Adriano dos Santos Fernandes wrote: Bruno Borges

Re: Populate IFRAME innerHTML on AJAX load of panel.

2008-12-07 Thread Bruno Borges
With all that conversation with yourself, how about writing a Wiki page after you succeed ?! :-D Cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Sun, Dec 7

Re: Populate IFRAME innerHTML on AJAX load of panel.

2008-12-07 Thread Bruno Borges
impossible to accomplish and go get some sleep buddy... ;-) Cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Mon, Dec 8, 2008 at 1:07 AM, Graeme Knight [EMAIL

Re: Form field (value) does not update after validation error

2008-12-10 Thread Bruno Borges
Solution: remove the FormValidation =) Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Wed, Dec 10, 2008 at 9:34 AM, Martijn Dashorst [EMAIL PROTECTED] wrote

Re: How to donate to Wicket Project

2008-12-13 Thread Bruno Borges
- spreading the word (blogging) =) Good luck with that! And thanks for showing us your willing to contribute. Best regards, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld

Re: Re: freelance gig

2009-03-25 Thread bruno . borges
So it's not a rewrite but a new application. On Mar 25, 2009 4:28pm, Phillip Rhodes spamsu...@rhoderunner.com wrote: It's just rewriting the UI. Most of the code is behind spring services, so this is hardly a 100% rewrite, it's just a rewrite of the UI layer. Please bear in mind that we

Re: number of active users

2009-03-25 Thread Bruno Borges
If you use some sort of database, you can easily do that, on any kind of environment (like clustered). If not, another way is syncing with some rest service between all instances in a clustered application. In one instance, of course you can do that in many ways. Cheers Bruno Borges

Re: why are we coding Web apps?

2008-07-18 Thread bruno . borges
Yes, you can have EJBs calls over HTTP. Google for HTTPInvoker. It's a component from JBoss. That's what makes the Genesis framework so interesting: http://genesis.dev.java.net See ya

Re: How take a field to a form so that it can manage within submit on the same form?

2008-07-31 Thread Bruno Borges
I'm sorry, but could you please explain better your issue? Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Thu, Jul 31, 2008 at 3:35 PM, alex2008 [EMAIL PROTECTED

Re: wicket 1.4 RadioChoice IConverter query

2008-09-16 Thread bruno . borges
This might have something to do with this issue: https://issues.apache.org/jira/browse/WICKET-1577 Regards, Bruno

Re: Re: Wicketstuff wishlist?

2008-09-20 Thread bruno . borges
I'm the one who developed HibernateFormComponentValidator and HibernateFormValidator, which does the validation in a different way compared with the annotations package. We really should improve this project. :-) cheers Bruno On Sep 20, 2008 6:47am, Jörn Zaefferer [EMAIL PROTECTED]

Re: Re: Best to strategy to have a Wicket page returns a binary content by default

2008-09-23 Thread bruno . borges
Why don't you use the DownloadLink component? Just create a file in the java.tmp.dir and setDeleteAfterDownload (true); http://wicket.apache.org/docs/wicket-1.3.2/wicket/apidocs/org/apache/wicket/markup/html/link/DownloadLink.html Regards, Bruno On Sep 23, 2008 11:30am, Paolo Di Tommaso

Re: Re: DownloadLink, can anyone help me?

2008-10-10 Thread bruno . borges
You can create a Filter to that path. :-) Bruno On Oct 10, 2008 11:04am, Pablo Scagno [EMAIL PROTECTED] wrote: Maybe, I can have a link like this http://wwwcom/files/mydoc.pdf;, but I don't know how to make that folder visible...

Re: Re: Downloading a BLOB

2008-10-13 Thread bruno . borges
testing! And serve the resource differently. On 10/13/08, Bruno Borges wrote: I think is better to create a temporary file and set DownloadLink to delete it after download is complete. I don't think is a good idea to let the user download directly from the database as you proposed. See

Re: Downloading a BLOB

2008-10-13 Thread Bruno Borges
. The latency of an external download is bigger than downloading from a local database. Cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Fri, Oct 10, 2008 at 10:04

Re: Re: Re: A wicket gathering?

2008-10-14 Thread bruno . borges
By the way, will there be a wicket gathering at ApacheCon US this year? Who's coming? On Oct 14, 2008 11:09am, [EMAIL PROTECTED] wrote: Why not in Brazil? :-) Then you all could enjoy summer here in Rio de Janeiro. On Oct 14, 2008 10:22am, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Tue,

Re: Re: A wicket gathering?

2008-10-14 Thread bruno . borges
Why not in Brazil? :-) Then you all could enjoy summer here in Rio de Janeiro. On Oct 14, 2008 10:22am, Timo Rantalaiho [EMAIL PROTECTED] wrote: On Tue, 14 Oct 2008, Johan Compagner wrote: For me: Amsterdam would be perfect :) But somewhere in germany is also no problem. Then it

Re: Re: Wicket versus Spring MVC

2008-10-17 Thread bruno . borges
Igor, I agree with Nino. What about posting something like that on wicketinaction.com? :-) Cheers, Bruno On Oct 17, 2008 2:41pm, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Good mail Igor. Did you place it on the wiki, or a blog somewhere? It's very sound arguments.

Re: GMAP2 non ajax?

2008-10-17 Thread bruno . borges
I'm not sure if GMap2 has that option, but if not, you could just put plain GMap code and provide the location with some hidden Label or a small component to do that. On Oct 17, 2008 5:22pm, Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] wrote: Are there a way to avoid the GMAP2

Re: Antwort: Wicket community traction / Wicket Web 2.0 experience

2008-10-22 Thread bruno . borges
That's ok Chris, It's just a matter of time until they find out they did the wrong choice - unless this is going to be a small software, with very specific functions, like GMail. :-) There's a team by my side here that is working in a sub-project with GWT and they chose it using that same

Re: French Wicket Users GoogleGroup !

2008-10-31 Thread Bruno Borges
Cool! First a portuguese group, now a french one. Is WIcket going to be a multi-language framework? :-) Congratulationss on your effort! Cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire

Re: ApacheCon live video streaming available; keynotes and Apache 101 are free

2008-11-05 Thread Bruno Borges
says Free Software as in free beer, they really make it happen. I love this free beer thing that we have around here at ApacheCon! :-) Cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois

Re: session timeout and session id

2008-11-05 Thread Bruno Borges
How expensive do you think it will be to save and bring back the user object from the database? I'm pretty sure that working with that information in memory is faster and less expensive. Why not just staying with the Map solution? I'm pretty sure it works. cheers, Bruno Borges

Re: wicket ajax and 508 compilance

2008-11-06 Thread Bruno Borges
Go check these webpages: http://www.wac.ohio-state.edu/tutorials/section508/testing.htm http://www.webaim.org/standards/508/checklist.php []'s! Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire

RESTful Web Services with Wicket (and XStream)

2008-11-06 Thread Bruno Borges
I've posted on my blog about how to create quickly and simple RESTful WebServices with Apache Wicket, using XStream to marshall XML from java Objects. Take a look! http://blog.brunoborges.com.br/2008/11/restful-web-services-with-wicket.html Regards, Bruno Borges blog.brunoborges.com.br +55 21

Re: RESTful Web Services with Wicket (and XStream)

2008-11-07 Thread Bruno Borges
Check this tutorial: http://xstream.codehaus.org/json-tutorial.html cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Fri, Nov 7, 2008 at 4:50 AM, francisco

Re: File Chooser dialog needed

2008-11-07 Thread Bruno Borges
If you really want to do that, make sure you install your web application in each user's computer... :-) Just to make sure the JFileChooser will actually work. And if you warn the user about something, don't use a javascript alert. JOptionPane is your friend here too! cheers, Bruno Borges

Re: Are pages stored in session?

2008-11-07 Thread Bruno Borges
() { reloadFAQPage(); // creates an instance, etc... } public void reloadFAQPage() { ... // reloads data from database after changing something at the FAQ DB Table, or something like that } } And then you just need to do a new Link referencing that instance. :) cheers, Bruno Borges

Re: Are pages stored in session?

2008-11-07 Thread Bruno Borges
Ok, forget about it... Components are NOT Thread safe... :-) Just make FAQPage a Stateless WebPage... ;-) Cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld

Re: Top-level classpath Resources

2008-11-07 Thread Bruno Borges
By the way, Adriano, there's a Wicket Portuguese community around there... If you want to join us, please feel free. groups.google.com/wicket-ptbr Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire

Re: Top-level classpath Resources

2008-11-07 Thread Bruno Borges
Sorry, the correct address is: http://groups.google.com/group/wicket-ptbr Cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Fri, Nov 7, 2008 at 12:41 PM

Re: ajax request and hibernate lazy loading

2008-11-07 Thread Bruno Borges
With Ajax request I would probably avoid that pattern. That could lead to serious problems. How about having a different method to load the object with the required data for that specific ajax request? cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should

Re: Bugs in wicket

2008-11-07 Thread Bruno Borges
What would work on IE7 to do the same thing? Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Fri, Nov 7, 2008 at 3:38 PM, TahitianGabriel [EMAIL PROTECTED] wrote

Re: AutoCompleteTextField and wicket 1.3.5

2008-11-10 Thread bruno . borges
use firefox On Nov 10, 2008 2:06pm, ulrik [EMAIL PROTECTED] wrote: There seems to be a problem with the AutoCompleteTextField in wicket 1.3.5. The search results pops up in the wrong place (not below the search field). When I downgrade to wicket 1.3.4 it works perfectly. And the

Re: Re: AutoCompleteTextField and wicket 1.3.5

2008-11-10 Thread bruno . borges
Not really. What version of IE are you using? On Nov 10, 2008 2:19pm, ulrik [EMAIL PROTECTED] wrote: Is that a joke? Bruno Borges wrote: use firefox -- View this message in context: http://www.nabble.com/AutoCompleteTextField-and-wicket-1.3.5-tp20422758p20423025.html

Re: AutoCompleteTextField: Making Wicket call getChoices method on 'onClick' event

2008-11-10 Thread bruno . borges
Take a look at the source code of AutoCompleteTextField and find out which JS method is called to display the list of choices. Then from this point, you can use the onFocus javascript event (http://www.w3schools.com/jsref/jsref_onfocus.asp). Cheers, Bruno On Nov 9, 2008 9:01pm, m_salman

Re: PageLink or BookmarkablePageLink

2008-11-10 Thread bruno . borges
I don't think so. They have different purposes. On Nov 10, 2008 7:50pm, David R Robison [EMAIL PROTECTED] wrote: Is there any advantage to using PageLink over BookmarkablePageLink? David -- David R Robison Open Roads Consulting, Inc. 103 Watson Road, Chesapeake, VA 23320 phone: (757)

Re: Re: Issue with FileUpload.writeToTempFile()

2008-11-11 Thread bruno . borges
JIRA issue created - *with patch included* https://issues.apache.org/jira/browse/WICKET-1930 cheers, Bruno On Nov 11, 2008 4:11pm, Igor Vaynberg [EMAIL PROTECTED] wrote: please open a jira issue. -igor On Tue, Nov 11, 2008 at 1:59 AM, Lauri Piispanen - Conmio Ltd wrote: Hi all, I

Re: Overriding builtin error messages

2008-11-11 Thread bruno . borges
How dynamic is your form's id? Shouldn't be static because of HTML reference? On Nov 11, 2008 1:53pm, Steve Swinsburg [EMAIL PROTECTED] wrote: I'd like to override the default form feedback messages (also so I can localise them). ie 'Upload must be less than' In Form.java I found this : //

Re: Re: Issue with FileUpload.writeToTempFile()

2008-11-11 Thread Bruno Borges
to change it, really. :-) I took the first shot so I had to come with something, but there's no reason to not change it. with everything said, I'll try to improve the quality (or the lack of premature quality) of submited patches... :-D thanks for your comments, Bruno Borges

Re: Re: OFF TOPIC - all-in-one wysiwyg website package?

2008-11-13 Thread bruno . borges
Are you looking for a website package with data retention support (file / database / jcr), wysiwyg editor and customizable components? I suggest you to take a look at Magnolia, Alfresco or OpenCMS. I rather prefer Magnolia actually, but the others are not bad though. Cheers! Bruno Borges

Re: authenticatedWebApplication error with jaas

2008-11-13 Thread bruno . borges
Show us the code that declares your WicketApplication class. Specially the import header and the public class ... line. Regards, Bruno On Nov 13, 2008 2:24pm, francesco dicarlo [EMAIL PROTECTED] wrote: hi i've switched my wicket application from webapplication to authenticatedwebapplication

Re: Re: Per-user, event-aware page/component caching

2008-11-13 Thread bruno . borges
What you could actually do, is implement a Component Pool. Take a look at the Commons-Pool project and then, role your own pool. :-) Combine a pool with an application or a session and good luck! Apache Commons Pool Project http://commons.apache.org/pool/ Regards, Bruno On Nov 13, 2008

Re: Label with AjaxSelfUpdatingTimerBehavior not refreshing

2008-11-13 Thread Bruno Borges
calling super.repaint(), you code something like myButton.setValue(new Date().toString()); Understand that, and you will easily - and hopefully quickly - understand why we use Models. Have fun with Wicket! Cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should

Re: Label with AjaxSelfUpdatingTimerBehavior not refreshing

2008-11-13 Thread Bruno Borges
Jeremy, I forgot to ask you: how many beers is Martijn giving to you to promote the book? I want that deal too! cheers, Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld

Re: maven-eclipse-plugin 2.6 will break your wicket projects

2009-04-02 Thread Bruno Borges
Ahh really? But i want to!!! Can i? Can i??? I've been busy for a while... so I want to! :P Yes, I'm coming back... Run for your lives ;-) Bruno Borges blog.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire

Wicket on Google App Engine support for IPageStore on BigTable

2010-10-01 Thread Bruno Borges
: http://youtu.be/ObvA9ao8U2Q I just hope I've done everything correctly on this implementation. So I ask the experts to take a look, and more important: to try it on your apps that run on more than one CPU at GAE. Thank you, Long live Wicket!! Bruno Borges Bruno Borges www.brunoborges.com.br

Re: Wicket on Google App Engine support for IPageStore on BigTable

2010-10-02 Thread Bruno Borges
Not really... I just had the idea of storing pages directly to the BigTable, so this is more of a PoC. :-) Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Sat

Wivket vs JSF (video)

2010-11-08 Thread Bruno Borges
I found this Ewok StarCruiser video online and I couldn't hold myself when I thought I could play with it to bring a comparison between JSF and Wicket. Turn mute and YouTube Captions ON. http://www.youtube.com/watch?v=uHD5xLefTygcc_load_policy=1 Bruno Borges www.brunoborges.com.br +55 21

Forced Date Pattern on Application level

2010-11-22 Thread Bruno Borges
Is it possible to force a Date pattern to DateTextField on an application level? Thanks, Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld

Re: Forced Date Pattern on Application level

2010-11-22 Thread Bruno Borges
to define a custom component to enforce pattern. Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Mon, Nov 22, 2010 at 11:04 AM, Bruno Borges bruno.bor...@gmail.comwrote

Re: How to emulate an ajax-response with Wicket?

2010-12-16 Thread Bruno Borges
Could you provide a wicket quickstart application with such case? Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Thu, Dec 16, 2010 at 1:19 PM, f a v fav

Default Locale and Resource Lookup Order

2011-01-16 Thread Bruno Borges
trying to find files like resources_pt_BR.extension, then resources_pt.extension. Where should I tell Wicket what is the locale for non-localized-files. ? Thanks, Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used

RE: Estimated number of developers in the Wicket community

2011-02-09 Thread Bruno Borges
Does anyone have an update over this? It seems the website http://people.apache.org/~coar/mlists.html#wicket.apache.org does not show anymore the Wicket dashboard. I'm looking for a number of active members on the mailing list (also, number of messages). -- View this message in context:

JasperReports Serialization error with JRDataSource

2011-02-25 Thread Bruno Borges
(service.listAll())); add(new ResourceLink(linkToPdf, pdfResource)); The service variable is a @SpringBean. Any idea anyone? (Eelco, specially... who wrote jasper integration on wicketstuff)... :-) Best regards, Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always

Re: JasperReports Serialization error with JRDataSource

2011-02-25 Thread Bruno Borges
-1.4.15.jar:1.4.15] at org.apache.wicket.util.io.SerializableChecker.checkFields(SerializableChecker.java:641) ~[wicket-1.4.15.jar:1.4.15] Cheers, Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire

Re: Checking the checkboxes of CheckBoxMultipleChoice

2011-03-16 Thread Bruno Borges
?focusedCommentId=1300page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-1300 Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Tue

Re: wicket - tomcat - apache - haproxy

2011-03-16 Thread Bruno Borges
Could you try to comment Wicket Filter and just try to access a simple index.html file ? I think this has nothing to do with Wicket or anything related to the web application. Must be something between your web server and servlet container. Best regards, Bruno Borges www.brunoborges.com.br +55

Re: Drag and Drop, simply copy from list A to list B

2011-03-16 Thread Bruno Borges
You can submit that component to wicketstuff. www.wicketstuff.org Congratulations for the great work! Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Wed, Mar

Re: FileUpload size limit

2011-03-17 Thread Bruno Borges
I guess you should consider configuring your container properly: http://stackoverflow.com/questions/2947683/httprequest-maximum-allowable-size-in-tomcat http://stackoverflow.com/questions/2947683/httprequest-maximum-allowable-size-in-tomcat Cheers, Bruno Borges www.brunoborges.com.br +55 21

WicketStuff artifacts naming strategy

2011-03-24 Thread Bruno Borges
with a 'wicketstuff-' preffix on all modules? Cheers, Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld

Re: [wicketstuff-core] Wicketstuff Developers please use a separate commit when fixing breakage due to wicket upstream changes

2011-03-26 Thread Bruno Borges
Michael, could you better explain what exactly happened? I'm not an expert on Git, but I really want to understand what to do. Thanks, PS: and thank you very much. You've been doing a great job at keeping wicketstuff alive and functional... :-) Bruno Borges www.brunoborges.com.br +55 21

Re: WicketStuff artifacts naming strategy

2011-03-26 Thread Bruno Borges
We could simply rename the artifactId property of projects, prepending with wicketstuff-, like wicket does with their modules. Still, I agree that this is will take some time and effort. Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured

Set all form fields to output markup id automatically

2011-03-27 Thread Bruno Borges
I'm developing a project with Scala + Wicket and I wanted to set that all form components have their markup id output automatically (setOutputMarkupId(true)). Any idea? Cheers, Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means

Re: Set all form fields to output markup id automatically

2011-03-27 Thread Bruno Borges
I was looking for a better way (optimized too) to achieve this, considering that I'm using Scala. I admit I'm not an expert on Scala though. :-) Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire

Re: [wicketstuff-core] Wicketstuff Developers please use a separate commit when fixing breakage due to wicket upstream changes

2011-03-27 Thread Bruno Borges
Wow... got it. Thanks for clarifying all of this. Now, I think it is hard to guarantee no one will push API changes + features on a unique commit. Shouldn't we consider to stop building for point releases and only release after a stable Wicket version? (ie. not RC's) Bruno Borges

Re: Set all form fields to output markup id automatically

2011-03-27 Thread Bruno Borges
WebMarkupContainer(foo)); What you guys think of this? Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Sun, Mar 27, 2011 at 11:15 PM, James Carman ja

Re: Highlight current/clicked AjaxLink

2011-03-27 Thread Bruno Borges
Please provide a quickstart with the use case, so we can reproduce the bug. Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Sun, Mar 27, 2011 at 8:37 PM, Mansour

Re: [OT] Apache Wicket Merchandise, nominees Spring roundup

2011-03-28 Thread Bruno Borges
I nominate Michael for his great work at WicketStuff and Pedro who's brazilian like me and representing Latin America (and will probably own me a beer the next time he comes to Rio)... :-) Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured

Re: WicketRuntimeException

2011-03-29 Thread Bruno Borges
Could you provide us a quickstart to reproduce de error ? Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Tue, Mar 29, 2011 at 10:08 AM, Jan Juno janko

Re: [VOTE] Behavior of CheckBox With Respect to setRequired(true)

2011-04-01 Thread Bruno Borges
[] Please, check this box if you agree with EULA [ x ] Please, uncheck this box if you don't want to receive notifications In this case, I would set the first checkbox as required, and leave the later as optional. Vote for (1) +1 Best regards, Bruno Borges www.brunoborges.com.br +55 21

Re: [Vote] New Wicket Version Numbering

2011-04-01 Thread Bruno Borges
Of course it is the best. It has no software error-prone... :-) No GC problems, no heap calculations. =) Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Fri

Re: [VOTE] Behavior of CheckBox With Respect to setRequired(true)

2011-04-02 Thread Bruno Borges
, and I'm sure they won't like the idea of having to migrate 300 apps to 1.5, with this kind of API change. Until now, most of the changes can be fixed (from 1.4 to 1.5) in a higher level, not having to look at every and single Form. With this, it would be a nightmare. just my 2 cents Bruno Borges

Re: Wicket For Mobile

2011-04-03 Thread Bruno Borges
this or that component. Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Sun, Apr 3, 2011 at 11:52 AM, Martin Makundi martin.maku...@koodaripalvelut.com wrote

Dynamic URL path

2011-04-03 Thread Bruno Borges
Hi everyone, On Wicket 1.5, what is the best way to achieve this: http://localhost/mountedPage/dynamicPath And, within the page mounted at mountedPage, retrieve the dynamicPath value ? Cheers, Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always

Re: Wiquery experiences

2011-04-06 Thread Bruno Borges
Most of the things you want to do with jQuery, you don't need a library for. I totally agree with Maarten Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La Rochefoucauld On Wed

Git workflow tip for WIcketstuff

2011-04-08 Thread Bruno Borges
that needs to be tracked on single commits. Michael O'Cleirigh talked about this on a previous posthttp://goo.gl/AaNMX . Cheers, Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire it. - Francois de La

Complex Grid with Wicket

2011-04-20 Thread Bruno Borges
Can someone wonder how could one, using Wicket, accomplish an interface like the one below? http://papers.consegi.gov.br/pub/palestras.php Cheers, Bruno Borges www.brunoborges.com.br +55 21 76727099 The glory of great men should always be measured by the means they have used to acquire

Re: Running Wicket under WebSphere

2011-05-03 Thread Bruno Borges
You must enable the *com.ibm.ws.webcontainer.invokefilterscompatibility*property. Check this webpage: http://greatwebguy.com/programming/java/urlrewritefilter-servlet-filter-problem-in-websphere-6105-and-greater/ Hope this helps. Cheers, *Bruno Borges* www.brunoborges.com.br +55 21 76727099

  1   2   3   >