3
0
Fork 0
Commit graph

87 commits

Author SHA1 Message Date
Lance Edgar b6d5ffa8ce feat: add support for running via uvicorn; wutta webapp command 2024-12-18 12:36:52 -06:00
Lance Edgar abec06c63c fix: add basic support for grid filters for Date fields 2024-12-17 16:31:33 -06:00
Lance Edgar 30671fcd78 fix: add handling for decimal values and lists, in make_json_safe() 2024-12-14 23:57:34 -06:00
Lance Edgar dd1fd8c0ce feat: add basic support for batch execution
no execution options yet, and no progress indicator

also basic delete support, invoking handler
2024-12-14 23:57:10 -06:00
Lance Edgar e3beb9953d feat: add basic support for rows grid for master, batch views 2024-12-14 10:48:11 -06:00
Lance Edgar 5006c97b4b feat: add basic master view class for batches
no support for displaying rows yet, just the main batch CRUD
2024-12-13 22:20:04 -06:00
Lance Edgar d72a2a15ec fix: fix behavior when editing Roles for a User
per proper UUID fields i guess
2024-12-12 20:07:49 -06:00
Lance Edgar e952e1031e fix: add basic views for raw Permissions 2024-12-12 19:24:36 -06:00
Lance Edgar 3cad7f1b13 fix: improve support for date, datetime fields in grids, forms 2024-12-12 15:15:00 -06:00
Lance Edgar eda2326a97 fix: add way to set field widgets using pseudo-type
more to come on this idea hopefully..i think it's a good pattern?
2024-12-11 23:05:25 -06:00
Lance Edgar bf8397ba23 fix: add support for date, datetime form fields
using buefy-based picker widgets etc.
2024-12-11 22:38:51 -06:00
Lance Edgar 6e4f390f3f fix: display "global" errors at top of form, if present
this probably could use more work, good enough for now
2024-12-11 22:28:44 -06:00
Lance Edgar 448dc9fc79 fix: add make_form() and make_grid() methods on web handler
to allow override
2024-12-11 22:06:33 -06:00
Lance Edgar 74e2a4f0e2 fix: correct "empty option" behavior for ObjectRef schema type 2024-12-11 09:58:02 -06:00
Lance Edgar 16ed125113 fix: use fanstatic to serve built-in images by default
Refs: #1
2024-12-10 16:54:02 -06:00
Lance Edgar ddec30905e test: add test for make_json_safe() with uuid value
whoops, missed that..
2024-12-10 12:15:00 -06:00
Lance Edgar 40562c126e fix: add GridWidget and form.set_grid() for convenience
omg how did i not do this sooner
2024-12-09 20:56:09 -06:00
Lance Edgar f68fe26ada fix: add "is false or null" grid filter, for nullable bool columns 2024-12-08 18:43:40 -06:00
Lance Edgar fd35f439ec fix: refactor to reflect usage of proper UUID values 2024-12-08 00:11:30 -06:00
Lance Edgar 5c06353fa3 fix: add option for People entry in the Admin menu 2024-12-03 21:32:46 -06:00
Lance Edgar 352afc1e22 fix: fix handling of Upgrade.uuid
now that it is a proper uuid7 instance, not just a string
2024-12-03 21:29:05 -06:00
Lance Edgar dcdc0e7dab fix: improve support for random objects with grid, master view
thus far we expected either dict or "native" ORM object which can
essentially behave like a dict when needed.  but a "non-native" object
may not behave like a dict and this hopefully fixes the logic to allow
for those anyway..
2024-11-25 19:11:41 -06:00
Lance Edgar 24ddb7b905 feat: add logic to prevent edit for some user accounts
mostly for sake of online demo, so a "permanent" demo user can be
established
2024-11-24 17:19:50 -06:00
Lance Edgar 749882671f fix: freeze default versions for buefy, vue-resource
needed for sanity
2024-08-28 19:51:55 -05:00
Lance Edgar 71728718d8 feat: add basic support for wutta-continuum
and i mean *basic* - so far..  eventually will expose version history
for viewing etc.

