LoadableDetachableModel in AbstractResourceStream

2014-03-21 Thread Edgar Merino
Hello, I've got an AbstractResourceStream implementation that uses a 
LoadableDetachableModel to get some information it needs to generate an 
InputStream in AbstractResourceStream#getInputStream(). However, I've 
noticed that this is called after the request cycle has been detached; 
this causes the model to call LoadableDetachabelModel#load() twice.


What is the recommended way to do this without the double call to load()?
Thanks in advance.

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



Re: custom bootstrap stylesheet

2014-03-21 Thread Gabriel Landon
Here's what I'm doing with a "less" reference (would be the same for css).

public abstract class AbstractPage extends WebPage {
/** Less/css reference. */
private static final LessResourceReference MY_LESS_REFERENCE = new
LessResourceReference(AbstractPage .class,  "css/style.less");

@Override
public void renderHead(final IHeaderResponse response) {
super.renderHead(response);
Bootstrap.renderHead(response);
// Your CSS/LESS reference
response.render(CssHeaderItem.forReference(MY_LESS_REFERENCE));
}
}

Regards,
Gabriel.

--
View this message in context: 
http://apache-wicket.1842946.n4.nabble.com/custom-bootstrap-stylesheet-tp4665044p4665079.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



Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread David Beer
Hi Martin

Have created a new issue. After a bit more research this seems to be
becasue of loading a theme. Full Stacktrace and code in issue
https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/344.

Thanks

David



On 21 March 2014 12:50, Martin Grigorov  wrote:

> Please paste the full stacktrace so we can see what triggers the load of
> WebjarsVersion$Holder.
> Better do it in GitHub issues.
> Thanks!
>
> Martin Grigorov
> Wicket Training and Consulting
>
>
> On Fri, Mar 21, 2014 at 2:37 PM, David Beer 
> wrote:
>
> > Hi Martin
> >
> > After having updated my local source and built 0.9.3-SNAPSHOT added it to
> > my pom and changed the statement in WicketApplication I get the following
> > error and unable to deploy.
> >
> > Caused by: java.lang.IllegalStateException: you have to call
> > WicketWebjars.install() before you can use an IWebjarsResourceReference
> or
> > any other component.
> > at
> >
> de.agilecoders.wicket.webjars.WicketWebjars.settings(WicketWebjars.java:81)
> > [wicket-webjars-0.4.1.jar:]
> > at
> >
> >
> de.agilecoders.wicket.webjars.util.WebjarsVersion$Holder.(WebjarsVersion.java:29)
> > [wicket-webjars-0.4.1.jar:]
> > ... 24 more
> >
> > My ConfigureBootstrap method is as follows and is called from init() in
> > WicketApllication
> >
> > /**
> >  * configures wicket-bootstrap and installs the settings.
> >  */
> > private void configureBootstrap() {
> > final ThemeProvider themeProvider = new
> BootswatchThemeProvider() {
> > {
> > defaultTheme("spacelab");
> > }
> >
> > };
> >
> > final IBootstrapSettings settings = new BootstrapSettings();
> > settings.setThemeProvider(themeProvider);
> > settings.useCdnResources(true);
> > Bootstrap.install(this, settings);
> > BootstrapLess.install(this);
> > }
> >
> > Thanks
> >
> > David
> >
> >
> > On 21 March 2014 12:20, Martin Grigorov  wrote:
> >
> > > We didn't have to do any refactorings to upgrade Wicket-Bootstrap from
> > 3.0
> > > to 3.1.
> > >
> > > As usual - let us know if you have any issues!
> > >
> > > Martin Grigorov
> > > Wicket Training and Consulting
> > >
> > >
> > > On Fri, Mar 21, 2014 at 2:12 PM, David Beer 
> > > wrote:
> > >
> > > > I have decided to switch to 0.9.3-SNAPSHOT after getting latest code
> to
> > > > build. Will work on migrating to 3.1 and see if that helps.
> > > >
> > > > Thanks
> > > >
> > > > David
> > > >
> > > >
> > > > On 21 March 2014 11:43, David Beer  wrote:
> > > >
> > > > > Hi Martin
> > > > >
> > > > > I have been wondering about switching to 0.9.3-SNAPSHOT, I have a
> > > couple
> > > > > of concerns. This is for 3.1.x and 0.9.2 is for 3.0.x and there is
> > > quite
> > > > a
> > > > > difference wondering how much I have to change. However the change
> > may
> > > be
> > > > > worth it as twbs seems to moving forward quite fast with 3.1.x. The
> > > other
> > > > > is that the latest code failed to build, and I am not sure how
> recent
> > > the
> > > > > deployed jars are in maven.
> > > > >
> > > > > The third is more of a question is there a way of disabling webjars
> > for
> > > > > bootstrap and using CDN. like 0.9.3-SNAPSHOT does/
> > > > >
> > > > > Thanks
> > > > >
> > > > > David
> > > > >
> > > > >
> > > > > On 21 March 2014 09:40, Martin Grigorov 
> > wrote:
> > > > >
> > > > >> Hi,
> > > > >>
> > > > >> JBoss uses their own virtual file system and I remember it
> > > > >> Wicket-Bootstrap
> > > > >> had problems with it before.
> > > > >> In 0.9.3-SNAPSHOT it is possible to avoid usage of webjars so I'd
> > > > >> recommend
> > > > >> you to use non-webjars in JBoss from now on.
> > > > >>
> > > > >> https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/337
> > > > >>
> > > > >> Martin Grigorov
> > > > >> Wicket Training and Consulting
> > > > >>
> > > > >>
> > > > >> On Thu, Mar 20, 2014 at 7:52 PM, David Beer <
> david.m.b...@gmail.com
> > >
> > > > >> wrote:
> > > > >>
> > > > >> > Hi All
> > > > >> >
> > > > >> > I am updating a wicket-bootstrap application from 0.9.0-SNAPSHOT
> > to
> > > > >> 0.9.2
> > > > >> > and am getting the following error message logged. I am running
> > > JBoss
> > > > AS
> > > > >> > 7.1. None of the js seems to work.
> > > > >> >
> > > > >> > [org.apache.wicket.request.resource.ResourceReferenceRegistry]
> > > > >> > (http--127.0.0.1-8080-5) A ResourceReference wont be created
> for a
> > > > >> resource
> > > > >> > with key [scope:
> > > > >> >
> > > > >> >
> > > > >>
> > > >
> > >
> >
> de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference;
> > > > >> > name: webjars/bootstrap/null/js/bootstrap.js; locale: null;
> style:
> > > > null;
> > > > >> > variation: null] because it cannot be located.
> > > > >> >
> > > > >> > Page source for js css declarations is as follows:
> > > > >> >
> > > > >> > 
> > >   > > > >> > rel="stylesheet" type="text/css"
> > > > >> >
> > > > >> >
> > > > >>
> > > >

