Re: How to NOT cause a hot redeploy with Jetty when HTML files change

2007-10-06 Thread Jason Mihalick
, or change the signature of a method, etc. The debugger can only modify the contents of methods, not add them (unfortunately). The reloading filter should mitigate that, but I haven't used it. Martijn On 10/5/07, Jason Mihalick [EMAIL PROTECTED] wrote: Thanks Eelco. However, I am using

Re: How to NOT cause a hot redeploy with Jetty when HTML files change

2007-10-05 Thread Jason Mihalick
Thanks Eelco. However, I am using the Maven Jetty plugin (http://www.mortbay.org/maven-plugin/index.html) for jetty usage under Maven. Perhaps that is what you meant. I am also using the Maven2 eclipse plugin (http://m2eclipse.codehaus.org/) for dependency management within eclipse, but that

How to NOT cause a hot redeploy with Jetty when HTML files change

2007-10-04 Thread Jason Mihalick
I have been successfully developing a Wicket application with Eclipse, Maven, and the Maven Jetty plugin with hot redeploy enabled. However, I don't want Jetty to do a hot redeploy of the application when I make a change to my HTML files. I assume that Wicket will pick up these changes

Updating a Dynamic Image with AJAX (and JFreeChart)

2007-09-25 Thread Jason Mihalick
I am integrating JFreeChart into my application and I've followed the JFreeChart example on the wiki. That works very nicely. I was impressed. What I want to do now is update the graph that I display based on the selection from a drop down list. I've successfully added the DropDownChoice

Re: Updating a Dynamic Image with AJAX (and JFreeChart)

2007-09-25 Thread Jason Mihalick
Thanks for the tip. That worked! That was too easy. :-) -- Jason David Bernard-2 wrote: Hi, Have you try to extend NonCachingImage instead of Image (and comments setHeaders(...))? /david Jason Mihalick wrote: I am integrating JFreeChart into my application and I've followed

Re: How to render character entities such as nbsp

2007-09-16 Thread Jason Mihalick
Thanks to all for the feedback on this. I ended up solving my issue with a combination of the two approaches. I hadn't noticed the setEscapeModelStrings method, so I definitely appreciate you pointing it out. Very handy. -- Jason Eelco Hillenius wrote: Is it possible to render a

Re: Locating CSS under WEB-INF, please help

2007-09-12 Thread Jason Mihalick
Rüdiger, Thanks for posting this information. It's given me some new ideas on how I want to work with Wicket and Dreamweaver, as it just so happens that we are using Dreamweaver as well. -- Jason Rüdiger_Schulz wrote: 2007/9/10, Jason Mihalick [EMAIL PROTECTED]: Thanks Rüdiger. I'm

How to render character entities such as nbsp

2007-09-12 Thread Jason Mihalick
Is it possible to render a character entity such as nbsp; in a Label? I've tried a few things, but I can't seem to get it to happen. I am working with the PageableListView and AjaxPagingNavigator and trying to get the AjaxPagingNavigator to render in a fixed location at the bottom of the HTML

Re: Locating CSS under WEB-INF, please help

2007-09-10 Thread Jason Mihalick
streaming those static resources, which is a lot of overhead. my suggestion is to move all the css/js/foo out of WEB-INF -igor On 9/8/07, Jason Mihalick [EMAIL PROTECTED] wrote: I've been searching the forums and wiki on this half the night and I just can't figure out what I'm doing

Re: Locating CSS under WEB-INF, please help

2007-09-10 Thread Jason Mihalick
. Cheers, Johan M On 9/10/07, Jason Mihalick [EMAIL PROTECTED] wrote: sigh Ok, thanks for the help on this. My objective was to be able to have a structure of HTML and resource dependencies (css, js, img, etc) that could be easily edited in an HTML editor such that the editor doesn't have

Re: Locating CSS under WEB-INF, please help

2007-09-10 Thread Jason Mihalick
... 2007/9/10, Jason Mihalick [EMAIL PROTECTED]: Thanks for the reply. Where are your css resources located under this configuration? I have a similar setup. I have a BasePage.html that refers to the css: head meta http-equiv=Content-Type content=text/html; charset=UTF-8

Re: Using Include and placing pages under WEB-INF

2007-09-09 Thread Jason Mihalick
Ah, that's true, wicket takes care of resolving the URL and including the content. I see your point. My concern was for containers that don't explode the WAR when deployed, but I think yours should work for that too, and it avoids the subclass. Thanks! Jason Mihalick wrote: Thanks, yes

RE: AW: Locating CSS under WEB-INF, please help

2007-09-09 Thread Jason Mihalick
Nachricht- Von: Jason Mihalick [mailto:[EMAIL PROTECTED] Gesendet: Sonntag, 9. September 2007 13:59 An: users@wicket.apache.org Betreff: Re: AW: Locating CSS under WEB-INF, please help Hi Stefan. Thanks for the reply. What you suggest is exactly what I have in my BasePage.html, which

Re: Using Include and placing pages under WEB-INF

2007-09-08 Thread Jason Mihalick
that I should be using that won't require me to create a companion Java class for each help snippet? Thanks. -- Jason Kent Tong wrote: Jason Mihalick wrote: However, if I try to move my pages under WEB-INF, wicket has a problem loading resources that are bound via

Locating CSS under WEB-INF, please help

2007-09-08 Thread Jason Mihalick
I've been searching the forums and wiki on this half the night and I just can't figure out what I'm doing wrong here, so please bear with me if there is an obvious answer to this. Wicket is not finding my css or js resources when the application is deployed. I followed the wiki instructions

Re: Using Include and placing pages under WEB-INF

2007-09-08 Thread Jason Mihalick
(); } } } Kent Tong wrote: Jason Mihalick wrote: Thank you for the suggestion. This looks like it ought to work fine for exploded WARs, but it seems like it would be a problem when then app is deployed in a WAR. Is there any way to do this that will work when the app is deployed

Using Include and placing pages under WEB-INF

2007-09-07 Thread Jason Mihalick
Hello, I have followed the instructions on the wiki for placing HTML pages in an alternative location (http://cwiki.apache.org/WICKET/control-where-html-files-are-loaded-from.html). The location I chose was at the context root. I.e., webapp/ +--- WEB-INF/ +--- css/ +--- img/