Integrate a WYSIWYG editor in Apache Isis - isis

Is there a workaround to integrate a WYSIWYG editor like Summernote in Apache Isis?
I found this New feature request in Jira https://issues.apache.org/jira/browse/ISIS-1217 but I'm not sure it fits my needs.
I have a text field in which the user has to enter lists and images and I don't want them to write html code as they are not technical people.
I'm using Apache Isis 1.10.0-SNAPSHOT
Thank you

Please follow https://issues.apache.org/jira/browse/ISIS-1265. We will implement it soon!

Related

how do you tell if a website is using docusaurus?

How can you tell if a documentation website is using Docusaurus?
Take for example this website:
https://beta.openai.com/docs/api-reference/introduction
I suspect that it was build with Docusaurus but I didn't find any browser extension to confirm it.
It's not built with Docusaurus.
It is simple to identify. Take the Algolia website for example, if you view the page source of any page, and search for docusaurus, you can find some results:

adding 2checkout to impresspages

Dear Impress Page users,
I need to know how to setup 2checkout as peyment option in my widget,
currently my ms-widget has Filter.php referring to plugin 'PayPalSubscription',
I want the plugin to refer to '2Checkout'
I am not good in php, and I also wanted to ask if someone can provide the script, or let me know how I can edit the paypal script to use 2checkout.
Many thanks
Are you talking about ImpressPages MultiSite? If yes, this plugin is not hardly bind to PayPal. You can install any kind of payment system and MultiSite will use it. Basically I would say have a look at PayPalSubscription plugin as example and create 2checkout plugin. But if you are not very good at PHP you can probably order this plugin to be built for you on ipmultisite.com support page.

OSCLASS: Validate an email address

I'm a newbie to OSClass. I have downloaded a setup and configured in my machine. In user registration page, there is no client validation. It is validating a form in server side. I'm using modern theme. What kind of criteria are being validated in osclass for an email address?
Please advice.
you have set mail server in osclass setting.you can set it with mandrill free account 12000 emails/month.for more detail you check mandrill integration with osclass 3.3.x
Modern theme is quite old now and not supported anymore.
Bender is the current theme for Osclass nowadays.
In Bender and other theme, front validation is usually handle by the jQuery Validate plugin but it's completely up to you.
Take a look in the *.form.php file in the Osclass Github. This is where Javascript is done (ugly but the subject is a work in progress).
You could also take a look at Pop theme (designed by the Osclass team), here.

Webmatrix support for Image Resizer

does anyone know of any documentation for Webmatrix and ImageResizer? i think it would be so useful for newbie developers? I've had a look through all the documentation, and i see that there is support for webforms and MVC, but nothing for ASP.NET web pages?
In WebMatrix, click the blue "NuGet" button.
Search for ImageResizer.MvcWebConfig and click install.
Open the browser, and visit /resizer.debug.ashx If there are any issues, follow the guidance.
Add an image file to your project and resize it from your browser by adding a querystring like ?width=200

JavaFX WebVIew - PDF on popup window

I have posted some other smaller questions regarding the problem I describe below and got some feedback but now I will try to explain it in more depth hoping to get through the problem.
I built a desktop application using JavaFX 2.2 which uses a WebEngine to access a website built using Oracle ADF Pages. The application tracks the users actions on the pages and stores data to a database. All fine so far until the point where I need show a PDF file on a user click.
On the actual website the user clicks a button and a new popup window opens up that displays the PDF.
My problem is that due to the lack of PDF support in JavaFX I cannot display the pdf. The actual link to the PDF is dynamic and it doesn't have a .pdf at the end of it so I can't use the actual URL to send it to an external bowser or something to display it. Additionally the connection is secure so I can't open the URL with Chrome for example.
Possible solutions I thought about are to read the binary data of the response from WebView and create the PDF file locally and then open it using Adobe of Chrome or something. Is that possible at all?
Another solution I thought about (while I am writing this question) is maybe to open the URL which the users default browser but how can I go about sending the secure connection cookie from the application to the browser.
Is any of the above even possible? Am I missing something?
Any help, clues, links, ideas would be very much appreciated.
Thanks
I think the best way to do what you want is to download the PDF and display it locally.
Downloading using WebView sounds like it could work but I'm not familiar with the user experience. As an alternative try using curl or wget. You can pass in the authorization cookie to those tools and use them to download the file