- 28 Dec, 2023 4 commits
-
-
Kazuhiko Shiozaki authored
-
Kazuhiko Shiozaki authored
-
Kazuhiko Shiozaki authored
-
Aurel authored
This not closed comment tag was probably a problem for Chameleon, this is from a commit from Aurélien in 2021, adjusted by Jérome in 2023 (to actually remove the code that were commented out, not just removing the comment and leaving the code)
-
- 27 Dec, 2023 1 commit
-
-
Jérome Perrin authored
New cloudooo uses text/csv as mimetype for CSV, which is correct, but this revealed issues in ERP5: - ERP5 did not detect text/csv for csv extensions - downloading a file with content type text/csv caused an error See merge request nexedi/erp5!1859
-
- 26 Dec, 2023 7 commits
-
-
Rafael Monnerat authored
See merge request nexedi/erp5!1860
-
Rafael Monnerat authored
in addition to None, id can be an empty list on this case
-
Rafael Monnerat authored
See merge request nexedi/erp5!1858
-
Rafael Monnerat authored
-
Jérome Perrin authored
DownloadableMixin uses mimetypes_registry to guess an extension from the mimetype, but this was wrong when the entry in mimetype only defines globs, an error like this was raised: Module erp5.component.mixin.erp5_version.DownloadableMixin, line 143, in index_html output_format = mimetype_object.globs.strip('*.') AttributeError: 'list' object has no attribute 'strip' Also blindly apply the same fix in OOoTemplate, as it used the same problematic pattern.
-
Jérome Perrin authored
we use to have two entries for csv: - text/comma-separated-values - mimes: ["text/comma-separated-values"] - extensions: ["csv"] - globs: [] - CSV document - mimes: ["text/csv", "text/x-comma-separated-values", "text/x-csv"] - extensions: [] - globs: ["*.csv"] but text/comma-separated-values does not really exist, rfc4180 recommends text/csv. The problem with this configuration is that when ERP5 picks a mime type for csv extension, it uses text/comma-separated-values, as this one has extensions set. Change the configuration to delete "text/comma-separated-values" and keep everything in "CSV document": - CSV document - mimes: ["text/csv", "text/x-comma-separated-values", "text/x-csv", "text/comma-separated-values"] - extensions: ["csv"] - globs: ["*.csv"]
-
Jérome Perrin authored
The previous pattern of using click and then pause is fragile and seems to be the cause for test failures.
-
- 25 Dec, 2023 1 commit
-
-
Jérome Perrin authored
Instead of disabling in javascript, which cause the button to be visible for a few milliseconds, disable directly in the HTML file. Do not hide "document properties", because it can be useful and it does not hurt and "edit images" because we don't hide the buttons to edit annotations either, so this is consistent.
-
- 22 Dec, 2023 2 commits
-
-
Vincent Pelletier authored
The setter does this already so no change is expected, but these are API misuses and they just look wrong.
-
Vincent Pelletier authored
Also, modernise syntax a bit.
-
- 20 Dec, 2023 1 commit
-
-
Rafael Monnerat authored
The JSONEditor relies on call async load for load promises. The current code waits for the promises to finish and throw errors explicitly. This allows the renderjs properly handle the error on the same chain of promises.
-
- 15 Dec, 2023 2 commits
-
-
Rafael Monnerat authored
See merge request nexedi/erp5!1855
-
Jérome Perrin authored
it was removed during df2642cf (corporate_identity_test: update snapshots for new cloudooo, 2023-11-29) because it looked unused, but it was actually used.
-
- 14 Dec, 2023 4 commits
-
-
Rafael Monnerat authored
the update_catalog parameter is explicity destinated to the entries on the template_list, never to its dependencies resolved. The side effect was that reindexation is trigger to the whole list of business templates in the site.
-
Jérome Perrin authored
These actions should be always displayed, not only when user can modify, otherwise the action is no longer displayed once the transaction becomes delivered.
-
Jérome Perrin authored
also adjust test to use test name for expected image id
-
Jérome Perrin authored
-
- 13 Dec, 2023 1 commit
-
-
Georgios Dagkakis authored
As utility to activate whenever we have a process going wrong and we do not want disturb the user or stop (rollback) the process but we do want developpers to be notified.
-
- 12 Dec, 2023 3 commits
-
-
Roque authored
-
Roque authored
See merge request nexedi/erp5!1854
-
Roque authored
-
- 06 Dec, 2023 2 commits
-
-
Julien Muchembled authored
-
Jérome Perrin authored
-
- 05 Dec, 2023 2 commits
-
-
Romain Courteaud authored
-
Jérome Perrin authored
To follow the API as the new JSON editor
-
- 04 Dec, 2023 2 commits
-
-
Julien Muchembled authored
- It's not deprecated anymore. - When activities are grouped at CMFActivity level, it specifies a number of activities that are generated at a time instead of a number of activity groups. - The special None value means no limit.
-
Levin Zimmermann authored
In nexedi/erp5@39369169 the new option 'nofile' was added to set the soft limit of open file descriptors to its hard limit. In nexedi/slapos!1451 (comment 193296) it was criticized that the name of the option - 'nofile' - is too vague and in nexedi/slapos!1465 a new name for the option was searched. Finally we agreed on the more explicit 'with-max-rlimit-nofile'.
-
- 01 Dec, 2023 3 commits
-
-
Rafael Monnerat authored
See merge request nexedi/erp5!1843
-
Rafael Monnerat authored
-
Rafael Monnerat authored
-
- 30 Nov, 2023 3 commits
-
-
Rafael Monnerat authored
This gadget aims to edit json based on json schema.
-
Xavier Thompson authored
See merge request nexedi/erp5!1853
-
Georgios Dagkakis authored
since for column like 'delivery.start_date' the field would be like 'listbox_delivery_start_date'
-
- 29 Nov, 2023 1 commit
-
-
Jérome Perrin authored
This was missing from f3435570 (ui_test: update verifyImageMatchSnapshot screenshots for firefox 115, 2023-10-22)
-
- 28 Nov, 2023 1 commit
-
-
Xavier Thompson authored
-