Re: Apache Committers

2022-12-30 Thread Michael Mosmann
.. ah.. this was easy:) Am 09.12.22 um 23:51 schrieb Tobias Soloschenko: Hey again, I joined the infra team slack channel and got the answer. You need to: 1. Add 2fa to your GitHub account 2. Log in to https://gitbox.apache.org/boxer/ with your ASF id and follow the instructions That’s all.

Apache Committers

2022-12-09 Thread Michael Mosmann
go this is the right step to do:) so have fun and nice pre christmas day:) (still reading wicket related mailing lists) Michael Mosmann:)

Re: The day Wicket became Apache Wicket 10 years ago!

2017-06-19 Thread Michael Mosmann
Wooohooo:) Am 19. Juni 2017 9:19:03 nachm. schrieb Martijn Dashorst : Today marks the date 10 years ago that the Wicket project graduated from the Incubator to a fully fledged Apache project. The time flies when you're having fun! I would like to thank all our

Re: [VOTE] Proposal to remove IDetachable from IModel hierarchy

2017-04-03 Thread Michael Mosmann
[X] No, keep IModel detachable. .. i did once a refactoring to build an IReadonlyModel,and failed. I failed because of the limited feature set of the java language. So you will end up with some kind of compromise,which is not near a perfect solution. Maybe there is a much better way to

Re: Christmas / new year [NON-BIZ]

2016-12-24 Thread Michael Mosmann
Merry Christmas:) Mit AquaMail Android http://www.aqua-mail.com gesendet Am 24. Dezember 2016 2:46:34 nachm. schrieb Martin Grigorov : Merry Christmas ! On Dec 24, 2016 1:33 PM, "Tobias Soloschenko" < tobiassolosche...@googlemail.com> wrote: Hi all, I wish you

Re: Wicket & Java8

2016-04-17 Thread Michael Mosmann
moving code from java7 to java8 gives a lot of surprising compilation errors.. and IMHO the compiler should report an error if the developer might expect different behavior ... As far as i understand the answers in this bug report, the compiler is "happy" with a first match .. But should IMHO

Re: Lambda branch

2015-12-02 Thread Michael Mosmann
oh.. sorry.. got it.. You hat to use BiConsumer for set functions.. mm:) Am 02.12.2015 um 08:53 schrieb Michael Mosmann: > Hi, > > > > Some first thoughts on this.. > > If we want to use lambdas for some kind of property model, the straight > forward way

Re: Lambda branch

2015-12-02 Thread Michael Mosmann
nstance method reference. > >> IModel model=Models.of(instanceModel, SomeBean::getName >> ,SomeBean::setName); // does not compile > > org.wicketstuff.lambda.model.LambdaModel works fine, so what does not > compile in your example? > > Did I miss something? :P >

Re: Lambda branch

2015-12-01 Thread Michael Mosmann
k, I'd like to play too :) ... >> AFAIK we're still playing with lambdas. I still have a message I need >> to send to dev@ regarding lambdas... >> >> Martijn >> >> >> On Mon, Nov 30, 2015 at 3:57 PM, Michael Mosmann <mich...@mosmann.de> >&g

Re: Lambda branch

2015-11-30 Thread Michael Mosmann
Hi, AFAIK not.. I thought it is something like a playground. Am i wrong? Michael Am 30. November 2015 15:47:42 MEZ, schrieb andrea del bene : >Hi, > >are we tracking changes to lambda branch with issues on JIRA? > >Andrea. -- Diese Nachricht wurde von meinem

Re: [wicket8] Lambdas everywhere (just models for now)

2015-10-13 Thread Michael Mosmann
teger,Integer> & Serializable) x -> x+1) which gives no benefit over using something like our own Interface extending Function, Supplier etc. maybe i am wrong... michael:) Am 10.10.2015 um 12:01 schrieb Michael Mosmann: > Hi, > > ... if we using SerializableFunction instead of Functio

Re: [wicket8] Use default method for IModel#detach()?

2015-10-06 Thread Michael Mosmann
.. @IReadOnlyModel: i hope, it will be easier to change then the last time i tried it. Watch out for component default model stuff... :) Am 6. Oktober 2015 22:54:37 MESZ, schrieb Martin Grigorov : >On Tue, Oct 6, 2015 at 10:43 PM, Andrew Geery