Re: Wicket-Bootstrap 0.9.2 js resource not found.

2014-03-21 Thread Martin Grigorov
Please paste the full stacktrace so we can see what triggers the load of
WebjarsVersion$Holder.
Better do it in GitHub issues.
Thanks!

Martin Grigorov
Wicket Training and Consulting


On Fri, Mar 21, 2014 at 2:37 PM, David Beer  wrote:

> Hi Martin
>
> After having updated my local source and built 0.9.3-SNAPSHOT added it to
> my pom and changed the statement in WicketApplication I get the following
> error and unable to deploy.
>
> Caused by: java.lang.IllegalStateException: you have to call
> WicketWebjars.install() before you can use an IWebjarsResourceReference or
> any other component.
> at
> de.agilecoders.wicket.webjars.WicketWebjars.settings(WicketWebjars.java:81)
> [wicket-webjars-0.4.1.jar:]
> at
>
> de.agilecoders.wicket.webjars.util.WebjarsVersion$Holder.(WebjarsVersion.java:29)
> [wicket-webjars-0.4.1.jar:]
> ... 24 more
>
> My ConfigureBootstrap method is as follows and is called from init() in
> WicketApllication
>
> /**
>  * configures wicket-bootstrap and installs the settings.
>  */
> private void configureBootstrap() {
> final ThemeProvider themeProvider = new BootswatchThemeProvider() {
> {
> defaultTheme("spacelab");
> }
>
> };
>
> final IBootstrapSettings settings = new BootstrapSettings();
> settings.setThemeProvider(themeProvider);
> settings.useCdnResources(true);
> Bootstrap.install(this, settings);
> BootstrapLess.install(this);
> }
>
> Thanks
>
> David
>
>
> On 21 March 2014 12:20, Martin Grigorov  wrote:
>
> > We didn't have to do any refactorings to upgrade Wicket-Bootstrap from
> 3.0
> > to 3.1.
> >
> > As usual - let us know if you have any issues!
> >
> > Martin Grigorov
> > Wicket Training and Consulting
> >
> >
> > On Fri, Mar 21, 2014 at 2:12 PM, David Beer 
> > wrote:
> >
> > > I have decided to switch to 0.9.3-SNAPSHOT after getting latest code to
> > > build. Will work on migrating to 3.1 and see if that helps.
> > >
> > > Thanks
> > >
> > > David
> > >
> > >
> > > On 21 March 2014 11:43, David Beer  wrote:
> > >
> > > > Hi Martin
> > > >
> > > > I have been wondering about switching to 0.9.3-SNAPSHOT, I have a
> > couple
> > > > of concerns. This is for 3.1.x and 0.9.2 is for 3.0.x and there is
> > quite
> > > a
> > > > difference wondering how much I have to change. However the change
> may
> > be
> > > > worth it as twbs seems to moving forward quite fast with 3.1.x. The
> > other
> > > > is that the latest code failed to build, and I am not sure how recent
> > the
> > > > deployed jars are in maven.
> > > >
> > > > The third is more of a question is there a way of disabling webjars
> for
> > > > bootstrap and using CDN. like 0.9.3-SNAPSHOT does/
> > > >
> > > > Thanks
> > > >
> > > > David
> > > >
> > > >
> > > > On 21 March 2014 09:40, Martin Grigorov 
> wrote:
> > > >
> > > >> Hi,
> > > >>
> > > >> JBoss uses their own virtual file system and I remember it
> > > >> Wicket-Bootstrap
> > > >> had problems with it before.
> > > >> In 0.9.3-SNAPSHOT it is possible to avoid usage of webjars so I'd
> > > >> recommend
> > > >> you to use non-webjars in JBoss from now on.
> > > >>
> > > >> https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/337
> > > >>
> > > >> Martin Grigorov
> > > >> Wicket Training and Consulting
> > > >>
> > > >>
> > > >> On Thu, Mar 20, 2014 at 7:52 PM, David Beer  >
> > > >> wrote:
> > > >>
> > > >> > Hi All
> > > >> >
> > > >> > I am updating a wicket-bootstrap application from 0.9.0-SNAPSHOT
> to
> > > >> 0.9.2
> > > >> > and am getting the following error message logged. I am running
> > JBoss
> > > AS
> > > >> > 7.1. None of the js seems to work.
> > > >> >
> > > >> > [org.apache.wicket.request.resource.ResourceReferenceRegistry]
> > > >> > (http--127.0.0.1-8080-5) A ResourceReference wont be created for a
> > > >> resource
> > > >> > with key [scope:
> > > >> >
> > > >> >
> > > >>
> > >
> >
> de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference;
> > > >> > name: webjars/bootstrap/null/js/bootstrap.js; locale: null; style:
> > > null;
> > > >> > variation: null] because it cannot be located.
> > > >> >
> > > >> > Page source for js css declarations is as follows:
> > > >> >
> > > >> > 
> >   > > >> > rel="stylesheet" type="text/css"
> > > >> >
> > > >> >
> > > >>
> > >
> >
> href="./wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
> > > >> >  > > >> >
> > > >>
> > >
> >
> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
> > > >> > >"
> > > >> > /> > > >> >
> > > >> >
> > > >>
> > >
> >
> src="./wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
> > > >> >  > > >> >
> > > >>
> > >
> >
> Re: Wicket-Bootstrap 0.9.2 js resource not found.

