Re: Can one avoid the pagmap name in the url

2009-07-14 Thread okrohne
Hi, if I could force to use the pagemap name (e.g. igramed) in the the iframed pages (and in those urls) which extends also a different Template then the pages on the main website would use the default pagemap and the pagemap name would not be displayed in the url. Right? Is there a way to

Re: Can one avoid the pagmap name in the url

2009-07-14 Thread Johan Compagner
we already have session unique pageid's: getApplication().getSessionSettings().isPageIdUniquePerSession() Then you dont have to have pagemap or enable the multi window support You only need that if you really want to now that users uses different tabs. Wicket doesnt really need it anymore then

Re: Can one avoid the pagmap name in the url

2009-07-14 Thread okrohne
Hi, does the setting getApplication().getSessionSettings() changes the behavior regarding memory/disk space requirements ? Can you please explain what this setting achieves? Thanks, Oliver I already have this option turned on, jcompagner-2 wrote: we already have session unique

Re: Can one avoid the pagmap name in the url

2009-07-14 Thread Johan Compagner
no it doesnt. if you make sure that the pageid is unique across the session then you dont need pagemaps. And you can hold everything in 1 pagemap. And if you do that then make sure then all he pages go into 1 pagemap then make sure that: * public * DiskPageStore(*int* maxSizePerPagemap, *int*

Re: Can one avoid the pagmap name in the url

2009-07-13 Thread Igor Vaynberg
not sure if storing in a cookie would work easily. we would still have to keep the cookie name somewhere...and so you are back to adding that to the url. i think in 1.5 what we can do is make the page id unique across all pagemaps and keep the mapping in session. not sure how easy that would be