Re: [SVN] Where is the release of 1.5.0?

2011-09-08 Thread Martin Grigorov
It is there now. http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5.0 On Thu, Sep 8, 2011 at 9:29 AM, Mike Mander wrote: > Hi, > > at first thanks to the wicket devs for wicket-1.5. Migration here is still > in process but it's not that hard (escpecially with help of Martin :-). > > I wo

Re: Wicket ResourceStreamLocator performance issue

2011-09-08 Thread Martin Grigorov
the fix will be in 1.5.1 about the original issue in this thread: do you mean that CachingResourceStreamLocator is slow or it is not in used in your setup ? it should be the default locator but maybe you replaced it On Thu, Sep 8, 2011 at 9:31 AM, armandoxxx wrote: > thank you for your reply > i

Re: [SVN] Where is the release of 1.5.0?

2011-09-08 Thread Mike Mander
Thanks. Mike It is there now. http://svn.apache.org/repos/asf/wicket/releases/wicket-1.5.0 On Thu, Sep 8, 2011 at 9:29 AM, Mike Mander wrote: Hi, at first thanks to the wicket devs for wicket-1.5. Migration here is still in process but it's not that hard (escpecially with help of Martin :-).

Re: Wicket ResourceStreamLocator performance issue

2011-09-08 Thread armandoxxx
https://issues.apache.org/jira/browse/WICKET-4034 Jira issue hope this helps. I did not provide any patch because I think our workaround is not the way it should be done. Regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-ResourceStreamLocator-

[Quickstart 1.5.0] Why is my generated pom for new quickstart-project referencing 1.5-RC7?

2011-09-08 Thread Mike Mander
If i generate a quickstart project with 1.5.0 the generated pom references 1.5-RC7. Is this correct or maybe an effect on my machine? command mvn archetype:generate -DarchetypeGroupId=org.apache.wicket -DarchetypeArtifactId=wicket-archetype-quickstart -DarchetypeVersion=1.5.0 -DgroupId=poc -Da

Re: [Quickstart 1.5.0] Why is my generated pom for new quickstart-project referencing 1.5-RC7?

2011-09-08 Thread Peter Miklosko
Guess they didn't had time to update it yet, or it slipped from TODO list ;) On 8 September 2011 09:22, Mike Mander wrote: > If i generate a quickstart project with 1.5.0 the generated pom references > 1.5-RC7. > Is this correct or maybe an effect on my machine? > > command > mvn archetype:gener

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread Ilya German
Congratulations and thanks a lot! On Thu, Sep 8, 2011 at 9:08 AM, Hans Lesmeister < hans.lesmeis...@lessy-software.de> wrote: > Congratulations! Thank you for this great Framework. > > > > Martijn Dashorst schrieb: > > The Apache Wicket team is proud to announce the immediate availability of > t

Re: [Quickstart 1.5.0] Why is my generated pom for new quickstart-project referencing 1.5-RC7?

2011-09-08 Thread Martin Grigorov
This is our mistake ... We just promoted RC7 to 1.5.0 without any changes in the code and it seems "mvn versions:set" didn't find this occurrence of RC7 ... http://svn.apache.org/viewvc/wicket/releases/wicket-1.5.0/archetypes/quickstart/src/main/resources/archetype-resources/pom.xml?view=markup ha

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread rebecca
Thank you wicket team for all your work and effort!!! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Apache-Wicket-releases-Wicket-1-5-tp3797412p3798223.html Sent from the Users forum mailing list archive at Nabble.com. ---

Broken link in "Download Wicket releases" web page

2011-09-08 Thread Ian Marshall
Hello, I am excited to see that Wicket 1.5 is released! Whilst starting to prepare my migration from 1.4.18, I have noticed that on the web page "http://wicket.apache.org/start/download.html"; the link to the migration guide ("http://cwiki.apache.org/WICKET/migrating-to-wicket-15.html";) resu

Re: Broken link in "Download Wicket releases" web page

2011-09-08 Thread Martin Grigorov
Fixed. Thanks ! On Thu, Sep 8, 2011 at 12:02 PM, Ian Marshall wrote: > Hello, > > I am excited to see that Wicket 1.5 is released! > > Whilst starting to prepare my migration from 1.4.18, I have noticed that on > the web page > >  "http://wicket.apache.org/start/download.html"; > > the link to th

Re: Broken link in "Download Wicket releases" web page

2011-09-08 Thread Ian Marshall
No problem. I join others in giving a big thank you to all involved in the Wicket project. What a great framework! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Broken-link-in-Download-Wicket-releases-web-page-tp3798224p3798237.html Sent from the Users forum mailin