Hi Martin

After having updated my local source and built 0.9.3-SNAPSHOT added it to
my pom and changed the statement in WicketApplication I get the following
error and unable to deploy.

Caused by: java.lang.IllegalStateException: you have to call
WicketWebjars.install() before you can use an IWebjarsResourceReference or
any other component.
at
de.agilecoders.wicket.webjars.WicketWebjars.settings(WicketWebjars.java:81)
[wicket-webjars-0.4.1.jar:]
at
de.agilecoders.wicket.webjars.util.WebjarsVersion$Holder.(WebjarsVersion.java:29)
[wicket-webjars-0.4.1.jar:]
... 24 more

My ConfigureBootstrap method is as follows and is called from init() in
WicketApllication

/**
 * configures wicket-bootstrap and installs the settings.
 */
private void configureBootstrap() {
final ThemeProvider themeProvider = new BootswatchThemeProvider() {
{
defaultTheme("spacelab");
}

};

final IBootstrapSettings settings = new BootstrapSettings();
settings.setThemeProvider(themeProvider);
settings.useCdnResources(true);
Bootstrap.install(this, settings);
BootstrapLess.install(this);
}

Thanks

David


On 21 March 2014 12:20, Martin Grigorov  wrote:

> We didn't have to do any refactorings to upgrade Wicket-Bootstrap from 3.0
> to 3.1.
>
> As usual - let us know if you have any issues!
>
> Martin Grigorov
> Wicket Training and Consulting
>
>
> On Fri, Mar 21, 2014 at 2:12 PM, David Beer 
> wrote:
>
> > I have decided to switch to 0.9.3-SNAPSHOT after getting latest code to
> > build. Will work on migrating to 3.1 and see if that helps.
> >
> > Thanks
> >
> > David
> >
> >
> > On 21 March 2014 11:43, David Beer  wrote:
> >
> > > Hi Martin
> > >
> > > I have been wondering about switching to 0.9.3-SNAPSHOT, I have a
> couple
> > > of concerns. This is for 3.1.x and 0.9.2 is for 3.0.x and there is
> quite
> > a
> > > difference wondering how much I have to change. However the change may
> be
> > > worth it as twbs seems to moving forward quite fast with 3.1.x. The
> other
> > > is that the latest code failed to build, and I am not sure how recent
> the
> > > deployed jars are in maven.
> > >
> > > The third is more of a question is there a way of disabling webjars for
> > > bootstrap and using CDN. like 0.9.3-SNAPSHOT does/
> > >
> > > Thanks
> > >
> > > David
> > >
> > >
> > > On 21 March 2014 09:40, Martin Grigorov  wrote:
> > >
> > >> Hi,
> > >>
> > >> JBoss uses their own virtual file system and I remember it
> > >> Wicket-Bootstrap
> > >> had problems with it before.
> > >> In 0.9.3-SNAPSHOT it is possible to avoid usage of webjars so I'd
> > >> recommend
> > >> you to use non-webjars in JBoss from now on.
> > >>
> > >> https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/337
> > >>
> > >> Martin Grigorov
> > >> Wicket Training and Consulting
> > >>
> > >>
> > >> On Thu, Mar 20, 2014 at 7:52 PM, David Beer 
> > >> wrote:
> > >>
> > >> > Hi All
> > >> >
> > >> > I am updating a wicket-bootstrap application from 0.9.0-SNAPSHOT to
> > >> 0.9.2
> > >> > and am getting the following error message logged. I am running
> JBoss
> > AS
> > >> > 7.1. None of the js seems to work.
> > >> >
> > >> > [org.apache.wicket.request.resource.ResourceReferenceRegistry]
> > >> > (http--127.0.0.1-8080-5) A ResourceReference wont be created for a
> > >> resource
> > >> > with key [scope:
> > >> >
> > >> >
> > >>
> >
> de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference;
> > >> > name: webjars/bootstrap/null/js/bootstrap.js; locale: null; style:
> > null;
> > >> > variation: null] because it cannot be located.
> > >> >
> > >> > Page source for js css declarations is as follows:
> > >> >
> > >> > 
>   > >> > rel="stylesheet" type="text/css"
> > >> >
> > >> >
> > >>
> >
> href="./wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
> > >> >  > >> >
> > >>
> >
> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
> > >> > >"
> > >> > /> > >> >
> > >> >
> > >>
> >
> src="./wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
> > >> >  > >> >
> > >>
> >
> http://localhost:8080/Tansu/wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
> > >> > >"> > >> > type="text/javascript"
> > >> >
> > >> >
> > >>
> >
> src="./wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery-ver-1392391424000.js
> > >> >  > >> >
> > >>
> >
> Re: Wicket-Bootstrap 0.9.2 js resource not found.

