Re: Unit-Test AjaxLazyLoadPanel on a page after successful load

2010-12-27 Thread Per Newgro

Thanks,

after i got it that i have to set the second parameter to the parent of 
my lazyload the tester worked.


Cheers
Per

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: [ANNOUNCE] Wicket 1.4.15 released

2010-12-27 Thread Daan van Etten
Hi Jeremy,

Nice to see more Wicket goodness!
One thing I noticed: the release tag is not (yet?) created in SVN.

Regards,

Daan van Etten

Op 24 dec 2010, om 16:14 heeft Jeremy Thomerson het volgende geschreven:

 The Wicket development team is proud to announce that we have released
 Wicket 1.4.15.  This is a bugfix and minor improvement release in the
 1.4.x (stable) branch.
 
 To download: http://www.apache.org/dyn/closer.cgi/wicket/1.4.15
 Release Tag: http://svn.apache.org/repos/asf/wicket/releases/wicket-1.4.15/
 Changelog: 
 https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12310561styleName=Htmlversion=12315900
 
 To use with Maven (the recommended way to use Wicket):
 
 dependency
   groupIdorg.apache.wicket/groupId
   artifactIdwicket/artifactId
   version1.4.15/version
 /dependency
 
 --
 Jeremy Thomerson
 http://wickettraining.com
 Need a CMS for Wicket?  Use Brix! http://brixcms.org
 
 -
 To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
 For additional commands, e-mail: users-h...@wicket.apache.org
 


-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org



Re: Mount a page to root path in wicket 1.5

2010-12-27 Thread phill


Martin Grigorov-4 wrote:
 
 See WICKET-3126. I attached a patch and unit tests.
 Now the Url is stable - always /.
 
 The problem comes when the user application wants to re-map to different
 class than application#getHomePage - MountedMapper(/, ...) believes that
 *all* requests to bookmarkable pages (/wicket/bookmarkable/com.xyz.MyPage)
 are targeted to / and the rest are indexed parameters...
 So it is not quite true what I said in my previous mail.
 

With 1.5-M3 doing mountPage(/, getHomePage()) seems to mess up the paths
to my CSS files, both in the homepage and elsewhere. I'm using a behaviour
to add the links relative to context root:

public void renderHead(IHeaderResponse response) {
response.renderCSSReference(css/main.css, screen projection);
} 
With home page mounted on / gives this link which is incorrect and doesn't
take into account the context root.
link rel=stylesheet type=text/css href=css/main.css media=screen
projection /

With the default home page mount context
root/wicket/bookmarkable/com.xyz.MyHomePage the link is as follows and
works fine.
link rel=stylesheet type=text/css href=../../css/main.css
media=screen projection /
-- 
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/Mount-a-page-to-root-path-in-wicket-1-5-tp3003270p3165707.html
Sent from the Users forum mailing list archive at Nabble.com.

-
To unsubscribe, e-mail: users-unsubscr...@wicket.apache.org
For additional commands, e-mail: users-h...@wicket.apache.org