Re: CSS, JS resource file handle issues?

2011-08-05 Thread rush66
As per your suggestion I grabbed the project from SVN and compiled the snapshot. Sadly there was no change in my results. Is there a bug that is already filed for this? -- View this message in context:

Re: CSS, JS resource file handle issues?

2011-08-04 Thread rush66
My apologies for the confusion. Development is cumbersome in windows with this issue having to restart jboss to pickup changes made to JS and CSS files. We are using Wicket 1.5RC5.1. Changes to JS and CSS files are not picked up using eclipse running jboss locally in windows 7. Something from

Re: CSS, JS resource file handle issues?

2011-08-04 Thread rush66
The only thing that has changed about or development environment would have been moving from wicket 1.4 to 1.5 so I am led to believe it is not Jboss. We have tried turning resource polling off and it doesn't seem to change anything. We've stepped through the resource request cycle and can watch

Re: CSS, JS resource file handle issues?

2011-08-04 Thread rush66
The fix should've been in today's 1.5 snapshot correct? I moved our app to use the 1.5-SNAPSHOT that I got from a quickstart earlier today with the same issue. It failed to reload the resource and logged WARN [UrlResourceStream] getLastModified for file:path for each respective html file that

Re: CSS, JS resource file handle issues?

2011-08-03 Thread rush66
We setup a development environment in Ubuntu running the application and it did not appear to have the same issue with editing resources with the app server running. Changes were picked up from refreshing the browser. This issue makes development a rather cumbersome process not being able to

resource file handle issues on windows?

2011-07-28 Thread rush66
Greetings, We are in the process of migrating our project to 1.5 and have discovered an issue with editing CSS and JS files with the app serve running. We're curious if there is anyone else experiencing similar issues. We are working on Win7 with eclipse running Jboss 5 locally with wicket

Re: CSS Change not being picked up when using TextTemplateResourceReference

2011-06-22 Thread rush66
It's too bad it's not as simple as if (Application.get().getConfigurationType().equalsIgnoreCase(development)) { invalidate(); } It isn't clear to me how I might go about that but It would need to run in something like onAfterRender()? Andrea Del Bene wrote:

CSS Change not being picked up when using TextTemplateResourceReference

2011-06-21 Thread rush66
Hi I've been working on rebranding our application using the TextTemplateResourceReference which is very useful. Though one issue that I am experiencing some issues with is that it seems when adding a stylesheet in this manner that changes made to the stylesheet are not being picked up without

Re: CSS Change not being picked up when using TextTemplateResourceReference

2011-06-21 Thread rush66
Andrea Del Bene-2 wrote: Hi rush66, you are right, method getResource in TextTemplateResourceReference reads resource just the first time you call it. You can override this method like this: @Override public IResource getResource(){ if(Application.get

Re: CSS Change not being picked up when using TextTemplateResourceReference

2011-06-21 Thread rush66
Sorry I did not clarify that we are on 1.4.17. While I would love to migrate our project to 1.5 I don't know how quickly we will be able to do that. Any other options that might be possible with 1.4? -- View this message in context: