when I try to run system.verbs.builtins.sqlite.examples.createTable I get a message "Error in kernel call. The verb "open" does not exist, or isn't set up to...
Hello Russ, What version of the kernel are you running? Are you running a roll your own version? I believe that SQLite made it's first appearance in the...
... I was running 10.1a10. When I replaced that with 10.1a11 I got it to run -sort of- When I debug the examples.createTable everything seems to go fine until...
Hello Russ, ... run -sort of- ... until ... closes and the script ... "result" in the lookup ... I'll bet you have a syntax error and compileQuery isn't as...
... here is the script from the examples table with a couple of foos added for breakpoints. local ( databaseId, f, query, queryId, result ); bundle { // f ...
Hello Russ, Ah, my mistake, looks like you're working with a virtually unchanged script. OK. What values do you have on the stack for databaseId, f and query ...
... databaseId is 364668688 f is Big Mac:Users:russgum:Library:Caches:TemporaryItems:states.db3 (this file does not exist) but a fie with the name (name...
Have you tried running the query outside of Frontier? One of the best debugging techniques I use (both for SQLite and MySQL) is to use one of the client...
Hello Russ, ... This looks OK. ... (this file does not ... exist I suspect this ... I don't think colons are the problem, they get translated by the OS. Since...
... I don't think the file is in the expected location. It is not at Big Mac:Users:russgum:Library:Caches:TemporaryItems:states.db3 It is in the top level of...
Hey Russ, ... (not the path - the / are ... Oh my that is a problem! I would suggest moving to v10.1a15 and see if the problem happens with it. There have...
... I moved to 10.1a15 and there was no problem. Thanks again. BTW the link to the files (From the home page of frontierkernel) says "Source code and builds...
Anyone know if this is a "301" redirect? Google likes those for moving domains and rather than dig into the code, figured I'd see if anyone had tinkered with...
I'm curious as to whether there's anyone out there (on this list) who is using Frontier *just* for static Web site rendering, i.e. the stuff in chapter 41 of...
I used to use the Web site framework for everything, but I've since converted to feeding out of Frontier with mainResponder, but not Manila. I've thought about...
Hey, Matt. I've still got a couple of websites, here at Dartmouth, managed by Frontier static site publishing. And I, for one, would be very interested in...
Hmmm... if I wanted to force a 301 rather than a 302, any idea where I'd have to insert the code? The actual script for redirect simply sets a URL for the...
Hey David, ... I believe the 302 is set in mainResponder.respond. If you want more control over the error in your script you could do something like... ...
Say you want to download http://images.zatz.com/zatz/resources/pageimages/homezatzimages/promo2.gif to a local drive, file.copy doesn't work. Is there any easy...
... On a Mac: ret = sys.unixShellCommand("curl " + imagefile) or something like that. See curl(1). Or use Anarchy. That's what I do, but I had to re-write the...
I have been looking into the crash caused by trying to export a single table. It looks like the export.card.run () script causes the crash. Can this be...
I think you can do this with tcp.httpClient, assuming you're looking for a UserTalk based way of doing it. You then need to parse the response and store the...
I'm trying to build the code snapshot that Andre gave me in the XCode that comes with Leopard. I want to add some verbs, think about stuff, maybe attempt a...
Hi David. Try this... local (f = "Macintosh HD:test.gif"); local (url = "http://images.zatz.com/zatz/resources/pageimages/homezatzimages/promo2.gif"); ...
Hello Dave, ... Is that Xcode v3? I believe Seth mentioned that he was working with the Frontier Kernel Project; project file in Xcode v3. I know it works...