JavaLand 2014

2014-03-23 Thread Martin Funk
Hi, anyone at the JavaLand 2014 conference in Brühl this week? I'd be happy to meet, ping me on twitter: @funkattack or send an E-Mail: mafulaf...@gmail.com Cheers, Martin - To unsubscribe, e-mail:

What is the meaning of: javax.ejb.Stateless;

2014-03-06 Thread Martin Funk
Hi again, still at a very early stage of conquering the domain of TomEE+. I have a question on javax.ejb.Stateless. In the specs I read that in the area of SOAP based web services, which are implemented by an EJB component the class implementing the endpoint must be annotated @Stateless or

Re: What is the meaning of: javax.ejb.Stateless;

2014-03-06 Thread Martin Funk
skip this wrong mailing list: Am 06.03.2014 um 17:33 schrieb Martin Funk mafulaf...@gmail.com: Hi again, still at a very early stage of conquering the domain of TomEE+. I have a question on javax.ejb.Stateless. In the specs I read that in the area of SOAP based web services, which

Re: bug or new feature

2014-02-22 Thread Martin Funk
Hi Ernesto, without having looked into this. It sound similar to: https://issues.apache.org/jira/browse/WICKET-3277 mf Am 22.02.2014 um 08:04 schrieb Ernesto Reinaldo Barreiro reier...@gmail.com: Guess %- text % is giving problems On Sat, Feb 22, 2014 at 7:50 AM, Ernesto Reinaldo

Re: 10th aniversary of wicket

2014-01-22 Thread Martin Funk
20.01.2014 um 10:52 schrieb Ernesto Reinaldo Barreiro reier...@gmail.com: Hi, Chatting with Martin Funk, a fellow wicketeer, he mentioned this year Apache Wicket will become 10 years old! Are there any celebrations planned? Shall we organize something? Just kidding, I mentioned to Martin

Re: Displaying Wicket version number

2014-01-17 Thread Martin Funk
Hint, create a quickstart http://wicket.apache.org/start/quickstart.html and look into the code :-) otherwise go for: getApplication().getFrameworkSettings().getVersion() mf 2014/1/17 Oliver B. Fischer mails...@swe-blog.net I would like to show the wicket version number in the about page

StartExamples of wicket-examples not running

2014-01-15 Thread Martin Funk
Hi, looking into the current experimental wicket-cdi-1.1 of the wicket-6.x branch, I noticed that the wicket-examples.war runs fine in an Container, here Apache Tomcat/7.0.50, but the StartExamples of the wicket-examples doesn't run. Weld throws an Deployment Exception WARN - Interceptor

Re: Wicket Sessions and Akamai Caching

2013-11-20 Thread Martin Funk
Hi, the explanation in wicket guide might give further insight: http://wicket.apache.org/guide/guide/chapter11.html#chapter11_9 mf Am 20.11.2013 um 06:04 schrieb Jeremy Thomerson jer...@wickettraining.com: Pages that are session-specific should not be cached in a way that allows the cached

Re: Problem running wicket in eclipse working with tomcat

2013-11-20 Thread Martin Funk
Hi Gerrit, for now just try something like: plugin groupIdorg.apache.maven.plugins/groupId artifactIdmaven-eclipse-plugin/artifactId version2.9/version

Re: Back button not calling onConfigure()

2013-11-06 Thread Martin Funk
Hi, have you thought about wireshark? Easy to set up and not all that hard to handle. Filters are powerful and most interestingly for Web-Development ist the Follow TCP stream function. http://www.wireshark.org/docs/wsug_html_chunked/ChAdvFollowTCPSection.html mf Am 06.11.2013 um 15:27

Re: Back button not calling onConfigure()

2013-11-06 Thread Martin Funk
it. This won't be possble. Thanks, Artur On 06/11/13 15:53, Martin Funk wrote: Hi, have you thought about wireshark? Easy to set up and not all that hard to handle. Filters are powerful and most interestingly for Web-Development ist the Follow TCP stream function. http

Re: Component detecting Ajax update