Re: [wicket8] Lambdas everywhere (just models for now)

2015-10-06 Thread Michael Mosmann
Maybe this is useful: https://github.com/flapdoodle-oss/de.flapdoodle.wicket/blob/master/models/src/test/java/de/flapdoodle/wicket/model/TestModelTransformations.java .. The model code should work with java8 and lambdas... Mm:) Am 6. Oktober 2015 23:37:34 MESZ, schrieb Michael Mosmann <m

Re: [wicket8] Lambdas everywhere (just models for now)

2015-10-06 Thread Michael Mosmann
I am not sure about the generic stuff... If you write only lamdas there will be no issue..but if you reuse some code, there could be some need of 'super' in it.. But that's nothing i can build in my mind.. I need something like eclipse to make it right. So maybe next week.. :) Mm:) Am 6.

Re: Nice shout out by Uncle Bob Martin

2015-09-08 Thread Michael Mosmann
As uncle bobs selling point is his way to insult others as idiot, you should be aware of his own .. ehm .. very special ideas (http://fitnesse.org/FitNesse.UserGuide.TwoMinuteExample). It is easy to talk about the wrong things others did.. but its is hard, do do things right. Long story short: I

Re: [VOTE] Release wicket-eclipse-settings 1

2015-03-13 Thread Michael Mosmann
+1 release it Am 13.03.2015 um 09:15 schrieb Martijn Dashorst: This is a vote to release the wicket-eclipse-settings version 1. Wicket Eclipse Settings is a project to specify Eclipse settings for a uniform development environment between all Eclipse using Wicket Team members. Most notably

web framework benchmarks

2014-08-20 Thread Michael Mosmann
an other framework speed benchmarks .. http://www.techempower.com/benchmarks/#section=data-r9hw=peaktest=json wicket is not so bad.. but such kind of benchmarks are not as useful as it might sound.. Michael:)

Re: web framework benchmarks

2014-08-20 Thread Michael Mosmann
Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Wed, Aug 20, 2014 at 5:00 PM, Michael Mosmann mich...@mosmann.de wrote: an other framework speed benchmarks .. http://www.techempower.com/benchmarks/#section=data-r9hw=peaktest=json wicket is not so bad.. but such kind

Re: refactoring IDataProvider interface

2014-05-15 Thread Michael Mosmann
I had some .. hmm.. comparable issues.. I solved this with something like this: public interface SizedIterableT extends IterableT { long size(); } so you can ask the iterable about the size.. mm:) Am 07.05.2014 00:05, schrieb tetsuo: Yeah, you're right. By reflex, I was thinking

Re: Inefficient org.apache.wicket.pageStore.DefaultPageStore.SerializedPagesCache

2014-03-12 Thread Michael Mosmann
a.. got it.. https://github.com/apache/wicket/compare/master...5527-inefficient-DefaultDataStore Am 11.03.14 13:55, schrieb Martin Grigorov: Any comments on https://github.com/apache/wicket/compare/5527-inefficient-DefaultDataStoreare very welcome! It should be relatively easy to roll custom

Re: Inefficient org.apache.wicket.pageStore.DefaultPageStore.SerializedPagesCache

2014-03-12 Thread Michael Mosmann
Hi, .. is the link correct? mm:) Am 11.03.14 13:55, schrieb Martin Grigorov: Any comments on https://github.com/apache/wicket/compare/5527-inefficient-DefaultDataStoreare very welcome! It should be relatively easy to roll custom impls based on Guava/Hazelcast/... if needed/preferred. Martin

Re: Inefficient org.apache.wicket.pageStore.DefaultPageStore.SerializedPagesCache

2014-03-12 Thread Michael Mosmann
Am 11.03.14 13:55, schrieb Martin Grigorov: Any comments on https://github.com/apache/wicket/compare/5527-inefficient-DefaultDataStoreare very welcome! Hmm.. SerializedPagesCache .. if one has many pages costs will go up.. but i am not sure, how big the cache will be in real life applications..

Re: Inefficient org.apache.wicket.pageStore.DefaultPageStore.SerializedPagesCache

2014-03-12 Thread Michael Mosmann
container, so there is no need of a second serialization of the same page. (The first serialization is to store the page in DiskDataStore). Martin Grigorov Wicket Training and Consulting On Wed, Mar 12, 2014 at 10:56 AM, Michael Mosmann mich...@mosmann.dewrote: Am 11.03.14 13:55, schrieb Martin

Re: Instant page loads js

2014-02-09 Thread Michael Mosmann
Am 08.02.14 19:47, schrieb Martijn Dashorst: http://instantclick.io/ Might be interesting? It differ slightly from this https://developers.google.com/chrome/whitepapers/prerender But I can imagine some unwanted side effects, because many users are watching with the mouse so your browser can

Re: Wicket 7 development status

2014-01-29 Thread Michael Mosmann
Am 29.01.14 09:31, schrieb Martin Grigorov: Hi, On Wed, Jan 29, 2014 at 9:15 AM, Michael Mosmann mich...@mosmann.de wrote: Hi, As one might know I did some refactoring in this direction. What we can expect is some trouble with defaultModel in Component. There are different kind of ways

Re: Wicket-5353: Wrap feedback messages in a model instead of using Serializable objects

2013-09-18 Thread Michael Mosmann
+1 Am 17.09.13 17:18, schrieb Michael Haitz: Hi, why do you need a special API using IModel instead of Serializable? wicket-bootstrap uses also models but with existing API, isn't this enough? check NotificationPanel, NotificationAlert and NotificationMessage:

Re: RFC-0001: Deprecating PageParameters for Wicket 7 (was Re: [4/4] git commit: WICKET-4997)

2013-08-26 Thread Michael Mosmann
Am 23.08.13 00:16, schrieb Martijn Dashorst: On Thu, Aug 22, 2013 at 11:42 PM, Igor Vaynberg igor.vaynb...@gmail.com wrote: On Thu, Aug 22, 2013 at 2:04 PM, Martijn Dashorst martijn.dasho...@gmail.com wrote: still need pageparameters to carry those params forward in bookmarkablelink, etc. Not

Re: [4/4] git commit: WICKET-4997: render bookmarkable urls for bookmarkable pages (not stateless)

2013-08-22 Thread Michael Mosmann
Am 22.08.13 11:25, schrieb Bernard: Hi, On Thu, 22 Aug 2013 11:21:41 +0300, you wrote: On Thu, Aug 22, 2013 at 11:08 AM, Emond Papegaaij emond.papega...@topicus.nl wrote: snip The mismatch is in the fact that the PageParameters object is stored with the page while it resembles the

Re: [VOTE] Accept the Wicket Free Guide as a part of Apache Wicket

2013-08-18 Thread Michael Mosmann
[X] Yes, accept the Wicket Free Guide to incorporate into our project [ ] No, don't accept the Wicket Free Guide :) Am 18.08.2013 16:48, schrieb Martijn Dashorst: Andrea del Bene has granted us the ability to include the Wicket Free Guide into our project and to conclude the IP-clearance we

Re: code coverage for wicket

2013-08-12 Thread Michael Mosmann
profile and we can set this profile in BuildBot configs for master branch. At the moment BuildBot generates the Javadocs - http://ci.apache.org/projects/wicket/ We can extend the BuildBot config to copy the Jacoco reports to a folder next to javadocs. On Sat, Aug 10, 2013 at 6:38 PM, Michael Mosmann

an other wicket guide

2013-08-12 Thread Michael Mosmann
saw this on google+: http://wicketguide.comsysto.com/

Re: an other wicket guide

2013-08-12 Thread Michael Mosmann
ah.., was not sure.. Am 12.08.13 14:03, schrieb Martijn Dashorst: It's the same guide, but published by the company where Andrea works... Martijn On Mon, Aug 12, 2013 at 1:32 PM, Michael Mosmann mich...@mosmann.de wrote: saw this on google+: http://wicketguide.comsysto.com/

code coverage for wicket

2013-08-10 Thread Michael Mosmann
Hi, i would like to add jacoco code coverage ( http://www.eclemma.org/jacoco/ ) to the wicket project. Michael

Re: Wicket hot reloading - Proof of concept

2013-08-02 Thread Michael Mosmann
Am 01.08.13 09:55, schrieb Martin Grigorov: Michael, On Thu, Aug 1, 2013 at 9:48 AM, Michael Mosmann mich...@mosmann.de wrote: Only to be sure.. You know the run-jetty-run eclipse plugin? All I know about this project is that Eelco started it. I think this project is very usefull

Re: Wicket hot reloading - Proof of concept

2013-08-01 Thread Michael Mosmann
Only to be sure.. You know the run-jetty-run eclipse plugin? Am 31.07.13 17:29, schrieb Cedric Gatay: Hi all, today I did a small Proof Of Concept of autocompile and hot reload fonctionnality for Wicket. The implementation is inspired by Xavier Hanin's work on restx (restx.io) (he inspired

Re: git commit: WICKET-5071 use url as clientUrl

2013-07-15 Thread Michael Mosmann
in human history the past is allways changing... human history is not cryptographically hashed :( On Fri, Jul 12, 2013 at 6:36 AM, Martin Grigorov mgrigo...@apache.org wrote: On Fri, Jul 12, 2013 at 4:33 PM, Jeremy Thomerson jer...@wickettraining.com wrote: On Fri, Jul 12, 2013 at 7:34 AM,

Re: Michael Mosmann is a committer and PMC member!

2013-07-01 Thread Michael Mosmann
Thank you for your warm welcome:) I am very proud to be a part of it:) ... ... do we have t-shirts? :) Am 01.07.2013 11:51, schrieb Martijn Dashorst: Please welcome Michael Mosmann as our newest addition to the Wicket team! Michael has been a long time contributor to Wicket, and even wrote

Re: JavaScript functional tests

2013-06-18 Thread Michael Mosmann
Am 18.06.2013 15:20, schrieb Martin Grigorov: At the moment I run the tests from time to time manually by loading the respective url in the browsers. I can add Maven integration that will run the tests in PhantomJS during each 'mvn test' execution. The requirement here is that there is

Re: [VOTE] Branch for Wicket 7.0

2013-04-25 Thread Michael Mosmann
[x] Yes, start work on Wicket 7 with the proposed roadmap I can help too ..

Re: WicketTester cookie handling

2013-04-24 Thread Michael Mosmann
Am 24.04.2013 13:59, schrieb Martin Grigorov: Hi, On Tue, Apr 23, 2013 at 10:58 AM, Michael Mosmann mich...@mosmann.dewrote: Hi, as someone may has noticed there is a bug in the WicketTester cookie handling ( https://issues.apache.org/**jira/browse/WICKET-5147https://issues.apache.org/jira

WicketTester cookie handling

2013-04-23 Thread Michael Mosmann
these before the next request is started What do you think? -- Michael Mosmann

Re: Registering converters for PageParameters

2013-01-21 Thread Michael Mosmann
Am 21.01.2013 08:14, schrieb Martijn Dashorst: +1 We have a really nice type safe API but the thing that strikes me as odd is that AFIAK we don't have converters from PageParameters to objects and back. Now it probably is not easy to get it right, but what would be not too crazy is to be able

Re: Registering converters for PageParameters

2013-01-21 Thread Michael Mosmann
Am 21.01.2013 09:55, schrieb Martin Grigorov: What would such converter actually do? I guess the encoder for an employee it will generate PageParameters with id-empId (assuming you want a nice looking url which will encode 'employee' as Url segment, e.g. /company/employee/34). Later the decoder

remove javax.servlet from wicket-core

2013-01-17 Thread Michael Mosmann
Hi, it may sound like a crazy idea, but sometimes a good idea started as a crazy one: I want to remove javax.servlet from wicket-core. Why? Here are some thoughts: - run a wicket application on a netty/vert.x/what-ever stack - make test easier (BaseWicketTester is not as clear as it should

Re: wicket pull request: change IModel to readonly by default

2012-12-17 Thread Michael Mosmann
and apply these changes as the patch at: https://github.com/apache/wicket/pull/27.patch commit 5521138c412036551bdf96fcbfbe2286a7e1fd9b Author: Michael Mosmann mich...@mosmann.de Date: 2012-09-26T20:17:26Z ignore idea project files commit 9a2f8c8665c48abe29611cc5d5f0cc72e53c961c

IAjaxRegionMarkupIdProvider

2012-12-13 Thread Michael Mosmann
Hi, .. maybe someone has a better idea. What's the problem. One can add a behavior to a component which implements IAjaxRegionMarkupIdProvider. This way it's very easy to include some content rendered by this behavior even in an ajax-response (see

Re: More flexible object checking during serialization

2012-10-11 Thread Michael Mosmann
Hi, Some examples from a real life project beside serializable and LDM handling: - check if a component has a parent .. if not, the component is not part of the component tree which could be a bad sign - check for type which should never be serialized (holding stuff in fields and not in models)

wicketstuff git commit access

2012-10-11 Thread Michael Mosmann
Hi, I would like to have wicketstuff commit access on github. My github name is michaelmosmann (https://github.com/michaelmosmann). I am interested in this kryo stuff. thanks.

IWriteableModel

2012-10-01 Thread Michael Mosmann
Hi, .. yesterday I did some refactoring which introduced a IReadOnlyModel interface. I stopped this so far because of these many default casts to IModel. I will try it again with the other way around (IWriteableModel). So far I could see how things become more clear if the right interface is

Re: IWriteableModel

2012-10-01 Thread Michael Mosmann
trying to solve? -igor On Sun, Sep 30, 2012 at 11:25 PM, Michael Mosmann mich...@mosmann.de wrote: Hi, .. yesterday I did some refactoring which introduced a IReadOnlyModel interface. I stopped this so far because of these many default casts to IModel. I will try it again with the other way

Component setDefaultModel

2012-09-27 Thread Michael Mosmann
Hi, is there any usefull application of Component.setDefaultModel(...)? IMHO this Method is the cause for much trouble without any benefit. But maybe i did not understand when someone should replace a component model... thanks Michael

Re: Component setDefaultModel

2012-09-27 Thread Michael Mosmann
can replace the model completely with a new one. Same with #setDefaultModelObject(). What is the problem you face with it ? On Thu, Sep 27, 2012 at 9:57 AM, Michael Mosmann mich...@mosmann.de wrote: Hi, is there any usefull application of Component.setDefaultModel(...)? IMHO this Method

Re: Component setDefaultModel

2012-09-27 Thread Michael Mosmann
this will lead to more typing. With Java 7 diamonds it is half the typing though. For now you can use GenericPanel, GenericPage and all FormComponent. On Thu, Sep 27, 2012 at 10:41 AM, Michael Mosmann mich...@mosmann.de wrote: Am 27.09.2012 09:01, schrieb Martin Grigorov: Hi, I think, there is a little

Re: Component setDefaultModel

2012-09-27 Thread Michael Mosmann
at 11:39 AM, Michael Mosmann mich...@mosmann.de wrote: Am 27.09.2012 09:51, schrieb Martin Grigorov: Hi, a dont care about the type issue here.. Maybe i can explain it again in an other way: APanel uses model instance A and the label uses a property model instance P which uses a reference

Re: Component setDefaultModel

2012-09-27 Thread Michael Mosmann
On 09/27/2012 10:47 AM, Martin Grigorov wrote: I see. This is an advanced way to create a static model :-) But again I find PropertyModel as the real problem here. I'll let others give their opinions too. On Thu, Sep 27, 2012 at 11:39 AM, Michael Mosmann mich...@mosmann.de wrote: Am

Re: Component setDefaultModel

2012-09-27 Thread Michael Mosmann
Am 27.09.2012 17:51, schrieb Igor Vaynberg: good point.. -1 from me.. thought it was a good idea, but wasn’t Michael so what happens if panel A extends GenericPanel which has setModel? you havent fixed anything. -igor On Thu, Sep 27, 2012 at 8:50 AM, Michael Mosmann mich...@mosmann.de wrote

Re: wicket 1.5.7 FilterToolbar

2012-07-13 Thread Michael Mosmann
:05 PM, Michael Mosmann mich...@mosmann.de wrote: Hi, I am not sure, if the constructur of FilterToolbar should be changed from public T FilterToolbar(final DataTableT table, final FilterFormT form, final IFilterStateLocatorT stateLocator) to public T,F FilterToolbar(final DataTableT

wicket 1.5.7 FilterToolbar

2012-07-12 Thread Michael Mosmann
IFilterStateLocatorF stateLocator) .. As far as i could see, the type of form and statelocator are ignored anyway. Michael Mosmann

Re: WICKET-2846 - Store Application in InheritableThreadLocal instead of ThreadLocal

2010-05-20 Thread Michael Mosmann
Am Mittwoch, den 19.05.2010, 16:48 -0300 schrieb Adriano dos Santos Fernandes: On 19/05/2010 16:36, James Carman wrote: What itch are we trying to scratch, here, anyway? When do folks need access to the Application object outside of a request thread? What is the usecase? I have a

Mouse Position Event Behavior

2010-03-04 Thread Michael Mosmann
Hi, I am not sure how to implement something like an mouse position behavior. I know, that i can use some form and ajaxsubmit behavior. But that not the way i like it:) any suggestions are welcome michael mosmann:)

Re: Mouse Position Event Behavior

2010-03-04 Thread Michael Mosmann
Am Donnerstag, den 04.03.2010, 11:19 +0100 schrieb Ernesto Reinaldo Barreiro: http://londonwicket.googlecode.com/files/LondonWicket-Paint.pdf ? Ernesto thanks:) mm:)

Re: wicket 1.5 build is failing because of 1.6 deps...

2009-12-30 Thread Michael Mosmann
Let's call it wicket 1.5, use java 1.6 and make it happen.. Then, after we finished this, we can try to backport wicket 1.5 to java 1.5 ... if anybody want's it. mm:)

Re: wicket 1.5 build is failing because of 1.6 deps...

2009-12-15 Thread Michael Mosmann
Info.. da ich lieber bei Amazon bestellen würde hier meine Frage: Ist es über dpunkt lieferbar? Wann ist es über Amazon lieferbar? Danke:) Michael Mosmann

RE: wicket 1.5 build is failing because of 1.6 deps...

2009-12-15 Thread Michael Mosmann
+1 for moving to Java6: if you have to use Java5, you can use wicket 1.4.x. .. (maybe someone will give paid support for wicket 1.4.x :) ) Michael

Re: Session Invalidation Options

2009-11-29 Thread Michael Mosmann
Am Sonntag, den 29.11.2009, 20:15 +0100 schrieb Erik van Oosten: Michael, What kind of container are you referring to? public class MyUserSession implements Serializable { /* hold user relevant stuff */ } public class MyWicketSession extends WebSession { MyUserSession _container=new

Re: Session Invalidation Options

2009-11-20 Thread Michael Mosmann
Hi, I've got a business requirement that session invalidation must not be a disruptive event (no expired session warning or anything similar). Is session invalidation an requirement? Put a container into your session and throw it away if you want to invalidate the user session. mm:)

Wicket Stuff commit access

2009-11-09 Thread Michael Mosmann
Hi, i would like commit access for wicket stuff for a college. His sf id is 'blade23' .. thank you Michael

Wicket Stuff commit access

2009-11-02 Thread Michael Mosmann
Hi, I would like commit access for wicket stuff. I plan to work on a new subproject. My sourceforge id is 'mosmann'. thanks.. mm:)

Re: FormComponent Input Change

2009-10-30 Thread Michael Mosmann
Am Freitag, den 30.10.2009, 08:54 -0200 schrieb Pedro Santos: In the case of a user write an code were only characters are correct, the setObject method of component model fix the characters case before call super.setObject i did'nt want to set the model value.. only the input. Michael

Re: Wicket Component Overview

2009-10-18 Thread Michael Mosmann
Hi, I used Umbrello UML on linux to draw the diagram, by hand. I tried this first, but i failed. It was to much work.. and it was more fun to solve this by some coding. And the resource finding algorithm could benefit from a pluggable Strategy pattern, for example to group localized

Wicket Component Overview

2009-10-16 Thread Michael Mosmann
Hi, i did some wicket component diagram stuff (model, listener etc.) http://www.wicket-praxis.de/blog/2009/10/16/wicket-component-overview/ glad to see some reply on this.. mm:)

