The ugettext_lazy method and the ungettext_lazy method are both
deprecated since Django 3.0[1].
These were already replaced in Horizon repo by [2].
[1] https://docs.djangoproject.com/en/3.0/releases/3.0/#id3
[2] cd7c1b5110fe1f64cd9dfbeb1072b37912d0efee
Change-Id: I6697e4c006e7b8ec94a08ad4625a1980582b4d6d
This patch is a clean-up patch for refactor-error-messages bp
which remove the exception message from base message otherwise
the same exception message display twice like
this https://ibb.co/XyFWMdz .
Change-Id: Ib56b35b164057b821b5e9755202b87c9e1ea5572
assertItemsEqual was renamed to assertCountEqual in Python 3, and the
testsuite is failing now - rename it.
See also https://six.readthedocs.io/#six.assertCountEqual
This unbreaks the testsuite.
Change-Id: I910c7f2b3eae107a8d8022366f738b006cf4831a
This repo does not support Python 2 anymore, so we don't need
six for compatibility between Python2 and 3, convert six usage to Python
3 code.
Change-Id: Id84564d8350fb793a2511abae218db17ea122873
Needed-By: https://review.opendev.org/701743
Replace django.core.urlresolves with django.urls
(In Django 2.0) The django.core.urlresolvers module is removed
in favor of its new location, django.urls.
It was deprecated in Django 1.10:
https://docs.djangoproject.com/en/2.0/releases/1.10/#id3
Add py35dj20 job to test Django 2.0 integration.
Change-Id: I6d2e38201387012ba9a02c4b0bd8377895a5919a
There is no more DSL docs since the commit[1]
and all of them should be updated.
[1]I6e2a10932c648836a1e0632b4cd0fce3ab78f946
Change-Id: I5c67d934f2a7a884ab659af43b7ff6713b908d9c
There are a few outdated links in the dashboard repo. Update them
according to the doc-migration.
Change-Id: I6361d14127012415329bf844b7b420980253527a
Depends-on: I20cd94d0423c1b97f8ec83973aabbb7ecee75b49
User cannot modify wb/wf definition that is uploaded as a file
during its creation. After file is selected, the user just sees
its context but can't modify it if it is needed. So, making the
field editable.
Change-Id: I884b2dbf106f328843f81b23c838f7397c89375e
Closes-Bug: #1505601
In Workbooks -> Create Workbook, when we choose “Direct input” for
“Definition source” field and enter a workbook definition it
proposes to click “Next” button and then on the next screen we
finally see “Create” button. If clicking “Next” does validation
then it is not obvious for the user. So, change the button to
"Validate".
Change-Id: I5a795c08a3b7252f330d976204238a7d27539770
Closes-Bug: 1648390
This patch set modifies lines which are importing objects
instead of modules. As per openstack import guide lines, user should
import modules in a file not objects.
http://docs.openstack.org/developer/hacking/#imports
Change-Id: I68edb2a90c560b9c485ec4832af65c777e6e7b6c
* added pagination: adressed all comments given to Liat on:
https://review.openstack.org/#/c/266826/
* removed redundant template inheritance
* resolved bug: [ui] Pagination is absent in the "Actions" tab
* resolved bug: [ui] Every click on "Actions" tab takes too much time
* resolved bug: [ui] Problem with "Actions" page layout
Screenshots:
http://pasteboard.co/1yhuS10g.png
Partially implements blueprint: Actions-screen-improvements
Closes-Bug: #1505657
Closes-Bug: #1505668
Closes-Bug: #1505662
Change-Id: I4c15e39830ca425a8321b09e7d6039e6623eea8b
Fixed a lot of AttributeError: 'module' object has no attribute 'nested'
and F821 undefined name 'unicode' errors.
Change-Id: I79e73e27608ec6b76fd4ccf0ee9dcaf2ddf965ed
Closes-Bug: #1544499
django.conf.urls.patterns() is deprecated since 1.8.
We should not use patterns(), so this patch updates URLs to
1.8 style.
Change-Id: Ida48baed98da4aeabdfdfc2f02b21bc588311161
Closes-Bug: #1539354
Modal forms titles has been changed for
"Create Workbooks", "Update Workbooks",
"Create Workflows" and "Update Workflows".
Change-Id: I72abddf71a5704dcaee39b37159035163219cdfa
Closes-Bug: #1505570
This patch adds the ability to filter tables by specified
string.
screenshots:
http://pasteboard.co/2Q1GyCie.png
Change-Id: I1c4577f0f324d0865e5b4fb16df4767a39b40733
Closes-Bug: #1485827
Add a link to workbook name field to show the definition.
Partially implements blueprint mistral-dashboard-crud-operations
Change-Id: Iabf0632282840f25466810c597e8810aacfa15ea
Remove description field since there's no such attribute on
workbook, also add created and updated fields.
Change-Id: I0805402c15dfef9d0400f05b525c83f2090584c4
Closes-Bug: #1471777