Re: [Quickstart 1.5.0] Why is my generated pom for new quickstart-project referencing 1.5-RC7?

2011-09-08 Thread Mike Mander
No problem. Thanks for clearification. Mike This is our mistake ... We just promoted RC7 to 1.5.0 without any changes in the code and it seems "mvn versions:set" didn't find this occurrence of RC7 ... http://svn.apache.org/viewvc/wicket/releases/wicket-1.5.0/archetypes/quickstart/src/main/resour

how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread nhsoft.yhw
in wicket 1.4.x, the code like : HttpServletRequest request = getWebRequestCycle().getWebRequest().getHttpServletRequest(); but i don't know how to get HttpServletRequest in wicket 1.5 - http://www.517wm.com 外卖订餐分享工具 -- View this message in context: http://apache-wicket.1842946.n4.nabb

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread nhsoft.yhw
in wicket 1.4.x getRequestCycle().setRequestTarget(new RedirectRequestTarget("/connect/qq/login")); how to code for wicket 1.5.0 - http://www.517wm.com 外卖订餐分享工具 -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/how-to-get-HttpServletRequest-in-wicket-1-5-tp3798272p

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread Martin Grigorov
HttpServletRequest servletReq = (HttpServletRequest) getRequest().getContainerRequest(); On Thu, Sep 8, 2011 at 12:26 PM, nhsoft.yhw wrote: > in wicket 1.4.x, the code like : > > HttpServletRequest request = > getWebRequestCycle().getWebRequest().getHttpServletRequest(); > > but i don't know how

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread Mike Mander
Am 08.09.2011 11:26, schrieb nhsoft.yhw: in wicket 1.4.x, the code like : HttpServletRequest request = getWebRequestCycle().getWebRequest().getHttpServletRequest(); but i don't know how to get HttpServletRequest in wicket 1.5 - http://www.517wm.com 外卖订餐分享工具 -- View this message in con

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread Mike Mander
Sorry for posting the wrong one. YOurs is org.apache.wicket.protocol.http.servlet.ServletWebRequest.getContainerRequest() Mike in wicket 1.4.x, the code like : HttpServletRequest request = getWebRequestCycle().getWebRequest().getHttpServletRequest(); but i don't know how to get HttpServl

RE: Replacing the contents of a table with ajax

2011-09-08 Thread Werner Riegel
Hello Gabriel, thanks for your reply. It works the way you described it. Thanks for that! :) here's how it looks like now, maybe it helps someone else with the same problem: // the variable tp is the already existing table panel on the page. protected void onSubmit(AjaxRequestTarget target, Fo

RE: Wicket ResourceStreamLocator performance issue

2011-09-08 Thread Chris Colman
Does the introduction of CachingResourceStreamLocator in 1.5.x indicate that ResourceStreamLocator in 1.4 was not caching at all or that the caching function of ResourceStreamLocator has been refactored out into a separate Caching class? >-Original Message- >From: Martin Grigorov [mailto:m

Re: Wicket ResourceStreamLocator performance issue

2011-09-08 Thread armandoxxx
It was not used in my setup at all. The problem occurred when we wrote our own ResourceLocator and we extended ResourceStreamLocator. (as wrote in Jira quickstart) I'm trying to use CachingResourceLocator now. Kind regards Armando -- View this message in context: http://apache-wicket.18429

weekly memory usage increase by 500 Mb problem

2011-09-08 Thread Alex
Hi, My Wicket application eats memory. The memory usage constantly increasing. So every week it is growing by 500 Mb. Can anyone suggest where can I start looking for the reason? Can JUnit testing help to figure out the reason? How? I have following set up: Wicket 1.4.9 Ubuntu 9.10 Tomcat 6 Depe

Re: weekly memory usage increase by 500 Mb problem

2011-09-08 Thread Martin Makundi
Try jprofiler ;) 2011/9/8 Alex : > Hi, > My Wicket application eats memory. The memory usage constantly increasing. > So every  week it is growing by 500 Mb. Can anyone suggest where can I start > looking for the reason? > Can JUnit testing help to figure out the reason? How? > > I have following

Reloading i18n on demand

2011-09-08 Thread heikki
hello, I've read that Wicket in Development Mode reloads changes to property files on the fly, but not in Production Mode, when they are "heavily cached". Is there a way to reload property files such as those used for i18n in Production Mode, either on the fly or on demand ? I would suppose it c

