Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/martin-g/wicket-bootstrap
Apache Wicket components for Twitter Bootstrap - Wicket-Bootstrap is based on Twitter's toolkit (bootstrap) and the Apache Wicket Framework.
https://github.com/martin-g/wicket-bootstrap
Last synced: 4 days ago
JSON representation
Apache Wicket components for Twitter Bootstrap - Wicket-Bootstrap is based on Twitter's toolkit (bootstrap) and the Apache Wicket Framework.
- Host: GitHub
- URL: https://github.com/martin-g/wicket-bootstrap
- Owner: martin-g
- Created: 2012-02-13T16:04:53.000Z (almost 13 years ago)
- Default Branch: wicket-10.x-bootstrap-5.x
- Last Pushed: 2024-04-12T14:17:16.000Z (9 months ago)
- Last Synced: 2024-04-13T21:00:06.546Z (9 months ago)
- Language: Java
- Homepage: https://wicketbootstrap.teliclab.info/
- Size: 25 MB
- Stars: 290
- Watchers: 43
- Forks: 162
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
WICKET COMPONENTS FOR BOOTSTRAP
=======================================[![Join the chat at https://gitter.im/l0rdn1kk0n/wicket-bootstrap](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/l0rdn1kk0n/wicket-bootstrap?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
Wicket-Bootstrap is based on the Bootstrap toolkit and the [Apache Wicket Framework](https://wicket.apache.org/).
| Branch | Build |
| ------ | ----- |
| wicket-10.x-bootstrap-5.x | [![Java CI](https://github.com/martin-g/wicket-bootstrap/actions/workflows/run_tests.yml/badge.svg?branch=wicket-10.x-bootstrap-5.x)](https://github.com/martin-g/wicket-bootstrap/actions/workflows/run_tests.yml) |
| wicket-9.x-bootstrap-5.x | [![Java CI](https://github.com/martin-g/wicket-bootstrap/actions/workflows/run_tests.yml/badge.svg?branch=wicket-9.x-bootstrap-5.x)](https://github.com/martin-g/wicket-bootstrap/actions/workflows/run_tests.yml) |
| wicket-9.x-bootstrap-4.x | [![Java CI](https://github.com/martin-g/wicket-bootstrap/actions/workflows/run_tests.yml/badge.svg?branch=wicket-9.x-bootstrap-4.x)](https://github.com/martin-g/wicket-bootstrap/actions/workflows/run_tests.yml) |
| wicket-8.x-bootstrap-4.x | [![Java CI](https://github.com/martin-g/wicket-bootstrap/actions/workflows/run_tests.yml/badge.svg?branch=wicket-8.x-bootstrap-4.x)](https://github.com/martin-g/wicket-bootstrap/actions/workflows/run_tests.yml) |
Current release version:* [Wicket 10.x](http://wicket.apache.org/) and [Bootstrap 5.x](https://github.com/twbs/bootstrap/): 7.x
* [Wicket 9.x](http://wicket.apache.org/) and [Bootstrap 5.x](https://github.com/twbs/bootstrap/): 6.x
* [Wicket 9.x](http://wicket.apache.org/) and [Bootstrap 4.x](https://github.com/twbs/bootstrap/): 5.x
* [Wicket 9.x](http://wicket.apache.org/) and [Bootstrap 3.4.0](https://github.com/twbs/bootstrap/): 4.x
* [Wicket 8.x](http://wicket.apache.org/) and [Bootstrap 4.x](https://github.com/twbs/bootstrap/): 3.x
* [Wicket 8.x](http://wicket.apache.org/) and [Bootstrap 3.4.0](https://github.com/twbs/bootstrap/): 2.x
* [Wicket 7.x](http://wicket.apache.org/) and [Bootstrap 3.3.7](https://github.com/twbs/bootstrap/): 0.10.x
* [Wicket 6.x](http://wicket.apache.org/) and [Bootstrap 3.3.7](https://github.com/twbs/bootstrap/): 0.9.x
* Wicket 6.x and Bootstrap 2.*: 0.8.4Themes
------* Bootstrap (5.3.2): http://getbootstrap.com/
* Bootswatch (5.3.2): http://bootswatch.com/
* Material Design by FezVrasta (0.3.0): https://github.com/FezVrasta/bootstrap-material-design
* todc-bootstrap, google styled theme (3.3.7): https://todc.github.io/todc-bootstrap
* metro-bootstrap (3.3.7): https://github.com/idleberg/m8tro-bootstrap
* Vegibit (3.1.1): http://vegibit.com/vegithemes-twitter-bootstrap-themes/Extensions
----------* DatePicker: https://github.com/eternicode/bootstrap-datepicker
* Html5 Video Player: http://html5-ninja.com/item/Bootstrap-video-player-jQuery-plugin
* Open-On-Hover for dropdown buttons: https://github.com/CWSpear/twitter-bootstrap-hover-dropdown
* JQueryUI (1.11.4): http://api.jqueryui.com/
* Draggable: http://api.jqueryui.com/draggable
* Resizable: http://api.jqueryui.com/resizable
* jsass: (5.7.3) https://github.com/bit3/jsass
* bootstrap-tour (0.10.3): http://sorich87.github.com/bootstrap-tour
* OpenWebIcons (2014-09-29): https://pfefferle.dev/openwebicons/
* [Twitter Typeahead (0.9.3)](https://github.com/l0rdn1kk0n/wicket-bootstrap/tree/master/bootstrap-extensions/src/main/java/de/agilecoders/wicket/extensions/markup/html/bootstrap/form/typeahead): http://twitter.github.io/typeahead.js/
* [Twitter Typeahead (0.10.x)](https://github.com/l0rdn1kk0n/wicket-bootstrap/tree/master/bootstrap-extensions/src/main/java/de/agilecoders/wicket/extensions/markup/html/bootstrap/form/typeaheadv10): http://twitter.github.io/typeahead.js/
* [FontAwesome](https://fontawesome.com/) in version 6 (default) or 5FontAwesome
-----------You can use FontAwesome 5 or 6 with version 6 as the default.
To override the default and use FontAwesome 5, override the version of the dependency in your pom.xml:```xml
org.webjars
font-awesome
5.15.4```
For components in `bootstrap-extensions` that use FontAwesome icons to follow that choice,
set the Bootstrap version as follows:```java
// best place to do this is in Application#init()
FontAwesomeSettings.get(Application.get()).setCssResourceReference(FontAwesome5CssReference.instance());
```## Maven
wicket-bootstrap is [available](https://search.maven.org/artifact/de.agilecoders.wicket/wicket-bootstrap-core) in Maven central repository.core maven dependency:
```xml
de.agilecoders.wicket
wicket-bootstrap-core
6.y.z```
for all extensions:
```xml
de.agilecoders.wicket
wicket-bootstrap-extensions
6.y.z```
for all themes:
```xml
de.agilecoders.wicket
wicket-bootstrap-themes
6.y.z```
if you want to use a less compiler:
```xml
de.agilecoders.wicket
wicket-bootstrap-less
6.y.z```
all samples can be used with this dependency:
```xml
de.agilecoders.wicket
wicket-bootstrap-samples
6.y.z```
Installation
------------
Install bootstrap settings class:```java
// best place to do this is in Application#init()
Bootstrap.install(this);// if you want to customize bootstrap:
BootstrapSettings settings = new BootstrapSettings();
settings.setXXX(...);
Bootstrap.install(this, settings);
```then you are able to use all wicket-bootstrap components.
Authors
-------[![OpenHub profile for Michael Haitz](https://www.openhub.net/accounts/l0rdn1kk0n/widgets/account_detailed.gif)](https://www.openhub.net/accounts/l0rdn1kk0n?ref=Detailed)
[![OpenHub profile for Martin Grigorov](https://www.openhub.net/accounts/mgrigorov/widgets/account_detailed.gif)](https://www.openhub.net/accounts/mgrigorov?ref=Detailed)
powered by [![Jetbrains](https://www.jetbrains.com/idea/docs/logo_intellij_idea.png)](https://www.jetbrains.com/idea)
Bug tracker
-----------Have a bug? Please create an issue here on GitHub!
https://github.com/l0rdn1kk0n/wicket-bootstrap/issues
Versioning
----------Wicket-Bootstrap will be maintained under the Semantic Versioning guidelines as much as possible.
Releases will be numbered with the follow format:
`..`
And constructed with the following guidelines:
* Breaking backward compatibility bumps the major
* New additions without breaking backward compatibility bumps the minor
* Bug fixes and misc changes bump the patchFor more information on SemVer, please visit http://semver.org/.
Copyright and license
---------------------Copyright 2012 AgileCoders.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this work except in compliance with the License.
You may obtain a copy of the License in the LICENSE file, or at:http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.