Account created on 14 March 2006, about 19 years ago
#

Recent comments

🇳🇱Netherlands jurriaanroelofs

Sounds good @marcus_johansson — by the way have you looked at how LiteLLM handles it? it works great, with Pydantic models supporting advanced requirements on response schemas:
https://docs.litellm.ai/docs/completion/json_mode

Of course we have no such thing in PHP. In JS, some AI SDK use Zod as an alternative to Pydantic but I think it is not as mature or powerful. I have no idea whether something similar exists in PHP.

🇳🇱Netherlands jurriaanroelofs

I would also include Gemini's structured output docs as I think it is a bit different but Gemini 2.0 is an incredible model for many use cases:
https://ai.google.dev/gemini-api/docs/structured-output

Also in some applications I implement structured output but on top of that I implement my own "dirty json" libraries and/or custom code, so that I can still experiment with faster models that don't supported structured output.

For example with Gemini 2.0 I can get guaranteed structured output but with 2.0-flash-lite I cannot, but with some cleaning I get clean structured output with enough ease to say the juice is worth the squeeze. As with anything it depends on the use case.

🇳🇱Netherlands jurriaanroelofs

Hi Paul! I recommend upgrade to the latest 2.x release. We are now focusing on the 2.x branch and publishing our latest and greatest there. The 3.x branch is mostly there for the deprecation of jQuery, and with that Bootstrap 3 and 4. Let me know how today's 2.7.0-beta5 release works for you.

🇳🇱Netherlands jurriaanroelofs

@avpadermo do we need more reviews? I respect the process but we have been on Planet for 17 years and the feed got removed due to an error in our migration process. Should I ask people for a review? Just trying to help move this forward, thanks for your consideration!

Before DXPR we are called Sooperthemes and before that Alldrupalthemes.com:

I feel like right now we're announcing the most exciting contributions to the community so it would be sad if Planet cannot take part in that.

🇳🇱Netherlands jurriaanroelofs

Can we merge this? :) We're going to launch a very interesting project for the Drupal community today.

🇳🇱Netherlands jurriaanroelofs

Hello there, sorry about that we forgot to push the DXPR Theme Helper release, problem should be fixed now with 1.0.5:
https://www.drupal.org/project/dxpr_theme_helper/releases/1.0.5

🇳🇱Netherlands jurriaanroelofs

Sorry for the delay, it will be released today :)

🇳🇱Netherlands jurriaanroelofs

Not 100% sure but it's highly likely the root cause is with imports breaking due to duplicate IDs, I have a fix for this for the 4.x module but its pretty straightforward to create a similar fix for the D7 version:

https://www.drupal.org/project/google_analytics_reports/issues/3483408 🐛 Drupal\Core\Database\IntegrityConstraintViolationException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'keyEvents:viewed_pricing_page' for key 'PRIMARY': INSERT INTO "google_analytics_reports_fields" RTBC

🇳🇱Netherlands jurriaanroelofs

I had the same problem and the root cause was a bug with field imports, you can ensure you import all fields and keep your views working correctly by reinstalling after applying my patch:

https://www.drupal.org/project/google_analytics_reports/issues/3483408 🐛 Drupal\Core\Database\IntegrityConstraintViolationException: SQLSTATE[23000]: Integrity constraint violation: 1062 Duplicate entry 'keyEvents:viewed_pricing_page' for key 'PRIMARY': INSERT INTO "google_analytics_reports_fields" RTBC

🇳🇱Netherlands jurriaanroelofs

@eojthebrave thx for your work on this! I would love to test this but with both the 5.x branch and this patched version I'm not able to load active subscriptions for a user on the /user/nid/subscription page. It will always decide there are no subscriptions for the user and redirect to /user/uid/subscription/signup.
I am able to load the list of plans at /admin/config/services/recurly/subscription-plans so my API keys should be fine.

Is this a known problem on Drupal 10.x and PHP 8.3? Need a workaround for this or help debugging it in order to help you test your patch. Unfortunately I don't get any errors and to debug the API request I think I'd need to edit the recurly-client library, or is there a possibility to get debug info my flipping some verbosity switch?

