Santiago L
9953124a95
Replace Context by dict
...
Since Django 1.10 template objects returned by get_template() and
select_template() no longer accept a Context in their render() method.
2021-05-24 11:19:30 +02:00
Santiago L
06c226d302
Handle HTML safe rendering on webapps & miscellaneous
...
Drop `allow_tags` attribute which has been removed on Django 2.0
2021-05-21 11:17:06 +02:00
Santiago L
4f695c2e6e
Handle HTML safe rendering on orchestration, resources & history
...
Drop `allow_tags` attribute which has been removed on Django 2.0
2021-05-21 10:47:27 +02:00
Santiago L
e6495a967b
Handle HTML safe rendering on issues, plans & saas
...
Drop `allow_tags` attribute which has been removed on Django 2.0
2021-05-21 10:07:59 +02:00
Santiago L
6d8a2ced53
Context shoud be dict on render_email_template()
...
template.Context intance is no longer accepted
2021-05-20 14:08:09 +02:00
Santiago L
a2927f7616
Add required param `renderer` to MarkDownWidget
2021-05-20 14:02:10 +02:00
Santiago L
f13fea5030
Fix display format on accounts, databases...
...
domains, mailboxes & mailer
Drop `allow_tags` attribute which has been removed on Django 2.0
2021-05-20 13:58:16 +02:00
Santiago L
f0683660ae
Fix display format on bills, orders & services
...
Drop `allow_tags` attribute which has been removed on Django 2.0
2021-05-17 14:15:12 +02:00
Santiago L
b24ddf7546
Handle empty ping response
2021-05-17 13:22:08 +02:00
Santiago L
3b4bb51925
Fix display format on SaaS & Sever admin list
...
mark_safe generated HTML
2021-05-17 13:20:18 +02:00
Santiago L
a6c5aa32df
Fix Mailbox creation.
...
Direct assignment to the reverse side of a many-to-many set is
prohibited. Use addresses.set() instead.
2021-05-17 12:54:16 +02:00
Santiago L
13b4ac5eee
Add required param `renderer` to ReadOnlyPasswordHashWidget
2021-05-13 14:42:05 +02:00
Santiago L
8dc792b851
Fix render() of PaddingCheckboxSelectMultiple widget
2021-05-13 12:37:17 +02:00
Santiago L
5a21f766b4
Add required param `renderer` to Widget.render
...
Added on Django 1.11 and required since 2.1
The renderer argument is added to the Widget.render() method.
https://docs.djangoproject.com/en/2.1/releases/1.11/#id2
2021-05-13 11:52:34 +02:00
Santiago L
7183174f4c
Handle empty address on Server.clean()
2021-05-13 10:57:48 +02:00
Santiago L
48ef1f21e3
Navigate through FK field to related model
...
Fix regression introduced by 7d975637d5
when there is a misunderstanding while replacing deprecated rel.to
2021-05-12 14:38:17 +02:00
Santiago L
aebbd424fc
Fix admin list_display with HTML content
2021-05-12 14:16:28 +02:00
Santiago L
5389f425ce
mark_safe display_websites & display_addresses
2021-05-12 13:55:47 +02:00
Santiago L
58be94bde2
Upgrade orchestra middlewares
...
Refactor to changes introduced on Django 1.10
https://docs.djangoproject.com/en/2.1/topics/http/middleware/#upgrading-pre-django-1-10-style-middleware
2021-05-11 14:00:41 +02:00
Santiago L
be5e06129a
Add password validation settings
...
New on Django 1.9
2021-05-11 13:48:26 +02:00
Santiago L
69df9780bf
Update setting MIDDLEWARE_CLASSES to MIDDLEWARE
2021-05-11 13:47:33 +02:00
Santiago L
f7627926cb
Replace detail_route with action decorator
...
DRF 3.10.0 deprecates the detail_route decorator in favor of action
2021-05-06 13:08:21 +02:00
Santiago L
d5fce3b6e2
Replace string_concat() with format_lazy()
...
On Django 1.11 django.utils.translation.string_concat() is
deprecated in favor of django.utils.text.format_lazy()
and it has been removed on Django 2.1
2021-05-06 12:07:17 +02:00
Santiago L
d6cebf66a2
DjangoFilterBackend moved to django_filters
2021-05-06 10:57:11 +02:00
Santiago L
0338b927cf
query.order_by is a tuple, update value to compare
2021-04-22 14:51:03 +02:00
Santiago L
97f1c7ef2b
Replace field.rel.to with field.remote_field.model
...
Field.rel and Field.remote_field.to are removed in Django 2.x
2021-04-22 14:44:47 +02:00
Santiago L
b6cf0c34f5
Call User.is_authenticated and User.is_anonymous as properties
2021-04-22 14:31:05 +02:00
Santiago L
7fa7106d72
Update migrations to include mandatory on_delete
...
Django 2.0
2021-04-22 14:18:01 +02:00
Santiago L
a8b17da992
Squash migrations
2021-04-22 13:29:09 +02:00
Santiago L
c689a6e44c
Fix Message.author on_cascade because cannot be null.
2021-04-22 10:52:33 +02:00
Santiago L
de979011f9
Deprecated Passing a 3-tuple or an app_name to include()
...
Django 1.9
2021-04-22 10:51:23 +02:00
Santiago L
7d975637d5
Replace ForeignKey.field.rel.to --> field.model
...
rel.to dropped on Django 2.0
2021-04-22 10:44:09 +02:00
Santiago L
d863598d81
Define on_delete argument for ForeignKey and OneToOneField
...
Required since Django 2.0
2021-04-22 10:28:00 +02:00
Santiago L
eadc06d4c5
django.core.urlresolvers moved to django.urls
...
Django 2.0
2021-04-21 14:27:18 +02:00
Santiago L
2b06652a5b
Handle edge cases of last day of the month of billing period.
2021-03-31 12:11:53 +02:00
Santiago L
dc722ec17a
Set env variable to skip REST_API tests.
2021-03-31 10:39:47 +02:00
Santiago L
e7aabf4799
Python3 requires to open explicitly on binary mode to write bytes
2021-03-30 17:46:42 +02:00
Cayo Puigdefabregas
fa8a895299
fixing test traffic monitors is a list
2021-03-30 15:21:50 +02:00
Cayo Puigdefabregas
091120d3c2
fixing test_traffic get_total
2021-03-30 15:21:23 +02:00
Cayo Puigdefabregas
c952d782cd
fixing mailbox test
2021-03-30 15:21:00 +02:00
Cayo Puigdefabregas
226327cacf
fixing job test
2021-03-30 15:20:37 +02:00
Cayo Puigdefabregas
6f043cd272
fixing ftp test
2021-03-30 15:20:25 +02:00
Cayo Puigdefabregas
0633df114e
fixing DomainBillingTest
2021-03-30 15:19:39 +02:00
Cayo Puigdefabregas
a53b71bab1
fixed choices
2021-03-30 15:19:19 +02:00
Cayo Puigdefabregas
c010c10157
fixed admin_login in test
2021-03-30 14:28:15 +02:00
Santiago L
acac7727c2
Fix services tests
2021-03-30 14:27:21 +02:00
Cayo Puigdefabregas
48ef6d63bc
Fixed bug in python backend
2021-03-30 14:25:10 +02:00
Santiago L
45bf31c9da
Fix freezegun version
2021-03-30 14:19:17 +02:00
Santiago L
08a76a8de4
Ignore Account.is_staff kwarg (auth.AbstractBaseUser)
2021-03-30 13:56:04 +02:00
Santiago L
14fbd98e33
Refactor PHP tests dropping legacy controller (backend)
2021-03-30 13:35:00 +02:00
Santiago L
58395147c9
Replace PasswdVirtualUserBackend with RoundcubeIdentityController
2021-03-30 13:13:26 +02:00
Santiago L
c505f9a3c6
Replace SystemUserBackend with UNIXUserController
2021-03-30 13:11:41 +02:00
Santiago L
f4c0a7413c
Generate missing migrations.
2021-03-30 12:52:12 +02:00
Santiago L
9d2d0befc4
Rename `async`--> `run_async`
...
On Python3.5 async becames a reserved keyword.
2021-03-30 12:51:12 +02:00
Cayo Puigdefabregas
898c6882c8
fixed stop and restart services
2021-01-30 15:09:30 +01:00
Cayo Puigdefabregas
a236bbdf5d
fixed start services
2021-01-30 15:06:48 +01:00
Cayo Puigdefabregas
6ce4d6b877
fixed make_options for all commands
2021-01-30 14:59:49 +01:00
Cayo Puigdefabregas
8da89ae22a
fixing commands we need
2021-01-30 14:17:18 +01:00
Cayo Puigdefabregas
78db4fb8d5
fixed
2021-01-30 13:55:27 +01:00
Cayo Puigdefabregas
24e75bc07f
fixed pg
2021-01-29 11:44:10 +01:00
Cayo Puigdefabregas
5b4b7310e6
documentation ribaguifi style instalation
2021-01-28 19:58:48 +01:00
Cayo Puigdefabregas
38275847d9
fixing results
2021-01-28 19:57:42 +01:00
Cayo Puigdefabregas
a4c3b00205
Fixed comand line of setuppostgress
2021-01-28 16:47:54 +01:00
Cayo Puigdefabregas
44ebd42942
adapt docker env for new version of debian
2021-01-28 12:20:45 +01:00
Santiago L
e6e434f525
Merge pull request #2 from ribaguifi/pangea-production-src
...
Pangea production source
2021-01-13 16:43:49 +01:00
Santiago L
43d8c9471b
Latest Pangea source code deployed to production.
2021-01-13 16:41:36 +01:00
Marc Aymerich
ea9c398de4
Disabled database hostname validator to allow for % host
2017-07-07 09:30:35 +00:00
Marc Aymerich
6fadf0c631
PHP support for sockets (vs TCP) improved
2017-07-05 17:52:37 +00:00
Marc Aymerich
a1f73d883a
Added support for multiple webservers
2017-07-05 13:55:13 +00:00
Marc Aymerich Gubern
49c84f13a8
Fixed createsuperuser init command
2017-06-16 15:33:41 +02:00
Marc Aymerich
0c1b4c7f4a
Added nextcloud support
2017-06-09 08:28:44 +00:00
Marc Aymerich
25fbc6a088
switched container engine to lxc
2017-06-09 08:26:40 +00:00
Marc Aymerich
35c7265bff
Fixed send email template
2017-04-03 17:06:06 +00:00
Marc Aymerich
7c64197468
Fixed ascii_validator
2017-03-29 20:04:42 +00:00
root
b9ba692a42
Added support for disabling ssl verification on gitlab backend
2017-03-02 18:46:03 +00:00
root
55737cf247
Added missing import
2017-01-12 21:41:25 +00:00
Marc Aymerich
f6125f6bbb
Fixed rechare computation of prepaid orders with metric
2016-11-29 21:11:24 +00:00
root
9ff6491e4f
Use update wrapper on admin_field decorator
2016-11-21 19:35:17 +00:00
Marc Aymerich
e033fe3865
Rename _.meta.virtual_fields to privat_fields
2016-11-15 09:05:16 +00:00
Marc Aymerich
1c870de0f6
Rename openvztraffic monitor to proxmoxopenvztraffic
2016-11-14 09:24:41 +00:00
Marc Aymerich
e339e0fb56
Make sure miscellaneous identifiers are all lowercase
2016-10-28 10:31:11 +00:00
Marc Aymerich
b179b5f2d3
Updated cycles template tag for dj 1.10.x compatibility
2016-10-25 09:50:50 +00:00
root
a737ed68e7
fixed missing colon
2016-10-25 09:34:33 +00:00
Marc Aymerich
5786cff38c
Upgade to dj 1.10
2016-10-22 07:23:45 +00:00
Marc Aymerich
47cf15a000
Upgrade to django 1.10.x: Replace deprecated model._meta methods
2016-10-11 10:21:48 +00:00
Marc Aymerich
ec53d357f6
Upgraded to django 1.10.x
2016-10-11 12:01:56 +02:00
Marc Aymerich
c10e8dd793
Improved wordpressmu backend resiliance
2016-10-11 09:12:25 +00:00
Marc Aymerich
0b30e0e9dd
Improved owncloud quota monitor backend resiliance to connection errors
2016-10-03 09:04:56 +00:00
Marc Aymerich
5a8dfba893
Fixed delete related services from account, don't display unrelated objects that aren't services
2016-10-03 08:59:47 +00:00
Marc Aymerich
020ba1c7c4
Fixed domain record form validation with SRV records
2016-09-05 12:42:46 +00:00
Marc Aymerich
dd9621cc63
Improved domain validation
2016-09-02 14:50:43 +00:00
Marc Aymerich
53541b16a1
Check deletion in directives formset cross-validation with contents for unique locations
2016-07-21 11:28:43 +00:00
Marc Aymerich
aa5935ba34
Added orchestration logging
2016-07-19 22:45:04 +00:00
Marc Aymerich
df99f8d745
Added advance orchestration functionality
2016-07-15 12:44:38 +00:00
Marc Aymerich
6ca38f092b
Update
2016-07-15 08:41:38 +00:00
Marc Aymerich
43b6fe1719
Fix transaction proccess rejection
2016-06-30 09:46:43 +00:00
Marc Aymerich
d96afe41fa
Random fixes
2016-06-17 10:00:04 +00:00
Marc Aymerich
0e850d6e2d
Added SaaS readme file
2016-05-27 10:29:00 +00:00
Marc Aymerich
e092597ba5
Added SaaS readme file
2016-05-27 10:25:39 +00:00
Marc Aymerich
cf0ed9d056
Added SaaS readme file
2016-05-27 10:23:06 +00:00
Marc Aymerich
59cadbcd7e
Added SaaS readme file
2016-05-27 10:22:28 +00:00
Marc Aymerich
414d80c22a
Added SaaS readme file
2016-05-27 10:20:32 +00:00
Marc Aymerich
3a449897f7
Added SaaS readme file
2016-05-27 10:19:37 +00:00
Marc Aymerich
edd4a1163c
Added SaaS readme file
2016-05-27 10:13:23 +00:00
Marc Aymerich
f4ab4c0f88
Added SaaS readme file
2016-05-27 10:06:55 +00:00
Marc Aymerich
dc5c64f186
Added SaaS readme file
2016-05-27 10:05:32 +00:00
Marc Aymerich
00ad3cfe98
Added SaaS readme file
2016-05-27 10:01:01 +00:00
Marc Aymerich
86baf749ac
Added SaaS readme file
2016-05-27 09:59:19 +00:00
Marc Aymerich
97355ccda0
Added SaaS readme file
2016-05-27 09:54:46 +00:00
Marc Aymerich
76c8610d30
Random fixes
2016-05-26 08:15:34 +00:00
Marc Aymerich
1265881fbf
Random fixes
2016-05-20 08:29:25 +00:00
Marc Aymerich
2490ff83c8
Random fixes
2016-05-18 14:08:12 +00:00
Marc Aymerich
a0dbf96c8a
Added warning message when changing account type and detailListFilter for webapps
2016-05-13 10:07:04 +00:00
Marc Aymerich
8a44b99377
Added forwards on mailboxes.display_addresses
2016-05-13 08:42:58 +00:00
Marc Aymerich
3e1d9f7d22
Added support for raw hash password edditing
2016-05-11 12:56:10 +00:00
Marc Aymerich
e804a1d102
Added support for reissue rejected transactions
2016-05-09 12:02:10 +00:00
Marc Aymerich
fdd84b7e74
Fixed plugin missing instance bug0
2016-05-08 09:35:18 +00:00
Marc Aymerich
415ddc2315
Fixed bugs on miscellaneous admin UI
2016-05-07 20:09:05 +00:00
Marc Aymerich
fed13217dc
Improved misc admin interface
2016-05-07 10:32:51 +00:00
Marc Aymerich
202d1fd632
Impreved admin cross-reference between mailboxes and address
2016-05-05 11:58:35 +00:00
Marc Aymerich
51ac729ce1
Show forwards on mailboxes change view
2016-05-04 13:00:03 +00:00
Marc Aymerich
72ed0c3062
Added templates.loaders settings
2016-05-03 20:24:15 +00:00
Marc Aymerich
5a62b9be85
DJ1.9 upgrade: Changes icons from gif to svg
2016-05-03 12:14:59 +00:00
Marc Aymerich
bee56d833d
Added missing transactions
2016-04-30 15:21:19 +00:00
Marc Aymerich
d4d9f6a49a
DJ1.9 compat field.related
2016-04-30 15:10:39 +00:00
Marc Aymerich
21ff73afea
Fixed delete account related services
2016-04-30 12:01:29 +00:00
Marc Aymerich
62fd85a987
Remove future template tags
2016-04-30 11:31:57 +00:00
Marc Aymerich
85c0e75bcd
Django 1.9 compatibility
2016-04-30 12:23:13 +01:00
Marc Aymerich
2ae4b482f4
DJ1.9 compat field.related
2016-04-29 09:24:07 +00:00
Marc Aymerich
ad2f8859c1
DJ1.9 compat field.related
2016-04-28 11:06:07 +00:00
Marc Aymerich
0b126a5bf8
DJ1.9 compat field.related
2016-04-28 10:41:22 +00:00
Marc Aymerich
b89440a8f3
Added services missing migrations
2016-04-28 10:34:54 +00:00
Marc Aymerich
e8b0b639ee
Added services missing migrations
2016-04-27 13:32:38 +00:00
Marc Aymerich
0684b00963
dj1.9: Fixed contenttype model import on resources
2016-04-27 12:55:35 +00:00
Marc Aymerich
c201b6f03d
Fixed random bugs
2016-04-27 08:35:13 +00:00
Marc Aymerich
682a8947d3
Dont delete lists when deleting domains
2016-04-15 09:56:10 +00:00
Marc Aymerich
27aec2e5f0
Fixes on payments
2016-04-07 11:14:44 +00:00
Marc Aymerich
d849ec8867
Fixes on billing
2016-04-06 19:00:16 +00:00
Marc Aymerich
908a4ca81d
Implemented enable admin action0
2016-03-31 16:18:38 +00:00
Marc Aymerich
4adfd4c83a
Implemented enable admin action0
2016-03-31 16:02:50 +00:00
Marc Aymerich
6a34ba8fd2
Fixed bug on backend failure error reporting
2016-03-18 10:13:25 +00:00
Marc Aymerich
ec0c319ad4
Added convenient list filters
2016-03-14 10:40:11 +00:00
Marc Aymerich
d39e742809
Enable letsencrypt on project settings
2016-03-11 14:20:28 +00:00
Marc Aymerich
ba232ec8f4
Added support for Let's encrypt
2016-03-11 12:19:34 +00:00
Marc Aymerich
237e494751
Added list filters
2016-03-09 11:16:28 +00:00
Marc Aymerich
ddc946b021
Show implicit domain records
2016-03-09 10:06:26 +00:00
Marc Aymerich
ab04012c34
Fixed typo on apache2 controller reload coordination
2016-03-08 10:51:54 +00:00
Marc Aymerich
1bb6b9f849
Renamed backends to controllers
2016-03-08 10:16:49 +00:00
Marc Aymerich
5e2ec5797f
Added ORCHESTRA_SSH_DEFAULT_USER setting
2016-03-08 09:57:37 +00:00
Marc Aymerich
d3caeeea2a
Minor improvements
2016-03-04 10:04:29 +00:00