I'm kind of struggeling with it. The exception occurs in the page
constructor and hence no page object is created and hence no page
object exists to register with the page map (which is necessary for
the refresh button to work). The only thing I managed to do is to
avoid that error pages are added to the page map which yields to a
page expired when you refresh the error page after you potentially
fixed the markup. Though it is better than the exception page it is
not exactly what I'd expect. A refresh of
/helloworld?wicket:interface=:1:: should probably redirect to the
original url which in this case was /helloworld.
Would it be possible to create a ReloadAfterExceptionPage with a one
parameter constructor which takes the url and which processes it
during render?
Juergen
On 2/20/06, Johan Compagner <[EMAIL PROTECTED]> wrote:
> but i guess that should work pretty easy just see where we do a redirect on
> a error page
> and turn the redirect off.
>
>
>
> johan
>
>
> On 2/20/06, Juergen Donnerstag <[EMAIL PROTECTED]> wrote:
> > exactly. When we have fixed that, reload will work fine as well.
> >
> > Juergen
> >
> > On 2/20/06, Johan Compagner <[EMAIL PROTECTED]> wrote:
> > > an error page is redirected to. So when you are on the error page and
> you do
> > > a refresh then you do a refresh of the error page.
> > > I don't like that very much.I preffer that you could do a refresh on the
> > > real deal.
> > >
> > >
> > > johan
> > >
> > > On 2/20/06, Juergen Donnerstag < [EMAIL PROTECTED]> wrote:
> > > > we kind of associate the error page with the url. This is the url
> > > > /helloworld?wicket:interface=:1:: and it is
> associated
> > > with the error
> > > > page. Where does that mapping occur? In the pagemap?
> > > >
> > > > Juergen
> > > >
> > > > On 2/20/06, Juergen Donnerstag < [EMAIL PROTECTED]> wrote:
> > > > > It must be something else. I changed the markup upfront to get an
> > > > > exception the first time. The problem is the browser refresh button
> > > > > doesn't reload the page. It probably gets the content from its
> cache.
> > > > > Because when I go back to the main page and enter the helloworld
> > > > > example again, the page is loaded properly.
> > > > >
> > > > > Actually not much happens prior to
> > > > >
> > > > > // Found markup?
> > > > > if (markupResource != null)
> > > > > {
> > > > > // load the markup and watch for changes
> > > > > markup = loadMarkupAndWatchForChanges(key,
> > > markupResource);
> > > > > }
> > > > > else
> > > > > {
> > > > > // flag markup as non-existent (as opposed to null, which
> > > > > // might mean that it's simply not loaded into the cache)
> > > > > markup = Markup.NO_MARKUP;
> > > > >
> > > > > // Save any markup list (or absence of one) for next time
> > > > > markupCache.put(key, markup);
> > > > > }
> > > > >
> > > > > It only checks the availability of the file. It doesn't load it.
> > > > >
> > > > > Juergen
> > > > >
> > > > >
> > > > > On 2/20/06, Juergen Donnerstag < [EMAIL PROTECTED]>
> wrote:
> > > > > > I tested it with helloworld. Try it yourself. It loads fine the
> first
> > > > > > time, than change the markup, it will be reloaded every time you
> > > > > > change it with and without exception, because once it has been
> loaded
> > > > > > it is registered with the watcher
> > > > > >
> > > > > > Juergen
> > > > > >
> > > > > > On 2/20/06, Johan Compagner <[EMAIL PROTECTED]> wrote:
> > > > > > > and if it fails to load a second time? When the markup is being
> > > changed
> > > > > > > So it is removed. But then tried to be reloaded?
> > > > > > > That is the same now especially because we now reload markup on
> > > request.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > On 2/20/06, Juergen Donnerstag < [EMAIL PROTECTED]>
> > > wrote:
> > > > > > > > The important piece of information missing in your
> explanation:
> > > The
> > > > > > > > problem occurs ONLY if the markup fails to loads the first
> time.
> > > > > > > >
> > > > > > > > Juergen
> > > > > > > >
> > > > > > > > On 2/20/06, Johan Compagner < [EMAIL PROTECTED]> wrote:
> > > > > > > > > yes but it is not about the remove.
> > > > > > > > > It is when there is some parser error or something and the
> > > markup can't
> > > > > > > be
> > > > > > > > > loaded
> > > > > > > > > Then we store a NO_MARKUP key in the cached map. And if we
> do
> > > that then
> > > > > > > it
> > > > > > > > > will never
> > > > > > > > > test the original request anymore.
> > > > > > > > >
> > > > > > > > > johan
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On 2/20/06, Juergen Donnerstag <
> [EMAIL PROTECTED] >
> > > wrote:
> > > > > > > > > > I tested it with helloworld. It works fine for me. The
> cache
> > > key is
> > > > > > > > > > removed when the markup file is modified (you remember,
> you
> > > did that
> > > > > > > > > > change) and reloaded the next time.
> > > > > > > > > >
> > > > > > > > > > Juergen
> > > > > > > > > >
> > > > > > > > > > On 2/20/06, Johan Compagner < [EMAIL PROTECTED]> wrote:
> > > > > > > > > > > Doesn't he get something like a parse error in the
> markup
> > > > > > > > > > > And the markup then gets stored in the markup cache
> > > > > > > Markup.NO_MARKUP:
> > > > > > > > > > >
> > > > > > > > > > > markup =
> > > Markup.NO_MARKUP;
> > > > > > > > > > > // Save any markup list (or
> absence
> > > of one)
> > > > > > > for
> > > > > > > > > next
> > > > > > > > > > > time
> > > > > > > > > > > markupCache.put(key, markup);
> > > > > > > > > > >
> > > > > > > > > > > If that happens then it is from that time on over and
> out
> > > when
> > > > > > > reloading
> > > > > > > > > or
> > > > > > > > > > > trying to get it back..
> > > > > > > > > > >
> > > > > > > > > > > Maybe we should store a no_markup in the cache.
> > > > > > > > > > > Or can it happen a lot (internationalisation?) so that
> we
> > > have to
> > > > > > > > > store
> > > > > > > > > > > these markers or else
> > > > > > > > > > > it is constanlty searched for? That shouldn't happen i
> guess
> > > if the
> > > > > > > real
> > > > > > > > > key
> > > > > > > > > > > stores the markup it
> > > > > > > > > > > eventually finds.
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > johan
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > ---------- Forwarded message ----------
> > > > > > > > > > > From: Christian Hvid < [EMAIL PROTECTED]>
> > > > > > > > > > > Date: Feb 19, 2006 11:51 PM
> > > > > > > > > > > Subject: Re: [Wicket-user] Wicket reload broken?
> > > > > > > > > > > To: [email protected]
> > > > > > > > > > >
> > > > > > > > > > > Just tested again - problem #2 is still there - if the
> page
> > > is
> > > > > > > broken
> > > > > > > > > > > it is not reloaded when edited.
> > > > > > > > > > >
> > > > > > > > > > > Another thing: I am running Java 1.5 and I had to patch
> up
> > > build.xml
> > > > > > > > > > > with source="1.4" at all javac calls. Should be simple
> to
> > > fix.
> > > > > > > > > > >
> > > > > > > > > > > But other than these couple of small bugs - it is sure a
> > > nice
> > > > > > > > > > > framework. Congrats :-D
> > > > > > > > > > >
> > > > > > > > > > > On 19 Feb 2006, at 23:23, Juergen Donnerstag wrote:
> > > > > > > > > > >
> > > > > > > > > > > > well, it works on my side though (as mentioned with
> 1.2
> > > HEAD).
> > > > > > > It'll
> > > > > > > > > > > > not work with 1.1.1 and we are (most likely) not going
> to
> > > backport
> > > > > > > the
> > > > > > > > > > > > reloading strategy to 1.1.1
> > > > > > > > > > > >
> > > > > > > > > > > > Juergen
> > > > > > > > > > > >
> > > > > > > > > > > > On 2/19/06, Christian Hvid < [EMAIL PROTECTED]>
> > > wrote:
> > > > > > > > > > > >> Problem #1 is gone.
> > > > > > > > > > > >>
> > > > > > > > > > > >> But problem #2 is still there.
> > > > > > > > > > > >>
> > > > > > > > > > > >> Tested with 1.2-20060216 from sourceforge and head of
> > > main trunk
> > > > > > > CVS.
> > > > > > > > > > > >>
> > > > > > > > > > > >> On 19 Feb 2006, at 21:49, Juergen Donnerstag wrote:
> > > > > > > > > > > >>
> > > > > > > > > > > >>> 1.2 HEAD. 1.2 just removes the markup from the cache
> > > without
> > > > > > > > > > > >>> trying to
> > > > > > > > > > > >>> reload it. It is reloaded the next time the resource
> is
> > > > > > > requested.
> > > > > > > > > > > >>>
> > > > > > > > > > > >>> Juergen
> > > > > > > > > > > >>>
> > > > > > > > > > > >>> On 2/19/06, Igor Vaynberg < [EMAIL PROTECTED]
> >
> > > wrote:
> > > > > > > > > > > >>>> head 1.1 branch?
> > > > > > > > > > > >>>> -Igor
> > > > > > > > > > > >>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > > >>>> On 2/19/06, Juergen Donnerstag <
> > > [EMAIL PROTECTED]>
> > > > > > > > > > > >>>> wrote:
> > > > > > > > > > > >>>>>
> > > > > > > > > > > >>>>> its fixed in HEAD
> > > > > > > > > > > >>>>>
> > > > > > > > > > > >>>>> Juergen
> > > > > > > > > > > >>>>>
> > > > > > > > > > > >>>>> On 2/19/06, Christian Hvid <
> [EMAIL PROTECTED]
> > > > wrote:
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> I have set up my wicket application to reload
> > > constantly my
> > > > > > > > > > > >>>>>> templates:
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> public class MyWebApplication extends
> WebApplication
> > > {
> > > > > > > > > > > >>>>>> public MyWebApplication() {
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > > getSettings().setResourcePollFrequency(
> Duration.ONE_SECOND);
> > > > > > > > > > > >>>>>> getPages().setHomePage( Index.class);
> > > > > > > > > > > >>>>>> }
> > > > > > > > > > > >>>>>> protected void init() {
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> getSettings().addResourceFolder("/java/myapp/templates");
> > > > > > > > > > > >>>>>> }
> > > > > > > > > > > >>>>>> }
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> And this works excerpt for two problems:
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> 1. (After more than one deployment using Tomcat
> > > Manager). The
> > > > > > > > > > > >>>>>> log of my
> > > > > > > > > > > >>>>>> Apache Tomcat is filled with this every second:
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> Feb 19, 2006 5:40:27 PM wicket.util.thread.Task$1
> run
> > > > > > > > > > > >>>>>> SEVERE: Unhandled exception thrown by user code
> in
> > > task
> > > > > > > > > > > >>>> ModificationWatcher
> > > > > > > > > > > >>>>>> java.lang.NullPointerException
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > >
> > > wicket.util.parse.metapattern.MetaPattern.toString
> > > > > > > > > > > >>>>>> ( MetaPattern.java:323)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > wicket.util.parse.metapattern.MetaPattern.compile
> > > > > > > (MetaPattern.java:
> > > > > > > > > > > >>>> 343)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > >
> > > wicket.util.parse.metapattern.MetaPattern.matcher
> > > > > > > > > > > >>>> ( MetaPattern.java:277)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > >
> > > wicket.util.parse.metapattern.MetaPattern.matcher
> > > > > > > > > > > >>>>>> ( MetaPattern.java :259)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > >
> > > wicket.util.parse.metapattern.parsers.MetaPatternParser
> > > > > > > > > > > .<init>(
> > > > > > > > > > > >>>> MetaPatternParser.java :71)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> wicket.util.parse.metapattern.parsers.TagNameParser
> > > .<init>
> > > > > > > > > > > >>>> ( TagNameParser.java
> > > > > > > > > > > >>>>>> :54)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > wicket.markup.parser.XmlPullParser.parseTagText
> > > > > > > > > > > >>>> (XmlPullParser.java:570)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > > wicket.markup.parser.XmlPullParser.nextTag
> > > (XmlPullParser.java:303)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > >
> wicket.markup.parser.XmlPullParser.nextTag
> > > > > > > > > > > >>>>>> ( XmlPullParser.java:282)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > >
> > > wicket.markup.parser.filter.WicketTagIdentifier.nextTag
> > > > > > > > > > > >>>> (WicketTagIdentifier.java :98)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > >
> wicket.markup.parser.filter.TagTypeHandler.nextTag
> > > > > > > > > > > >>>> ( TagTypeHandler.java:83)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> wicket.markup.parser.filter.HtmlHandler.nextTag
> > > > > > > (HtmlHandler.java:
> > > > > > > > > > > >>>> 86)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> wicket.markup.parser.filter.WicketParamTagHandler.nextTag
> > > > > > > > > > > >>>> (WicketParamTagHandler.java :120)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> wicket.markup.parser.filter.WicketRemoveTagHandler.nextTag
> > > > > > > > > > > >>>>>> ( WicketRemoveTagHandler.java :64)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> wicket.markup.parser.filter.WicketLinkTagHandler.nextTag
> > > > > > > > > > > >>>> (WicketLinkTagHandler.java :90)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > >
> > > > > > >
> > > wicket.markup.parser.filter.BodyOnLoadHandler.nextTag
> > > > > > > > > > > >>>> ( BodyOnLoadHandler.java
> > > > > > > > > > > >>>>>> :63)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> wicket.markup.parser.filter.HtmlHeaderSectionHandler.nextTag
> > > > > > > > > > > >>>> (HtmlHeaderSectionHandler.java :86)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > wicket.markup.MarkupParser.parseMarkup
> > > > > > > > > > > >>>> ( MarkupParser.java:275)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > wicket.markup.MarkupParser.readAndParse
> > > > > > > > > > > >>>>>> (MarkupParser.java:236)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > >
> > > wicket.markup.MarkupCache.loadMarkup(MarkupCache.java
> > > > > > > > > :219)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> wicket.markup.MarkupCache.access$100
> > > > > > > > > > > (MarkupCache.java:45)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > >
> > > > > > >
> > > wicket.markup.MarkupCache$1.onChange(MarkupCache.java
> > > > > > > > > > > >>>> :288)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > >
> > > > > > >
> > > wicket.util.listener.ChangeListenerSet.notifyListener
> > > > > > > > > > > >>>> (ChangeListenerSet.java:32)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>
> > > > > > >
> wicket.util.listener.ListenerSet.notifyListeners
> > > > > > > > > > > >>>> ( ListenerSet.java:60)
> > > > > > > > > > > >>>>>> at
> > > > > > > > > > >
> wicket.util.watch.ModificationWatcher$1.run
> > > > > > > > > > > >>>>>> ( ModificationWatcher.java :168)
> > > > > > > > > > > >>>>>> at
> > > wicket.util.thread.Task$1.run(Task.java:103)
> > > > > > > > > > > >>>>>> at java.lang.Thread.run(Thread.java:595)
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> (Apache Tomcat 5.5 / Windows XP)
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> 2. If a make the following spelling mistake:
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> <html>
> > > > > > > > > > > >>>>>> <body>
> > > > > > > > > > > >>>>>> <div id="Header" wicket:id="header">
> > > > > > > > > > > >>>>>> </div>
> > > > > > > > > > > >>>>>> </body>
> > > > > > > > > > > >>>>>> </html>
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> ---->
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> <html>
> > > > > > > > > > > >>>>>> <body>
> > > > > > > > > > > >>>>>> <div id="Header" wicketxxxx:id="header">
> > > > > > > > > > > >>>>>> </div>
> > > > > > > > > > > >>>>>> </body>
> > > > > > > > > > > >>>>>> </html>
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> It will fail with:
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> wicket.WicketRuntimeException : The component(s)
> > > below failed
> > > > > > > to
> > > > > > > > > > > >>>>>> render
> > > > > > > > > > > >>>> ...
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> However it will not reload if I correct it back
> > > again.
> > > > > > > > > > > >>>>>> Correction is
> > > > > > > > > > > >>>> only
> > > > > > > > > > > >>>>>> effective if I redeploy.
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> Any solutions?
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> I am using wicket 1.1.1 - should I try another
> > > version?
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>> -- Christian
> > > > > > > > > > > >>>>>>
> > > > > > > > > > > >>>>>
> > > > > > > > > > > >>>>>
> > > > > > > > > > > >>>>>
> > > > > > > > > > >
> > > > > > >
> > > -------------------------------------------------------
> > > > > > > > > > > >>>>> This SF.net email is sponsored by: Splunk Inc. Do
> you
> > > grep
> > > > > > > > > > > >>>>> through log
> > > > > > > > > > > >>>> files
> > > > > > > > > > > >>>>> for problems? Stop! Download the new AJAX search
> > > engine that
> > > > > > > > > > > >>>>> makes
> > > > > > > > > > > >>>>> searching your log files as easy as surfing the
> web.
> > > > > > > DOWNLOAD
> > > > > > > > > > > >>>>> SPLUNK!
> > > > > > > > > > > >>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> http://sel.as-us.falkag.net/sel?cmdlnk&kid3432&bid#0486&dat1642
> > > > > > > > > > > >>>>>
> > > > > > > _______________________________________________
> > > > > > > > > > > >>>>> Wicket-user mailing list
> > > > > > > > > > > >>>>> [email protected]
> > > > > > > > > > > >>>>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > > > > > > > > > >>>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > > >>>>
> > > > > > > > > > > >>>
> > > > > > > > > > > >>>
> > > > > > > > > > > >>>
> > > > > > > > >
> > > -------------------------------------------------------
> > > > > > > > > > > >>> This SF.net email is sponsored by: Splunk Inc. Do
> you
> > > grep
> > > > > > > through
> > > > > > > > > > > >>> log files
> > > > > > > > > > > >>> for problems? Stop! Download the new AJAX search
> > > engine that
> > > > > > > makes
> > > > > > > > > > > >>> searching your log files as easy as surfing the
> web.
> > > DOWNLOAD
> > > > > > > > > > > >>> SPLUNK!
> > > > > > > > > > > >>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
> > > > > > > > > > > >>>
> > > _______________________________________________
> > > > > > > > > > > >>> Wicket-user mailing list
> > > > > > > > > > > >>> [email protected]
> > > > > > > > > > > >>>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > > > > > > > > > >>
> > > > > > > > > > > >>
> > > > > > > > > > > >>
> > > > > > > > > > > >>
> > > > > > > > >
> > > -------------------------------------------------------
> > > > > > > > > > > >> This SF.net email is sponsored by: Splunk Inc. Do you
> > > grep
> > > > > > > through
> > > > > > > > > > > >> log files
> > > > > > > > > > > >> for problems? Stop! Download the new AJAX search
> engine
> > > that
> > > > > > > makes
> > > > > > > > > > > >> searching your log files as easy as surfing the web.
> > > DOWNLOAD
> > > > > > > > > > > >> SPLUNK!
> > > > > > > > > > > >>
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> http://sel.as-us.falkag.net/sel?cmdlnk&kid3432&bid#0486&dat1642
> > > > > > > > > > > >>
> > > _______________________________________________
> > > > > > > > > > > >> Wicket-user mailing list
> > > > > > > > > > > >> [email protected]
> > > > > > > > > > > >>
> > > > > > > > >
> > > > > > >
> > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > > > > > > > > > >>
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > >
> > > -------------------------------------------------------
> > > > > > > > > > > > This SF.net email is sponsored by: Splunk Inc. Do you
> grep
> > > through
> > > > > > > > > > > > log files
> > > > > > > > > > > > for problems? Stop! Download the new AJAX search
> engine
> > > that
> > > > > > > makes
> > > > > > > > > > > > searching your log files as easy as surfing the web.
> > > DOWNLOAD
> > > > > > > > > > > > SPLUNK!
> > > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
> > > > > > > > > > > >
> > > _______________________________________________
> > > > > > > > > > > > Wicket-user mailing list
> > > > > > > > > > > > [email protected]
> > > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > >
> > > -------------------------------------------------------
> > > > > > > > > > > This SF.net email is sponsored by: Splunk Inc. Do you
> grep
> > > through
> > > > > > > log
> > > > > > > > > files
> > > > > > > > > > > for problems? Stop! Download the new AJAX search
> engine
> > > that makes
> > > > > > > > > > > searching your log files as easy as surfing the web.
> > > DOWNLOAD
> > > > > > > SPLUNK!
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> http://sel.as-us.falkag.net/sel?cmdlnk&kid3432&bid#0486&dat1642
> > > > > > > > > > >
> > > _______________________________________________
> > > > > > > > > > > Wicket-user mailing list
> > > > > > > > > > > [email protected]
> > > > > > > > > > >
> > > > > > > > >
> > > > > > >
> > >
> https://lists.sourceforge.net/lists/listinfo/wicket-user
> > > > > > > > > > >
> > > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > >
> > > > > > >
> > > > > > >
> > > > > >
> > > > >
> > > >
> > >
> > >
> >
>
>
-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems? Stop! Download the new AJAX search engine that makes
searching your log files as easy as surfing the web. DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642
_______________________________________________
Wicket-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/wicket-develop