8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-05-13 14:16:10 +00:00
re2o/CHANGELOG.md

258 lines
7.8 KiB
Markdown
Raw Normal View History

# Re2o 2.9
TODO after install:
* !531: on the radius, add `buster-backports` to `/etc/apt/sources.list` and then run `apt update`, `apt install -t buster-backports freeradius`, `apt install python3-dev`, and `cat apt_requirements_radius.txt | xargs sudo apt -y install`.
* !582: run `sudo pip3 install -r pip_requirements.txt` and `python3 manage.py collectstatic`.
* `python3 manage.py migrate` and `sudo service apache2 reload` as usual.
* !589 : Add `ldap_sync` to your optional apps in your local settings if you want to keep using the LDAP synchronisation.
New features:
* !488: Use `+` in search to combine keywords.
* !495: Add option to allow users to override another user's room, if that user is no longer active
* !496: Add option to allow users to choose password during account creation. They will have to separately confirm their email address.
* !513: IP and MAC address history (`Statistics > Machine history` tab) which also works for delete interfaces. Uses already existing history so events before the upgrade are taken into account.
* !516: Detail event in user's history view (e.g. show `old_email -> new_email`).
* !569: Refactor navbar to make menu navigation easier.
* !569: Add ability to have custom themes.
* !582: Improve autocomplete fields so they load faster and have a clearer behavior (no more entering a value without clicking and thinking it was taken into account).
* ?: Add option to choose minimum password length.
* ?: Add ability to comment on tickets.
* !578 : Migrations squashed to ease the installation process. First step towards making the LDAP an optional feature dor re2o.
* !507 : New form for editing list rights that should make everyone happier.
* !589 : Move LDAP stuff to an optional app.
# Pevious to Re2o 2.9
2018-05-21 14:15:35 +00:00
## MR 160: Datepicker
Install libjs-jquery libjs-jquery-ui libjs-jquery-timepicker libjs-bootstrap javascript-common
2018-05-28 10:19:59 +00:00
```bash
apt-get -y install \
libjs-jquery \
libjs-jquery-ui \
libjs-jquery-timepicker \
libjs-bootstrap \
javascript-common
```
Enable javascript-common conf
2018-05-28 10:19:59 +00:00
```bash
a2enconf javascript-common
```
Delete old jquery files :
2018-05-28 10:19:59 +00:00
```bash
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
```
2018-05-21 14:15:35 +00:00
## 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
```
2018-05-21 14:15:35 +00:00
## MR 163: Fix install re2o
Refactored install_re2o.sh script.
2018-06-17 01:16:19 +00:00
* There are more tools available with it but some function have changed, report to [the dedicated wiki page](https://gitlab.federez.net/federez/re2o/wikis/User%20Documentation/Setup%20script)for more informations or run:
2018-05-21 14:15:35 +00:00
```
install_re2o.sh help
```
2018-05-28 10:19:59 +00:00
2018-05-21 14:15:35 +00:00
* 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)
2018-06-22 20:40:42 +00:00
## 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
```
2018-06-17 01:16:19 +00:00
## MR 172: Refactor API
2018-06-17 01:16:19 +00:00
Creates a new (nearly) REST API to expose all models of Re2o. See [the dedicated wiki page](https://gitlab.federez.net/federez/re2o/wikis/API/Raw-Usage) for more details on how to use it.
2018-06-21 14:19:08 +00:00
* For testing purpose, add `volatildap` package:
```
pip3 install volatildap
```
2018-06-17 01:16:19 +00:00
* Activate HTTP Authorization passthrough in by adding the following in `/etc/apache2/site-available/re2o.conf` (example in `install_utils/apache2/re2o.conf`):
```
WSGIPassAuthorization On
```
2018-06-17 01:16:19 +00:00
* Activate the API if you want to use it by adding `'api'` to the optional apps in `re2o/settings_local.py`:
```
OPTIONAL_APPS = (
...
'api',
...
2018-06-22 21:28:29 +00:00
)
```
## MR 177: Add django-debug-toolbar support
Add the possibility to enable `django-debug-toolbar` in debug mode. First install the APT package:
```
apt install pyhton3-django-debug-toolbar
```
And then activate it for Re2o by adding the app to the `OPTIONAL_APPS` in `re2o/settings_local.py`:
```python
OPTIONAL_APPS = (
# ...
'debug_toolbar',
# ...
)
```
If you to restrict the IP which can see the debug, use the `INTERNAL_IPS` options in `re2o/settings_local.py`:
```
INTERNAL_IPS = ["10.0.0.1", "10.0.0.2"]
```
2018-05-28 10:19:59 +00:00
## MR 145: Fix #117 : Use unix_name instead of name for ldap groups
Fix a mixing between unix_name and name for groups
After this modification you need to:
* Double-check your defined groups' unix-name only contain small letters
* Run the following commands to rebuild your ldap's groups:
```shell
python3 manage.py ldap_rebuild
2018-05-28 10:19:59 +00:00
```
* You may need to force your nslcd cache to be reloaded on some servers (else you will have to wait for the cache to be refreshed):
```bash
sudo nslcd -i groups
```
2018-07-03 16:53:44 +00:00
## MR 174 : Fix online payment + allow users to pay their subscription
Add the possibility to use custom payment methods. There is also a boolean field on the
Payments allowing every user to use some kinds of payment. You have to add the rights `cotisations.use_every_payment` and `cotisations.buy_every_article`
to the staff members so they can use every type of payment to buy anything.
Don't forget to run migrations, several settings previously in the `preferences` app ar now
in their own Payment models.
2018-07-13 11:29:07 +00:00
To have a closer look on how the payments works, please go to the wiki.
2018-07-12 14:24:45 +00:00
## MR 182: Add role models
2018-07-12 14:24:45 +00:00
Adds the Role model.
You need to ensure that your database character set is utf-8.
```sql
ALTER DATABASE re2o CHARACTER SET utf8;
```
## MR 247: Fix des comptes mails
Fix several issues with email accounts, you need to collect the static files.
```bash
./manage.py collectstatic
```
## MR 203 Add custom invoices
The custom invoices are now stored in database. You need to migrate your database :
```bash
python3 manage.py migrate
```
On some database engines (postgreSQL) you also need to update the id sequences:
```bash
python3 manage.py sqlsequencereset cotisations | python3 manage.py dbshell
```
2018-09-19 20:49:12 +00:00
## MR 296: Frontend changes
Install fonts-font-awesome
```bash
apt-get -y install fonts-font-awesome
```
Collec new statics
```bash
python3 manage.py collectstatic
```
2019-01-10 23:47:00 +00:00
## MR 391: Document templates and subscription vouchers
Re2o can now use templates for generated invoices. To load default templates run
```bash
./install update
```
Be carefull, you need the proper rights to edit a DocumentTemplate.
Re2o now sends subscription voucher when an invoice is controlled. It uses one
of the templates. You also need to set the name of the president of your association
to be set in your settings.
2019-09-05 21:20:09 +00:00
## MR 427: Tickets
Manually edit `settings_local.py` to provide the new `OPTIONNAL_APPS` lists:
```python
OPTIONNAL_APPS_RE2O = ('tickets',)
OPTIONNAL_APPS = OPTIONNAL_APPS_RE2O + (...,...,)
```
Don't forget to run migrations afterwards.
2019-09-08 12:59:00 +00:00
## MR 433 : upgrade django-ldapdb to 1.3.0
2019-09-08 13:07:28 +00:00
Uninstall the existing django-ldapdb installation
pip3 uninstall django-ldapdb
Install debian(buster) supported version
apt install python3-django-ldapdb
2019-09-08 12:59:00 +00:00
If you use MySQL, please run
```
SET GLOBAL SQL_MODE=ANSI_QUOTES;
```
2020-05-16 02:14:31 +00:00
## MR 531
To use the freeradius python3 backend, please add buster-backports sources to
your apt lists.
Then, install and update freeradius :
```bash
apt install -t buster-backports freeradius
apt install python3-dev
```
2020-05-16 10:54:36 +00:00
Make sure that all depending packages (python3-django etc) provided in the new
2020-05-16 02:14:31 +00:00
apt_requirements_radius.txt are installed.
2020-05-21 16:41:48 +00:00
## MR 535 : Routers
It is now possible to use a custom router file, if you want to have mutli database
support, with for example one as master database and one as replica database.
If you want to add a database routers, please fill in in settings_local.py
and add your databse.
Then, add a file "local_routers.py" in folder app re2o, and add your router path
in the settings_local.py file :
```python
LOCAL_ROUTERS = ["re2o.local_routers.DbRouter"]
```