Re: TinyMCE ImageUploadPlugin problem

2012-12-18 Thread Andrea Del Bene
A patch for the things you've pointed out in the previous mail has been merged into the wicketstuff repository: https://github.com/wicketstuff/core/pull/179. They should be available in the next release. If I would have some time I would upgrade wicket to 6.x series and test it with 6.0. Until

Question about UrlRenderer and WebServletResponse

2012-12-18 Thread Thijs
Hi, I'm trying to revive Wicket Portlets support and I'm running into a small issue. For Liferay i've got my old 1.4 portlets working 90% with Wicket 6 but I'm hitting a small problem with the UrlRenderer and WebServletResponse WebServletResponse does an optimization for tomcat in the

Re: Question about UrlRenderer and WebServletResponse

2012-12-18 Thread Martin Grigorov
Hi, On Tue, Dec 18, 2012 at 10:41 AM, Thijs vonk.th...@gmail.com wrote: Hi, I'm trying to revive Wicket Portlets support and I'm running into a small issue. For Liferay i've got my old 1.4 portlets working 90% with Wicket 6 but I'm hitting a small problem with the UrlRenderer and

Re: Error serializing object class com.mapp.LoginPage [object=[Page class = com.myapp.LoginPage, id = 0, render count = 1]]

2012-12-18 Thread Martin Grigorov
Hi, Which version of Wicket is this ? Here is the code: try { writeObjectMethod = cls.getDeclaredMethod(writeObject, new Class[] { java.io.ObjectOutputStream.class }); } catch (SecurityException e) { // we can't access / set accessible to true writeObjectMethodMissing.add(cls); } catch

Re: Error serializing object class com.mapp.LoginPage [object=[Page class = com.myapp.LoginPage, id = 0, render count = 1]]

2012-12-18 Thread JamesXWang
I am using Wicket6.1 and logback. The logback keep writing this serializing error to its DB. Do you know why this exception happenned? I've double checked my wicket pages relevant code but found nothing about this exception. Seems everything should be able to be serialized. -- View this message

Re: Error serializing object class com.mapp.LoginPage [object=[Page class = com.myapp.LoginPage, id = 0, render count = 1]]

2012-12-18 Thread Martin Grigorov
SEVERE: looks to me like java.util.logging is in use. Upgrade to Wicket 6.3.0 and try again. If you can reproduce it in a quickstart application then please attach it to a ticket in Jira. On Tue, Dec 18, 2012 at 11:18 AM, JamesXWang jameswong@gmail.comwrote: I am using Wicket6.1 and

Re: Error serializing object class com.mapp.LoginPage [object=[Page class = com.myapp.LoginPage, id = 0, render count = 1]]

2012-12-18 Thread JamesXWang
ok, thanks. I will upgrade it right now and let you know the result soon. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Error-serializing-object-class-com-myapp-LoginPage-object-Page-class-com-myapp-LoginPage-id-0-render-tp4654853p4654874.html Sent from the Users

Release 6.4 - API break?

2012-12-18 Thread Andre Camilo
Hi all, I just tried version 6.4 and the package org.apache.wicket.request.mapper disappeared... am I seeing something wrong? -- André Camilo Software Architect Premium Minds Av. Marquês de Tomar nº69, 1º Andar 1050-154 Lisboa www.premium-minds.comhttp://www.premium-minds.com/ Geral: +351

Re: Release 6.4 - API break?

2012-12-18 Thread aws0934
When I try to build a project on Wicket 6.4.0, Maven complains with: The POM for org.apache.wicket:wicket-core:jar:6.4.0 is missing, no dependency information available Maybe this is related to your problem. Arne -- View this message in context:

Re: Release 6.4 - API break?

2012-12-18 Thread Martin Grigorov
Guys, Please be patient and wait for the announcement. Not all mirrors are updated yet. Clean everything related to 6.4.x in your ~/.m2/repository/org/apache/wicket and the two .xml files in the folders for each module and it will work On Tue, Dec 18, 2012 at 1:42 PM, aws0934

little refactor moving onPopulate() to populate(), and make first called by second, and overridable?

2012-12-18 Thread manuelbarzi
hi, i would appreciate having the choice to do something on DataView.onPopulate (at end of populating process), but cannot override this method (final at RefreshingView). i know i have the choice to compare Item.getIndex() to DataView.getItemsPerPage() to determine the end of populating process,

Re: Error serializing object class com.mapp.LoginPage [object=[Page class = com.myapp.LoginPage, id = 0, render count = 1]]

2012-12-18 Thread JamesXWang
Hi Martin, I've tried the wicket 6.3 quickstart but can't reproduce it. But after more deep debug I've found the root cause on my app - 1. On my html there is a Sortable list. 2. I've implemented some code to extends org.apache.wicket.extensions.markup.html.repeater.util.SortableDataProvider

Re: Release 6.4 - API break?

2012-12-18 Thread aws0934
It is already announced on the homepage, so I thought it was final, sorry. Arne -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Release-6-4-API-break-tp4654875p4654881.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Error serializing object class com.mapp.LoginPage [object=[Page class = com.myapp.LoginPage, id = 0, render count = 1]]

2012-12-18 Thread Martin Grigorov
Bug reports are accepted only with quickstart applications ;-) Create a quickstart and attach it to a ticket in Jira. On Tue, Dec 18, 2012 at 2:36 PM, JamesXWang jameswong@gmail.com wrote: Hi Martin, I've tried the wicket 6.3 quickstart but can't reproduce it. But after more deep debug