Re: Wicket Component Overview

2009-10-16 Thread Michael Mosmann
Hi, I did the same with the Models a few weeks ago - see the attached image. hmm.. no image attached.. BTW, don't you think their hierarchy is a bit weird ? what's the weird part? mm:)

Re: OT: Is IModel an empty interface?

2009-10-07 Thread Michael Mosmann
And regarding the excellent wiki page: that's one thing I don't like about wicket. Documentation is not were in belongs, in the code or at least checked in with the code. I always have to figure it out by myself if some wiki page is up-to-date or not. I really never had such a hard time

wicket default theme

2009-09-17 Thread Michael Mosmann
Hi, do we have something like a default theme for wicket apps? Every grails app comes with a nice theme right from the start, ... i think we need something similar. - package org.apache.wicket.extension.theme; public class WicketDefaultTheme { public static void apply(Page page)

German Wicket Book

2009-09-08 Thread Michael Mosmann
Hi, .. is there any chance to get my (german) book http://www.hanser.de/978-3-446-41909-4 into the list? http://wicket.apache.org/books.html thanks. Michael

Re: 1.4.1 release?

2009-08-20 Thread Michael Mosmann
Am Donnerstag, den 20.08.2009, 14:12 +0200 schrieb Jörn Zaefferer: It looks like all issues for 1.4.1 are fixed: https://issues.apache.org/jira/browse/WICKET/fixforversion/12314113 When can we expect the 1.4.1 release? There's a certain bugfix I'd like to include in my application... IMHO

Re: Radio and Radio Group problems

2009-07-15 Thread Michael Mosmann
Hi, .. i am not sure. The model of RadioGroup should contain, wich item is selected. The model of Radio should reflect the associated value. So if model of RadioGroup contains fr and Property selected of item nr. 3 is fr this Radio is selected. maybe this will help.. mm:) I have a problem

Re: Radio and Radio Group problems

2009-07-15 Thread Michael Mosmann
Am Mittwoch, den 15.07.2009, 16:02 +0200 schrieb Trojahn, Cassia: I had tried this option and it does not work. can you send me some more code (zip?) .. please use http://wicket.apache.org/quickstart.html mm:)

RedirectRequestTarget SC_MOVED_PERMANENTLY

2009-06-28 Thread Michael Mosmann
Hi, can we extends RedirectRequestTarget somehow, so that setting response status code to SC_MOVED_PERMANENTLY is done in an easy way? michael

Re: RedirectRequestTarget SC_MOVED_PERMANENTLY

2009-06-28 Thread Michael Mosmann
Am Sonntag, den 28.06.2009, 13:53 +0200 schrieb Martijn Dashorst: A patch is welcome :) as jira-ticket or as email with some files? mm:)

Re: RedirectRequestTarget SC_MOVED_PERMANENTLY

2009-06-28 Thread Michael Mosmann
Am Sonntag, den 28.06.2009, 07:43 -0500 schrieb Jeremy Thomerson: JIRA - always. will do.. as quickstart-app? mm:)

Re: [patch (sort of)] Remove empty java package directories

2009-05-27 Thread Michael Mosmann
. thanks a lot michael mosmann

Re: refactor Item to interface

2009-05-22 Thread Michael Mosmann
(result.getComponent()); } .. maybe this will help. michael mosmann

Re: refactor Item to interface

2009-05-22 Thread Michael Mosmann
Hi joe, much like i think ur code is,u r working around the problem , yes.. sure... i think that this is not the natural way of doing things , u have a double indirection , an interface thet return another interface which contain the component ,WHY??? because in java you can not have

Re: refactor Item to interface

2009-05-22 Thread Michael Mosmann
Am Freitag, den 22.05.2009, 12:33 +0300 schrieb Joe Fawzy: Hi dear Michaelsorry if my response was'nt as nice as my feeling toward ur nice cooperation ,sorry again no problem:) really Scala is the way i thought , its traits feature is really helpfull in combining features and behaviors into

link to css with parameter

2009-04-03 Thread Michael Mosmann
Hi, .. can someone give me an advice, how to do something like this: head link rel=stylesheet type=text/css href=bla/blub/style.css?typ=3 /head thanks mm:)

