mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
32 lines
886 B
Markdown
32 lines
886 B
Markdown
## MR 160: Datepicker
|
|
|
|
Install libjs-jquery libjs-jquery-ui libjs-jquery-timepicker libjs-bootstrap javascript-common
|
|
```
|
|
apt-get -y install \
|
|
libjs-jquery \
|
|
libjs-jquery-ui \
|
|
libjs-jquery-timepicker \
|
|
libjs-bootstrap \
|
|
javascript-common
|
|
```
|
|
Enable javascript-common conf
|
|
```
|
|
a2enconf javascript-common
|
|
```
|
|
|
|
Delete old jquery files :
|
|
```
|
|
rm -r static_files/js/jquery-ui-*
|
|
rm static_files/js/jquery-2.2.4.min.js
|
|
rm static/css/jquery-ui-timepicker-addon.css
|
|
```
|
|
|
|
|
|
## MR 163: Fix install re2o
|
|
|
|
Refactored install_re2o.sh script.
|
|
* There are more tools available with it but some fucntion have changed, report to [the dedicated wiki page](for more informations) or run:
|
|
```
|
|
install_re2o.sh help
|
|
```
|
|
* The installation templates (LDIF files and `re2o/settings_locale.example.py`) have been changed to use `example.net` instead of `example.org` (more neutral and generic)
|