We didn't have to do any refactorings to upgrade Wicket-Bootstrap from 3.0
to 3.1.

As usual - let us know if you have any issues!

Martin Grigorov
Wicket Training and Consulting


On Fri, Mar 21, 2014 at 2:12 PM, David Beer  wrote:

> I have decided to switch to 0.9.3-SNAPSHOT after getting latest code to
> build. Will work on migrating to 3.1 and see if that helps.
>
> Thanks
>
> David
>
>
> On 21 March 2014 11:43, David Beer  wrote:
>
> > Hi Martin
> >
> > I have been wondering about switching to 0.9.3-SNAPSHOT, I have a couple
> > of concerns. This is for 3.1.x and 0.9.2 is for 3.0.x and there is quite
> a
> > difference wondering how much I have to change. However the change may be
> > worth it as twbs seems to moving forward quite fast with 3.1.x. The other
> > is that the latest code failed to build, and I am not sure how recent the
> > deployed jars are in maven.
> >
> > The third is more of a question is there a way of disabling webjars for
> > bootstrap and using CDN. like 0.9.3-SNAPSHOT does/
> >
> > Thanks
> >
> > David
> >
> >
> > On 21 March 2014 09:40, Martin Grigorov  wrote:
> >
> >> Hi,
> >>
> >> JBoss uses their own virtual file system and I remember it
> >> Wicket-Bootstrap
> >> had problems with it before.
> >> In 0.9.3-SNAPSHOT it is possible to avoid usage of webjars so I'd
> >> recommend
> >> you to use non-webjars in JBoss from now on.
> >>
> >> https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/337
> >>
> >> Martin Grigorov
> >> Wicket Training and Consulting
> >>
> >>
> >> On Thu, Mar 20, 2014 at 7:52 PM, David Beer 
> >> wrote:
> >>
> >> > Hi All
> >> >
> >> > I am updating a wicket-bootstrap application from 0.9.0-SNAPSHOT to
> >> 0.9.2
> >> > and am getting the following error message logged. I am running JBoss
> AS
> >> > 7.1. None of the js seems to work.
> >> >
> >> > [org.apache.wicket.request.resource.ResourceReferenceRegistry]
> >> > (http--127.0.0.1-8080-5) A ResourceReference wont be created for a
> >> resource
> >> > with key [scope:
> >> >
> >> >
> >>
> de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference;
> >> > name: webjars/bootstrap/null/js/bootstrap.js; locale: null; style:
> null;
> >> > variation: null] because it cannot be located.
> >> >
> >> > Page source for js css declarations is as follows:
> >> >
> >> >  >> > rel="stylesheet" type="text/css"
> >> >
> >> >
> >>
> href="./wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
> >> >  >> >
> >>
> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
> >> > >"
> >> > /> >> >
> >> >
> >>
> src="./wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
> >> >  >> >
> >>
> http://localhost:8080/Tansu/wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
> >> > >"> >> > type="text/javascript"
> >> >
> >> >
> >>
> src="./wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery-ver-1392391424000.js
> >> >  >> >
> >>
> http://localhost:8080/Tansu/wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery-ver-1392391424000.js
> >> > >">
> >> >Tansu - File Sharing and
> >> > Storage >> > content="width=device-width, initial-scale=1.0, maximum-scale=1,
> >> > user-scalable=no">
> >> > 
> >> >   
> >> > http://localhost:8080/Tansu/style.css>" type="text/css"
> >> > media="screen" title="Stylesheet"/> >> >
> >> >
> >>
> src="./wicket/resource/de.agilecoders.wicket.core.markup.html.references.JQueryMigrateJavaScriptReference/js/jquery-migrate-1.2.1-ver-139176153.js
> >> >  >> >
> >>
> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.core.markup.html.references.JQueryMigrateJavaScriptReference/js/jquery-migrate-1.2.1-ver-139176153.js
> >> > >"> >> > type="text/javascript" id="bootstrap-js" defer="defer"
> >> >
> >> >
> >>
> src="./wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/bootstrap/null/js/bootstrap.js
> >> >  >> >
> >>
> RE: custom bootstrap stylesheet

Thanks ... but still I find it too complicated to just use my custom css.
I mean the Theme thingy is ok and makes sense but why wrapping this with an 
extra theme provider?
And why having an api method setCssResource when it's never called? Quite 
confusing isn't it?

Best Regards,

Marvin Richter


-Original Message-
From: Michael Haitz [mailto:michael.ha...@1und1.de] 
Sent: Friday, March 21, 2014 12:15 PM
To: users@wicket.apache.org
Subject: Re: custom bootstrap stylesheet

it's a bit simpler... ;)

class CcaTheme extends Theme {
public CcaTheme() {
super("cca-theme", new 
PackageResourceReference(CcaWebApplication.class, "customized-bootstrap.css"));
}
}

and during application initialization:

settings.setThemeProvider(new SingleThemeProvider(new CcaTheme())); 
Bootstrap.install(this, settings);


cheers,
Michael

