Nabble Hint - Escaping Blocks of HTML in posts

2007-10-01 Thread mchack
I got this as a response from Nabble support regarding ways to escape blocks of HTML in posts without having to escape each individual and with lt; and gt;. You can now escape HTML by putting it between and .

Nabble Hint - Escaping Blocks of HTML in Nabble Posts

2007-10-01 Thread mchack
I got this as a response from Nabble support regarding ways to escape blocks of HTML in posts without having to escape each individual and . http://www.nabble.com/What-is-the-best-way-to-include-html-markup-in-froum-posts--tf4430044.html#a12985836 You can now escape HTML by putting it between

Help - Best Practice - Mapping Database Constraint Violation to User Interface

2007-09-29 Thread mchack
Could someone provide a pointer/link as to the best mechanism to map DB constraint violations from Hibernate (or ORM layer) back to the user interface layer. I'm sure this has been solved but wasn't successful in searching for an answer. -Mike -- View this message in context:

Re: Clustering Question - Can the 2nd Level Page Cache be shared in a clustered filesystem configuration?

2007-09-28 Thread mchack
application server lock over the nodes when there are 2 or more request comming in from the same client? If not how does it then sync up again? How does it merge the pages? johan On 9/28/07, mchack [EMAIL PROTECTED] wrote: I am deploying my application in a clustered environment

Clustering Question - Can the 2nd Level Page Cache be shared in a clustered filesystem configuration?

2007-09-27 Thread mchack
I am deploying my application in a clustered environment. Eliminating session sticky load balancing would be an advantage for me. Session data is already replicated in a clustered environment. Are the mechanics in place to share the Page Cache with other machines if I use a clustered file system

Re: Clustering Question - Can the 2nd Level Page Cache be shared in a clustered filesystem configuration?

2007-09-27 Thread mchack
I am not sure I understand correctly. :) I thought the current page was serialized to the session and that the other pages or views were stored to the filesystem. So my question was really, if the filesystem where temporary pages are stored is shared, would Wicket be immune to requests coming in

Re: BookmarkablePageLink doesn't take advantage of pretty url for previously mounted pages when generating the URL

2007-09-25 Thread mchack
Beta3 is what I am running. I was also under the impression that href references that could be resolved to bookmarked pages would be done so automatically by the framework even if there were no explicit wicket:link tag? Not so in my case. Is this correct interpretation? -mike Eelco Hillenius

Re: BookmarkablePageLink doesn't take advantage of pretty url for previously mounted pages when generating the URL

2007-09-25 Thread mchack
Done: https://issues.apache.org/jira/browse/WICKET-1008 I will try and look at the code to see if I can identify the cause. Still coming up to speed with the framework so I may be of little help :( Mike Eelco Hillenius wrote: Beta3 is what I am running. Could you open a JIRA issue for

Re: Maven advice appreciated

2007-09-21 Thread mchack
Just discovered the reporting thanks. I will also try the effective pom report. Sounds cool. -Mike Martijn Dashorst wrote: Use the dependencies report. It gives you exactly which dependency comes from where. I think it also generates which dependencies are dupes. mvn site should create

Can't seem to include anchor tag in span with wicket:id - Help

2007-09-15 Thread mchack
Am I missing something very basic. I get a WicketMessage: Expected close tag for any time I include an anchor tag, or any tag with href in the preview markup. This can't be the case as it would make the preview markup very restrictive. Am I doing something really stupid. Markup:

Re: Can't seem to include anchor tag in span with wicket:id - Help

2007-09-15 Thread mchack
I think it is and I will post HTML but am having trouble escaping the HTML so it is viewable. Could you provide a hint as to how to include HTML in replies? Mike Stefan Simik wrote: Is your *.html template XML valid ? Can you post *.html illustration when this error occurs and when doesn't

Re: Can't seem to include anchor tag in span with wicket:id - Help

2007-09-15 Thread mchack
I am using beta2. I will give it a try with a later release and let you know what happens. -mike igor.vaynberg wrote: have you tried this with trunk? -igor -- View this message in context:

Re: Any way to apply wicket:link to a with contained img?

2007-09-12 Thread mchack
Here is what the markup looks like: wicket:link Schedule.html ical.jpg /wicket:link Error generated: WicketMessage: Component _autolink_16 must be applied to a tag of type 'a', not ' ical.jpg ' (line 0, column 0) Schedule.class is a mounted page which does get handled correctly in other

Re: Any way to apply wicket:link to a with contained img?

2007-09-12 Thread mchack
Hopefully viewable now !-- wicket:link Schedule.html ical.jpg /wicket:link -- Mike Eelco Hillenius wrote: Was wondering if there was an easy way - Hopefully without code to create a bookmarkable link where there is a contained image tag. Seems like from a usability standpoint this

Re: Any way to apply wicket:link to a with contained img?

2007-09-12 Thread mchack
( CalenderHeadLinesPanel.class, info.png); ajaxLink.add(new Image(info, infoImage)); But I agree thats not a oneliner... regards Nino mchack wrote: Hopefully viewable now !-- wicket:link Schedule.html ical.jpg /wicket:link -- Mike Eelco Hillenius wrote

BookmarkablePageLink doesn't take advantage of pretty url for previously mounted pages when generating the URL

2007-09-12 Thread mchack
Is there a reason for this? The wicket:link will generate the pretty url when it encounters pages that have been mounted. Just trying to understand if I am missing something in my understanding of the framework or if this is an oversight. Mike -- View this message in context:

Any way to apply wicket:link to a with contained img?

2007-09-11 Thread mchack
Was wondering if there was an easy way - Hopefully without code to create a bookmarkable link where there is a contained image tag. Seems like from a usability standpoint this would be very common and a little bit cumbersome if I have to do this in the backing code. Thanks -- View this message

Re: Any way to apply wicket:link to a with contained img?

2007-09-11 Thread mchack
I think it's a common case in most if not all web apps (hyperlinked images). It is so common that having to add code would cumbersome. I appreciate the component oriented aspect of the framework but really want to use it for more leveraged UI elements. I guess what I am looking to build is