Even when I create a new susbcription from within the Drupal site, the new subscription will be created with the correct account code (user-uid) but not load for said user.

🇳🇱Netherlands jurriaanroelofs

I gave you the extra permission, would be great if you can add D11 compatibility. I don't have use for the module right now but it makes sense to update it since D10 and D11 are not too different.

🇳🇱Netherlands jurriaanroelofs

Hello, sorry I forgot about this but are you still interested? Is it hard to make the module D11 compatible?

🇳🇱Netherlands jurriaanroelofs

Hi, we are close to Drupal 11 support for DXPR Theme, it is a lot of complex work due to jquery deprecations in Drupal 11. Once development and testing of the changes are finished, we release DXPR Theme and the helper module for Drupal 11.

🇳🇱Netherlands jurriaanroelofs

Maybe I'm nit-picky but I feel like ChatWithImageVision is a bit redundant and ChatWithVision is more in line with convention:
https://docs.anthropic.com/en/docs/build-with-claude/vision
https://platform.openai.com/docs/guides/vision

I think if they add Video support it would in integration in Vision API and not a separate VideoVision api.

🇳🇱Netherlands jurriaanroelofs

I'm also not sure about the "emotion" part in our prompt, because the Vision API seems to be getting it wrong when it does name an emotion:
"A young woman with a serene expression gazes through a chain-link fence."

This completely turns around the emotion of the image.

🇳🇱Netherlands jurriaanroelofs

For new projects I can now recommend https://github.com/dxpr/dxpr_cms

The only feature that is left to port from DXPR Marketing CMS is Multilingual tooling.

The great benefit of this new StarterKit is that you don't need WAMP, you can use the included "ddev quikstart" command to launch a pre-configured server.

https://github.com/dxpr/dxpr_cms/blob/main/README.md

All future developments will happen on this project.

🇳🇱Netherlands jurriaanroelofs

How about Weaviate? Has a lot of advanced features, some paid, but also a fully open source vector search engine with a lot of community backing:

https://github.com/weaviate/weaviate

I also see one of the AI module maintainers has created a module for weaviate: https://www.drupal.org/project/search_api_weaviate

🇳🇱Netherlands jurriaanroelofs

Tested the latest commit and works great! Only thing that we can improve on in this mechanism is streaming the answer rather than waiting for completion of the messages before printing to the UI. It's what users are getting used to now, and it will also prevent time-out problems.

If I prompt the Completion plugin with "Write 2000 words about cats" I'll get "There was an error in the Summarize AI plugin for CKEditor." probably because of the time-out.

That error message is wrong but I addressed that in my MR here: https://www.drupal.org/project/ai/issues/3464266 📌 UI text inconsistencies and user experience issues of main assistant plugin Active

🇳🇱Netherlands jurriaanroelofs

Got it, yeah I agree on all of that too :) We all should be making modules that abstract away from any single LLM service provider.

🇳🇱Netherlands jurriaanroelofs

Thx guys I appreciate your feedback and I'm looking forward to dive deeper into the topics. Will check out the video about graph RAG. I also recently saw a video about how Hybrid Search can be a better solution than RAG and maybe that is also easier to implement. I'm just starting out getting into this so you probably thought about this already.

🇳🇱Netherlands jurriaanroelofs

Have you considered integrating with the TMGMT framework? It's a very powerful suite for both human and AI translation and it is very extensible, too.

🇳🇱Netherlands jurriaanroelofs

Amazing work on this, with this API it will be easier to create and extend plugins.

I do agree with @wouters_f that the decision to load the selectbox with plugins in a popover is not a good user experience. It would be better to load those options in the native CKEditor dropdown as before, and when clicking them we load the Drupal popover. Did you try that and run into any trouble doing it this way @kevinquillen?

🇳🇱Netherlands jurriaanroelofs

I think this feature is the most important AI feature Drupal can develop. Drupal is uniquely positioned to offer the best AI CMS because Drupal content is typically very clearly structured with semantically named components like entity types, bundles, fields, paragraphs, layouts etc. A lot of content and metacontent (e.g. layout) that an LLM can work with.

"Dear AI, please find most innovative ideas that people have posted on drupal.org in the last 3 months"

