The MR and attached patch remove the directory validation from the drush simple-oauth:generate-keys
command.
klaasvw β created an issue.
The MR and patch attached fixes the bug by checking the field type for both forms. It also refactors the code to use hook_form_FORM_ID_alter to prevent code duplication, and fixes the coding standards warnings.
klaasvw β created an issue.
PR and patch attached to fix the issue.
klaasvw β created an issue.
Hi everyone,
First of all thanks for all the hard work done so far!
I've created an MR with the following changes:
- Re-roll of #19 again the latest 4.x dev
- Support for layout_builder_browser
I haven't been able to test this with layout_builder_iframe_modal.
Patch attached.
klaasvw β made their first commit to this issueβs fork.
Setting the z-index too high will make the balloon overlap any dialog that is opened from the balloon (e.g. when using the linkit_media_library module).
klaasvw β made their first commit to this issueβs fork.
Attached is a patch that addresses these issues:
- The patch introduced earlier
- Keep the file extension in the public_id
- Fall back to the homepage URL if the asset cannot be fetch from cloudinary when generating an external URL
There are multiple problems related to this issue:
* The meta data is never loaded from storage (which is addressed by the previous patch)
* The meta data is never fetched if the asset's public_id contains a file extension
* Because the meta data is always re-fetched a fatal error is thrown if the original file is not found via the Cloudinary admin api: Uncaught InvalidArgumentException: A path was passed when a fully qualified domain was expected
* Pages containing multiple cloudinary assets (e.g. the file admin view, entities with a lot of cloudinary media entities, etc) get a big performance impact because the cloudinary_stream_wrapper module calls the cloudinary api for every asset that is displayed.
The following change will fetch the asset meta data and use the bytes property from cloudinary as the filesize property.
There's also an opportunity to reduce API hits and improve performance by caching the various CloudinaryAssetHelper
calls. For example, when calling CloudinaryAssetHelper::loadAssetByPublicId
multiple times Drupal is hitting the Cloudinary admin API more than is needed. Could be optimized by storing the assets in memory using a map in the CloudinaryAssetHelper service instance. I didn't implement this for now because it's not required for this change, but might be worth creating a new issue for this.
klaasvw β created an issue.
Please ignore my previous PR, somehow the 2.1.x branch was merged into it.
The latest PR + this patch fixes the issue in 3.0.x
Pushed a new MR that rerolls the above fix for the 3.0.x version.
klaasvw β made their first commit to this issueβs fork.
The PR and the attached patch replaces MediaLibraryUiBuilderInterface with MediaLibraryUiBuilder.
klaasvw β made their first commit to this issueβs fork.
The attached patch wraps the return value in a markup render array element.
klaasvw β created an issue.
matthiasm11 β credited klaasvw β .
If it helps anything, I can vouch for matthiasm11's skills as a developer, having been colleagues for over 9 years. I don't have any recent open source projects available to vouch for my own skills though, but the most representative one is https://www.drupal.org/project/lissa_kickstart β .
Forgot fixing the TranslationLanguageRenderer; new patched attached.
This patch is compatible with drupal core 9.5.x using the patch from https://www.drupal.org/project/drupal/issues/2457999#comment-14853680 π Cannot use relationship for rendered entity on Views Fixed
smustgrave β credited klaasvw β .