Am 20.03.2014 um 16:47 schrieb Richter, Marvin 
:

> So I do have to override DefaultThemeProvider and return a 
> BootstrapTheme(ISettings), where in Settings is my custom 
> CssResourceReference?
> 
> And then set this ThemeProvider as activeThemeProvider in the Settings?
> 
> That sounds really strange to me.
> 
> Marvin Richter
> 
> 
> -Original Message-
> From: Martin Grigorov [mailto:mgrigo...@apache.org]
> Sent: Thursday, March 20, 2014 3:35 PM
> To: users@wicket.apache.org
> Subject: Re: custom bootstrap stylesheet
> 
> See https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/339 for an 
> example
> 
> Martin Grigorov
> Wicket Training and Consulting
> 
> 
> On Thu, Mar 20, 2014 at 4:29 PM, Richter, Marvin < 
> marvin.rich...@jestadigital.com> wrote:
> 
>> Where should I set this?
>> The BootstrapSettings only provide the method :
>> setThemeProvider(ThemeProvider t);
>> 
>> but not:
>> setTheme(Theme t);
>> 
>> Marvin Richter
>> 
>> -Original Message-
>> From: Martin Grigorov [mailto:mgrigo...@apache.org]
>> Sent: Thursday, March 20, 2014 3:23 PM
>> To: users@wicket.apache.org
>> Subject: Re: custom bootstrap stylesheet
>> 
>> Hi,
>> 
>> Set BootstrapTheme(IBootstrapSettings) as a default theme.
>> 
>> Martin Grigorov
>> Wicket Training and Consulting
>> 
>> 
>> On Thu, Mar 20, 2014 at 4:11 PM, Richter, Marvin < 
>> marvin.rich...@jestadigital.com> wrote:
>> 
>>> Hi,
>>> 
>>> How do I use a customized Bootstrap CCS file in wicket-bootstrap?
>>> 
>>> I tried this:
>>> new BootstrapSettings().setCssResourceReference(new
>>> PackageResourceReference(CcaWebApplication.class,
>>> "customized-bootstrap.css"));
>>> 
>>> Unfortunately getCssResourceReference will never be called, instead 
>>> the reference from the DefaultThemeProvider will be used.
>>> 
>>> But I don't really want to write my own ThemeProvider just to 
>>> replace the CssResourceReference
>>> 
>>> Best Regards,
>>> 
>>> Marvin Richter
>>> 
>>> 
>> 


-
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: Wicket-Bootstrap 0.9.2 js resource not found.

I have decided to switch to 0.9.3-SNAPSHOT after getting latest code to
build. Will work on migrating to 3.1 and see if that helps.

Thanks

David


On 21 March 2014 11:43, David Beer  wrote:

> Hi Martin
>
> I have been wondering about switching to 0.9.3-SNAPSHOT, I have a couple
> of concerns. This is for 3.1.x and 0.9.2 is for 3.0.x and there is quite a
> difference wondering how much I have to change. However the change may be
> worth it as twbs seems to moving forward quite fast with 3.1.x. The other
> is that the latest code failed to build, and I am not sure how recent the
> deployed jars are in maven.
>
> The third is more of a question is there a way of disabling webjars for
> bootstrap and using CDN. like 0.9.3-SNAPSHOT does/
>
> Thanks
>
> David
>
>
> On 21 March 2014 09:40, Martin Grigorov  wrote:
>
>> Hi,
>>
>> JBoss uses their own virtual file system and I remember it
>> Wicket-Bootstrap
>> had problems with it before.
>> In 0.9.3-SNAPSHOT it is possible to avoid usage of webjars so I'd
>> recommend
>> you to use non-webjars in JBoss from now on.
>>
>> https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/337
>>
>> Martin Grigorov
>> Wicket Training and Consulting
>>
>>
>> On Thu, Mar 20, 2014 at 7:52 PM, David Beer 
>> wrote:
>>
>> > Hi All
>> >
>> > I am updating a wicket-bootstrap application from 0.9.0-SNAPSHOT to
>> 0.9.2
>> > and am getting the following error message logged. I am running JBoss AS
>> > 7.1. None of the js seems to work.
>> >
>> > [org.apache.wicket.request.resource.ResourceReferenceRegistry]
>> > (http--127.0.0.1-8080-5) A ResourceReference wont be created for a
>> resource
>> > with key [scope:
>> >
>> >
>> de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference;
>> > name: webjars/bootstrap/null/js/bootstrap.js; locale: null; style: null;
>> > variation: null] because it cannot be located.
>> >
>> > Page source for js css declarations is as follows:
>> >
>> > > > rel="stylesheet" type="text/css"
>> >
>> >
>> href="./wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
>> > > >
>> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
>> > >"
>> > />> >
>> >
>> src="./wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
>> > > >
>> http://localhost:8080/Tansu/wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
>> > >">> > type="text/javascript"
>> >
>> >
>> src="./wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery-ver-1392391424000.js
>> > > >
>> http://localhost:8080/Tansu/wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery-ver-1392391424000.js
>> > >">
>> >Tansu - File Sharing and
>> > Storage> > content="width=device-width, initial-scale=1.0, maximum-scale=1,
>> > user-scalable=no">
>> > 
>> >   
>> > http://localhost:8080/Tansu/style.css>" type="text/css"
>> > media="screen" title="Stylesheet"/>> >
>> >
>> src="./wicket/resource/de.agilecoders.wicket.core.markup.html.references.JQueryMigrateJavaScriptReference/js/jquery-migrate-1.2.1-ver-139176153.js
>> > > >
>> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.core.markup.html.references.JQueryMigrateJavaScriptReference/js/jquery-migrate-1.2.1-ver-139176153.js
>> > >">> > type="text/javascript" id="bootstrap-js" defer="defer"
>> >
>> >
>> src="./wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/bootstrap/null/js/bootstrap.js
>> > > >
>> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/bootstrap/null/js/bootstrap.js
>> > >">> > rel="stylesheet" type="text/css"
>> >
>> >
>> href="./wicket/resource/de.agilecoders.wicket.extensions.markup.html.bootstrap.icon.FontAwesomeCssReference/css/font-awesome-ver-139176153.css
>> 