For this to work, I think the technology to bet on is RAG (Retrieval Augmented Generation) which involves vectorizing the Drupal data you want to integrate with the LLM. There is a reason there aren't any AI PHP modules while there are many Python AI modules, Python is just much more computationally efficient and therefore suited to computationally intensive work, which vectorization is.

It would already be a great achievement to have a Hello world example that used vectorized Drupal data but here is a list of things I'd like to see as part of this intiative as well:

  1. Multi tenancy Make it possible for an end user to ask "Why is my latest invoice so high" and for the chatbot to reply something like "A higher than usual metered "Line-Item-X" was consumser through your project "Software-Y". But won't want to expose invoices of other accounts to the chat instance.
  2. Unsupervised updating of vectorized database. At some point real-time would be great of course
  3. Integration with Search (API). I think they are already separately working on RAG but I haven't kept track. It would be great if the default search form could leverage LLM capabilities.
  4. Recommender algorithm: finding related content with fuzzy keyword. If you like reading Drupal issues about RAG from the AI module you might enjoy these issues about using generative AI in search_api module issue queue. etc.
🇳🇱Netherlands jurriaanroelofs

Fixed the dependency though, thx!

🇳🇱Netherlands jurriaanroelofs

Thanks, but the module is not functional yet. At present we're sort of just mocking it up and developing it from inside the mock-up. However, I'm curious to know what got you interested and what use case you have in mind for this module that made you want to try it.

You can also write us privately with feedback via our contact form.

🇳🇱Netherlands jurriaanroelofs

Just to manage expectations: our team is currently working intensely on a number of initiatives across all our products and this issue will have to wait, probably a couple months. We might redesign the menu while at the same time refactoring dxpr_theme to be based on Single Directory Components.

🇳🇱Netherlands jurriaanroelofs

Hi, can you please create a video of this bug? We cannot reproduce it on our side. Please also report what browser and version you are using.

🇳🇱Netherlands jurriaanroelofs

Ok thanks for bringing this to our attention again guys. I consulted with "WCAG-GPT" and indeed we get some recommendations to improve the design. I will create a user story for this and assign it to a UX designer as soon as possible.

For reference, the recommendations:

1. Consistent Navigation (WCAG 2.4.3)
Guideline: Ensure that navigation mechanisms that are repeated on multiple web pages occur in the same relative order each time they are repeated, unless a change is initiated by the user.
Application: The inconsistency between desktop and mobile navigation (where parent links are accessible on desktop but not on mobile) violates this guideline. Ensuring that parent links are accessible on both platforms aligns with WCAG 2.4.3, providing a consistent navigation experience.

2. Link Purpose (In Context) (WCAG 2.4.4)
Guideline: The purpose of each link can be determined from the link text alone or from the link text together with its programmatically determined link context.
Application: Current implementation might obscure the purpose of parent links if they are not directly clickable. Making parent links accessible and ensuring their purpose is clear adheres to this guideline, enhancing user understanding and navigation.

3. Navigable (WCAG 2.4.1)
Guideline: Provide ways to help users navigate, find content, and determine where they are.
Application: Providing a separate icon or indicator for expanding submenus while keeping parent links clickable makes the navigation more intuitive and easier to use, supporting better content discovery and navigation.

4. Keyboard Accessible (WCAG 2.1.1)
Guideline: Make all functionality available from a keyboard.
Application: Ensuring that both the parent link and the submenu are accessible via keyboard navigation is crucial. This can be achieved by making the parent link clickable and using a keyboard-accessible control (such as a button or icon) to expand submenus.

5. Multiple Ways (WCAG 2.4.5)
Guideline: Provide more than one way to locate a web page within a set of web pages.
Application: Offering multiple methods to access parent and child pages (e.g., clicking the text for parent pages, using an icon for submenus) ensures users can navigate in the way that best suits them, enhancing accessibility.

6. Visible Focus (WCAG 2.4.7)
Guideline: Any keyboard-operable user interface has a mode of operation where the keyboard focus indicator is visible.
Application: Ensuring the focus indicator is visible on both parent links and submenu expand icons helps users understand their current position within the navigation menu, making the site more accessible for keyboard users.