Re: link to css with parameter

2009-04-03 Thread Michael Mosmann
Thank you.. but found solution.. - build dynamic HttpHeaderContributor and write urlFor(resourceRef, valueMap) - own ResourceReference overrides newResource() - in this Resource call getParameters() that's it mm:)

Re: VOTE: Rename Apache Wicket to Apache WicketFX

2009-04-01 Thread Michael Mosmann
Am Mittwoch, den 01.04.2009, 15:34 +0300 schrieb Nikos Pougounias: Hi Martijn, I would like to ask, how will it be easier to obtain JSR status by changing the name? The FX makes the difference. Sun is also spending some money if you use FX as part of any java framework. I got some rumors, that

Re: wicket-library.com

2009-03-31 Thread Michael Mosmann
Am Dienstag, den 31.03.2009, 13:02 -0500 schrieb Jeremy Thomerson: Who runs wicket-library.com and how often are the wicket-examples updated to the most recent version? i think, it's just spam.. it open add pages on every klick.. mm:)

Re: wicket blogs

2009-03-29 Thread Michael Mosmann
Done - site should update shortly, I believe... /Gwyn thanks :) mm:)

RedirectPage

2009-03-29 Thread Michael Mosmann
Hi, Does anyone had successfully used RedirectPage with a Page instance? Everything i got is some Page Expired messages. thanks Michael Mosmann p.s.: wicket 1.4 rc2

Re: wicket blogs

2009-03-25 Thread Michael Mosmann
Am Mittwoch, den 25.03.2009, 09:28 -0700 schrieb Igor Vaynberg: its a wiki, you can do it yourself afaik i did mean this page: http://wicket.apache.org/blogs.html :) On Wed, Mar 25, 2009 at 8:54 AM, Michael Mosmann mich...@mosmann.de wrote: Hi, can someone add my blog to the wicket

Double Submit Bug in Palette?

2009-03-03 Thread Michael Mosmann
Hi, i wonder, if i do something wrong. But first the Code: import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.List; import org.apache.wicket.extensions.markup.html.form.palette.Palette; import

Re: Double Submit Bug in Palette?

2009-03-03 Thread Michael Mosmann
Am Dienstag, den 03.03.2009, 08:18 -0800 schrieb Igor Vaynberg: quickstart what does this mean? and jira. done. mm:)

Buxfix for Palette

2009-01-29 Thread Michael Mosmann
How can i send some bugfixes for org.apache.wicket.extensions.markup.html.form.palette.Palette? --- protected void onBeforeRender() { if (!hasBeenRendered()) { initFactories();

Re: wicket:extend variation template search order

2009-01-09 Thread Michael Mosmann
Am Freitag, den 09.01.2009, 16:39 +0100 schrieb Martijn Dashorst: On Fri, Jan 9, 2009 at 1:06 PM, Michael Mosmann mich...@mosmann.de wrote: We are using Wicket 1.3.3. Maybe this is your problem? maybe.. will test this soon.. (with 1.3.5 and 1.4) mm:) p.s.: got around this with a better

Enterprise Application

2008-08-18 Thread Michael Mosmann
Hi, Can anyone tell me an example of an enterprise application developed with wicket? In an discussion some people said, that they think, that wicket is not suited for enterprise scaled applications. what you see, is what you believe could solve this problem. thanks Michael Mosmann

Re: Enterprise Application

2008-08-18 Thread Michael Mosmann
Am Montag, den 18.08.2008, 12:55 +0200 schrieb Witold Czaplewski: Hi Michael, here [1] you find a list with sites using wicket. i know. There is also a german based travel agency that has deployed 20-30 sites based on one Wicket code base iirc. Der.de, Dertour.de or

Re: Enterprise Application

2008-08-18 Thread Michael Mosmann
isn't that much of a scaling problem, we do need to handle 120K-200K requests per day. It is quite an intensively used application, with a very broad functionality base. Can you post a link? Is there any public information? Thanks Michael Mosmann

Re: Enterprise Application

2008-08-18 Thread Michael Mosmann
, and is also a complex beast. More information here: http://teachscape.com Martijn thanks for your information.. the will help a lot. :) Michael Mosmann

  1   2   >