Re: how to give static pages consistant look with wicket - partial repeat

2009-03-03 Thread Vika
the contents of myfile.html will be shown within your decorated page -igor On Wed, Feb 11, 2009 at 8:45 AM, Vika victoria.elin...@nasa.gov wrote: I am looking at wicket trying to decide if i would want to use it for my project. Currently I am struggling trying to give static and dynamic

Re: how to give static pages consistant look with wicket - partial repeat

2009-03-03 Thread Vika
be served directly by the servlet container. -igor On Tue, Mar 3, 2009 at 7:46 AM, Vika victoria.elin...@nasa.gov wrote: I am having the same problem! matrixguy wrote: Hi, The following code worked very nicely with the text in the HTML file, but it's not working with the embedded images

Re: how to give static pages consistant look with wicket - partial repeat

2009-02-12 Thread Vika
will be shown within your decorated page -igor On Wed, Feb 11, 2009 at 8:45 AM, Vika victoria.elin...@nasa.gov wrote: I am looking at wicket trying to decide if i would want to use it for my project. Currently I am struggling trying to give static and dynamic pages consistent look with wicket

how to give static pages consistant look with wicket - partial repeat

2009-02-11 Thread Vika
I am looking at wicket trying to decide if i would want to use it for my project. Currently I am struggling trying to give static and dynamic pages consistent look with wicket without using sitemesh. I was able to get wicket application to direct all static page requests to my wicket StaticPage

Re: static pages dynamic pages. How to have the same layout

2009-02-10 Thread Vika
, Take a look at http://www.wicket-library.com/wicket-examples/staticpages/ too. Regards - Cemal http://www.jWeekend.co.uk jWeekend Vika wrote: kinabalu wrote: Can you elaborate on your current architecture so we can let you know how Wicket can achieve

Re: problem deploying quickstart application on tomcat+apache (mod_jk)

2009-02-09 Thread Vika
I discovered that if in mod_jk.conf i change JkMount /quickstart/app/* ajp13 to JkMount /quickstart/* ajp13 it works. Servlet mapping in web.xml : servlet-mapping servlet-namequickstart/servlet-name url-pattern/app/*/url-pattern /servlet-mapping Any idea how I can

Re: static pages dynamic pages. How to have the same layout

2009-02-09 Thread Vika
/ too. Regards - Cemal http://www.jWeekend.co.uk jWeekend Vika wrote: kinabalu wrote: Can you elaborate on your current architecture so we can let you know how Wicket can achieve this? There are two categories pages on the site. 1) dynamic content - jsp/servlet 2

Re: problem deploying quickstart application on tomcat+apache (mod_jk)

2009-02-09 Thread Vika
, it is recommended to use Wicket from a Filter instead of a Servlet. Regards, Erik. Vika wrote I discovered that if in mod_jk.conf i change JkMount /quickstart/app/* ajp13 to JkMount /quickstart/* ajp13 it works. Servlet mapping in web.xml : servlet-mapping servlet

problem deploying quickstart application on tomcat+apache (mod_jk)

2009-02-06 Thread Vika
Hi, I have no problem running quickstart in eclipse on jetty. However having problem deploying it on tomcat/apache. Here are the steps I followed: 1. Modified build.xml - changed wicket-quickstart to quickstart 2. ran ant war and dropped quickstart.war file into ~tomcat/webapps 3. added to

Re: static pages dynamic pages. How to have the same layout

2009-02-05 Thread Vika
kinabalu wrote: Can you elaborate on your current architecture so we can let you know how Wicket can achieve this? There are two categories pages on the site. 1) dynamic content - jsp/servlet 2) static content - html Both categories of pages only display the content. Navigation

static pages dynamic pages. How to have the same layout

2009-02-04 Thread Vika
Hi, I am completely new to Wicket and trying to decide if this is something I would want to use for my project. My website has some static and some dynamic pages that have to share the same look. Currently I am using SiteMesh to achieve this. Can I accomplish this with Wicket without having