Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Frank Bille Jensen
Perhaps it should be a FAQ? On Mon, 2006-07-24 at 11:12 -0700, Igor Vaynberg wrote: are you in development mode? if so this is a debug feature to help you find potential problems when your app will run clustered. it checks your component graphs to make sure everything is serializable as it

Re: [Wicket-user] Wicket 1.2.1 available

2006-07-24 Thread Frank Bille Jensen
And on wicketframework.org... Perhaps some links between them? On Mon, 2006-07-24 at 22:09 +0200, Eelco Hillenius wrote: Yeah, that would make sense. We have one on the WIKI don't we? Eelco On 7/24/06, Frank Bille Jensen [EMAIL PROTECTED] wrote: Perhaps it should be a FAQ? On Mon

Re: [Wicket-user] Controlling 'class' parameter for a link element

2006-07-24 Thread Frank Bille Jensen
link.add(new SimpleAttributeModifier(class, YOUR-CLASS-NAME)); Frank On Mon, 2006-07-24 at 11:20 -0700, Pierre-Yves wrote: hi, I am struggling with a new problem : I need to programmatically set the class attribute of a html link ( element). I tried to extends the Link element, but

Re: [Wicket-user] How to programatically link to a css or a script ?

2006-07-23 Thread Frank Bille Jensen
Hey On Sun, 2006-07-23 at 08:38 -0700, Peewhy wrote: add(new StyleSheetReference(menucss, getClass(), menu.css)); is getClass() returning the correct class which is in the same package as menu.css? To be sure you could instead use MyPageWhichIsInTheSamePackage.class or something like that.

[Wicket-user] Wicket search engine

2006-07-22 Thread Frank Bille Jensen
Hey all Wicket lovers! The last week or so, I have been working on a Wicket resource search engine. It is a little application which indexes Wicket related sites for a more dedicated search: http://woogle.billen.dk/ It started of as a simple research project of Lucene Nutch[1], but I

Re: [Wicket-user] Wicket search engine

2006-07-22 Thread Frank Bille Jensen
On Sat, 2006-07-22 at 08:30 -0700, Igor Vaynberg wrote: what i want to know is why that version of sf.net is soo much better looking then the crap on sf.net? Well I can't really tell you WHY it look better, but it's basically not the same software as SF.net. It's JAVA based where SF.net is

Re: [Wicket-user] Wicket search engine

2006-07-22 Thread Frank Bille Jensen
On Sat, 2006-07-22 at 09:31 -0400, Aníbal Rojas wrote: I am an absolut begginer to Wicket, but in RuyCorner.com (which is a Blog Directory and not a Vertical Search engine) people suscribe and register their blogs, and we try to enforce that people use their Ruby/Rails specific feeds that

Re: [Wicket-user] Wicket search engine

2006-07-22 Thread Frank Bille Jensen
On Sat, 2006-07-22 at 13:51 -0400, Aníbal Rojas wrote: That might be an idea. I have been looking for feeds like that, but people are using all kinds of different cms systems which I don't know are capable of generating category/tag specific feeds for. And then people have to retag there

Re: [Wicket-user] ajax the wiki

2006-07-17 Thread Frank Bille Jensen
Try checking out the AJAX examples: http://www.wicket-library.com/wicket-examples/ajax I think they are really useful. Frank On Mon, 2006-07-17 at 11:12 -0700, Scott Swank wrote: I want to take my first dive into Ajax with Wicket. Can anyone point me to a useful page on the wiki... or

Re: [Wicket-user] Wicket-Template

2006-07-14 Thread Frank Bille Jensen
Nice. I like the mvn approach better, than having a large quickstart including libraries. Any reason why you are using org.grlea.log and friends instead of basic apache log commons? They are not in maven repository, so it's not straight forward to use. Frank On Fri, 2006-07-14 at 11:34 +0100,

Re: [Wicket-user] Wicket-Template

2006-07-14 Thread Frank Bille Jensen
On Fri, 2006-07-14 at 14:02 +0100, Gwyn Evans wrote: Opps - they are in the repo! (Somewhat simplified) there's a typo in the pom regarding one of the adapters - it should be simple-log-slf4j rather than simple-log-sl4j (i.e. a missing 'f'). Yeah that helped a lot :) mvn eclipse:eclipse

Re: [Wicket-user] Wicket-Template

2006-07-14 Thread Frank Bille Jensen
don't need all the jars bundled. (If someone wants to add an Ant build.xml to Template then they're welcome to, but it'll need to assume it's dependancies are present...) /Gwyn On 14/07/06, Frank Bille Jensen [EMAIL PROTECTED] wrote: On Fri, 2006-07-14 at 14:02 +0100, Gwyn Evans wrote

Re: [Wicket-user] Proxessing uncaught exceptions

2006-07-11 Thread Frank Bille Jensen
Yes, take a look at IApplicationSettings.setInternalErrorPage(). Frank Bille On Tue, 2006-07-11 at 09:46 +0300, Tymur Porkuyan wrote: Is it possible to override standard Wicket exception page? I would like to throw exceptions on lower levels and have a generic error page that will

Re: [Wicket-user] Proxessing uncaught exceptions

2006-07-11 Thread Frank Bille Jensen
); } @Override public boolean isErrorPage() { return true; } @Override public boolean isVersioned() { return false; } } Regards Frank Bille On Tue, 2006-07-11 at 09:30 +0200, Frank Bille Jensen wrote: Yes, take

Re: [Wicket-user] Loading ...