Implementation Example:
Parent Link Accessibility: Ensure the text of the parent link is clickable and navigates to the parent page.
Submenu Toggle: Use an accessible icon (e.g., a plus sign or an arrow) adjacent to the parent link that expands the submenu when clicked. Ensure this icon is keyboard accessible.
Consistent Experience: Maintain this behavior across both desktop and mobile platforms to ensure a consistent navigation experience.

I'm also moving this to the correct project.

🇳🇱Netherlands jurriaanroelofs

Definitely, that would be a good choice too. Also our own theme DXPR Theme uses Bootstrap 5 theme as a base theme.

🇳🇱Netherlands jurriaanroelofs

Hi,

Indeed we cannot support both in DXPR Theme, this would require custom CSS.

I'll write more about this in your DXPR.com ticket.

Jurriaan

🇳🇱Netherlands jurriaanroelofs

Yes it is, I just added a stable release to make this more clear.

🇳🇱Netherlands jurriaanroelofs

I know this isnt helping but this problem has existed for over 13 years now (!) and still is the reason, besides quite many, we still cannot wholeheartedly start any new Drupal projects.

@sic we have a workaround committed to dxpr_theme that probably works in 99.9% of real-world applications, feel free to use our theme or implement our patch in your custom theme:

https://git.drupalcode.org/project/dxpr_theme/-/commit/7810b0c78d866e705...

🇳🇱Netherlands jurriaanroelofs

Hello guys,

We finally have a commit addressing this issue. It is not a perfect solution, this issue is very complex and needs to be fixed in core. The issue is under discussion in core for 14 years already:
https://www.drupal.org/node/953034

Our current workaround is not perfect as it is based on a whitelist of tags:
https://git.drupalcode.org/project/dxpr_theme/-/commit/7810b0c78d866e705...

A proper solution will have to come from Drupal core. Thank you for your help!

I'm marking this fixed because its committed to 6.x branch but I cannot select this as version on the issue, so mind that it is not fixed on 6.0.0-beta1.

🇳🇱Netherlands jurriaanroelofs

Hi inst,

In DXPR Theme settings, find the setting Header & Main Menu -> Side Header

Enable it, and you're done :)

Kind regards,
Jurriaan Roelofs
CEO, Chief Product Officer, DXPR

🇳🇱Netherlands jurriaanroelofs

Thank you Tiru, your changes will break the bug fix referenced in this issue regarding rendering of empty regions. We have an alternative fix under review internally that we will merge soon.

🇳🇱Netherlands jurriaanroelofs

@saschaeggi Is there anything in specific keeping you from creating a stable release for your projects? Are there any standards that you are following in this regard?

I hope it is not just perfectionism that is keeping Gin out of reach for projects that demand a stable release with a shield for all their dependencies :)

🇳🇱Netherlands jurriaanroelofs

Hi Luke, one of our developers will be working on this issue this week, we'll keep you posted!

🇳🇱Netherlands jurriaanroelofs

Thanks for the issue and your ideas! We are aware that our current solution is not optimal. The problem we solved with the commit you pointed out is the rendering of empty regions. Without this commit we saw sidebars regions being rendered even when there were no blocks in the sidebars. We need to find a better solution that does not render region markup while also fixing the problem with blocks being undetected when they do not have text nodes.

We will start work on this tomorrow and keep you posted.

Kind regards,
Jurriaan Roelofs
CEO, Chief Product Officer, DXPR

🇳🇱Netherlands jurriaanroelofs

Hi difeor,

Is it possible your server is not able to connect outside to app.dxpr.com?

Kind regards,
Jurriaan Roelofs
CEO, Chief Product Officer, DXPR

🇳🇱Netherlands jurriaanroelofs

Thank you for your input. However, this bug is not reproducible in version 2.6.0, therefore, we do not require any code changes to address this particular issue.

Anyone experiencing the same error should update to the latest release.

🇳🇱Netherlands jurriaanroelofs

Hi guys, we just finished final testing on a fix and merged it into the 6.x branch. The 6.x branch is backwards compatible with 5.x, it just needs a migration of the color palette because we deprecated the color module.

