You are, it seems, defining two languages in one "space". One language uses whitespace as a delimiter between its tokens; the other uses '.template' and...
Hi all, and happy new year.. Im developing a real-time system in delphi but would like to use the GoldParser for executing scripts. so really, the application...
hi , happy year you too. check this t : http://www.paxscript.com/ works very fast regards ... De: iatcas <iatcas@...> Para: GOLDParser@yahoogroups.com...
Hello, hi , happy year you too. check this t : _http://www.paxscriphttp:/_ (http://www.paxscript.com/) works very fast greetings from Germany and a successful...
Hi folks, just downloaded 3.24. When I start the setup.exe, It tells me to insert disk one. I'm on WinXP Home, SP2 with all the pathes besides IE7. Any clue...
That's quite odd. I will have to recheck the installation script. I am going to have an update in the next couple of days. - Devin [Non-text portions of this...
Devin Cook
GOLD-Admin@...
Jan 4, 2007 9:52 pm
2725
Hi all and happy new year, I'm building a parsing program for processing RSS grammar. I based my work on XML grammar: ...
Once I tryed to convert the W3 grammar to Gold, with no success (plenty of conflicts). If you want to try, take a look in xml.w3.zip in Grammars folder. There...
For any non-trivial parsing of XML files I would suggest using a real XML library and not rolling your own in GOLD. There are many existing, good, libraries...
I just uploaded a Beta version of 3.3 of the Builder. http://www.devincook.com/goldparser/gold-parser-v3.3.0-beta.zip The new version contains a completely...
Devin Cook
GOLD-Admin@...
Jan 5, 2007 9:45 pm
2731
... Seems you want to define some sort of string http://www.devincook.com/GOLDParser/doc/meta-language/example-string- terminal.htm...
... Great! ---and some suggestions: The "continue"-button feels misplaced in the right lower corner. I would prefer to simply click the icon for the test...
yes, you are right Max , and in fact ,just for this urgent task, I am doing that way ( external library ). But afer this, I will try to do it in goldparser...
I saw the grammar and I noticed that you have the same problem with CDATA, your project is ambitious but I will try to collaborate (I am also a novice in this...
Thanks for the feedback. I'll implement a slow/fast feature in the future. Rewind should be quite easy to code, since it's a combination of stop then start. ...
Devin Cook
GOLD-Admin@...
Jan 6, 2007 9:32 pm
2736
... One more point to implement: nested/dycked comments. And one more point to think of: escaping the builtin lexer...
I just have to ask.... why?? Why would you want to use GOLD for this, besides any personal educational gain? Beyond the basic XML parsing you have to deal with...
I have to agree. Using a parser development system like GOLD, YACC, ANTLR, etc. is overkill. Its like watering a flower bed with a fire hose. </bad pun> :-)...
Devin Cook
GOLD-Admin@...
Jan 7, 2007 3:48 pm
2739
Hello everyone, I just uploaded version 3.3 of the Builder. The new version contains a completely overhauled Test Window. * Major improvement! The Test Window...
Well, there are many reasons to do this, follow some: 1. Educational, XML could be a nice starting point to understand Gold, there is a direct connection...
Devin, very cool! I know it's not in this one particular release that this change happened, but I have to say that I'm most impressed by the speed ups you've...
I am having trouble with the CurrentLineNumber property reporting an incorrect line number in the Reggie Wilbanks VB.Net Source code from the GOLD Parser...
Hello, I've been working with GOLD for about a day and I'm amazed how productive I've been with it. This is a great system! But I have a problem with my...
Terminals must be unique from the first character onward. I can't explain why, however Identifier and remote are both terminals for the first letter 'r' so it...
... explain ... letter ... need to to ... Thanks for that advice. That's helped me solve this one. I wanted to allow a keyword "this" as well as a digit as a...
I am surprised that this: DecLiteral = [123456789]{digit}* FloatLiteral = {Digit}*.{Digit}+ Doesn't cause a shift-reduce conflicts; however you might not be...