Re: regex backreferences

2021-12-14 Thread J. Landman Gay via use-livecode
I wish it did, but replaceText doesn't support back references. The parameters at the end are treated as literals, whether as actual quoted literals or variables containing a value. If there isn't a feature request for it, there should be. -- Jacqueline Landman Gay | jac...@hyperactivesw.com

regex backreferences

2021-12-14 Thread Devin Asay via use-livecode
Hi all, Does the replaceText() function allow the use of backreferences to retain groupings of text between matches. For example, if I have some text like this: Good stuff here. I want to end up something like this: Good stuff here.” In BBedit I can search for (.*) and replace it with \1

Re: [ANN] Release 10.0.0 DP-1

2021-12-14 Thread matthias rebbe via use-livecode
Mark, i've just filed bug #23485 https://quality.livecode.com/show_bug.cgi?id=23485 I noticed that as soon as the keyword URL is in a script, even if the line is a comment, the remote access, for example to set the filename of an image to a

Re: [ANN] Release 10.0.0 DP-1

2021-12-14 Thread Andre Garzia via use-livecode
Double check if this is not CORS related. It is very easy to have a request fail because of wrong CORS headers. On Tue, 14 Dec 2021 at 15:00, Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: > On 2021-12-14 13:50, Rolf Kocherhans via use-livecode wrote: > > First of all

Re: How to extract whole text from a PDF file with the PDF

2021-12-14 Thread Paul McClernan via use-livecode
Ah, OK thanks for the clarification. I hadn’t realize PDFium has been around as long as it has been. I wouldn’t sweat the naming conflict, there’s at least three “PDFKit” libraries so you’re not alone. On Tue, Dec 14, 2021 at 11:01 AM Paul Dupuis via use-livecode < use-livecode@lists.runrev.com>

Re: How to extract whole text from a PDF file with the PDF

2021-12-14 Thread Paul Dupuis via use-livecode
On 12/14/2021 10:33 AM, Paul McClernan via use-livecode wrote: I was fairly certain that XPDF external was/is based on this XPDF: https://en.m.wikipedia.org/wiki/Xpdf Which has both GPL and Proprietary Licensing options available. Nope. My company (Researchware) and I paid for the development

Re: How to extract whole text from a PDF file with the PDF

2021-12-14 Thread Paul McClernan via use-livecode
I was fairly certain that XPDF external was/is based on this XPDF: https://en.m.wikipedia.org/wiki/Xpdf Which has both GPL and Proprietary Licensing options available. The newer (> 9.6.3) PDF Widget is based on PDFium which is an offshoot project that spawned from Google’s Chromium project. I’m

Re: [ANN] Release 10.0.0 DP-1

2021-12-14 Thread Mark Waddingham via use-livecode
On 2021-12-14 13:50, Rolf Kocherhans via use-livecode wrote: First of all thanks for the WebAssembly HTML5 implementation. This is really great stuff ! For instance all my URL stuff (loading a stack on same domain) is unfortunately not working anymore. Also, all the PHP scripts which I used to

Re: [ANN] Release 10.0.0 DP-1

2021-12-14 Thread Rolf Kocherhans via use-livecode
First of all thanks for the WebAssembly HTML5 implementation. This is really great stuff ! I already played with it a lot and found that some things work better others don't. For instance all my URL stuff (loading a stack on same domain) is unfortunately not working anymore. Also, all the

Re: IOS 15.0

2021-12-14 Thread Mark Smith via use-livecode
Correct, in this case I think it’s complaining I don’t have the correct SDK in the build. The LC docs (including release notes for 9.6.5) only go up to 14.5 so rather than experiment I was hoping someone already had a tried and true formula for working with 15.0. I'm afraid this is entirely my

Re: How to paste into a form element in the browser widget

2021-12-14 Thread Tore Nilsen via use-livecode
Ah, I see! Wel,l back to redesigning the whole application to include the menus then. Thanks! Best Regards Tore > 14. des. 2021 kl. 13:04 skrev Mark Waddingham via use-livecode > : > > On 2021-12-14 11:41, Tore Nilsen via use-livecode wrote: >> I have a problem pasting into a form element on

Re: How to paste into a form element in the browser widget

2021-12-14 Thread Mark Waddingham via use-livecode
On 2021-12-14 11:41, Tore Nilsen via use-livecode wrote: I have a problem pasting into a form element on a web page in the browser widget. This works well in the IDE, but not in a standalone application. The application has no menus, but I have included a pasteKey script to handle paste

How to paste into a form element in the browser widget

2021-12-14 Thread Tore Nilsen via use-livecode
I have a problem pasting into a form element on a web page in the browser widget. This works well in the IDE, but not in a standalone application. The application has no menus, but I have included a pasteKey script to handle paste shortcuts. This does not seem to do the trick in the browser