Re: [Wicket-user] How to change the html tag?

2007-07-13 Thread Juergen Donnerstag
This has been fixed in 1.3. Which version are you using? Juergen On 7/13/07, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * mperham: I have a Wicket application which supports 10 different languages. We need to dynamically add the current locale tag to the html tag like this: html

Re: [Wicket-user] Is it possible to test Wicket templates out-of-container?

2007-07-12 Thread Juergen Donnerstag
On 7/13/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 7/12/07, mraible [EMAIL PROTECTED] wrote: Is it possible to expire the page cache with JMX? Or even better, expire individual pages from the cache with JMX? i dont think so, but i also dont think it will be very difficult to

Re: [Wicket-user] What is AutoLinkResolver and why this error

2007-07-11 Thread Juergen Donnerstag
] wrote: ok the error goes away when i remove the img.../ and i am using wicket 1.2.4 On 7/11/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: From the javadoc /** * The AutoLinkResolver is responsible to handle automatic link resolution. Tags * are marked autolink

Re: [Wicket-user] What is AutoLinkResolver and why this error

2007-07-10 Thread Juergen Donnerstag
From the javadoc /** * The AutoLinkResolver is responsible to handle automatic link resolution. Tags * are marked autolink by the MarkupParser for all tags with href attribute, * such as anchor and link tags with no explicit wicket id. E.g. lt;a * href=Home.htmlgt; * p * If href points to a

Re: [Wicket-user] ugrade from wicket 1.2.4 to 1.3.0

2007-07-10 Thread Juergen Donnerstag
wicket wiki is good source for information: http://cwiki.apache.org/WICKET/migrate-13.html Juergen On 7/11/07, kenixwong [EMAIL PROTECTED] wrote: hi, any impact if i ugrade from wicket 1.2.4 to 1.3.0? Is that only replace the 1) wicket-auth-roles-1.3.0-beta2.jar 2)

Re: [Wicket-user] MarkupException using a fragment with a TabbedPanel

2007-07-09 Thread Juergen Donnerstag
Provided I'm not mistaken there is a jira issue for it and it has already been fixed in 1.3 trunk. It won't get fixed in 1.2.x. https://issues.apache.org/jira/browse/WICKET-721 Juergen On 7/10/07, mperham [EMAIL PROTECTED] wrote: Any progress on this? I just hit this bug this afternoon and

Re: [Wicket-user] resource key priority

2007-07-08 Thread Juergen Donnerstag
According to the source code your observation is correct. I've no good reason why we implemented it this way. Juergen // Walk the component hierarchy down from page to the component for (int i = searchStack.size() - 1; (i = 0) (string == null); i--)

Re: [Wicket-user] [Fwd: Re: html wicket:id=html CSS]

2007-06-24 Thread Juergen Donnerstag
the page to html tag and the entire ibehavior should make sense i think. -igor On 6/23/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: Jan, the problem is that though you can attach attribute modifier (that is what HeaderContributor is as well) to a Page (or WebPage

Re: [Wicket-user] cannot add CSS to web page?

2007-06-24 Thread Juergen Donnerstag
All behaviors are invoked from Component.onComponentTag(). When a web page renders it does not call onComponentTag() for the page, as the page has no associated markup tag. That means, though you can do add(HeaderContributor.forCss()) (assume you are adding to a page) nothing will happen. The CSS

Re: [Wicket-user] [Fwd: Re: html wicket:id=html CSS]

2007-06-24 Thread Juergen Donnerstag
yes, this a valid comment. The html component is causing the problem. The header contribution code has obviously been designed in a way that it expects to be the very first contribution to the pages output markup. With the html component it no longer is, since the html tag must be rendered first

Re: [Wicket-user] cannot add CSS to web page?

2007-06-24 Thread Juergen Donnerstag
the head tag causes the problem I don't know yet. Juergen On 6/24/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: All behaviors are invoked from Component.onComponentTag(). When a web page renders it does not call onComponentTag() for the page, as the page as no associated markup tag. That means

Re: [Wicket-user] html wicket:id=html CSS]

2007-06-24 Thread Juergen Donnerstag
On 6/24/07, Jan Kriesten [EMAIL PROTECTED] wrote: hi juergen, yes, this a valid comment. The html component is causing the problem. The header contribution code has obviously been designed in a way that it expects to be the very first contribution to the pages output markup. With the

Re: [Wicket-user] cannot add CSS to web page?

2007-06-24 Thread Juergen Donnerstag
(HeaderContributor.forCss()) works as long as we don't have that check that throws exception when you add behavior to page. -Matej On 6/24/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: Jan - in the other thread - quite rightly pointed out that HeaderContribution does work on pages. It only does not work

Re: [Wicket-user] setBorderBodyContainer in 1.3

2007-06-23 Thread Juergen Donnerstag
] wrote: juergen, there are two of you in jira, which makes it hard to assign issues. do you think you can work it out with asf infrastructure group to remove the account you no longer use? -igor On 6/21/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: This feature has not yet been

Re: [Wicket-user] [Fwd: Re: html wicket:id=html CSS]

2007-06-23 Thread Juergen Donnerstag
Jan, the problem is that though you can attach attribute modifier (that is what HeaderContributor is as well) to a Page (or WebPage), it'll not work. WebPage doesn't have a tag. Since there is no tag, the attribute modifier are not invoked, hence the nothing gets added to the header section.

Re: [Wicket-user] setBorderBodyContainer in 1.3

2007-06-23 Thread Juergen Donnerstag
please keep the jdonnerstag for wicket. thanks Juergen On 6/23/07, Igor Vaynberg [EMAIL PROTECTED] wrote: On 6/23/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: I asked the infrastructure group already. Unfortunately without success. The reason being that both are in use (even

Re: [Wicket-user] html wicket:id=html CSS

2007-06-22 Thread Juergen Donnerstag
I'll try my best to find some spare time to do it. Hopefully over the weekend. I already tried to open your tar.gz with Winzip 10, unfortunately winzip only comes up with an error. Could you please either zip them or send them to me separately. Thanks. Juergen On 6/21/07, Jan Kriesten [EMAIL

Re: [Wicket-user] setBorderBodyContainer in 1.3

2007-06-22 Thread Juergen Donnerstag
This feature has not yet been backported to 1.3 the reason being that we first need to backport all of the markup fragment/render changes. That will not happen in 1.3. yes, open a jira issue please. Juergen On 6/21/07, Igor Vaynberg [EMAIL PROTECTED] wrote: open a jira issue please -igor

Re: [Wicket-user] html wicket:id=html CSS

2007-06-19 Thread Juergen Donnerstag
Please see the jira issue. I was not able to reproduce it with the latest 1.3 trunk. SimplePageTest_13 at least shows that header contributions seems to work ok. If you could modify this test and proof your point, that would be very helpful. Juergen On 6/19/07, Jan Kriesten [EMAIL PROTECTED]

Re: [Wicket-user] html wicket:id=html CSS

2007-06-19 Thread Juergen Donnerstag
Java public SimplePage_13() { // Component header = new WebMarkupContainer(html); Component header = new AjaxLink(html, new Model(test)) { private static final long serialVersionUID = 1L;

Re: [Wicket-user] turning off markup validation

2007-06-08 Thread Juergen Donnerstag
is there (when there are subitems for current item), for all the rest the visibility of span is set to false. Vitek Juergen Donnerstag wrote: Why do you need the fragments at all? The fragments body is a constant text, correct? You don't change it, you don't change the visibility. Juergen

Re: [Wicket-user] turning off markup validation

2007-06-07 Thread Juergen Donnerstag
Why do you need the fragments at all? The fragments body is a constant text, correct? You don't change it, you don't change the visibility. Juergen On 6/7/07, Ví­t Rozkovec [EMAIL PROTECTED] wrote: Good day, one more issue - is there some way how to turn of markup validation? In my template I

Re: [Wicket-user] wicket did not make the grade.

2007-06-05 Thread Juergen Donnerstag
This is not very difficult to implement. The displaytag example in wicket-examples used to have it and it was based on ListView. But I think we removed it since Repeater/DataView etc from wicket-extension is more flexible and elegant and our preferred approach for most table type implementation. I

Re: [Wicket-user] wicket:message for attributes?

2007-06-05 Thread Juergen Donnerstag
Please see the javadoc for WicketMessageTagHandler Juergen On 6/5/07, Jonathan Locke [EMAIL PROTECTED] wrote: Is there something like wicket:message for localizing attributes like title tooltips? I looked on the WIKI but there wasn't anything there. -- View this message in context:

Re: [Wicket-user] Making custom MessageResolver

2007-06-04 Thread Juergen Donnerstag
The current implementation in 1.3 trunk does setEscapeModelString(false) (see WicketMessageResolver(line 130) I haven't yet understood why you want to add either the Label and/or the Link via the IComponentResolver? Why not make the Link a std component like a wicket:id=myLink href=#

Re: [Wicket-user] Custom Message Resolver

2007-06-02 Thread Juergen Donnerstag
The namespace of the attribute? You are right, there is no special methof for it.You need to check that the attribute name starts with your own namespace. Juergen On 5/21/07, Scott Sauyet [EMAIL PROTECTED] wrote: I wrote: I see the experimental class WicketMessageTagHandler and note that it's

Re: [Wicket-user] RepeatingView/ Container behaviour

2007-06-02 Thread Juergen Donnerstag
Wich wicket version did you use for your test? I remember I fixed a similar bug a few week ago. I don't remember the details though. Juergen On 5/28/07, Korbinian Bachl [EMAIL PROTECTED] wrote: Hi Eelco, tried it, but this seems to go more buggy than before: if I use wicket:container

Re: [Wicket-user] Custom Message Resolver

2007-05-17 Thread Juergen Donnerstag
Wicket is very flexible and modular. You can write your own MyWicketMessageResolver and register it with the application. How to do it? Just see how WicketMessageResolver is registered. It is realy simple. I don't see how IComponentResolver can help you, but may I missed the point. Looking at

Re: [Wicket-user] Need to reload app in tomcat aftering adding a variant markup

2007-05-16 Thread Juergen Donnerstag
in production? -igor On 5/16/07, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Juergen Donnerstag: This is true, but I understand Chris has a general need for markup reloading in production as well (though I haven't understood yet how Chris creates the markup

Re: [Wicket-user] Need to reload app in tomcat aftering adding a variant markup

2007-05-15 Thread Juergen Donnerstag
I hoping to be able to modify MarkupCache.loadMarkupAndWatchForChanges in a way that it not only checks if existing files have changed but also that not-found entries are checked by ModificationWatcher. Juergen On 5/15/07, Igor Vaynberg [EMAIL PROTECTED] wrote: im not so sure we should address

Re: [Wicket-user] Need to reload app in tomcat aftering adding a variant markup

2007-05-15 Thread Juergen Donnerstag
application. Juergen On 5/15/07, Igor Vaynberg [EMAIL PROTECTED] wrote: but the modification watcher is disabled in deployment mode, so this is a fix only in dev mode? -igor On 5/15/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: I hoping to be able to modify

Re: [Wicket-user] Autolinkresolver within Panel code

2007-05-14 Thread Juergen Donnerstag
without using base- and childpages. It's just that the error message on the child page displays the combined markup. .rue 2007/5/14, Juergen Donnerstag [EMAIL PROTECTED]: A quickstart would be great -Juergen On 5/14/07, Rüdiger Schulz [EMAIL PROTECTED] wrote: Hello, I am

Re: [Wicket-user] Autolinkresolver within Panel code

2007-05-13 Thread Juergen Donnerstag
A quickstart would be great -Juergen On 5/14/07, Rüdiger Schulz [EMAIL PROTECTED] wrote: Hello, I am currently migrating my application from 1.2 to 1.3 Snapshot. So far this went very well. But now I have a little problem: All my pages are subclassed from a common basepage. That page has a

Re: [Wicket-user] Formatting non-html templates

2007-04-27 Thread Juergen Donnerstag
tag wicket:id=test-labeltest/tag wicket will output this: tagtest/tag and now component.setRenderBodyOnly(true) Juergen - This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2

Re: [Wicket-user] Formatting non-html templates

2007-04-26 Thread Juergen Donnerstag
You know that you can remove all tag from output, do you? To remove wicket:xx is simply a matter of settings and all other tags (e.g. span wicket:id=..) can be removed by subclassing onComponentTag and not output anything. Juergen On 4/27/07, David Leangen [EMAIL PROTECTED] wrote: Just to be

Re: [Wicket-user] Export to CSV encoding problem

2007-04-16 Thread Juergen Donnerstag
Unlike XML, CSV files don't have a tag or any other option to tell which encoding the characters are. Hence Word, Excel etc are assuing the encoding is equal to you computers default encoding (CP1259 in Germany). Some programms are more intelligent than others and recognize if certain byte codes

Re: [Wicket-user] localized resource property file - fallback to default?

2007-04-08 Thread Juergen Donnerstag
Wicket does not only fall back to the default. It iterates over a long list of property filenames which are created from the component tree, locale, style and variation. Juergen On 4/8/07, Wilko Hische [EMAIL PROTECTED] wrote: Hi Erik, Wicket does fall back to the default *file* but what

Re: [Wicket-user] Using Border without wicket:border and wicket:body tags?

2007-04-08 Thread Juergen Donnerstag
There are always possibilities. Take a look at the Border.java component to implement the functionalities and if you find a way how to do it, I'm certainly interested. And if you find a way to make the Border.java code more easy, I'm even more interested. However since by stripping wicket tags and

Re: [Wicket-user] localized resource property file - fallback to default?

2007-04-08 Thread Juergen Donnerstag
files that are almost identical. Wilko Juergen Donnerstag wrote: Wicket does not only fall back to the default. It iterates over a long list of property filenames which are created from the component tree, locale, style and variation. Juergen On 4/8/07, Wilko Hische [EMAIL

Re: [Wicket-user] locale filtering

2007-03-25 Thread Juergen Donnerstag
I'm not aware of any better way. It sounds reasonable simple to me. Juergen On 3/25/07, Kent Tong [EMAIL PROTECTED] wrote: Hi, If a given web app only supports say English (default) and French but the browser prefers German the most, then the getLocale() on the request will return German

Re: [Wicket-user] Reverting the constructor change of 2.0

2007-03-10 Thread Juergen Donnerstag
I didn't have much time in the recent to actually work on apps based on Wicket, neither 1.x not 2.x. Thus I have no experience wih either and no preference regarding the constructor change. I go with what the experts decide. In 2.x there two more changes which have not yet been backported into

Re: [Wicket-user] WicketTester message resolution

2007-03-08 Thread Juergen Donnerstag
You are using 1.2.x? To me it sounds like a bug that WicketTester or MockWebApplication does not look into the application properties file as a normal Application does. We should simply look at the config of normal application and copy the one line of config into WicketTester. Juergen On 3/7/07,

Re: [Wicket-user] RequestCycle ThreadLocal

2007-03-02 Thread Juergen Donnerstag
Why Do you want to create a Page in a separate thread? I floading the page take a long time, it usually is the model data which takes the time. Move loading the data into a separate thread if really necessary. Juergen On 3/2/07, Robert . [EMAIL PROTECTED] wrote: Hi, I am using Wicket 1.2.5 I

Re: [Wicket-user] there is no way to preprocess raw markup in wicket 1.1?

2007-02-19 Thread Juergen Donnerstag
search for IMarkupFilter Juergen On 2/19/07, wouvlfe [EMAIL PROTECTED] wrote: oops, should have been more clear about what i want to do i want to be able to preprocess some of the tags (that do not have wicket ids) in the markup and modify them if necessary example: modify the original

Re: [Wicket-user] VOTE on wicket:component

2007-02-15 Thread Juergen Donnerstag
wicket:container is available for 2.x. Juergen On 2/14/07, Rüdiger Schulz [EMAIL PROTECTED] wrote: Jonathan Locke schrieb: [X] Delete this unimportant and generally unsupported feature [ ] Keep wicket:component, but define its limits, document it on the wiki as fully supported and

Re: [Wicket-user] VOTE on wicket:component

2007-02-13 Thread Juergen Donnerstag
[X] Delete this unimportant and generally unsupported feature Juergen On 2/13/07, Jonathan Locke [EMAIL PROTECTED] wrote: Our Wiki describes the wicket:component tag as follows: wicket:component - Creates a Wicket component on the fly. Needs a class attribute. Though this has been in

Re: [Wicket-user] Using own localizer

2007-02-01 Thread Juergen Donnerstag
Localizer is meant to be a realy thin layer mainly providing easy to use access helpers. Flexibility is meant to come from ResourceStreamLocators and ResourceStreamFinder. In 1.x the searchStack is still part of Localizer. In 2.x it has been moved into the ResourceStreamFactory (used to be

Re: [Wicket-user] cd app site is down

2007-01-28 Thread Juergen Donnerstag
It is not down for me. Juergen On 1/28/07, Johan Compagner [EMAIL PROTECTED] wrote: can we easily also build the examples automatic and host them on wicket stuff server? johan On 1/28/07, nilo.de.roock [EMAIL PROTECTED] wrote: don't know who maintains the site but it is down...

Re: [Wicket-user] Groovy integration? Scripting languages

2007-01-26 Thread Juergen Donnerstag
More wasnt need to integrate Groovy. Why does everything need tons of classes? I know for sure that an example existed in one of the example projects. Juergen On 1/26/07, nilo.de.roock [EMAIL PROTECTED] wrote: Is it correct that the groovy integration contribution consists of -

Re: [Wicket-user] from ResourceStreamLocator to ResourceStreamFactory in Wicket trunk

2007-01-22 Thread Juergen Donnerstag
) Thanks for any help. By the way, I think Jonathan is right that instead of the locate() method, it's nicer to be named newXXX() On 14/01/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: Please see CustomResourceStreamFactory in the custom resource loading examples for how it works

Re: [Wicket-user] MissingResourceException

2007-01-15 Thread Juergen Donnerstag
Which wicket version are you using? You are not running out of open files, do you? Are you running the application in development or deployment mode? Juergen On 1/15/07, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: I always get this exception after a while of running my wicket application. It

Re: [Wicket-user] Wicket Exceptions

2007-01-15 Thread Juergen Donnerstag
Which version are you using? Juergen On 1/15/07, Ayodeji Aladejebi [EMAIL PROTECTED] wrote: We are hosting a project based on wicket and we have done a series of test deployments that seem to work very fine. However we did an upgrade and we are consistently getting this error. any idea as

Re: [Wicket-user] Wicket Exceptions

2007-01-15 Thread Juergen Donnerstag
Why is the exception swallowed? Finally doesnt swallow it. Juergen On 1/15/07, Johan Compagner [EMAIL PROTECTED] wrote: do you have a quickstart? can you see what version do you use? (390 is not a code line in the code i am now looking at) But looking at the code around that line: try

Re: [Wicket-user] Wicket Exceptions

2007-01-15 Thread Juergen Donnerstag
null) johan On 1/15/07, Juergen Donnerstag [EMAIL PROTECTED] wrote: Why is the exception swallowed? Finally doesnt swallow it. Juergen On 1/15/07, Johan Compagner [EMAIL PROTECTED] wrote: do you have a quickstart? can you see what version do you

Re: [Wicket-user] skandinavian characters encoding lost...

2007-01-15 Thread Juergen Donnerstag
http://cwiki.apache.org/WW/how-to-support-utf-8-uriencoding-with-tomcat.html Juergen On 1/15/07, Nino Wael [EMAIL PROTECTED] wrote: Actually I also remember asking about this before, hmm... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Erik van

Re: [Wicket-user] from ResourceStreamLocator to ResourceStreamFactory in Wicket trunk

2007-01-14 Thread Juergen Donnerstag
Please see CustomResourceStreamFactory in the custom resource loading examples for how it works, or OsgiResourceStreamFactory as another example. You simply extend ResourceStreamFactory, subclass the appropriate locate() method (you usually must not forget to call super.locate()) and register your

Re: [Wicket-user] from ResourceStreamLocator to ResourceStreamFactory in Wicket trunk

2007-01-14 Thread Juergen Donnerstag
it be newResourceStream? Juergen Donnerstag wrote: Please see CustomResourceStreamFactory in the custom resource loading examples for how it works, or OsgiResourceStreamFactory as another example. You simply extend ResourceStreamFactory, subclass the appropriate locate() method (you

Re: [Wicket-user] AbstractStringResourceStream content type bug

2007-01-06 Thread Juergen Donnerstag
The contenttype of the _markup_ resource stream is not used for rendering the output. In fact, content type for _markup_ resource streams is not used at all. Please use WebPage.configureResponse() on how to change the output content type. Juergen On 1/5/07, Ryan Sonnek [EMAIL PROTECTED] wrote:

Re: [Wicket-user] Unexpected RuntimeException

2006-12-23 Thread Juergen Donnerstag
I don't think it is the jar alone, I'm using jar as well and I don't get the exception. But I think you asked the right question: What is causing the xmlReader object to be null? Obviously iit happens while closeing the parser, which means that it started parsing (with a none-null parser object)

Re: [Wicket-user] Associating markup

2006-12-11 Thread Juergen Donnerstag
wicket:component is not realy supported and it is not working at all in 2.0 (yet). Doesn't javadoc mention that it is experimental? Juergen On 12/11/06, Matthijs Wensveen [EMAIL PROTECTED] wrote: Hi, I'm trying to create a generic Form component with its own markup. I was under the impression

Re: [Wicket-user] Who knows what happen to wicket Library ?

2006-11-27 Thread Juergen Donnerstag
It's up again. Sorry. Juergen On 11/27/06, JFC [EMAIL PROTECTED] wrote: http://www.wicket-library.com/ It seems this website is crashed? JFC Hsieh - Take Surveys. Earn Cash. Influence the Future of IT Join

Re: [Wicket-user] 1 app, 2 HomePages. 1 public, 1 logged-in

2006-11-24 Thread Juergen Donnerstag
Please don't use the sourceforge list anymore. We migrated to apache. On 11/25/06, Robert McClay [EMAIL PROTECTED] wrote: I have an app that has a public section and a logged-in section. If the session expires for a logged-in user, I'd like to direct him to the login. If a page expires for a

Re: [Wicket-user] Where can I find source package of wicket?

2006-11-23 Thread Juergen Donnerstag
http://wicket.sourceforge.net/source-repository.html On 11/24/06, Carfield Yim [EMAIL PROTECTED] wrote: There is only binary package at http://sourceforge.net/project/showfiles.php?group_id=119783 , just wonder where can I find source package?

Re: [Wicket-user] Question about XML processing in wicket

2006-11-23 Thread Juergen Donnerstag
And what do want to achieve? What is the input markup and what your expected output markup? Juergen On 11/24/06, Carfield Yim [EMAIL PROTECTED] wrote: Just wonder can I fill the wicket template directly from xml tag, say I have an xml like body tag1value1/tag1 tag2value2/tag2 /body

Re: [Wicket-user] Just wonder how everybody manage the image path when using wicket?

2006-11-19 Thread Juergen Donnerstag
Please take a look at the examples. They are usually a good source for informaton. As far as I can tell, in Wicket you don't need it, at least I didn't. Juergen On 11/19/06, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Carfield Yim: Astheuserwill deploytheapplication

Re: [Wicket-user] Just wonder how everybody manage the image path when using wicket?

2006-11-19 Thread Juergen Donnerstag
ApplicationSettings.getContextPath() and PrependContextPathHandler Juergen On 11/19/06, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Juergen Donnerstag: Please take a look at the examples. They are usually a good source for informaton. As far as I can tell, in Wicket you don't

Re: [Wicket-user] Just wonder how everybody manage the image path when using wicket?

2006-11-19 Thread Juergen Donnerstag
That is added by default Juergen On 11/19/06, Jean-Baptiste Quenot [EMAIL PROTECTED] wrote: * Juergen Donnerstag: ApplicationSettings.getContextPath() and PrependContextPathHandler Thanks Juergen, PrependContextPathHandler seems to be what we are looking for indeed. But what does

Re: [Wicket-user] Why add(IBehavior) is final?

2006-11-11 Thread Juergen Donnerstag
Please change javadoc as well if you remove final (describe in short the use case). In general I'm very very careful in opening things up. Juergen On 11/10/06, Eelco Hillenius [EMAIL PROTECTED] wrote: Yeah. Erik, I see your point for the general case, but Alberto's case - which I have myself

Re: [Wicket-user] Can I tell the application use UTF-8 without change servlet container?

2006-11-09 Thread Juergen Donnerstag
Wicket default is UTF-8. The problem is that e.g. Tomcat _requires_ some specific configuration as well. Wicket can do anything about it. Juergen On 11/9/06, Carfield Yim [EMAIL PROTECTED] wrote: Hi, I would like to use UTF-8 whatever the servlet container setup, so that I don't need to change

Re: [Wicket-user] mapping application to /

2006-11-05 Thread Juergen Donnerstag
There is no need to use /*. In fact it is the least favourable solution. Take a look at the examples. Juergen On 11/5/06, ryan mckinley [EMAIL PROTECTED] wrote: I'm trying to build my first real app using wicket and am looking for advice on how to structure it. I expect it will have

Re: [Wicket-user] mapping application to /

2006-11-05 Thread Juergen Donnerstag
apologize if this is super basic) On 11/5/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: There is no need to use /*. In fact it is the least favourable solution. Take a look at the examples. Juergen On 11/5/06, ryan mckinley [EMAIL PROTECTED] wrote: I'm trying to build my first real

Re: [Wicket-user] BodyContributor?

2006-11-05 Thread Juergen Donnerstag
getPage().getBodyContainer().addXXX to add AttributeModifiers. If your Panel markup requires to contribute to body onload or onunload than simply add a body tag to the panel markup including the attrs. They'll be copied to the pages body tag. And wicket:head in a panels markup can be used if the

Re: [Wicket-user] BodyContributor?

2006-11-05 Thread Juergen Donnerstag
the body close tag); } } } Juergen On 11/5/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: getPage().getBodyContainer().addXXX to add AttributeModifiers. If your Panel markup requires to contribute to body onload or onunload than simply add a body tag to the panel markup

Re: [Wicket-user] Wicket Hosting?

2006-11-03 Thread Juergen Donnerstag
There is no specific requirement which Wicket imposes on the provider. Use any provider you like. wicket-library is hosted at Kattare, which works well. No real problems so far. Juergen On 11/3/06, Jonathan Sharp [EMAIL PROTECTED] wrote: What wicket friendly hosting providers would people

Re: [Wicket-user] Programmatically/Dynamically change html

2006-11-02 Thread Juergen Donnerstag
The question is how flexible you want to be. If the Components such as Label, Link etc stay the same and only the html markup changes, than you might use Component.setVariation(). It is similar to Locale and Style but it is a per component setting. The markup file name than become

Re: [Wicket-user] Live wicket examples demo

2006-10-31 Thread Juergen Donnerstag
to time... Perhaps gremlins. =) Ryan On 10/30/06, Johan Compagner [EMAIL PROTECTED] wrote: yes it seems to be a browser with no javascript or something like that (the fallback was clicked on and onClick(ajaxtarget) doesn't seem to check for null On 10/30/06, Juergen Donnerstag

Re: [Wicket-user] Live wicket examples demo

2006-10-30 Thread Juergen Donnerstag
Thanks for pointing out, I'm not monitoring it every day I must admit. Unfortunately I've no access right now, but will fix it in 2-3 hrs. Juergen On 10/30/06, Ryan [EMAIL PROTECTED] wrote: I am evaluating the wicket framework for a new project and so far I have been very impressed with the

Re: [Wicket-user] Removal of the final attribute for WebRequestCodingStrategy.urlPrefix(RequestCycle)

2006-10-30 Thread Juergen Donnerstag
Only my 2c. OSGI is a framework which we want to support out-of-the-box. IMO we should rather check whether I our current implementation make sense or whether it is inconsistent. I want to remove final from urlPrefix only if realy necessary. Removing final sound to me like a workaround for an isue

Re: [Wicket-user] Live wicket examples demo

2006-10-30 Thread Juergen Donnerstag
I haven't seen any other user mentioning outages. Though Kattare is not perfect they provide good support and fast support and it is for free. Juergen On 10/30/06, Igor Vaynberg [EMAIL PROTECTED] wrote: juergen you didnt asnwer the second part of the question :) -igor On 10/30/06, Juergen

Re: [Wicket-user] Live wicket examples demo

2006-10-30 Thread Juergen Donnerstag
It is up again Juergen On 10/30/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: I haven't seen any other user mentioning outages. Though Kattare is not perfect they provide good support and fast support and it is for free. Juergen On 10/30/06, Igor Vaynberg [EMAIL PROTECTED] wrote

Re: [Wicket-user] Live wicket examples demo

2006-10-30 Thread Juergen Donnerstag
Vaynberg [EMAIL PROTECTED] wrote: i meant the part where he asked if it was wicket's fault :) -igor On 10/30/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: I haven't seen any other user mentioning outages. Though Kattare is not perfect they provide good support and fast support

Re: [Wicket-user] how to get as string the page's rendered markup

2006-10-28 Thread Juergen Donnerstag
I guess you want it for debugging purpposes? There are lots of tools out there which allow you to monitor the traffic. Fiddler e.g. is such a tool (open source) Juergen On 10/28/06, Otan [EMAIL PROTECTED] wrote: I want to save into a file the wicket page's renderded markup before it respond to

Re: [Wicket-user] wicket tracking/ controlling

2006-10-28 Thread Juergen Donnerstag
It is not better and not worse with Wicket, each web app framework has the same issue here. Just the details are different. Have a look at RequestLogger.java Juergen On 10/28/06, Korbinian Bachl [EMAIL PROTECTED] wrote: Hi, im not sure how to adress this thing with wicket: if you make a

Re: [Wicket-user] wicket tracking/ controlling

2006-10-28 Thread Juergen Donnerstag
PROTECTED] wrote: you cant point me to any article about that ? - i looked at the java-docs for 1.2 branch but didnt understand how this leads to a hook for tracking. -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Juergen Donnerstag

Re: [Wicket-user] how to get as string the page's rendered markup

2006-10-28 Thread Juergen Donnerstag
, in place of dynamic wicket pages. But I have no idea how to get the HTML source that a wicket page renders. On 28/10/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: I guess you want it for debugging purpposes? There are lots of tools out there which allow you to monitor the traffic. Fiddler

Re: [Wicket-user] wicket tracking/ controlling

2006-10-28 Thread Juergen Donnerstag
:[EMAIL PROTECTED] Im Auftrag von Juergen Donnerstag Gesendet: Samstag, 28. Oktober 2006 11:13 An: wicket-user@lists.sourceforge.net Betreff: Re: [Wicket-user] wicket tracking/ controlling When you go to the example, there is this little red (i) in the top left corner. It'll open a page

Re: [Wicket-user] component internally generating AND binding wicket markup?

2006-10-26 Thread Juergen Donnerstag
In V2.0 it will be possible by subclassing getMarkupFragment(String id). Don't think it'll be easy in 1.2 Juergen On 10/26/06, Wouter Huijnink [EMAIL PROTECTED] wrote: Hi list, We have a domain class containing an XML string that needs to be transformed to XHTML, but we'd like to have a

Re: [Wicket-user] embed src ... /

2006-10-26 Thread Juergen Donnerstag
embed.setVisible(false) Juergen On 10/26/06, Michael Welter [EMAIL PROTECTED] wrote: I have an html table with several columns. One column is an audio recording: tr wicket:id=responses class=even tdembed wicket:id=recording type=audio/x-wav src= height=50 width=100

Re: [Wicket-user] varying the presentation of a Panel...

2006-10-26 Thread Juergen Donnerstag
exactly, style is a per session setting whereas variation is a per component setting. Juergen On 10/26/06, Pierre-Yves Saumont [EMAIL PROTECTED] wrote: I forgot this: to switch styles, use Session.setStyle(). Pierre-Yves Pierre-Yves Saumont a écrit : Use styles. You can have several

Re: [Wicket-user] cookies

2006-10-19 Thread Juergen Donnerstag
Depends on what exactly you want to do. FormComponent.setPersisent(true) will save the forms value in a cookie and load it into the same FormComponent when the user reloads the page (login page: rememberMe). This approach doesnt require any cookie knowledge from users. If you need some thing else

Re: [Wicket-user] Wicket-user Digest, Vol 5, Issue 173

2006-10-18 Thread Juergen Donnerstag
And of course make sure that your browser does not request the information in ISO-8859-1 formatting. Juergen On 10/18/06, Juergen Donnerstag [EMAIL PROTECTED] wrote: UTF-8 is default for Wicket. The issue is usually with Tomcat and Oracle settings. Please search the mail archive

Re: [Wicket-user] Move to Apache: Namespace?

2006-10-17 Thread Juergen Donnerstag
The reason why this is relevant is because we determine the namespace from this statement. Meaning xmlns:wicket=http://wicket.sourceforge.net/ is our current default. But xmlns:xxx=http://wicket.sourceforge.net/ will change Wickets namespace to xxx. So instead of wicket:id you can write xxx:id.

Re: [Wicket-user] display border conditionally

2006-10-13 Thread Juergen Donnerstag
setRenderBodyOnly() can be used to change the behavior. But it only prevent the component from writing the open and close tag. The box html markup associated with BoxBorder will not be disabled this way. Juergen On 10/13/06, Bondarenko, Oleg [EMAIL PROTECTED] wrote: Is it possible to change

Re: [Wicket-user] ICryptFactory Uses

2006-10-13 Thread Juergen Donnerstag
Yes exactly. Reason being that URLs as well as cookies are limited to base64 chars. Please do not use the crypt factory for storing application password in your database or whereever as the interface asks for encryption _and_ decryption (synchronous algorithms) Juergen On 10/13/06, Igor Vaynberg

Re: [Wicket-user] display border conditionally

2006-10-13 Thread Juergen Donnerstag
the border markup and render only the border body? Schade. ;) thanks anyway Oleg -Original Message- From: [EMAIL PROTECTED] on behalf of Juergen Donnerstag Sent: Fri 10/13/2006 10:01 PM To: wicket-user@lists.sourceforge.net Cc: Subject:Re: [Wicket-user] display border

Re: [Wicket-user] HtmlHandler 1.2.2 - missing tags that does not require a close tag

2006-10-12 Thread Juergen Donnerstag
Forbidden end tags? Isn't it more like the end tag is standard for all tags and allowing some very few tags to omit the end tag is just because of designer laziness? Besides, but that is me, I'd suggest everyone trying to be XHTML compliant (and XHTML requires the close tags). Juergen On

Re: [Wicket-user] HtmlHandler 1.2.2 - missing tags that does notrequire a close tag

2006-10-12 Thread Juergen Donnerstag
end tag forbidden. Therefore removed it from the markup - and got problemes. XHTML I didn't think about. Niels 2006/10/12, Juergen Donnerstag [EMAIL PROTECTED]: Forbidden end tags? Isn't it more like the end tag is standard for all tags and allowing some very few tags

Re: [Wicket-user] Problem with FormBorder and not visible components (in trunk)

2006-10-10 Thread Juergen Donnerstag
the link and to validate the output of the second render as well. The problem should be fixed. Juergen On 10/7/06, Alberto Bueno [EMAIL PROTECTED] wrote: Hi Juergen Donnerstag, The example BoxBorderTestPage_7 runs correctly because you only render the page only one time

Re: [Wicket-user] Problem with FormBorder and not visible components (in trunk)

2006-10-09 Thread Juergen Donnerstag
I extened BoxBorderTestPage_7 to click the link and to validate the output of the second render as well. The problem should be fixed. Juergen On 10/7/06, Alberto Bueno [EMAIL PROTECTED] wrote: Hi Juergen Donnerstag, The example BoxBorderTestPage_7 runs correctly because you only render

Re: [Wicket-user] Help

2006-10-09 Thread Juergen Donnerstag
Please search the mailing list. I remember I've seen users talking about it and referring to GIS/GPS apps developed with Wicket. We are more than happy to add a GIS/GPS apps to our example if someone provides the code. Juergen On 10/9/06, ketan gote [EMAIL PROTECTED] wrote: hello freinds we

  1   2   3   4   5   6   7   8   9   10   >