Re: OT - GrepCode

2009-07-04 Thread Vinayak Borkar
box on our page, but the site has to conform with apache rules and policies and im not sure how that plays in. martijn might be able to shed more light. -igor On Sun, Jun 28, 2009 at 5:12 PM, Vinayak Borkar wrote: Guys, I had sent a mail to this mailing list a few months ago about http://grepc

OT - GrepCode

2009-06-28 Thread Vinayak Borkar
Guys, I had sent a mail to this mailing list a few months ago about http://grepcode.com, a Java source code search engine. Over the last few months, we have added more repositories and more features -- for example, stack trace search. I was wondering if it would be a useful for users of the

Re: Page instantiated twice

2009-03-30 Thread Vinayak Borkar
:) Since it is stateless, Wicket has to construct the page with each request, until it is no longer stateless. If you have a form, override its getstatelesshint method and return false. Martijn On Tue, Mar 31, 2009 at 8:36 AM, Vinayak Borkar wrote: Jeremy, I did that. The first time it is at

Re: Page instantiated twice

2009-03-30 Thread Vinayak Borkar
to construct the page with each request, until it is no longer stateless. If you have a form, override its getstatelesshint method and return false. Martijn On Tue, Mar 31, 2009 at 8:36 AM, Vinayak Borkar wrote: Jeremy, I did that. The first time it is at

Re: Page instantiated twice

2009-03-30 Thread Vinayak Borkar
http://www.wickettraining.com On Tue, Mar 31, 2009 at 1:30 AM, Vinayak Borkar wrote: Hello, I have a form that performs a search and shows a page with results. The result page also has the same form to do a repeat search. I noticed that the SearchPage is instantiated twice when I do a s

Page instantiated twice

2009-03-30 Thread Vinayak Borkar
Hello, I have a form that performs a search and shows a page with results. The result page also has the same form to do a repeat search. I noticed that the SearchPage is instantiated twice when I do a search from the form on the result page. Is there a way to make sure that does not happen? T

OT: Code Search Engine for Java using wicket

2009-03-24 Thread Vinayak Borkar
Hello fellow Wicketeers, We have released a beta version of a code search engine for open source Java code, that uses Wicket v1.4. You could search for wicket by following the link: http://grepcode.com/search/?query=wicket Thanks for all the help you guys have been, with my wicket related pr

Re: Static generation of pages from Wicket

2009-03-04 Thread Vinayak Borkar
Carman wrote: You could just introduce a caching filter in front of the pages, right? On Wed, Mar 4, 2009 at 12:54 PM, Vinayak Borkar wrote: Hello, What is the recommended technique for generation of pages (usually served by wicket in a web server), statically so that they can be served by say

Static generation of pages from Wicket

2009-03-04 Thread Vinayak Borkar
Hello, What is the recommended technique for generation of pages (usually served by wicket in a web server), statically so that they can be served by say, a CDN. I want to use Wicket since its great for iterative development. However, all my pages are stateless and hence do not need to persi

Stateless form action in Wicket

2008-12-12 Thread Vinayak Borkar
Hello, I am creating a page (say Page A) that contains a stateless form. The stateless form's action leads to page B. I observe that in Wicket, the form action is created so that the request is sent back to Page A (An instance of Page A is created when the form is submitted) and then it redi

Passing simple data between java code and the template

2008-11-21 Thread Vinayak Borkar
Hi, I have some Javascript code in one of my pages. I want to keep this JS in the template file. However, this JS has a variable whose value is derived from a page parameter. For example, Is there a way I can do something like, ${value} in the template file and have the actual value be subst

Re: AW: Simple GET based stateless form

2008-11-17 Thread Vinayak Borkar
he Nachricht- Von: Vinayak Borkar [mailto:[EMAIL PROTECTED] Gesendet: Montag, 17. November 2008 08:47 An: users@wicket.apache.org Betreff: Simple GET based stateless form Hi, I am trying to create a simple GET based stateless form to implement search. My code is broken up into two parts 1. A

Simple GET based stateless form

2008-11-16 Thread Vinayak Borkar
Hi, I am trying to create a simple GET based stateless form to implement search. My code is broken up into two parts 1. A SearchPanel component that renders the form containing the text field 2. A SearchPage that renders the search results. The search page also has the SearchPanel component em