mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-05 01:16:27 +00:00
17f3867371
# Conflicts: # CHANGELOG.md
2 KiB
2 KiB
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 159: Graph topo & MR 164: branche de création de graph
Add a graph of the network topology Install graphviz:
apt-get -y install graphviz
Create the media/images directory:
mkdir -p media/images
MR 163: Fix install re2o
Refactored install_re2o.sh script.
- There are more tools available with it but some function have changed, report to the dedicated wiki pagefor more informations or run:
install_re2o.sh help
- The installation templates (LDIF files and
re2o/settings_locale.example.py
) have been changed to useexample.net
instead ofexample.org
(more neutral and generic)
MR 176: Add awesome Logo
Add the logo and fix somme issues on the navbar and home page. Only collecting the statics is needed:
python3 manage.py collectstatic
MR 172: Refactor API
Creates a new (nearly) REST API to expose all models of Re2o. See the dedicated wiki page for more details on how to use it.
- For testing purpose, add
volatildap
package:
pip3 install volatildap
- Activate HTTP Authorization passthrough in by adding the following in
/etc/apache2/site-available/re2o.conf
(example ininstall_utils/apache2/re2o.conf
):
WSGIPassAuthorization On
- Activate the API if you want to use it by adding
'api'
to the optional apps inre2o/settings_local.py
:
OPTIONAL_APPS = (
...
'api',
...
)