2013-11-03 Thread Martin Funk
traveling down the implementations of AjaxRequestTarget.add AjaxRequestHandler public void add(Component... components) one comes across to: AbstractAjaxResponse.add((final Component component, final String markupId) I don't see code that signals the Component that it was added to an

Re: AjaxButton submit issue in GAE

2013-11-03 Thread Martin Funk
How about some code? And if it is deployed on GAE you even might be able to provide an url to the app. mf Am 03.11.2013 um 03:16 schrieb luiss184 luisfi...@yahoo.com.ar: Hi, I have an issue in my application with an AjaxButton which submits properly only the first time. To get it

Re: NumberFormatException from Requests with invalid URIs

2013-07-25 Thread Martin Funk
done https://issues.apache.org/jira/browse/WICKET-5287 2013/7/25 Sven Meier s...@meiers.net ServletWebRequest#**getContextRelativeUrl() passes foo://:/ to Url#parse() and that one fails. Please create a Jira issue. Sven On 07/24/2013 05:06 PM, Martin Funk wrote: Hi Sven, we still

Re: NumberFormatException from Requests with invalid URIs

2013-07-24 Thread Martin Funk
Hi Sven, we still can reproduce this on any version. Maybe this git diff gives a clearer picture: diff --git a/wicket-core/src/test/java/org/apache/wicket/protocol/http/servlet/ServletWebRequestTest.java

Re: Save place to set http response status?

2013-07-03 Thread Martin Funk
to push until the very end of the request cycle. On Tue, Jul 2, 2013 at 5:07 PM, Martin Funk mafulaf...@gmail.com wrote: Hi there, what is the best place to set http response state? I was trying the 'onSomething' callback methods in IRequestCycleListener Like onEndRequest

Save place to set http response status?

2013-07-02 Thread Martin Funk
Hi there, what is the best place to set http response state? I was trying the 'onSomething' callback methods in IRequestCycleListener Like onEndRequest But sometimes those get ignored The last save place I figured was onAfterRender in the page class, but this doesn't feel right. The reason

Save place to set http response status?

2013-07-02 Thread Martin Funk
Hi there, what is the best place to set http response state? I was trying the 'onSomething' callback methods in IRequestCycleListener Like onEndRequest But sometimes those get ignored The last save place I figured was onAfterRender in the page class, but this doesn't feel right. The reason

Re: Wicket as Jboss Modules

2012-06-14 Thread Martin Funk
given that I have not dug deep into the contract that JBoss promises for jar Files in the JBOSS_HOME/modules folder, I'd still be quite surprised that putting the jars into a shared folder would imply that the class instances created from those jars would be shared between applications on a single

Re: Wicket as Jboss Modules

2012-06-14 Thread Martin Funk
with 'static caches'. If you have a static field then it is also shared for all apps. On Thu, Jun 14, 2012 at 11:27 AM, Martin Funk mafulaf...@googlemail.com wrote: given that I have not dug deep into the contract that JBoss promises for jar Files in the JBOSS_HOME/modules folder, I'd still

Re: missing page

2011-10-12 Thread Martin Funk
is RequestCycle.get().getRequest().getUrl() what you are looking for? mf 2011/10/11 Miroslav F. mir...@seznam.cz Hi guys, I need a help - have my custom class PageNotFound based on this help: https://cwiki.apache.org/WICKET/error-pages-and-feedback-messages.html In my PageNotFound class

Re: Wicket filter chain and other servlets

2011-08-08 Thread Martin Funk
the web.xml might help Am 08.08.2011 um 21:29 schrieb Julian Sinai: Hi Dan I don't understand the reason either, but clearly it's happening. My best guess is what I said in my original post: the non-wicket servlets are going through the wicket filter. Julian On Mon, Aug 8, 2011 at 12:23

Re: Username gets cached

2011-08-03 Thread Martin Funk
Looking at 1.5-RC5.1 I'd say public final PasswordTextField setResetPassword(final boolean resetPassword) will fix that. But besides that I'd definitely investigate how the models of the two PasswordTextFields are connected. mf 2011/8/3 Anna Simbirtsev asimbirt...@gmail.com I have

Re: Run a standalone wicket app

2011-03-07 Thread Martin Funk
if you want to use maven look for mvn jetty:run wicket-quickstart and wicket-examples are set up to run that way. if you are looking for something like: java -jar YourAppsName.war the export function 'Runnable Jar File Export' might be something of help mf Am 07.03.2011 um 18:26 schrieb

Re: http 500 status on GitHub

2011-02-04 Thread Martin Funk
thank you by the way, they fixed it in the meantime. mf Am 26.01.2011 um 21:00 schrieb Igor Vaynberg: works for me :/ -igor On Wed, Jan 26, 2011 at 11:42 AM, Martin Funk mafulaf...@googlemail.com wrote: Hi, anyone experiencing something similar, as I described here? http

http 500 status on GitHub

2011-01-26 Thread Martin Funk
Hi, anyone experiencing something similar, as I described here? http://support.github.com/discussions/site/2640-wiki-git-access-leads-to-500 mf - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Re: [Announce] Wicket Stuff Core 1.4.15 released

2011-01-05 Thread Martin Funk
Hi, seems quite complicated to me (one branch too much): I'd propose to keep the number of branches low, or even very low. Branches, at least to me, are the hotspots to commit code to, the code you'd like to live on in the upstream. As wicketstuff is sort of the tail of wicket, it should try

New Wicket based website: https://mm.web.de

2010-12-13 Thread Martin Funk
There is yet another Wicked based site out in the wild. https://mm.web.de To take a ride you have to have a web.de e-mail account though. srry.. But they do have a free plan too.. ;-) If you do have an account you should be able to access your web.de e-mail on quite a variety of mobile gadgets.

Re: wicket in a mobile application.

2010-07-15 Thread Martin Funk
2010/7/15 amit1400158 ade...@qasource.com Is it favourable to develop android application in wicket or to use android sdk or any other framework?? as with so many other questions: it depends and there is no easy answer to that. There probably already have been written ephic papers on that

Re: wicket in a mobile application.

2010-07-13 Thread Martin Funk
Hi Amit, the market for web-apps specially designed for mobiles is rather new, the technological decisions made in that area aren't quite settled yet. Its not even clear if serving your content in an web-app is the best approach. The biggest problem seems to be the big number of different devices

Re: Wicket and mobile browsers

2010-06-16 Thread Martin Funk
used for m.wellsfarg.com and other sites. They have an extensive device-repository and a lot of other useful features for building MWeb sites. Downside: $$$ Best regards, Joachim On Tue, 2010-06-15 at 17:36 +0200, Martin Funk wrote: Hi Giovanni, on what basis do you do the device

Re: Wicket and mobile browsers

2010-06-15 Thread Martin Funk
Hi Giovanni, on what basis do you do the device recognition and classification? Currently we are looking into wurfl http://wurfl.sourceforge.net/ Any opion on tha? Or do you know of an alternative to wurfl? mf 2010/6/15 Joachim F. Kainz j...@jolira.com Giovanni, I am one of the developers

Re: Stack Overflow exception

2010-06-02 Thread Martin Funk
Well now that sure is quite an impressive stack. Looks like a recursion problem. Do some pages have members referencing to other pages, or themselves? The stacktrace indicates that the deserialisation process, which tries to receive the previous rendered page from the DiskPageStore is looping

Re: GMap2 from wicketstuff: how to dynamically resize?

2010-05-16 Thread Martin Funk
sorry my mind is in Sunday afternoon mode, and not able to wrap itself around this... could you come up with a Quickstart example? mf Am 16.05.2010 um 14:55 schrieb Alexandros Karypidis: Hi, I am unsing GMap2 from WicketStuff

Re: Gmap2 and Wicket 1.4.8

2010-05-11 Thread Martin Funk
when the blank area is already rendered the app has already come quite far. out of my mind I'd check the Google Key. Also I remember Firefox beeing quite picky on 'wicket' elements. If they were present in or around the div element containing the map, it wouldn't be rendered. mf 2010/5/11 Doug

Re: GMap2 and zoom_changed

2010-05-11 Thread Martin Funk
you are aware of gmap2-examples? http://wicketstuff.org/confluence/display/STUFFWIKI/wicket-contrib-gmap2 once there look at the 'Listen Examples' mf 2010/5/11 dleeper douglee...@yahoo.com This is what I am currently doing. zoomChangedListener = new ZoomChangedListener();

Re: Catch Wicket.Error with FireBug

2010-03-30 Thread Martin Funk
Could you elaborate on your problem a little more? What precisely do you want to do? If the Application is started in develompment mode the 'WICKET_AJAX_DEBUG window should be available on any Page containing Wicket-Ajax components. (The link in the right bottom corner) mf 2010/3/30 Martin U

Re: Wicket on GAE with Facebook Connect - doesnt work after deploying / HTTP 500 error

2010-03-26 Thread Martin Funk
you are aware of this? http://www.danwalmsley.com/2009/04/08/apache-wicket-on-google-app-engine-for-java/ 2010/3/26 christoph glass mail.kaffeeser...@googlemail.com Hi everyone, I'm trying to run a simple Wicket Application with Facebook Connect on Google App Engine. So far it runs local,

Re: mvn jetty plugin not compatible with wicket

2010-03-04 Thread Martin Funk
it doesn't? svn checkout http://svn.apache.org/repos/asf/wicket/branches/wicket-1.4.7 cd wicket-1.4.7/ mvn install cd wicket-quickstart/ mvn jetty:run works fine on this machine. mf 2010/3/4 Douglas Ferguson doug...@douglasferguson.us Apparently the mvn jetty plugin doesn't work if your pom

Re: Wicket used for mobile.walmart.com

2010-02-23 Thread Martin Funk
incredibly nice 2010/2/22 Joachim F. Kainz j...@jolira.com Fellow Wicket Users, The question if Wicket is suitable for large enterprises has just become easier to answer: The largest enterprise in the world is now using Wicket for its mobile site. Check out mobile.walmart.com (or just

Re: wicket Google maps integration

2010-02-16 Thread Martin Funk
look for the contract of ClickListener.onClick http://fisheye3.atlassian.com/browse/wicket-stuff/trunk/wicketstuff-core/gmap2-parent/gmap2/src/main/java/wicket/contrib/gmap/event/ClickListener.java?r=#l65 An Overlay was clicked, so glatLng is null. mf 2010/2/16 Josh Kamau

Re: Future of Wicket Security (WASP/SWARM)

2010-01-22 Thread Martin Funk
[ ] adopt Wicket security into Apache Wicket [x ] keep Wicket security at Wicket Stuff Pulling more code into Apache Wicket doesn't look like the best option to me. Looking at http://www.ohloh.net/p/wicket/contributors?query=sort=latest_commit I'd be more interesed in ideas of creating more

Re: Wicket Release Plans for 1.5

2009-11-01 Thread Martin Funk
Am 30.10.2009 um 16:42 schrieb Igor Vaynberg: possibly. i think i would like this release to be as small as possible, centered around the new url stuff. once that is in release 1.5 and put the new ajax support from ng into 1.6. trying to release more and more often instead of taking over a

Re: wickstuff-dojo-1.1 maintainer

2009-10-29 Thread Martin Funk
oh, I'm just so command line YEAHHH svn log https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-dojo-1.1| less mf Am 29. Oktober 2009 14:27 schrieb Giambalvo, Christian christian.giamba...@excelsisnet.com: Hi all, who ist he actuall maintainer of

Re: GMap2 GOverlay.getJSConstructor() change request

2009-09-16 Thread Martin Funk
Hi Doug, the change of getJSconstructor() from protected to public is fine by me. Go ahead an commit that change. The client code you posted, I haven't analyzed in depth, but seeing all that JavaScript genereated on the Server using so many String literals would make me start to think if that

Re: GMap2 GOverlay.getJSConstructor() change request

2009-09-16 Thread Martin Funk
2009/9/16 Martin Funk mafulaf...@googlemail.com Hi Doug, the change of getJSconstructor() from protected to public is fine by me. Go ahead an commit that change. argh... I withdraw and claim the opposite. or at least rethink it really hard. If the map you are reffering to already has

Re: [announce] Wicket 1.4.1

2009-08-20 Thread Martin Funk
and leave clean underwear don't think Martijn is up for another one of this: http://www.nabble.com/SVN-URL-for-Wicket-1.4.0-sources--td24803875.html mf 2009/8/20 Igor Vaynberg igor.vaynb...@gmail.com Apache Wicket 1.4.1 Released The Apache Wicket project is proud to announce the first

Re: tooltip in wicket 1.4

2009-08-11 Thread Martin Funk
hmmm how about: http://www.google.com/search?q=wicket+tooltip mf 2009/8/11 srinivas srinivas.r...@sifycorp.com Hi, I have to add tool tip for label in wicket 1.4, how can i implement this. I have Student Name, if a place mouse on that i have to show his details can any one help

Re: Wicketstuff checkout fails

2009-08-05 Thread Martin Funk
what are you trying to do? that url is no subversion repo, but a maven repo. maybe you were looking for this: http://sourceforge.net/projects/wicket-stuff/develop mf 2009/8/5 Erik van Oosten e.vanoos...@grons.nl Hi, I am trying to do a checkout of wicketstuff but I get redirected to the

img src= ... tags are truely evil!

2009-08-03 Thread Martin Funk
I know its been talked about before http://cwiki.apache.org/WICKET/best-practices-and-gotchas.html#BestPracticesandGotchas-Gotchas Just had to restate it, make myself remember. mf

Re: img src= ... tags are truely evil!

2009-08-03 Thread Martin Funk
like this? ~/dev/sandbox/wicket-trunk$ jsvn diff Index: wicket/src/main/java/org/apache/wicket/Application.java === --- wicket/src/main/java/org/apache/wicket/Application.java(revision 800428) +++

Re: img src= ... tags are truely evil!

2009-08-03 Thread Martin Funk
https://issues.apache.org/jira/browse/WICKET-2412 wow, now we all can be happy together ;-) mf 2009/8/3 Igor Vaynberg igor.vaynb...@gmail.com yep, now if you would only attach it to a jira issue and check that attachment is ASL licensed check box we will be happy to roll it in :) -igor

Re: img src= ... tags are truely evil!

2009-08-03 Thread Martin Funk
; +} +} \ No newline at end of file 2009/8/3 Igor Vaynberg igor.vaynb...@gmail.com it should be possible to create an IResponseFilter that checks for this and reports the error in dev mode. -igor On Mon, Aug 3, 2009 at 8:00 AM, Martin Funk mafulaf...@googlemail.com