unfortunately got carried away and reorganized the api docs a little
while i was at it..
2024-08-27 21:11:44 -05:00
Lance Edgar a010071985 feat: use native wuttjamaican app to send feedback email 2024-08-26 14:22:23 -05:00
Lance Edgar 4934ed1d93 feat: add basic user feedback email mechanism
this definitely needs some more work.  using pyramid_mailer for
testing although not ready to declare that dependency.  for now this
is "broken" without it being installed.
2024-08-25 20:25:14 -05:00
Lance Edgar 8669ca2283 feat: add "progress" page for executing upgrades
show scrolling stdout from subprocess

nb. this does *not* show stderr, although that is captured
2024-08-25 15:52:29 -05:00
Lance Edgar e5e31a7d32 feat: add basic support for execute upgrades, download stdout/stderr
upgrade progress is still not being shown yet
2024-08-25 12:20:28 -05:00
Lance Edgar 1a8900c9f4 feat: add basic progress page/indicator support
so far "delete results" (for Raw Settings) is the only use case.

user cancel is not yet supported
2024-08-24 19:28:13 -05:00
Lance Edgar 6fa8b0aeaa feat: add basic "delete results" grid tool
this is done synchronously with no progress indicator yet
2024-08-24 14:26:13 -05:00
Lance Edgar 6650ee698e feat: add initial views for upgrades
CRUD only so far, still need execute features
2024-08-24 11:29:52 -05:00
Lance Edgar 43ad0ae1c1 fix: improve handling of boolean form fields 2024-08-23 20:38:46 -05:00
Lance Edgar 2503836ef5 fix: misc. improvements for display of grids, form errors 2024-08-23 19:23:40 -05:00
Lance Edgar e332975ce9 feat: add per-row css class support for grids 2024-08-23 14:14:41 -05:00
Lance Edgar f6fb6957e3 feat: improve grid filter API a bit, support string/bool filters 2024-08-23 12:23:49 -05:00
Lance Edgar 1443f5253f feat: add initial support for proper grid filters
only "text contains" filter supported so far, more to come as needed
2024-08-22 14:35:49 -05:00
Lance Edgar 9751bf4c2e feat: add initial filtering logic to grid class
still missing the actual filters, subclass must provide those for now
2024-08-21 20:15:23 -05:00
Lance Edgar a042d511fb feat: add "searchable" column support for grids
frontend / basic only
2024-08-21 15:50:36 -05:00
Lance Edgar 770c4612d5 feat: improve page linkage between role/user/person
- show Users grid when viewing a Role
- add hyperlinks between things
2024-08-21 15:09:05 -05:00
Lance Edgar 9d261de45a feat: add basic autocomplete support, for Person
URL endpoint only for now, form widget to come later
2024-08-21 11:46:38 -05:00
Lance Edgar d15ac46184 fix: show installed python packages on appinfo page 2024-08-20 21:26:38 -05:00
Lance Edgar 2d9757f677 fix: add setting to auto-redirect anon users to login, from home page 2024-08-20 20:16:19 -05:00
Lance Edgar f7e371d21d fix: add render_vue_finalize() methods for grids, forms
to make the templates just that much cleaner
2024-08-19 13:40:23 -05:00
Lance Edgar 8d6f4ad368 feat: add multi-column sorting (frontend or backend) for grids 2024-08-18 19:52:11 -05:00
Lance Edgar 58f7a862a2 feat; add single-column sorting (frontend or backend) for grids 2024-08-18 14:05:10 -05:00
Lance Edgar f21efbab9f fix: improve grid display when data is empty 2024-08-17 11:48:06 -05:00
Lance Edgar d151758c48 feat: add backend pagination support for grids 2024-08-16 22:52:24 -05:00
Lance Edgar dd3d640b1c feat: add initial/basic pagination for grids
so far this is only for client-side pagination; which means *all* grid
data is dumped to JSON for Vue access.  backend pagination coming soon
2024-08-16 18:19:24 -05:00
Lance Edgar 429f3c69b5 fix: improve backward compat for util.get_liburl()
ready to drop the old logic from tailbone
2024-08-15 23:03:39 -05:00