Re: Wicket-Bootstrap 0.9.2 js resource not found.

Hi Martin

I have been wondering about switching to 0.9.3-SNAPSHOT, I have a couple of
concerns. This is for 3.1.x and 0.9.2 is for 3.0.x and there is quite a
difference wondering how much I have to change. However the change may be
worth it as twbs seems to moving forward quite fast with 3.1.x. The other
is that the latest code failed to build, and I am not sure how recent the
deployed jars are in maven.

The third is more of a question is there a way of disabling webjars for
bootstrap and using CDN. like 0.9.3-SNAPSHOT does/

Thanks

David


On 21 March 2014 09:40, Martin Grigorov  wrote:

> Hi,
>
> JBoss uses their own virtual file system and I remember it Wicket-Bootstrap
> had problems with it before.
> In 0.9.3-SNAPSHOT it is possible to avoid usage of webjars so I'd recommend
> you to use non-webjars in JBoss from now on.
>
> https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/337
>
> Martin Grigorov
> Wicket Training and Consulting
>
>
> On Thu, Mar 20, 2014 at 7:52 PM, David Beer 
> wrote:
>
> > Hi All
> >
> > I am updating a wicket-bootstrap application from 0.9.0-SNAPSHOT to 0.9.2
> > and am getting the following error message logged. I am running JBoss AS
> > 7.1. None of the js seems to work.
> >
> > [org.apache.wicket.request.resource.ResourceReferenceRegistry]
> > (http--127.0.0.1-8080-5) A ResourceReference wont be created for a
> resource
> > with key [scope:
> >
> >
> de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference;
> > name: webjars/bootstrap/null/js/bootstrap.js; locale: null; style: null;
> > variation: null] because it cannot be located.
> >
> > Page source for js css declarations is as follows:
> >
> >  > rel="stylesheet" type="text/css"
> >
> >
> href="./wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
> >  >
> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
> > >"
> > /> >
> >
> src="./wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
> >  >
> http://localhost:8080/Tansu/wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
> > >"> > type="text/javascript"
> >
> >
> src="./wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery-ver-1392391424000.js
> >  >
> http://localhost:8080/Tansu/wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery-ver-1392391424000.js
> > >">
> >Tansu - File Sharing and
> > Storage > content="width=device-width, initial-scale=1.0, maximum-scale=1,
> > user-scalable=no">
> > 
> >   
> > http://localhost:8080/Tansu/style.css>" type="text/css"
> > media="screen" title="Stylesheet"/> >
> >
> src="./wicket/resource/de.agilecoders.wicket.core.markup.html.references.JQueryMigrateJavaScriptReference/js/jquery-migrate-1.2.1-ver-139176153.js
> >  >
> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.core.markup.html.references.JQueryMigrateJavaScriptReference/js/jquery-migrate-1.2.1-ver-139176153.js
> > >"> > type="text/javascript" id="bootstrap-js" defer="defer"
> >
> >
> src="./wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/bootstrap/null/js/bootstrap.js
> >  >
> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/bootstrap/null/js/bootstrap.js
> > >"> > rel="stylesheet" type="text/css"
> >
> >
> href="./wicket/resource/de.agilecoders.wicket.extensions.markup.html.bootstrap.icon.FontAwesomeCssReference/css/font-awesome-ver-139176153.css
> >  >
> http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.extensions.markup.html.bootstrap.icon.FontAwesomeCssReference/css/font-awesome-ver-139176153.css
> > >"
> > /> > >/* > $('#component39
> > .dropdown-toggle').dropdown();;;});/*

Re: custom bootstrap stylesheet

it’s a bit simpler… ;)

class CcaTheme extends Theme {
public CcaTheme() {
super(„cca-theme“, new 
PackageResourceReference(CcaWebApplication.class, "customized-bootstrap.css"));
}
}

and during application initialization:

settings.setThemeProvider(new SingleThemeProvider(new CcaTheme()));
Bootstrap.install(this, settings);


cheers,
Michael

Am 20.03.2014 um 16:47 schrieb Richter, Marvin 
:

> So I do have to override DefaultThemeProvider and return a 
> BootstrapTheme(ISettings), where in Settings is my custom 
> CssResourceReference?
> 
> And then set this ThemeProvider as activeThemeProvider in the Settings?
> 
> That sounds really strange to me.
> 
> Marvin Richter
> 
> 
> -Original Message-
> From: Martin Grigorov [mailto:mgrigo...@apache.org] 
> Sent: Thursday, March 20, 2014 3:35 PM
> To: users@wicket.apache.org
> Subject: Re: custom bootstrap stylesheet
> 
> See https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/339 for an example
> 
> Martin Grigorov
> Wicket Training and Consulting
> 
> 
> On Thu, Mar 20, 2014 at 4:29 PM, Richter, Marvin < 
> marvin.rich...@jestadigital.com> wrote:
> 
>> Where should I set this?
>> The BootstrapSettings only provide the method :
>> setThemeProvider(ThemeProvider t);
>> 
>> but not:
>> setTheme(Theme t);
>> 
>> Marvin Richter
>> 
>> -Original Message-
>> From: Martin Grigorov [mailto:mgrigo...@apache.org]
>> Sent: Thursday, March 20, 2014 3:23 PM
>> To: users@wicket.apache.org
>> Subject: Re: custom bootstrap stylesheet
>> 
>> Hi,
>> 
>> Set BootstrapTheme(IBootstrapSettings) as a default theme.
>> 
>> Martin Grigorov
>> Wicket Training and Consulting
>> 
>> 
>> On Thu, Mar 20, 2014 at 4:11 PM, Richter, Marvin < 
>> marvin.rich...@jestadigital.com> wrote:
>> 
>>> Hi,
>>> 
>>> How do I use a customized Bootstrap CCS file in wicket-bootstrap?
>>> 
>>> I tried this:
>>> new BootstrapSettings().setCssResourceReference(new
>>> PackageResourceReference(CcaWebApplication.class,
>>> "customized-bootstrap.css"));
>>> 
>>> Unfortunately getCssResourceReference will never be called, instead 
>>> the reference from the DefaultThemeProvider will be used.
>>> 
>>> But I don't really want to write my own ThemeProvider just to 
>>> replace the CssResourceReference
>>> 
>>> Best Regards,
>>> 
>>> Marvin Richter
>>> 
>>> 
>> 


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



Re: DefaultExceptionMapper-Connection lost, give up responding.

Hi,

This error happens when the browser closes the connection to the server for
some reason. The error says that the server cannot write the response back
to the browser.
I have seen this error with IE when IE switches its modes (compatibility
mode, render mode) for some reason.
You may have chance to find out the reason with IE 9+ Dev Tools -> Network
tab.

Martin Grigorov
Wicket Training and Consulting


On Thu, Mar 20, 2014 at 7:21 PM, eaglei22  wrote:

> I am getting this error in IE while using a modal window to perform a
> search
> of the database:
>
> Mar 20 09:50:10 ERROR DefaultExceptionMapper-Connection lost, give up
> responding.
> org.apache.wicket.protocol.http.servlet.ResponseIOException:
> ClientAbortException:  java.net.SocketException: Broken pipe
> at
>
> org.apache.wicket.protocol.http.servlet.ServletWebResponse.write(ServletWebResponse.java:139)
> at
>
> org.apache.wicket.protocol.http.HeaderBufferingWebResponse.write(HeaderBufferingWebResponse.java:191)
> at
> org.apache.wicket.request.Response$StreamAdapter.write(Response.java:148)
> at org.apache.wicket.util.io.Streams.copy(Streams.java:109)
> at org.apache.wicket.util.io.Streams.copy(Streams.java:76)
> at
>
> org.apache.wicket.request.resource.AbstractResource$WriteCallback.writeStream(AbstractResource.java:707)
> at
>
> org.apache.wicket.request.resource.ResourceStreamResource$2.writeData(ResourceStreamResource.java:207)
> at
>
> org.apache.wicket.request.resource.AbstractResource.respond(AbstractResource.java:528)
> at
>
> org.apache.wicket.request.handler.resource.ResourceStreamRequestHandler.respond(ResourceStreamRequestHandler.java:139)
> at
>
> org.apache.wicket.markup.html.link.DownloadLink$1.respond(DownloadLink.java:178)
> at
>
> org.apache.wicket.request.cycle.RequestCycle$HandlerExecutor.respond(RequestCycle.java:861)
> at
>
> org.apache.wicket.request.RequestHandlerStack.execute(RequestHandlerStack.java:64)
> at
>
> org.apache.wicket.request.RequestHandlerStack.execute(RequestHandlerStack.java:97)
> at
> org.apache.wicket.request.cycle.RequestCycle.execute(RequestCycle.java:261)
> at
>
> org.apache.wicket.request.cycle.RequestCycle.processRequest(RequestCycle.java:218)
> at
>
> org.apache.wicket.request.cycle.RequestCycle.processRequestAndDetach(RequestCycle.java:289)
> at
>
> org.apache.wicket.protocol.http.WicketFilter.processRequestCycle(WicketFilter.java:259)
> at
>
> org.apache.wicket.protocol.http.WicketFilter.processRequest(WicketFilter.java:201)
> at
>
> org.apache.wicket.protocol.http.WicketFilter.doFilter(WicketFilter.java:282)
> at
>
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:243)
> at
>
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:210)
> at
>
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:225)
> at
>
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:123)
> at
>
> org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:472)
> at
>
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:168)
> at
>
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:98)
> at
> org.apache.catalina.valves.AccessLogValve.invoke(AccessLogValve.java:927)
> at
>
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
> at
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)
> at
>
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:118)
> at
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:407)
> at
> org.apache.coyote.ajp.AjpProcessor.process(AjpProcessor.java:200)
> at
>
> org.apache.coyote.AbstractProtocol$AbstractConnectionHandler.process(AbstractProtocol.java:585)
> at
>
> org.apache.tomcat.util.net.JIoEndpoint$SocketProcessor.run(JIoEndpoint.java:310)
> at
>
> java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1110)
> at
>
> java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:603)
> at java.lang.Thread.run(Thread.java:722)
> Caused by: ClientAbortException:  java.net.SocketException: Broken pipe
> at
>
> org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:388)
> at
> org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:462)
> at org.apache.tomcat.util.buf.ByteChunk.append(ByteChunk.java:366)
> at
>
> org.apache.catalina.connector.OutputBuffer.writeBytes(OutputBuffer.java:413)
> at
> org.apache.catalina.connector.OutputBuffer.write(OutputBuffer.java:401)
> at
>
> org.apache.catalina.con

Re: Show textfield as plaintext when disabled?

Hi,

I think it is OK to remove 'final' from TextArea's #onComponentTagBody().
Please file a ticket.
About the other problem - you cannot just skip Java components when there
are HTML elements for them. You either have to use some Panel that shows
the read-only version of the radio group, or you need to use "empty" Java
components, like WebMarkupContainer/WebComponent, i.e. a Java component
that won't render anything but will just fulfil the need of a Java
component in the hierarchy.

Martin Grigorov
Wicket Training and Consulting


On Thu, Mar 20, 2014 at 7:27 PM, Entropy  wrote:

> Of course the instant I submit the question, I thought of something else to
> try.  I stopped overriding onComponentTag and changed the body to:
>
> @SuppressWarnings("unchecked")
> public void onComponentTagBody(final MarkupStream markupStream,
> final
> ComponentTag openTag) {
> if (!isEnabledInHierarchy()) {
> replaceComponentTagBody(markupStream, openTag,
> convertValueToRender((T)getDefaultModelObject()));
> }
> super.onComponentTagBody(markupStream, openTag);
> }
>
> it turns out the prior error was when the item was enabled.  The super lets
> me get past the enabled phase and to when it is disabled.  At which point
> the below error happens.  This error is much more to the point.  It doesn't
> like that I have children and am erasing my body.  But that's actually what
> I want to do.  How can I tell wicket that I really do want that?
>
> And of course the TextArea question still stands.
>
> This results in
> org.apache.wicket.markup.MarkupException: Expected close tag for
> '' Possible attempt to embed
> component(s) ''
> in
> the body of this component which discards its body
>
>
>
> --
> View this message in context:
> http://apache-wicket.1842946.n4.nabble.com/Show-textfield-as-plaintext-when-disabled-tp4664723p4665062.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
>
>


Re: Wicket-Bootstrap 0.9.2 js resource not found.

Hi,

JBoss uses their own virtual file system and I remember it Wicket-Bootstrap
had problems with it before.
In 0.9.3-SNAPSHOT it is possible to avoid usage of webjars so I'd recommend
you to use non-webjars in JBoss from now on.

https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/337

Martin Grigorov
Wicket Training and Consulting


On Thu, Mar 20, 2014 at 7:52 PM, David Beer  wrote:

> Hi All
>
> I am updating a wicket-bootstrap application from 0.9.0-SNAPSHOT to 0.9.2
> and am getting the following error message logged. I am running JBoss AS
> 7.1. None of the js seems to work.
>
> [org.apache.wicket.request.resource.ResourceReferenceRegistry]
> (http--127.0.0.1-8080-5) A ResourceReference wont be created for a resource
> with key [scope:
>
> de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference;
> name: webjars/bootstrap/null/js/bootstrap.js; locale: null; style: null;
> variation: null] because it cannot be located.
>
> Page source for js css declarations is as follows:
>
>  rel="stylesheet" type="text/css"
>
> href="./wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
>  http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.themes.markup.html.bootswatch.BootswatchCssReference/css/bootstrap.spacelab-ver-139176153.css
> >"
> />
> src="./wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
>  http://localhost:8080/Tansu/wicket/resource/org.apache.wicket.resource.JQueryResourceReference/jquery/jquery-1.11.0-ver-1392391424000.js
> >"> type="text/javascript"
>
> src="./wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery-ver-1392391424000.js
>  http://localhost:8080/Tansu/wicket/resource/org.apache.wicket.ajax.AbstractDefaultAjaxBehavior/res/js/wicket-event-jquery-ver-1392391424000.js
> >">
>Tansu - File Sharing and
> Storage content="width=device-width, initial-scale=1.0, maximum-scale=1,
> user-scalable=no">
> 
>   
> http://localhost:8080/Tansu/style.css>" type="text/css"
> media="screen" title="Stylesheet"/>
> src="./wicket/resource/de.agilecoders.wicket.core.markup.html.references.JQueryMigrateJavaScriptReference/js/jquery-migrate-1.2.1-ver-139176153.js
>  http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.core.markup.html.references.JQueryMigrateJavaScriptReference/js/jquery-migrate-1.2.1-ver-139176153.js
> >"> type="text/javascript" id="bootstrap-js" defer="defer"
>
> src="./wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/bootstrap/null/js/bootstrap.js
>  http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.webjars.request.resource.WebjarsJavaScriptResourceReference/webjars/bootstrap/null/js/bootstrap.js
> >"> rel="stylesheet" type="text/css"
>
> href="./wicket/resource/de.agilecoders.wicket.extensions.markup.html.bootstrap.icon.FontAwesomeCssReference/css/font-awesome-ver-139176153.css
>  http://localhost:8080/Tansu/wicket/resource/de.agilecoders.wicket.extensions.markup.html.bootstrap.icon.FontAwesomeCssReference/css/font-awesome-ver-139176153.css
> >"
> /> >/* $('#component39
> .dropdown-toggle').dropdown();;;});/*]]>*/
>
> Any Thoughts or help on this is much appreciated.
>