2006-07-07 Thread Frank Bille Jensen
Yes, try taking a look at IAjaxIndicatorAware API and the example implementation in Wicket extensions. Regards Frank On Fri, 2006-07-07 at 14:21 +0200, Paolo Di Tommaso wrote: Is there a way in Wicket to display something like a Loading ... Google red label on Ajax call? Thank you.

Re: [Wicket-user] Images to button

2006-07-06 Thread Frank Bille Jensen
What do you mean? Like the entire button is just your image or that you both have text and an icon? Try taking a look at: http://wicket.sourceforge.net/apidocs/wicket/markup/html/form/ImageButton.html Regards Frank On Thu, 2006-07-06 at 16:00 +0530, [EMAIL PROTECTED] wrote: Hi All I want

Re: [Wicket-user] about base path

2006-07-03 Thread Frank Bille Jensen
have to map apache or something else to do that, but be careful, you dont want people getting access to your config/classes files that also live in WEB-INF, i wouldnt recommend doing it that way -Igor On 7/2/06, Frank Bille Jensen [EMAIL PROTECTED] wrote: Can't you just store

Re: [Wicket-user] about base path

2006-07-03 Thread Frank Bille Jensen
On Mon, 2006-07-03 at 00:46 -0700, R.A wrote: How do I set this path in base tag? In html: base wicket:id=baseTag / In java: WebComponent baseTag = new WebComponent(baseTag); baseTag.add(new SimpleAttributeModifier(href, path)); add(baseTag); Frank Using Tomcat but need to do more? Need

Re: [Wicket-user] about base path

2006-07-02 Thread Frank Bille Jensen
Can't you just store your images in WEB-INF/images? You don't need to store them in something similar to the URL mapping. Else take a look at the base HTML tag which goes into head: http://www.htmlhelp.com/reference/html40/head/base.html Regards Frank Bille Avaleo On Sun, 2006-07-02 at 20:05

Re: [Wicket-user] wicket emailaddress validation incorrect

2006-06-22 Thread Frank Bille Jensen
On Thu, 2006-06-22 at 06:47 +0200, jan_bar wrote: just in the case, do you take IDN (International Domain Names) into consideration? Allowed characters for .de domain are listed here: http://www.denic.de/en/domains/idns/liste.html. It's not me who have created the RFC 822 compliant regex. But

Re: [Wicket-user] wicket emailaddress validation incorrect

2006-06-22 Thread Frank Bille Jensen
On Thu, 2006-06-22 at 11:25 -0400, Michael Day wrote: None of these regexp are perfect, by the way. Email addresses are not allowed to begin with hyphens and underscores =). According to whom ;-) At least in the RFC email addresses may start with _ and -. Regards Frank Bille Avaleo

Re: [Wicket-user] wicket emailaddress validation incorrect

2006-06-21 Thread Frank Bille Jensen
On Tue, 2006-06-20 at 08:42 -0700, Igor Vaynberg wrote: i wonder how big the created state machine is for this beast :) It's quite big. I just tried to profile it and compare it to the regex, which Michael Korthuis provided. If I can calculate correctly it is over 100 times larger than Michaels

Re: [Wicket-user] wicket emailaddress validation incorrect

2006-06-21 Thread Frank Bille Jensen
On Wed, 2006-06-21 at 12:23 -0700, Igor Vaynberg wrote: if you attach one to sf.net tracker or an email i will happily put it into extensions. Yeah, why not :) I'll brew something together when I have a spare moment. - fb All the advantages of Linux Managed Hosting--Without the Cost and

Re: [Wicket-user] wicket emailaddress validation incorrect

2006-06-21 Thread Frank Bille Jensen
On Wed, 2006-06-21 at 21:27 +0200, Frank Bille Jensen wrote: On Wed, 2006-06-21 at 12:23 -0700, Igor Vaynberg wrote: if you attach one to sf.net tracker or an email i will happily put it into extensions. Yeah, why not :) I'll brew something together when I have a spare moment

Re: [Wicket-user] wicket emailaddress validation incorrect

2006-06-20 Thread Frank Bille Jensen
Thats right.. In our company we use the (crazy) regex pattern taken from http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html String emailPattern = (?:(?:\\r\\n)?[ \\t])*(?:(?:(?:[^()@,;:\\\.\\[\\] \\000-\\031]+(?:(?:(?:\\r\\n)?[ \\t] +

Re: [Wicket-user] wicket emailaddress validation incorrect

2006-06-20 Thread Frank Bille Jensen
complicated for the job :P Michiel On 6/20/06, Frank Bille Jensen [EMAIL PROTECTED] wrote: Thats right.. In our company we use the (crazy) regex pattern taken from http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html String

[Wicket-user] Inheritance and wicket:child / inside a tag with wicket:id

2006-06-19 Thread Frank Bille Jensen
Hi I'm having a problem with the following html markup (example): Parent.html: ... div wicket:id=weConfigureTheStyleAttributeOnThis wicket:child / /div ... Parent.java ... public class Parent extends Panel { public Parent() { WebMarkupContainer styleFrame = new

Re: [Wicket-user] Binding package resources recursively

2006-06-08 Thread Frank Bille Jensen
On Wed, 2006-06-07 at 21:12 -0700, Aaron Hiniker wrote: OK, so what could cause this to not work?? I have an image sitting in my war dir, I try to access it using the url scheme you provided, and I get this: 19:32:05,723 ERROR [SharedResourceRequestTarget] shared resource