5
I Use This!
Low Activity

Commits : Listings

Analyzed 1 day ago. based on code collected 2 days ago.
May 01, 2023 — May 01, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Merge branch 'master' of github.com:moqui/moqui-framework More... over 1 year ago
Add extra path support to XML REST API id element similar to the allow-extra-path attribute in a XML Screen; first use in a new endpoint to get published wiki page, also added a couple more wiki page related endpoints but far from comprehensive for all or most in WikiServices.xml More... over 1 year ago
Add Jackson Databind serializer for ResourceReference to avoid default behavior of serializing the object and calling all get methods, can cause infinite recursion or errors for other objects that Databind can't serialize by default More... over 1 year ago
Localize last menu title in menu data.
chunlinyao
as Yao Chunlin
More... over 1 year ago
Localize menu title in menu data.
chunlinyao
as Yao Chunlin
More... over 1 year ago
When combining JS files use UTF-8 in the output encoding instead of Java/OS default, this is for a problem on Windows reported on the forum by user 'strand'; works on Linux and macOS with or without this change More... over 1 year ago
In DbResourceReference disable authz for all entity and service operations where it was not already disabled, users should not need any special permission for these as access to DbResource is low level like a filesystem and access control is managed at higher levels More... over 1 year ago
In qapps/qvt improve background Re-Login for multiple tabs by trying a GET request to userInfo and if user is logged in with the session cookie now active but after login the session token is wrong, then update session token and show warning that session refreshed and user should retry the prior action; this solution for multiple tabs with stale session token may need to go away or be disabled on some systems as it weakens the security around the session token for CSRF More... over 1 year ago
In rest.xml add userInfo transition (GET only), and restrict method on other login related transitions to POST More... over 1 year ago
Library updates including joda-time, shiro-*, slf4j-api, and jackson-databind to 2.13.4.2 which resolves CVE-2022-42003 for issue #547 More... over 1 year ago
In qapps/qvt add Reload Page button for convenience when user wants to reload the page instead of trying to re-login in-place More... over 1 year ago
Add second factor support to qvt (/qapps) Re-Login in place functionality More... over 1 year ago
Fix second factor info in /rest/login transition, web-send-json-response only works if service-call is directly under transition More... over 1 year ago
Add re-login dialog which shows up when a session times out (or user logs out in another session) after attempting something that requires a login; runs entirely in place so that after a successful login the browser is right where it was and the submit/link/etc can be done again; this is a first pass and does not yet support a second factor, ie password only until that is added; this also includes some small improvements to the /rest/login and related endpoints to more reliably return a JSON response with a loggedIn flag More... over 1 year ago
Allow form-list to iterate over a map (#549) More... over 1 year ago
Fix docker open search and Change default image because of deprecation of openjdk (#544) More... over 1 year ago
Merge pull request #202 from resistmanagement/submit-on-select-chip-fix
David E Jones
as David E. Jones
More... over 1 year ago
Add necessary seed data, Get Party Profile Detail working, and added services for it More... over 1 year ago
Merge pull request #546 from dixitdeepak/slf4j2-upgrade
David E Jones
as David E. Jones
More... over 1 year ago
Updated slf4j2 impl dependency Due to a break in compatibility in the SLF4J binding, as of release 2.19.0 two SLF4J to Log4j Adapters are provided - log4j-slf4j-impl should be used with SLF4J 1.7.x releases or older. - log4j-slf4j2-impl should be used with SLF4J 2.0.x releases or newer. https://logging.staged.apache.org/log4j/2.x/log4j-slf4j-impl/index.html More... over 1 year ago
In EntityDbMeta change message about unknown tables from info to warn, sometimes important to know about and matches the warning about unknown columns on a table More... over 1 year ago
Library updates: javassist, jackson-databind, jetty, joda-time, jsoup, slf4j (2.0.2, now out of beta), snake yaml, and junit; note than even though SLF4J 2 is out of beta the Log4J2 adapter has not been updated so there is still a warning on startup More... over 1 year ago
Along with new approach to pageIndex and history handling, in qvt and vuet also update the url in the browser with the pageIndex (makes the browser history messier, but nice to have in there) More... over 1 year ago
New approach to pageIndex and history: in vuet and qvt Vue components change setParameters() to update parameters on the current item in the history list so they are preserved when going back to that screen after going to another screen More... over 1 year ago
New approach to pageIndex and history: in WebFacadeImpl.saveScreenHistory() don't exclude the pageIndex from the save URL but ignore it when removing old history items More... over 1 year ago
On System dashboard show stats for new service job thread pool, add new ServiceJob.priority field to ServiceJobDetail and ServiceJobList More... over 1 year ago
In EntityDbMeta change all calls to getTables() and getColumns() to include the catalog from the Connection; this is needed for MySQL which does not restrict meta data queries to the current connected database without specifying a catalog on these methods; this is tested with H2 and should be fine with Postgres as well, may cause issues with other databases and needs more testing More... over 1 year ago
Fix issue in commit a few hours ago where the code generated for XML Actions iterator element did not auto close EntityListIterator instances; thanks to Deepak for reporting this on the forum More... over 1 year ago
New separate thread pool for service jobs, behavior change to keep queue in DB for better cluster support without distributed executor (#545)
David E Jones
as David E. Jones
More... over 1 year ago
In XML Actions groovy generating macros, change the iterator to behave differently for EntityListIterator to avoid calling hasNext(); this improves performance and helps with a MySQL JDBC driver issue with useCursorFetch = true where ResultSet.isBeforeFirst() returns true when there are no results, and it should return false in that case More... over 1 year ago