Re: little refactor moving onPopulate() to populate(), and make first called by second, and overridable?

2012-12-18 Thread vineet semwal
onpopulate() is called every time dataview/repeater is rendered,you can do the same thing after overriding onbeforerender, pseducode below new DataView(){ public void onbeforerender(){ super.onbeforerender(); //this will create/populate children too //now my code } } On Tue, Dec 18, 2012 at

Problem regarding ajax refresh contents of ModalWindow containing inmethod-datagrid

2012-12-18 Thread pmaks
Hi All, I'm facing a problem, that is related to refresh inmethod-datagrid in wicket modal window. Grid shows well at first time, however on refreshing 2nd time. SelectAll checkbox in the header of table just stops working. I think the reason for it is improper markup state of modal dialog after

Re: little refactor moving onPopulate() to populate(), and make first called by second, and overridable?

2012-12-18 Thread manuelbarzi
sure, vineet, there are other ways... know that. the question focus more on providing a bit+ intuitiveness to code, but this fact may result quite relative, that's all. thx, anyway. . On Tue, Dec 18, 2012 at 2:17 PM, vineet semwal vineetsemwa...@gmail.com wrote: onpopulate() is called every

Re: [Announce] wicket-dashboard

2012-12-18 Thread Decebal Suiu
Hi I removed wiquery as dependency. To control all resources (js, css - see res folder) used by wicket-dashboard I created DashboardSettings class. All resources are added to DashboardPanel using DashboardResourcesBehavior(that uses DashboardSettings). I will try to migrate to wicket 6 if it's

Re: StalePageException handling issue

2012-12-18 Thread amit.jha
Hi, Thanks for your posting. I am working on some application and was getting stalePageException.The sad part of this is that i do not know how it is reproduciable.I searched in the forums and tried all suggested ways of reproducing it,but fail to reproduce it. What i observed in my application

[ANNOUNCE] Apache Wicket 6.4.0 released

2012-12-18 Thread Martijn Dashorst
The Apache Wicket PMC is proud to announce Apache Wicket 6.4.0! This release marks the fourth minor release of Wicket 6. Starting with Wicket 6 we use semantic versioning for the future development of Wicket, and as such no API breaks are present in this release compared to 6.0.0. New and

RE: [Announce] wicket-dashboard

2012-12-18 Thread Paul Bors
Thanks Decebal, I also was able to solve the conflict yesterday the other way around by removing the dependency from wicked-charts. Your approach is much better as wicked-charts has this hardcoded (I'll open a separate request for that project). Let me know if you'd like me to pass on to you my

Re: assertResultPage fails even when same

2012-12-18 Thread wltiii
This is the result from a test runner, which has nothing to do with a diff tool. I was only suggesting that if you could not see what it was I was stating, it might be easier for you (or others) to copy the stack traces into a diff tool and see the differences, which, as I state, do not make any

RE: [Announce] wicket-dashboard

2012-12-18 Thread Paul Bors
For whoever is interested, the right way of setting the settings in wicked-charts is via a call to: JavaScriptResourceRegistry.getInstance().setJQueryReference() etc. ~ Thank you, Paul Bors -Original Message- From: Paul Bors [mailto:p...@bors.ws] Sent: Tuesday, December 18, 2012 10:44

Wicket 6.4.0 sources?

2012-12-18 Thread Bernard
Hi, How can I get the sources? The 4MB apache-wicket-6.4.0.tar.gz is basically empty. It contains 142 KB of quickstart stuff - if I run mvn install then I am not getting any wicket source files copied into my m2 repository. I must be missing something. Many thanks Bernard

Re: Wicket 6.4.0 sources?

2012-12-18 Thread Martijn Dashorst
On Tue, Dec 18, 2012 at 10:42 PM, Bernard bht...@gmail.com wrote: How can I get the sources? The 4MB apache-wicket-6.4.0.tar.gz is basically empty. Those are the sources. All of it. You are actually asking for the Maven source jars. Depending on your environment, Maven will automatically

Re: Illegal utf characters in ajax xml response

2012-12-18 Thread Michael Mosmann
Am 15.12.2012 06:22, schrieb Martin Makundi: We could use AjaxSelfUpdatingTimerBehavior to iterate over most characters and see where it fails (which could be easily detected).. As today i only know of 0x1a as a bad one. Michael Mosmann OK, is possibly trivial:

Re: Wicket 6.4.0 sources?

2012-12-18 Thread Bernard
Thanks very much Martin. I am not using Eclipse at this stage. I read the README file. It has a long list of contents which do not exist in the archive file. Because the archive file has a size of 4M but contains only 142K files I thought I might be missing something. Or this README file belongs

apache-wicket-6.4.0.tar.gz broken

2012-12-18 Thread Bernard
I checked several mirrors. It contains only a quickstart, no parent pom. README has contents which seems to reflect what the file should contain. I would use the zip file instead. This is not an authorised message, just an observation from a user. Kind Regards Bernard

Re: apache-wicket-6.4.0.tar.gz broken

2012-12-18 Thread Bernard
Hi, Apparently apache-wicket-6.4.0.tar.gz is broken in a version of WinZip not in 7-Zip so this looks like a file compatibility bug. Kind Regards, Bernard On Wed, 19 Dec 2012 13:56:34 +1300, you wrote: I checked several mirrors. It contains only a quickstart, no parent pom. README has

Re: Illegal utf characters in ajax xml response

2012-12-18 Thread Martin Makundi
xb also 2012/12/19 Michael Mosmann mich...@mosmann.de: Am 15.12.2012 06:22, schrieb Martin Makundi: We could use AjaxSelfUpdatingTimerBehavior to iterate over most characters and see where it fails (which could be easily detected).. As today i only know of 0x1a as a bad one. Michael

Wicket 6.4.0 Session/URL bug?

2012-12-18 Thread Jesus Mireles
I'm seeing some strange behavior with the initial launch of a fresh session. I have 3 types of pages which are public, user which is locked down with AuthorizeInstantiation(USER), and admin which locked down with AuthorizeInstantiation(ADMIN). My public pages are using mountPackage and are

RE: Wicket 6.4.0 Session/URL bug?

2012-12-18 Thread Chris Colman
I have seen this exact same issue. I first saw it after I reported the, possibly related, bug: https://issues.apache.org/jira/browse/WICKET-4920 and then was verifying that it was fixed. I only noticed the bug you describe after I built with a version of Wicket that included the above fix. I'm

Re: Wicket 6.4.0 Session/URL bug?

2012-12-18 Thread Sven Meier
Hi Nick, WICKET-4920 might be related. Please create a quickstart showing the problem. Thanks Sven On 12/19/2012 06:39 AM, Chris Colman wrote: I have seen this exact same issue. I first saw it after I reported the, possibly related, bug: https://issues.apache.org/jira/browse/WICKET-4920