Re: How to extract an entire element from an HTML file?

2018-11-26 Thread Keith Clarke via use-livecode
Thanks for the steer, Paul - I’ve not worked with XML in LiveCode so hadn’t made the connection between the HTML markup structure & XML. A quick scan through suggests that this library could prove really useful - I’ll dig further and look for related resources, thanks. Best, Keith > On 25

Re: LiveCode and Websockets

2018-11-26 Thread Andre Alves Garzia via use-livecode
Charles, A WebSockets external would be very beneficial for everyone doing web stuff from LC. I am looking forward to checking it out when it is released. :-) Thanks a lot for working on this. Cheers andre On 11/26/2018 6:24 AM, Charles Warwick via use-livecode wrote: Hi Bob, The

[ANN] Release 9.0.2 RC-2

2018-11-26 Thread panagiotis merakos via use-livecode
Dear list members, We are pleased to announce the release of LiveCode 9.0.2 RC-2. Getting the Release === You can get the release at https://downloads.livecode.com/livecode/ or via the automatic updater. Release Contents LiveCode 9.0.2 RC-2 comes with 3

Re: Issues with app delivery!

2018-11-26 Thread Rick Harrison via use-livecode
Hi Kee, I don’t know why revsecuity.dylib is causing the problem if it is. Is there a way to see if revsecuity.dylib is 32 bit instead of 64 bit? Rick > On Nov 26, 2018, at 6:09 PM, Kee Nethery via use-livecode > wrote: > > Oooops. > > My list of entitlements already included > >

Re: Max number of columns in a datagrid?

2018-11-26 Thread Bob Sneidar via use-livecode
That makes sense. Anyone working with this much data should probably build in their own limits into the data they put into the grid. I know I will. Bob S > On Nov 26, 2018, at 15:17 , hh via use-livecode > wrote: > > The limit of LC is not the sky but the 65535-limit > for coordinates of

Re: Max number of columns in a datagrid?

2018-11-26 Thread Bob Sneidar via use-livecode
correction set the dgtext. Stupid spell correct. Bob S > On Nov 26, 2018, at 16:06 , Bob Sneidar via use-livecode > wrote: > > Also, I was concerned because I didn't just fail to set the detect ___ use-livecode mailing list

Re: Max number of columns in a datagrid?

2018-11-26 Thread Bob Sneidar via use-livecode
I read it. :-) My original question was simply, how many columns can a datagrid have? In other words is there a limit? The reason it mattered to me at the time was because I was importing a csv file with a lot of columns and it was easier for me to set the dgProp ["columns"] to the first line

Re: Issues with app delivery!

2018-11-26 Thread Rick Harrison via use-livecode
Hi Kee, I was wondering if perhaps revsecurity.dylib is being used for the password protection of the stack. That could be it. If that is the problem though how are people supposed to protect their code? Rick > On Nov 26, 2018, at 5:59 PM, Kee Nethery via use-livecode > wrote: > > What is

Limit on pixles in a group [ was: Re: Max number of columns in a datagrid?]

2018-11-26 Thread Alex Tweedly via use-livecode
On 25/11/2018 23:04, Richard Gaskin via use-livecode wrote: This limitation may have been eliminated, or close to eliminated, with the field object.  And now that fields have column-independent alignment, it's rare that there's ever a need to replace that one object with a thousand-object

Re: Issues with app delivery!

