Search the web
Sign In
New User? Sign Up
frontierkernel · Frontier Kernel
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 3529 - 3558 of 3834   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
3529
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...
russellgum
Offline Send Email
Mar 9, 2008
5:47 am
3530
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...
creecode
Offline Send Email
Mar 9, 2008
6:08 pm
3531
Don't forget -- you also need the SQLite verb glue. It's in the latest build....
David Gewirtz
zatzdiagnostic
Offline Send Email
Mar 9, 2008
6:39 pm
3532
... 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...
russellgum
Offline Send Email
Mar 10, 2008
1:18 am
3533
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...
creecode
Offline Send Email
Mar 10, 2008
3:27 am
3534
... here is the script from the examples table with a couple of foos added for breakpoints. local ( databaseId, f, query, queryId, result ); bundle { // f ...
russellgum
Offline Send Email
Mar 10, 2008
4:25 am
3535
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 ...
creecode
Offline Send Email
Mar 10, 2008
5:34 am
3536
... 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...
russellgum
Offline Send Email
Mar 10, 2008
5:39 pm
3537
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...
David Gewirtz
zatzdiagnostic
Offline Send Email
Mar 10, 2008
6:22 pm
3538
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...
creecode
Offline Send Email
Mar 10, 2008
10:38 pm
3539
... 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...
russellgum
Offline Send Email
Mar 10, 2008
11:56 pm
3540
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...
creecode
Offline Send Email
Mar 11, 2008
12:25 am
3541
... 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...
russellgum
Offline Send Email
Mar 11, 2008
3:16 am
3542
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...
David Gewirtz
zatzdiagnostic
Offline Send Email
Apr 4, 2008
3:26 am
3543
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...
Matt Neuburg
mattneub
Offline Send Email
Apr 4, 2008
5:26 pm
3544
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...
David Gewirtz
zatzdiagnostic
Offline Send Email
Apr 4, 2008
5:32 pm
3545
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...
Brian Hughes
brianvh
Offline Send Email
Apr 4, 2008
5:45 pm
3546
Actually, I believe mainResponder.redirect uses the 302 (i.e. Temporary) redirect code and not the 301 (Permanent) redirect code. -Brian...
Brian Hughes
brianvh
Offline Send Email
Apr 4, 2008
5:48 pm
3547
Hi Matt, I use only the Frontier static page framework (without main responder) for my (in Germany) very popular blog "Der Schockwellenreiter"...
Jörg Kantel
joerg_kantel
Offline Send Email
Apr 4, 2008
6:42 pm
3548
... My Dad still uses 5.0.1 b20 ru 114 to maintain over 40 web sites (static rendered) Pete......
Pete Beaumont
furbies100
Offline Send Email
Apr 4, 2008
8:45 pm
3549
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...
David Gewirtz
zatzdiagnostic
Offline Send Email
Apr 5, 2008
8:35 am
3550
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... ...
creecode
Offline Send Email
Apr 6, 2008
1:48 am
3551
I would be very interested. It would be great to have table support in addition. Werner Muller...
wmueller4711
Offline Send Email
Apr 6, 2008
2:04 pm
3552
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...
David Gewirtz
zatzdiagnostic
Offline Send Email
Apr 11, 2008
1:10 am
3553
... 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...
Doug Frick
doug_frick
Offline Send Email
Apr 11, 2008
1:25 am
3554
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...
russellgum
Offline Send Email
Apr 11, 2008
1:59 am
3555
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...
creecode
Offline Send Email
Apr 11, 2008
2:41 am
3556
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...
Dave Winer
dwiner
Offline Send Email
Apr 11, 2008
10:05 pm
3557
Hi David. Try this... local (f = "Macintosh HD:test.gif"); local (url = "http://images.zatz.com/zatz/resources/pageimages/homezatzimages/promo2.gif"); ...
Dave Winer
dwiner
Offline Send Email
Apr 12, 2008
6:51 pm
3558
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...
creecode
Offline Send Email
Apr 12, 2008
7:59 pm
Messages 3529 - 3558 of 3834   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help