Re: WicketStuff Developers - please read

2009-07-17 Thread Martin Funk
good work, thank you. May I add a Number 0 item to the list. 0 - Don't commit code that breaks the build mvn install mf Am 16.07.2009 um 23:38 schrieb Jeremy Thomerson: I'm trying to build wicketstuff-core 1.4-rc7 to match the Wicket release. I have spent hours tracking down pom issues

Re: Wicket and javascript

2009-07-05 Thread Martin Funk
you are getting closer... next step is to get the callbackURL to the browser and than pick it up by your javascript. it could be rendered as an attribute using an AttributeModifier. given that wicket supplies the javaScript method wicketAjaxGet. If that gets called with the callbackURL the

Re: Large internet rich UI Wicket websites?

2009-07-01 Thread Martin Funk
Am 01.07.2009 um 20:11 schrieb David Chang: I am still learning Wicket. The more I read from Wicket in Action, the more I like it. From the book, I know that companies from startups to large-size ones such as IBM, Amazon, etc. use Wicket for their projects, but I cannot find a list of

Re: AjaxSelfUpdatingTimerBehavior: Leaving page not possible

2009-06-29 Thread Martin Funk
Am 29.06.2009 um 10:22 schrieb Tokalak Ahmet: Hi Wicketians, i have a problem with AjaxSelfUpdatingTimerBehavior. I have added an AjaxSelfUpdatingTimerBehavior to a page, because of a background-thread running very long and the page checks (an AjaxSelfUpdatingTimerBehavior with 10 sec

Re: Migration of wicket-ki-security to wicket-shiro-security

2009-06-26 Thread Martin Funk
not that bad of a plan, I'd suggest a little change. Besides the things you have already done please uncomment the shiro- security module out of the wicketstuff-core pom.xml You can comment on that in the pom.xml itself and on the the wiki page you already created. mf Am 26.06.2009 um

Re: Migration of wicket-ki-security to wicket-shiro-security

2009-06-26 Thread Martin Funk
the reasoning. Once shiro is in maven, it would be fine to have the submodule included, right? Thanks, Tauren On Fri, Jun 26, 2009 at 12:32 PM, Martin Funk mafulaf...@googlemail.com wrote: not that bad of a plan, I'd suggest a little change. Besides the things you have already done please

Re: Adding attribute to body tag

2009-06-24 Thread Martin Funk
Am 24.06.2009 um 06:54 schrieb John: Hi, I need to add a class attribute to the body tag but this: component.add(new AttributeAppender(class, true, Model.of(yui- skin-sam), )); ... and this ... component.add(new BodyTagAttributeModifier(class, true, Model.of(yui-skin-sam),

Re: AJAX and Safari

2009-06-22 Thread Martin Funk
uh, now that's a moving target. sorry but no solution out of my head, but next steps for me would be checking if it happens on the server or on its way to the browser. What does the response Buffer in the WicketFilter look like just before the doGet returns? mf Am 22.06.2009 um 12:58

Re: AJAX and Safari

2009-06-22 Thread Martin Funk
sorry still no answers on this side, just questions. what does the implementation of the onSubmit method of the AjaxButton look like. Is the component that needs to be rerendered in the browser properly added to the AjaxRequestTarget? mf Am 22.06.2009 um 13:45 schrieb Wayne Pope: The

Re: Reverse geocoding with wicket contrib gmap2

2009-06-18 Thread Martin Funk
Now that's getting quite JavaScript'isch, out of the box, this might not be possible. May I recap on this though, just to see if I got it right. A good starting point in this area to me allways seems to get aware of the runtime calling sequence and then think of the code that could set

Re: AjaxEventBehavior onclick for WebMarkupContainer Precondition Check

2009-06-17 Thread Martin Funk
since the error is thrown on the browser side a dump of the generated html source might be more helpful. try http://papernapkin.org/pastebin/home for posting that dump mf Am 17.06.2009 um 15:58 schrieb Justin Boyd: All, I have a simple application where I can change the size, position,

Re: AjaxEventBehavior onclick for WebMarkupContainer Precondition Check

2009-06-17 Thread Martin Funk
? I have firebug, but don't seem to see any JavaScript errors, although admittedly I don't know anything about using it for JavaScript debugging. Martin Funk-3 wrote: since the error is thrown on the browser side a dump of the generated html source might be more helpful. try http

Re: AjaxEventBehavior onclick for WebMarkupContainer Precondition Check

2009-06-17 Thread Martin Funk
=superDiv/div /body /html Martin Funk-3 wrote: ok, wrong wording on my side. i meant the html source of the page in the browser. mf -- View this message in context: http://www.nabble.com/AjaxEventBehavior-onclick-for-WebMarkupContainer-Precondition-Check-tp24074285p24076448.html Sent from

Re: AjaxEventBehavior onclick for WebMarkupContainer Precondition Check

2009-06-17 Thread Martin Funk
hm... lets see, the JavaScript in the Browser complains since: function() {return Wicket.$('superDiv2') != null;}.bind(this)) returns false. (its the precondition) It returns false since there is no dom element with the id 'superDiv2' in the page. I assume its the id of the div elements,

Re: AjaxEventBehavior onclick for WebMarkupContainer Precondition Check

2009-06-17 Thread Martin Funk
Am 17.06.2009 um 20:15 schrieb walnutmon: For the record, the call to super.onComponentTag(tag) fixed the issue. Awesome catch Martin! Thank you, your welcome. (and not to forget, I had my fun too) mf Martin Funk-3 wrote: hm... lets see, the JavaScript in the Browser complains

Re: spring dojo or wicket for 508 application

2009-06-11 Thread Martin Funk
how about: http://www.google.com/#hl=enq=508aq=foq=aqi=g10fp=JchEd6hFBSg Thnx to google I'm only half as dumb as I used to be. Cheers Korbinian whiskyworld.de Bachl :-) mf Am 11.06.2009 um 10:46 schrieb Korbinian Bachl - privat: dumb question: what is 508? tubin gen schrieb: My

Re: Component lifecycle question

2009-06-10 Thread Martin Funk
this is how free I felt: https://issues.apache.org/jira/browse/WICKET-2321 I'd be looking forward for that especially in the context of Ajax and keeping control over JavaScript objects on the browser side. Like components that induce the instation of JavaScript objects in the Browser.

Re: Component lifecycle question

2009-06-10 Thread Martin Funk
Martin Funk-3 wrote: this is how free I felt: https://issues.apache.org/jira/browse/WICKET-2321 I'd be looking forward for that especially in the context of Ajax and keeping control over JavaScript objects on the browser side. Like components that induce the instation of JavaScript objects

Re: AW: Custom HeaderContributor

2009-06-08 Thread Martin Funk
/script section. So my idea was to use my own, extended version of HeaderContributor. Just like I can have a own version of Session. But where can I direct Wicket to use my extended version of HeaderContributor? Von: Martin Funk [mailto:mafulaf

Re: Custom HeaderContributor

2009-06-07 Thread Martin Funk
Am 07.06.2009 um 18:43 schrieb Stefan Lindner: Is it possible to have a custom HeaderContributor? err... could you elaborate a little more? - To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org For additional

Component lifecycle question

2009-06-07 Thread Martin Funk
Hi list, in short: Why is there no Component#onRemove() method? I see that there is Component#onDetach() which is called by Component#remove(), so it might be a good candidate. But onDetach is also called at the end of every RequestCycle. I have things that I want to get done when a

Re: Automatically adding a parameter to every link?

2009-05-05 Thread Martin Funk
? Eyal Golan egola...@gmail.com Visit: http://jvdrums.sourceforge.net/ LinkedIn: http://www.linkedin.com/in/egolan74 P Save a tree. Please don't print this e-mail unless it's really necessary On Mon, May 4, 2009 at 1:06 PM, Martin Funk mafulaf...@googlemail.comwrote: maybe automatic multi

Re: Automatically adding a parameter to every link?

2009-05-04 Thread Martin Funk
maybe automatic multi window support might help you this can be turned on like this in the init method of your Application. /** * @see org.apache.wicket.protocol.http.WebApplication#init() */ @Override protected void init() {

Re: Wicketstuff-core issue

2009-05-04 Thread Martin Funk
Am 04.05.2009 um 19:32 schrieb Jeremy Thomerson: Regarding jetty - not sure - hopefully one of the Maven mavens will speak up. hmmm.. how about beeing a little more specific about the 'does not work for me' part. which command is issued on which codebase? svn info comes in hand for

Re: wicket-push project

2009-04-30 Thread Martin Funk
https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core Am 30.04.2009 um 15:15 schrieb Eman Nollase: Hello, As I browse to wicketstuff repository the wicket-push project is already gone? Thanks. Cheers.

Re: Registering 'global' Ajax listeners?

2009-04-23 Thread Martin Funk
Hi Liam, what is it that you'd like to achieve? On the server side, when executing protected abstract void respond(AjaxRequestTarget target); any component can be added to the target. mf Am 23.04.2009 um 00:43 schrieb Liam Clarke-Hutchinson: Hi, I have page with several child

Re: Which component for gmap for wicket 1.3.5?

2009-04-21 Thread Martin Funk
number 1) it evolved out of 2) mf 2009/4/20 Phillip Rhodes spamsu...@rhoderunner.com I see there are a couple gmap projects if I browse to the SVN repo for wicketstuff. http://wicketstuff.org/maven/repository/org/wicketstuff/ For example: 1) gmap2 (updated Mon, 20 Apr 2009) 2)

Re: google maps in wicket

2009-04-14 Thread Martin Funk
Hi Shiraz, gmap2-contrib has moved https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/ mf 2009/4/14 shiraz memon shiraz.li...@googlemail.com Hi I am a newbie to wicket and stumbled upon it via several websites and blogs, even I managed to run simple

Re: google maps in wicket

2009-04-14 Thread Martin Funk
regards, Shiraz On Tue, Apr 14, 2009 at 2:31 PM, Martin Funk mafulaf...@googlemail.com wrote: Hi Shiraz, gmap2-contrib has moved https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/ mf 2009/4/14 shiraz memon shiraz.li...@googlemail.com Hi I am a newbie

Re: id attribute of Component Tag in renderHead?

2009-04-08 Thread Martin Funk
look around in the area of HeaderContributor and how it is used in JavascriptPackageResource.getHeaderContributor and keep in mind, when implementing the method renderHead of class HeaderContributor, that IHeaderResponse contains a method .renderOnDomReadyJavascript( mf Am 08.04.2009 um

Re: London Wicket Event 01/04/09

2009-04-02 Thread Martin Funk
If you would have taken of at 14:35 you would have had time to drop by the tate galery. :-) beyond that I'd also like to thank Cemal and Al organizing that event and even helping with peoples traveling plans. I wonder how many people would have showed up if the G20 were not arround. Thank

Re: wicketstuff / ki / jsecurity

2009-03-25 Thread Martin Funk
Am 25.03.2009 um 10:17 schrieb nino martinez wael: The problem with wicket stuff have been cleared up a bit, the part about which projects are dead and not.. Those in wicketstuff-core are alive, and if they become incompatible with the current version of wicket they will be kicked.. are

Re: wicket - opensocial integration (with example code)

2009-03-12 Thread Martin Funk
I'd even ask for one step further. How about creating some quickstart with this and add it to wicketstuff. Not quite sure, maybe this script could be turned into a reusable HeaderContributor. mf Am 12.03.2009 um 03:23 schrieb Igor Vaynberg: Armin, maybe you should put this on our wiki page.

Re: Wicket meetup in Switzerland?

2009-02-20 Thread Martin Funk
Your commitment to this is too;-) Please don't get me wrong on this, but be agile. Initiate something scaleable. Do it in a way that it would be a success for you no matter how many people come. Just don't start complaining before taking real action. mf P.S.: I might be interested coming in

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread Martin Funk
maybe this helps. http://fisheye3.atlassian.com/browse/wicket-stuff/trunk/wicketstuff-core/pom.xml?r=4567#l383 maven obviously compiles with java version 1.3 if you use annotations you need to compile against 1.5 the maven compiler plugin needs to be configured as in the example above. mf

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread Martin Funk
:[36,38] cannot find symbol symbol : class Model location: class com.mycompany.HomePage /home/nic/myproject/src/main/java/com/mycompany/HomePage.java:[36,1] cannot find symbol symbol : variable form location: class com.mycompany.HomePage Martin Funk-3 wrote: maybe this helps

Re: Wicket newbie - Quickstart help required

2009-02-19 Thread Martin Funk
It's a forbidden link for me but I get the hint ;) will read up on Maven myself. Thanks for your help anyway. Nic Martin Funk-3 wrote: Maybe this spoon will feed you right: http://www.sonatype.com/download.php?file=books/maven-definitive-guide.pdf 2009/2/19 nicgould wic

Re: maven guru/wickstuff project maintainers..

2009-02-18 Thread Martin Funk
But those are only defined in profiles: 'bamboo' and 'wickettraining.com-continuum' are those profiles pulled for the builds? mf Am 18.02.2009 um 22:07 schrieb Jeremy Thomerson: Yes - all wicketstuff-core projects appear to be generating timestamped snapshots, which they shouldn't be.

Re: wicket-phonebook has been removed from svn ?

2009-02-04 Thread Martin Funk
http://www.nabble.com/Phonebook-Missing-td21454727.html#a21455120 Am 04.02.2009 um 16:08 schrieb cmoulliard: Hi, Can someone tell me where the project wicket-phonebook is located under svn because the following link mentioned on this page is not correct/ accurate

Re: Google Maps / GMap2?

2009-02-03 Thread Martin Funk
-examples/ after core is installed the examples should run with: mvn jetty:run in the examples directory. mf Am 03.02.2009 um 12:32 schrieb Fabrizio Giudici: Martin Funk wrote: Hi Fabrizio, basically this still holds true: http://www.nabble.com/where-is-wicket-contrib-gmap3-1.3.4-td20063260.html

Re: Google Maps / GMap2?

2009-02-02 Thread Martin Funk
Hi Fabrizio, basically this still holds true: http://www.nabble.com/where-is-wicket-contrib-gmap3-1.3.4-td20063260.html#a20064098 mf 2009/2/2 Fabrizio Giudici fabrizio.giud...@tidalwave.it I need to integrate Google Maps in my Wicket application. I searched in the Wiki and found GMap2 - but

Re: wicketstuff build question

2009-01-20 Thread Martin Funk
Wicket core corrected a typo in IHeaderResponse which changed the method signature. So gmap implementing that interface broke. I just corrected that, so in the svn repo it should be fine now. don't know how fast the build systems catch up on that. mf 2009/1/19 rossputin rossaj...@yahoo.co.uk

Re: Phonebook Missing

2009-01-14 Thread Martin Funk
look into wicketstuff-core https://wicket-stuff.svn.sourceforge.net/svnroot/wicket-stuff/trunk/wicketstuff-core/ mf 2009/1/14 Kevin Logue ke...@viableoptions.ie Hi I'm currently implementing a checkgroup within a datatable. After checking nabble, this has been done within the Wicket Stuff

Re: [GMAP2] Map can not display in AjaxTabbedPanel

2009-01-01 Thread Martin Funk
maybe this helps: http://fisheye3.atlassian.com/browse/wicket-stuff/trunk/wicketstuff-core/gmap2-parent/gmap2-examples/src/main/java/wicket/contrib/examples/gmap/many/ManyPage.java?r=4445#l45 2008/12/30 新希望软件 -- 俞宏伟 nhsoft@gmail.com first, sorry for my poor englist. in normal page, GMAP

Re: [VOTE] Consistent naming for Wicket Stuff projects

2008-11-28 Thread Martin Funk
[x] - YES - I would like consistent naming

Re: gmap2 and helper classes / methods?

2008-11-13 Thread Martin Funk
2008/11/12 Nino Saturnino Martinez Vazquez Wael [EMAIL PROTECTED] Hi I seem to be lacking some helper methods for finding out if a glatlng are in a gbounds etc.. Are there someone out there who has implemented anything or do I need to roll my own, and if the latter I guess I should provide a

Re: XMLHttpRequest.open(...)

2008-11-07 Thread Martin Funk
Hi Wilhelmsen, 2008/11/7 Wilhelmsen Tor Iver [EMAIL PROTECTED] that XMLHttpRequest.open(...) are disallowed if they target for another domain, than the one the document is in? Like disallowing cross-site calls? Yes, to avoid cross-site scripting attacks; remember Javascript has globally

  1   2   >