Please try it here and let us know if the bug is fixed for you:

https://www.drupal.org/project/dxpr_theme/releases/6.x-dev

🇳🇱Netherlands jurriaanroelofs

Hi, thank you for offering to maintain the project. I have granted you permission to push to VCS, maintain issues, and create releases. I will see how it goes for the next 2 months and make an evaluation of your success in getting things done :)
Hence the Needs review state on this issue.

🇳🇱Netherlands jurriaanroelofs

Hi, what commands did you use to install? Can you please try again and see if it installs 10.3.x?

🇳🇱Netherlands jurriaanroelofs

We apologize for any inconvenience caused. Our team is currently developing a new wireframe/skeleton view mode which will enable the re-ordering feature you're looking for. Our immediate focus is on completing the integration of CKEditor 5, following which we will be developing a new element controls system, essential for the wireframe view mode. Rest assured, we are making steady progress and will keep you updated on our developments. Thank you for your patience and understanding.

🇳🇱Netherlands jurriaanroelofs

Hi Melju,

Thanks but I didn't ask for a module that can do it, I was looking for sites that implement this design pattern. If we can see the full implementation of this pattern and how the site designed queues for the user to understand the design pattern, we can say something about the user friendliness of the navigation system. This is not possible by simply looking at the business logic in the module.

Here is a recent in-depth study of the UX problem we're facing:
https://www.smashingmagazine.com/2022/11/navigation-design-mobile-ux/

The follow quote resonates with DXPR's strive for making simplicity the tenet of our (and your) user experience:

On Mammut, the entire navigation bar drives the user to the second level of navigation. Their users can move to discover all items within the category or jump into a sub-category. Problems solved. Rather than overloading the navigation bar with separators and separate actions, we can help users move forward confidently and comfortably and prevent mistakes altogether. The next action is always just a tap away.

Always consider adding a link to the category page within the expanded accordion or in a separate view, and assign only a singular function to the entire bar — opening that view.

This describes the system we currently have in place, and we too recommend that you can place a top level page link inside the submenu if you think it's important they can access this link.

For now I'll close this issue as "works as designed" but feedback is still welcome of course.

🇳🇱Netherlands jurriaanroelofs

Hello Melju,

I think users will expect the link to open the menu when the 3 dots are there, changing the behavior to just a link would then not be user friendly.
Do you have any examples of mobile menus working as you describe?

Kind regards,
Jurriaan Roelofs
CEO, Chief Product Officer, DXPR

🇳🇱Netherlands jurriaanroelofs

Would anyone interesting in this feature please share with us their website that needs this? You can share if here or via email: https://dxpr.com/contact

Our current position is that this feature is not used in modern web design but if we have a couple of examples of use cases for this feature we will consider including it in DXPR Theme.

🇳🇱Netherlands jurriaanroelofs

Hi, running the command that is provided to you in the error you shared fixes the problem. In the meanwhile we'll look into preventing the need for running this command.

Regards,
Jurriaan

🇳🇱Netherlands jurriaanroelofs

Thank you for your ticket. I'm not sure if this is a bug, or just the content security policy doing exactly what it is designed for.

The purpose of using style-src 'self' is to restrict the website from loading stylesheets from any external sources. DXPR Builder needs to load both stylesheets and javascript assets from our cloud infrastructure. This is not something we can fix from our side but something that requires a tailored strategy from the CSP implementation side. Some options you have:

1. Replace style-src 'self' with style-src https://example.com https://cdn.dxpr.com; where example.com is your domain name.
2. Configure your website to apply the stricter rule style-src 'self' only to user roles that do not use DXPR Builder
3. Keep using style-src 'self' but creating a proxy on your own domain to funnel assets from whitelisted domains

Please consult compliance officers and security specialized software engineers in your organization to find the best solution that meets requirements in your situation.

🇳🇱Netherlands jurriaanroelofs

@sboden are you using our DXPR Marketing CMS distribution? You may need to remove the -color line from dxpr_marketing_cms.yml:

https://git.drupalcode.org/project/dxpr_marketing_cms/-/blob/10.1.x/dxpr...

Production build 0.71.5 2024