Re: Wicket ResourceStreamLocator performance issue

2011-09-08 Thread armandoxxx
using CachingResourceStreamLocator did the trick. thank you for help regards Armando -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-ResourceStreamLocator-performance-issue-tp3796815p3798549.html Sent from the Users forum mailing list archive at Nabble.com. -

Re: weekly memory usage increase by 500 Mb problem

2011-09-08 Thread Martin Grigorov
For memory issues - Eclipse Memory Analyzer is what you need. Make a heap dump at the start of your application, then use it for a while and make another dump, then compare the snapshots. On Thu, Sep 8, 2011 at 2:37 PM, Martin Makundi wrote: > Try jprofiler ;) > > 2011/9/8 Alex : >> Hi, >> My Wic

Re: Reloading i18n on demand

2011-09-08 Thread Martin Grigorov
See how org.apache.wicket.util.watch.ModificationWatcher resets the caches. On Thu, Sep 8, 2011 at 2:43 PM, heikki wrote: > hello, > > I've read that Wicket in Development Mode reloads changes to property files > on the fly, but not in Production Mode, when they are "heavily cached". > > Is there

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread nhsoft.yhw
Migrate Question Q1: PackageResourceReference resRef = new PackageResourceReference(parent.getClass(), src); return (urlFor(resRef).toString()); PageParameters is required for urlFor method, if why PageParameters is required. Q2: Image imgThumbnail = new Image("thumbnailImage"); imgThumbna

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread Martin Grigorov
On Thu, Sep 8, 2011 at 3:24 PM, nhsoft.yhw wrote: > Migrate Question > > Q1: > PackageResourceReference resRef = new > PackageResourceReference(parent.getClass(), src); > return (urlFor(resRef).toString()); > > PageParameters is required for urlFor method, if why PageParameters is > required. just

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread Bruno Borges
Thank you WTeam! =) *Bruno Borges* (21) 7672-7099 *www.brunoborges.com* On Thu, Sep 8, 2011 at 6:00 AM, rebecca wrote: > Thank you wicket team for all your work and effort!!! > > -- > View this message in context: > http://apache-wicket.1842946.n4.nabble.com/Apache-Wicket-releases-Wicket-1-5

Re: communication between Page instances on Wicket 1.5

2011-09-08 Thread Dan Retzlaff
Hi Sander. This is probably too late to be useful. I've been out of town. You say cross-page communication worked in 1.4, but I think maybe you were getting lucky. As discussed here, we ran into the "2 versions" problem with modal windows in 1.4. http://apache-wicket.1842946.n4.nabble.com/Data-Sha

Re: communication between Page instances on Wicket 1.5

2011-09-08 Thread Dan Retzlaff
Sorry, I said that wrong: Basically, if PageA modifies something in PageB, PageA needs to have a reference to PageB itself; a reference to an object in *PageB* is generally not sufficient to update the page map entry for *PageB*. On Thu, Sep 8, 2011 at 8:58 AM, Dan Retzlaff wrote: > Hi Sander.

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread Peter Karich
Thanks a lot wicketers! Wicket is a really great and smart piece of software! Regards, Peter. -- http://jetsli.de news reader for geeks > The Apache Wicket team is proud to announce the immediate availability of the > newest release of their component oriented open source Java web framework

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread nino martinez wael
thumbs up :) -Nino 2011/9/8 Peter Karich : >  Thanks a lot wicketers! Wicket is a really great and smart piece of > software! > > Regards, > Peter. > > > -- > http://jetsli.de news reader for geeks > > > >> The Apache Wicket team is proud to announce the immediate availability of the >> newest re

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread Andrea Del Bene
I think this version represents a very important step for the evolution of Wicket. With 1.5 many of the core entities have been re-engineered and the result is a great piece of software! The Apache Wicket team is proud to announce the immediate availability of the newest release of their compo

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread Marcus Breier
Congratulations to new 1.5 version. M. Am 08.09.2011 00:17, schrieb Martijn Dashorst: > The Apache Wicket team is proud to announce the immediate availability of the > newest release of their component oriented open source Java web framework. > Apache Wicket 1.5 has been in development for the la

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread splitshade
Congratulations, it's a Wicket! Great work! -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Apache-Wicket-releases-Wicket-1-5-tp3797412p3799758.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread Nelson Segura
Woohoo! Thanks to all involved in making this happen. Now I can start working in our migration! -Nelson Segura - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional commands, e-mail: users-h...@wicket.apach

PageMap Reuse