2018-11-26 Thread Rick Harrison via use-livecode
Hi Kee, I did a get info on revsecurity.dylib inside the contents of the standalone and unfortunately it doesn’t tell me if it is 32 or 64 bit. :-( Rick > On Nov 26, 2018, at 11:36 PM, kee nethery via use-livecode > wrote: > > Sounds like a bug report is in order? > > Also, I wonder if you

Re: Issues with app delivery!

2018-11-26 Thread kee nethery via use-livecode
Sounds like a bug report is in order? Also, I wonder if you pull it out of the app and then do Get Info on it, whether it will tell you is is 32 or 64 bit? Kee > On Nov 26, 2018, at 4:46 PM, Rick Harrison via use-livecode > wrote: > > Hi Kee, > > I was wondering if perhaps

Re: Issues with app delivery!

2018-11-26 Thread kee nethery via use-livecode
Sounds like bug report. Sorry I’m no expert on revsecurity.dylib. Once you figure it out, happy to add it to the instructions. Kee > On Nov 26, 2018, at 8:42 PM, Rick Harrison via use-livecode > wrote: > > Hi Kee, > > I did a get info on revsecurity.dylib inside the contents of the

Re: Issues with app delivery!

2018-11-26 Thread Rick Harrison via use-livecode
Hi Kee, I tried a couple of quick experiments. I turned off the password encrypt protection and the destroy-stack option to see if that would remove the revsecurity.dylib. Unfortunately I had no luck in removing it. I will try some other things in the morning. Thanks for getting back to me

[ANN] This Week in LiveCode 156

2018-11-26 Thread panagiotis merakos via use-livecode
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #156 here: https://goo.gl/WYYK4t This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: How to extract an entire element from an HTML file?

2018-11-26 Thread Keith Clarke via use-livecode
Thanks for the warning and the link to the parsers, Trevor. I get the point regarding unclean HTML - as I won’t be in control of the source. Following a cursory glance through the dictionary, I’m also a tad concerned about the variability in HTML tag content (e.g. content & elements vs.

hhPDFViewer v0.8.0

2018-11-26 Thread hh via use-livecode
Sometimes one wishes to have a unique PDF display, independent of the user's current internet-plugin. Or one wishes to have a feature that these plugins don't have (for example rotation). Then pdf.js comes in. hhPDFViewer is a basic GUI to the JavaScript pdf library "pdf.js" (

Re: hhPDFViewer v0.8.0

2018-11-26 Thread Tom Glod via use-livecode
This is great, thank you! also a good learning tool for learning to interact with JS. On Mon, Nov 26, 2018 at 2:44 PM hh via use-livecode < use-livecode@lists.runrev.com> wrote: > Sometimes one wishes to have a unique PDF display, independent of the > user's current internet-plugin. Or one

Re: How to extract an entire element from an HTML file?

2018-11-26 Thread J. Landman Gay via use-livecode
On 11/26/18 1:46 PM, Tom Glod via use-livecode wrote: I've been thinking about a simple html parser as well to extract email addresses or urls from a page. Tools that might help 1. regular expressions > ... I've posted this link before but it is worth reading more than once. :)

Re: How to extract an entire element from an HTML file?

2018-11-26 Thread Tom Glod via use-livecode
I've been thinking about a simple html parser as well to extract email addresses or urls from a page. Tools that might help 1. regular expressions 2. item delimiter and chunks. (set itemdelimiter to tag you are trying to extract) 3.replace command Good luck. On Mon, Nov 26, 2018 at 10:18

Re: What is LC's internal text format?

2018-11-26 Thread Bob Sneidar via use-livecode
I would be concerned that if a large number of Java coders (far more than the LC coders) were to come on board, we would end up with a java development environment as the java people would dominate the demand and direction of LC. Bob S > On Nov 21, 2018, at 09:00 , Lagi Pittas via

Re: Browser widget and PDFs

2018-11-26 Thread Bob Sneidar via use-livecode
I thing there is an Open With option likw Wndows has. Try right clicking apdf and see if you can see an always open with option. Bob S > On Nov 22, 2018, at 08:53 , Tore Nilsen via use-livecode > wrote: > > I have come across a puzzling phenomenon in how the browser widget handles > pdfs.

Re: Max number of columns in a datagrid?

2018-11-26 Thread Bob Sneidar via use-livecode
That wasn't the issue. The issue was, how many columns before noticeable decline in performance, and eventually death for the datagrid. Bob S > On Nov 21, 2018, at 13:27 , JJS via use-livecode > wrote: > > what the h*ll you're going to do with 1500 columns? > > who's gonna work with that?

Re: [ANN] Release 9.0.2 RC-2

2018-11-26 Thread Richmond via use-livecode
Congratulations! Looking forward to having a "poke" in depth when I get home after work. Richmond. On 26.11.18 г. 13:38 ч., panagiotis merakos via use-livecode wrote: Dear list members, We are pleased to announce the release of LiveCode 9.0.2 RC-2. Getting the Release ===

Re: How to extract an entire element from an HTML file?

2018-11-26 Thread Trevor DeVore via use-livecode
On Mon, Nov 26, 2018 at 3:30 AM Keith Clarke via use-livecode < use-livecode@lists.runrev.com> wrote: > Thanks for the steer, Paul - I’ve not worked with XML in LiveCode so > hadn’t made the connection between the HTML markup structure & XML. Keith, I’ve used revXML for parsing HTML in

Re: Max number of columns in a datagrid?

2018-11-26 Thread Bob Sneidar via use-livecode
For me the issue was converting a csv file exported from a copier. The csv file has a LOT of columns (page counts for virtually everything and paper type black and color the copier is capable, including scans, fax etc.) In the end I decided to not use that file format and instead use the

OT: Automate Modifying a PDF

2018-11-26 Thread John McKenzie via use-livecode
Hello. There is no concrete reason I should be posting this off topic question to this list but you all just seem like the sort of people who would know how to go about a particular task I need help with. Previous off topic posts showed good knowledge of programming ideas from non-me list

Re: Issues with app delivery!

2018-11-26 Thread kee nethery via use-livecode
Try this URL https://developer.apple.com/documentation/security/com_apple_security_app-sandbox?language=objc It’s not very useful. But it does say that entitlement needs a boolean. Try adding to the entitlements.plist the following: com.apple.security.app-sandbox Wonder what

Re: Issues with app delivery!

2018-11-26 Thread Kee Nethery via use-livecode
What is revsecurity.dylib used for? That probably tells us what you are using that my app was not. Kee > On Nov 26, 2018, at 2:57 PM, kee nethery via use-livecode > wrote: > > Try this URL > > https://developer.apple.com/documentation/security/com_apple_security_app-sandbox?language=objc >

Re: hhPDFViewer v0.8.0

2018-11-26 Thread JJS via use-livecode
Awesome! Thanks Herman Regards, Sphere Op 26-11-2018 om 20:43 schreef hh via use-livecode: Sometimes one wishes to have a unique PDF display, independent of the user's current internet-plugin. Or one wishes to have a feature that these plugins don't have (for example rotation). Then pdf.js

Re: Max number of columns in a datagrid?

2018-11-26 Thread dunbarxx via use-livecode
All: It is certainly possible that one might need an enormous DG or table field. It never happens that one must view such a beast all at once, or even a large part of it; that is not the issue. The point is that one cannot have such a control at all, and that seems unfair. If one is looking at

Issues with app delivery!

2018-11-26 Thread Rick Harrison via use-livecode
I had a couple of issues with the delivery of my to the apple app store. I followed Kee’s livecode lesson exactly, so what do I need to do to fix this? Here are the issues: i386 (in com.(..myappname..).app/Contents/MacOS/revsecurity.dylib) App sandbox not enabled - The following executables must

Re: Issues with app delivery!

2018-11-26 Thread Kee Nethery via use-livecode
Oooops. My list of entitlements already included com.apple.security.app-sandbox Ignore my previous emails. No clue why revsecurity.dylib is triggering an entitlements issue. Perhaps it is standalone code that needs it’s own entitlements plist? Kee > On Nov 26, 2018, at

Re: Max number of columns in a datagrid?

2018-11-26 Thread Richard Gaskin via use-livecode
Dunbarxx wrote: > It is certainly possible that one might need an enormous DG or table > field. > It never happens that one must view such a beast all at once, or even > a large part of it; that is not the issue. The point is that one > cannot have such a control at all, and that seems unfair.

Re: Max number of columns in a datagrid?

2018-11-26 Thread hh via use-livecode
The limit of LC is not the sky but the 65535-limit for coordinates of every object. A line width can't be longer than 65535 pixels. And if you have columns with a width of 11 pixels each, then the right of column 5958 is 65538 what is "off-limits". ___

Re: Issues with app delivery!

2018-11-26 Thread Rick Harrison via use-livecode
Hi Kee, It already has this so that can’t be it. Rick > On Nov 26, 2018, at 5:57 PM, kee nethery via use-livecode > wrote: > > com.apple.security.app-sandbox > ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit