Compare commits
No commits in common. "455a0906c6aec379a99ccbe3e18ca62d03484e80" and "8b23be7422fd2ddf1d638ec5e12e3404c2c2b6a8" have entirely different histories.
455a0906c6
...
8b23be7422
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -5,16 +5,6 @@ All notable changes to wuttaweb will be documented in this file.
|
|||
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
||||
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## v0.20.5 (2025-01-23)
|
||||
|
||||
### Fix
|
||||
|
||||
- improve styling for grid tools section
|
||||
- add basic checkbox support for grids
|
||||
- add WuttaRequestMixin for ThisPage component
|
||||
- avoid literal `None` when rendering form field value
|
||||
- let header title be even wider
|
||||
|
||||
## v0.20.4 (2025-01-15)
|
||||
|
||||
### Fix
|
||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
|||
|
||||
[project]
|
||||
name = "WuttaWeb"
|
||||
version = "0.20.5"
|
||||
version = "0.20.4"
|
||||
description = "Web App for Wutta Framework"
|
||||
readme = "README.md"
|
||||
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
|
||||
|
@ -44,7 +44,7 @@ dependencies = [
|
|||
"pyramid_tm",
|
||||
"waitress",
|
||||
"WebHelpers2",
|
||||
"WuttJamaican[db]>=0.20.2",
|
||||
"WuttJamaican[db]>=0.20.1",
|
||||
"zope.sqlalchemy>=1.5",
|
||||
]
|
||||
|
||||
|
|
|
@ -1033,13 +1033,12 @@ class Form:
|
|||
# render static text if field not in deform/schema
|
||||
# TODO: need to abstract this somehow
|
||||
if self.model_instance:
|
||||
value = self.model_instance[fieldname]
|
||||
html = str(value) if value is not None else ''
|
||||
html = str(self.model_instance[fieldname])
|
||||
else:
|
||||
html = ''
|
||||
|
||||
# mark all that as safe
|
||||
html = HTML.literal(html or ' ')
|
||||
html = HTML.literal(html)
|
||||
|
||||
# render field label
|
||||
label = self.get_label(fieldname)
|
||||
|
|
|
@ -118,11 +118,6 @@ class Grid:
|
|||
See also :meth:`set_renderer()` and
|
||||
:meth:`set_default_renderers()`.
|
||||
|
||||
.. attribute:: checkable
|
||||
|
||||
Boolean indicating whether the grid should expose per-row
|
||||
checkboxes.
|
||||
|
||||
.. attribute:: row_class
|
||||
|
||||
This represents the CSS ``class`` attribute for a row within
|
||||
|
@ -367,7 +362,6 @@ class Grid:
|
|||
data=None,
|
||||
labels={},
|
||||
renderers={},
|
||||
checkable=False,
|
||||
row_class=None,
|
||||
actions=[],
|
||||
linked_columns=[],
|
||||
|
@ -394,7 +388,6 @@ class Grid:
|
|||
self.key = key
|
||||
self.data = data
|
||||
self.labels = labels or {}
|
||||
self.checkable = checkable
|
||||
self.row_class = row_class
|
||||
self.actions = actions or []
|
||||
self.linked_columns = linked_columns or []
|
||||
|
|
|
@ -155,7 +155,7 @@
|
|||
}
|
||||
|
||||
#content-title h1 {
|
||||
max-width: 95%;
|
||||
max-width: 85%;
|
||||
overflow: hidden;
|
||||
padding-left: 0.5rem;
|
||||
text-overflow: ellipsis;
|
||||
|
@ -186,11 +186,6 @@
|
|||
width: 100%;
|
||||
}
|
||||
|
||||
.wutta-grid-tools-wrapper {
|
||||
display: flex;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
##############################
|
||||
## forms
|
||||
##############################
|
||||
|
|
|
@ -116,13 +116,6 @@
|
|||
hoverable
|
||||
icon-pack="fas"
|
||||
|
||||
## checkboxes
|
||||
% if grid.checkable:
|
||||
checkable
|
||||
checkbox-position="right"
|
||||
:checked-rows.sync="checkedRows"
|
||||
% endif
|
||||
|
||||
## sorting
|
||||
% if grid.sortable:
|
||||
## nb. buefy/oruga only support *one* default sorter
|
||||
|
@ -274,11 +267,6 @@
|
|||
shareLink: null,
|
||||
% endif
|
||||
|
||||
## checkboxes
|
||||
% if grid.checkable:
|
||||
checkedRows: [],
|
||||
% endif
|
||||
|
||||
## filtering
|
||||
% if grid.filterable:
|
||||
filters: ${json.dumps(grid.get_vue_filters())|n},
|
||||
|
|
|
@ -26,7 +26,6 @@
|
|||
|
||||
const ThisPage = {
|
||||
template: '#this-page-template',
|
||||
mixins: [WuttaRequestMixin],
|
||||
props: {
|
||||
## configureFieldsHelp: Boolean,
|
||||
},
|
||||
|
|
|
@ -189,12 +189,6 @@ class MasterView(View):
|
|||
|
||||
This is optional; see also :meth:`get_grid_columns()`.
|
||||
|
||||
.. attribute:: checkable
|
||||
|
||||
Boolean indicating whether the grid should expose per-row
|
||||
checkboxes. This is passed along to set
|
||||
:attr:`~wuttaweb.grids.base.Grid.checkable` on the grid.
|
||||
|
||||
.. method:: grid_row_class(obj, data, i)
|
||||
|
||||
This method is *not* defined on the ``MasterView`` base class;
|
||||
|
@ -401,7 +395,6 @@ class MasterView(View):
|
|||
# features
|
||||
listable = True
|
||||
has_grid = True
|
||||
checkable = False
|
||||
filterable = True
|
||||
filter_defaults = None
|
||||
sortable = True
|
||||
|
@ -1999,7 +1992,6 @@ class MasterView(View):
|
|||
|
||||
kwargs['tools'] = tools
|
||||
|
||||
kwargs.setdefault('checkable', self.checkable)
|
||||
if hasattr(self, 'grid_row_class'):
|
||||
kwargs.setdefault('row_class', self.grid_row_class)
|
||||
kwargs.setdefault('filterable', self.filterable)
|
||||
|
|
|
@ -1433,7 +1433,7 @@ class TestGrid(WebTestCase):
|
|||
# null
|
||||
obj = MagicMock(dt=None)
|
||||
result = grid.render_date(obj, 'dt', None)
|
||||
self.assertEqual(result, '')
|
||||
self.assertIsNone(result)
|
||||
|
||||
# typical
|
||||
dt = datetime.date(2025, 1, 13)
|
||||
|
@ -1446,7 +1446,7 @@ class TestGrid(WebTestCase):
|
|||
|
||||
obj = MagicMock(dt=None)
|
||||
result = grid.render_datetime(obj, 'dt', None)
|
||||
self.assertEqual(result, '')
|
||||
self.assertIsNone(result)
|
||||
|
||||
dt = datetime.datetime(2024, 12, 12, 13, 44, tzinfo=datetime.timezone.utc)
|
||||
obj = MagicMock(dt=dt)
|
||||
|
|
Loading…
Reference in a new issue