- Feb 21, 2024
-
-
Antoine Lambert authored
-
Antoine Lambert authored
-
Antoine Lambert authored
It enables to have a fixed header when browsing a table with a large amount of entries per page.
-
Antoine Lambert authored
-
- Feb 20, 2024
-
-
Antoine Lambert authored
When increasing the number of entries per page to display, it enables to scroll the page instead of scrolling a table of fixed height.
-
Antoine Lambert authored
When no visit type for an origin is explicitly provided as query parameter, ensure a full VCS visit type (git, svn or hg) is selected by default when an origin has multiple visit types. Related to #4786.
-
Antoine Lambert authored
Previously, the checksums for each file was stored in the cache but those are not exploited by the browse code so we can safely remove that dict to optimize the cached entry size and avoid reaching memcached size limit for large directories in production.
-
- Feb 16, 2024
-
-
Antoine Lambert authored
When visit type filtering is not enabled in the search options, ensure to display all visit types for an origin in search results. Related to #4786.
-
Antoine Lambert authored
Some origins in the archive can have multiple visit types since recently and could lead to confusing display in browse interface as the latest visit is selected by default. So add a select element at the top right part of the UI enabling to switch the visit type for the browsed origin and update links by adding the visit_type query parameter to keep visit type context when navigating. Related to #4786.
-
- Feb 14, 2024
-
-
Antoine Lambert authored
-
- Feb 13, 2024
-
-
Antoine Lambert authored
importlib.metadata is the Python standard library replacement for pkg_resources.
-
Antoine Lambert authored
-
Instead of letting the MemcacheServerError exception pass through, prefer to catch it and report the error to Sentry. It enables to avoid returning a 500 error when caching failed, nevertheless Web UI will be slower when such case is encountered.
-
To avoid retrieving the list of branches in each page when browsing a snapshot, it is put in cache. However the messages associated to branches are also stored in cache but those can have a large size and the cache size limit might be reached. As the messages of the branches are only exploited in the branches and releases view, ensure to not store them in get_snapshot_content cache to avoid MemcacheServerError being thrown due to a too large value to cache.
-
Harmonize cache key format. Add functions cache_set and cache_get wrapping calls to django cache API. Dump value to cache as binary using msgpack and store a compressed version of it to avoid hitting cache size limit. Related to #4785.
-
It ensures cache keys are changing after each deployment of swh-web.
-
-
- Feb 12, 2024
-
-
This will be useful to introduce a web-based view that handles the message delivery, rather than a management command.
-
This will allow introducing a new web-based view to inject inbound emails into the webapp, instead of having to use the django management command.
-
- Feb 09, 2024
-
-
Antoine Lambert authored
-
- Feb 08, 2024
-
-
Antoine Lambert authored
In contrary to whitespace characters, django do not automatically quote plus characters in URL arguments so we must ensure those are not quoted backend side when processing an origin URL submitted to Save Code Now to avoid a loading issue.
-
- Feb 07, 2024
-
-
Antoine Lambert authored
In order to support origin with multiple visit types in browse interface, update lookup_origin* implementation to fetch the visit types associated to an origin in an efficient way using swh-search. Related to #4786.
-
Antoine Lambert authored
Modify signatures of functions archive.lookup_origin and those in origin_visits module to take a simple origin_url string instead of a dictionary containing a single url key.
-
- Feb 06, 2024
-
-
Antoine Lambert authored
-
- Feb 05, 2024
-
-
Antoine Lambert authored
Related to swh/meta#5075.
-
- Feb 02, 2024
-
- Jan 29, 2024
-
-
Antoine Lambert authored
Django model BinaryField can either be mapped to bytes or memoryview.
-
Antoine Lambert authored
pytest 8.0 modified the handling of default parameter when defining configuration options, which breaks the use of 'pytest-postgresql < 4'. Workaround that issue by explicitly defining postgresql_load option in pytest.ini file. See https://github.com/pytest-dev/pytest/issues/11282.
-
- Jan 26, 2024
-
-
Antoine Lambert authored
It enables to filter visits by type when querying the latest origin visit. Use that new parameter in the search results view to ensure latest visits with correct type are fetched through XHRs.
-
Antoine Lambert authored
When requesting the generation of a SVG badge for a SWH object, ensure to cache the HTTP response when the targeted object is found in the archive. Related to #4784.
-
- Jan 25, 2024
-
-
Antoine Lambert authored
-
Antoine Lambert authored
Add extid types related to Guix and Nix in /extid/ endpoint documentation. Related to swh/meta#3781.
-
Antoine Lambert authored
Add new visit type counters resulting from the deployment of the new nixguix lister. Related to swh/meta#3781.
-
- Jan 24, 2024
-
-
Antoine Lambert authored
The statuses of save code now requests will be updated in a push way through use of webhooks soon in production and as a consequence the "scheduled" loading task status will no longer be reported as webhooks first reported status is "running". So rename the "not yet scheduled" status to "pending" to allow better transitions for loading task statuses. Previous status transitions were: not created -> not yet scheduled -> scheduled -> running -> (succeeded|failed). New status transitions are: not created -> pending -> running -> (succeeded|failed). Related to swh/infra/sysadm-environment#5165.
-
Antoine Lambert authored
-
Antoine Lambert authored
Related to #4779.
-
- Jan 19, 2024
-
-
Antoine Lambert authored
Add endpoint /api/1/extid/(extid_type)/(extid_format):(extid)/ to get info about an external identifier of a given type. Add endpoint /api/1/extid/target/(swhid)/ to retrieve a list of external identifiers targeting a given SWHID. Related to #3435.
-
Antoine Lambert authored
Text located after a link was not displayed as links were not inserted inline so ensure they are.
-
Antoine Lambert authored
Fixes #4783.
-
In practice, RemoteException happens only when a backend service has an internal error (which is already logged in its own Sentry project) or a query timeout; and TransientRemoteException only on temporary 502 errors. Neither are helpful, and they clutter Sentry by bursting a dozen such errors a couple of times a week.
-