2011-09-08 Thread Jered Myers
I'm using Wicket 1.4.18. I'm having trouble moving between browser tabs in my application as I am opening a duplicate tab. Here is an example: 1. The user starts on browser tab A via a mounted page (e.g. www.mysite.com/MyApp/PageA) 2. The user clicks on a bookmarkable link (with popup settin

Re: PageMap Reuse

2011-09-08 Thread Dan Retzlaff
In step #5, what page map name do you use in your popup settings? Does it match the window.name global variable in that tab? (Use a browser debugger to check.) If yes, that should do the trick by my reading of the code. On Thu, Sep 8, 2011 at 2:19 PM, Jered Myers wrote: > I'm using Wicket 1.4.18.

Re: PageMap Reuse

2011-09-08 Thread Jered Myers
It appears the initial window name is "wicket-wicket:default". The other tab windows match the PageMap name. Thanks for the help! I will explore a way to manipulate the window name. On 9/8/2011 3:16 PM, Dan Retzlaff wrote: In step #5, what page map name do you use in your popup settings? Do

Re: PageMap Reuse

2011-09-08 Thread Dan Retzlaff
Check out PopupSettings#getPopupJavaScript(). If the pagemap name is null it uses "". Since you've enabled AutomaticMultiWindowSupport, you know it should be "wicket-wicket:default". You might consider submitting a JIRA to suggest that this function use "" or "wicket-wicket:default" based on Appli

Re: PageMap Reuse

2011-09-08 Thread Jered Myers
Do you know where I can set the window name of the first window? I can use JavaScript to reset it, but I am not sure if this will mess up the PageMap process. On 9/8/2011 4:12 PM, Dan Retzlaff wrote: Check out PopupSettings#getPopupJavaScript(). If the pagemap name is null it uses "". Since y

Re: PageMap Reuse

2011-09-08 Thread Dan Retzlaff
The first window's name is determined in WebPage.PageMapChecker, and cannot be changed there. I'd probably just call PopupSettings#setWindowName("wicket-wicket:default") whenever the pagemap name is null. In lieue of a wicket-core patch, a custom PopupSettings subclass that does this automatically

Re: how to get HttpServletRequest in wicket 1.5

2011-09-08 Thread nhsoft.yhw
Q7. how to get inputstream from ResourceReference object, here is code for wicket 1.4.x inputStream = reference.getResource().getResourceStream().getInputStream(); but IResource interface has no getResourceStream() method in wicket 1.5.0 - http://www.517wm.com 外卖订餐分享工具 -- View this message i

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread Kailash Yadav
Congratulations and thanks for great work :) Kailash Yadav -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Apache-Wicket-releases-Wicket-1-5-tp3797412p3800719.html Sent from the Users forum mailing list archive at Nabble.com.

images not rendered in our favorite browser IE

2011-09-08 Thread mapping
Hello, I have the following problem. I have a repeater which declares Images as so: NonCachingImage image1 = new NonCachingImage("image1", new BufferedDynamicImageResource() { private static final long serialVersionUID = 1L; @Override protected byte[] getImageData() { return detac

RE: getImageData() of Image not called on component instantiation in IE

2011-09-08 Thread martin . asenov
Would anyone help me with this? I'm desparate on fixing it Thank you, Martin - Цитат от martin.ase...@mail.bg, на 06.09.2011 в 15:51 - Hello, I have the following problem. I have a repeater which declares Images as so: NonCachingImage image1 = new NonCachingI

RE: getImageData() of Image not called on component instantiation in IE

2011-09-08 Thread martin . asenov
Would anyone help me with this? I'm desparate on fixing it Thank you, Martin - Цитат от martin.ase...@mail.bg, на 06.09.2011 в 15:51 - Hello, I have the following problem. I have a repeater which declares Images as so: NonCachingImage image1 = new NonCachingImag

RE: getImageData() of Image not called on component instantiation in IE

2011-09-08 Thread martin . asenov
Would anyone help me with this? I'm desparate on fixing it Thank you, Martin - Цитат от martin.ase...@mail.bg, на 06.09.2011 в 15:51 - Hello, I have the following problem. I have a repeater which declares Images as so: NonCachingImage image1 = new NonCachingImage("

Re: Apache Wicket releases Wicket 1.5

2011-09-08 Thread Olivier Dutrieux
very very nice. Thx for all your hard works Best regards Duto - Duto -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Apache-Wicket-releases-Wicket-1-5-tp3797412p3800920.html Sent from the Users forum mailing list archive at Nabble.com. -