Re: wicket-bootstrap navbar - SEARCH button

2012-11-14 Thread Michael Haitz
hi, do you want to use wicket-bootstrap or do you want to implement it by yourself? best, Michael Am 23.10.2012 um 13:45 schrieb ronny.v...@consult.nordea.com: > Hi There > > Any with a quick answer on how to implement a search like in: > http://wb.agilecoders.de/demo/components?1#navbar > >

Re: wicket-bootstrap navbar - SEARCH button

2012-11-21 Thread Michael Haitz
etty easy to do and works just fine. > > > > 2012/11/15 > >> Hi >> >> I was as mentioned looking at demo, which includes a search. >> If wicket-bootstrap support such? I could not find? >> >> Regards >> Ronny >> >> -Ori

Re: CSS bundles order does not seem stable when using an application

2013-03-17 Thread Michael Haitz
you can add a dependency to the bootstrap resource reference in your own BaseCssResourceReference: @Override public Iterable getDependencies() { List dependencies = new ArrayList(); dependencies.add(JavaScriptHeaderItem.forReference(Bootstrap.plain())); re

Re: CSS bundles order does not seem stable when using an application

2013-03-17 Thread Michael Haitz
a tag, the order is > disturbed. > This was not the case when my application was not using > getResourceBundles().addCssBundle in the Application.init. > > On Sun, 2013-03-17 at 16:26 +0100, Michael Haitz wrote: > >> you can add a dependency to the bootstrap resource refer

Re: CSS bundles order does not seem stable when using an application

2013-03-18 Thread Michael Haitz
will break the bootstrap images. > > On Sun, 2013-03-17 at 22:45 +0100, Michael Haitz wrote: > >> does adding the bootstrap css resource reference to the bundle solve your >> problem? >> >> sorry, i don't have access to the code at the moment. >> >&g

Re: Serverside caching of IResource's that are expensive to generate

2013-03-26 Thread Michael Haitz
Wicket has a CachingResourceStreamLocator that caches the resource streams. here's my wicket less implementation, could be helpful too: https://github.com/l0rdn1kk0n/wicket-bootstrap/tree/master/bootstrap-less Am 26.03.2013 um 01:01 schrieb Pointbreak : > I have implemented a LessCssResource (

Re: Serving wicket JS from CDN?

2013-04-03 Thread Michael Haitz
Hi, you can use https://developers.google.com/speed/libraries/devguide#Libraries instead of your local resources. e.g. //ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js best, Michael Am 02.04.2013 um 19:27 schrieb Chris Colman : > Is anyone thinking about serving JS required by wic

Re: Server side caching of generated resources

2013-06-17 Thread Michael Haitz
Hi Thomas, it depends on your deployment mode: if (application.usesDevelopmentConfig()) { // development mode: // use last-modified timestamp of packaged resource for resource caching // cache the version information for the lifetime of the current http request r

Re: Server side caching of generated resources

2013-06-17 Thread Michael Haitz
ach resource on all your containers and you need some heap space for the content. best, Michael Am 17.06.2013 um 16:02 schrieb Michael Haitz : > Hi Thomas, > > it depends on your deployment mode: > > if (application.usesDevelopmentConfig()) > { > // developmen

Re: Server side caching of generated resources

2013-06-18 Thread Michael Haitz
t my origin for CSS resources and > the load generated by this is getting too high. > > Thanks a lot for your suggestions. I'll try to think of a solution that > does not involve Wicket. > > Cheers, > > Thomas > > > > On Mon, Jun 17, 2013 at 4:57 PM

Re: Wicket merchandise

2013-09-19 Thread Michael Haitz
+1 Martin Grigorov Am 18.09.2013 um 21:10 schrieb nino martinez wael : > Hi Guys > > long time no see.. Apparently there are some money left on the wicket > merchandise shop (http://www.cafepress.com/apachewicket).. So I suggest > that it's time for the community to nominee and vote on who sho

Re: Wicket-bootstrap Bootstrap 3 support

2013-09-25 Thread Michael Haitz
Hi, i've deployed a 0.9.0-SNAPSHOT to sonatype this morning ;) de.agilecoders.wicket wicket-bootstrap-core 0.9.0-SNAPSHOT cheers, Michael Am 25.09.2013 um 14:24 schrieb David Beer : > Hi All > > I am looking at using Bootstrap 3 for our next webapplication layout. I > have used 2.3.2

Re: Wicket-bootstrap Bootstrap 3 support

2013-10-01 Thread Michael Haitz
gt; fonts or icons have been attached to wicket-bootstrap)? >> >> best reagards >> >> marcel >> >>> Gesendet: Mittwoch, 25. September 2013 um 15:28 Uhr >>> Von: "Michael Haitz" >>> An: "" >>> Betreff: Re: Wicket-boo

Re: Wicket Bootstrap 3

2013-10-07 Thread Michael Haitz
Hi, there's an issue for that on github, the problem is related to guava 15.0 which contains a non cdi1.0 compatible beans.xml file. https://github.com/l0rdn1kk0n/wicket-bootstrap/issues/234 cheers, Michael Am 07.10.2013 um 17:21 schrieb David Beer : > Hi All > > I am trying out Wicket Boo

Re: set session-timeout

2013-10-21 Thread Michael Haitz
or you can add the following snippet to your web.xml: TIME_IN_MINUTES cheers, Michael Am 21.10.2013 um 16:34 schrieb francois meillet : > HttpSession httpSession = ((ServletWebRequest) > RequestCycle.get().getRequest()).getContainerRequest().getSession(); > httpSession.setMaxInactiveI

Re: SSL Offloading and Wicket

2013-12-12 Thread Michael Haitz
you could use "proxyPort“ in your connector configuration, but this will always override ‚getServerPort‘ with this value no matter you’ve a http or https request. Do you use an apache or nginx in front? Am 12.12.2013 um 05:05 schrieb Matthew Welch : > I'm sure I'm missing something simple as

Re: Wicket-Bootstrap Question

2014-01-10 Thread Michael Haitz
if you want to use bootstrap on all your pages, then use settings.setAutoAppendResources(true) instead of renderHead() { Bootstrap.renderHead(response); }. cheers, Michael Am 09.01.2014 um 19:32 schrieb Gabriel Landon : > In the init() method of your application class : > > final BootstrapSet

Re: 10th aniversary of wicket

2014-01-21 Thread Michael Haitz
+1 for Barcelona ;) Am 20.01.2014 um 11:25 schrieb Ernesto Reinaldo Barreiro : > Hi, > > > On Mon, Jan 20, 2014 at 11:12 AM, Martin Grigorov wrote: > >> I also would like to visit Cuba! :) >> > > Me too! But Cuba it might be a limitation for people from USA due to > embargo. > > >> >> An

Re: Wicket-bootstrap Bootstrap 3 support

2014-01-23 Thread Michael Haitz
wicket-bootstrap with bootstrap3 support was released yesterday. https://github.com/l0rdn1kk0n/wicket-bootstrap/releases Am 01.10.2013 um 10:14 schrieb Michael Haitz : > hi, > > i've fixed wicket-webjars and pushed a new version (0.3.0) to maven central. > > https://g

Re: [SPAM] wicket-bootstrap and another webjars components

2014-01-23 Thread Michael Haitz
the fix was merged to master and released with wicket-webjars 0.3.4 https://github.com/l0rdn1kk0n/wicket-webjars/releases/tag/wicket-webjars-parent-0.3.4 Am 25.11.2013 um 10:35 schrieb Martin Grigorov : > Hi, > > I've proposed a fix in wicket-webjars project (Pull Request 4). > Thanks for you

Re: custom bootstrap stylesheet

2014-03-21 Thread Michael Haitz
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 SingleThemePr

Re: [6.16] AjaxButton.onSubmit not working after upgrading to wicket 6

2014-07-06 Thread Michael Haitz
please provide the full stacktrace. cheers, Michael Am 06.07.2014 um 05:44 schrieb smallufo : > It seems working now. > But such removal also make theme-switching not working : > > If I enable the ThemeProvider : > >final ThemeProvider themeProvider = new > BootswatchThemeProvider(Bootswat

Re: OT: statistics about open source contributors

2014-07-14 Thread Michael Haitz
ohloh has a lot of interesting statistics, maybe there’s one that shows your numbers. Link: http://www.ohloh.net/people Am 14.07.2014 um 15:25 schrieb Ernesto Reinaldo Barreiro mailto:reier...@gmail.com>>: Hi, I know this is a bit off topic... but any of the smart guys over here knows some g