|
From: David B. <dav...@us...> - 2004-12-20 03:31:36
|
Update of /cvsroot/frontierkernel/Frontier/Common/headers In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv341 Modified Files: Tag: sidewinder-branch langpython.h Log Message: now checks for the existence of system.verbs.builtins.python.renderPython and if present, uses this routine to render the python code before compiling it. This allows me to use UserTalk to transform the python before it gets executed, giving me the ability to add keywords, and to turn UserTalk comments (the chevrons) into Python comments. Just another step closer to the finish line... Index: langpython.h =================================================================== RCS file: /cvsroot/frontierkernel/Frontier/Common/headers/langpython.h,v retrieving revision 1.1.4.5 retrieving revision 1.1.4.6 diff -C2 -d -r1.1.4.5 -r1.1.4.6 *** langpython.h 28 Nov 2004 18:30:42 -0000 1.1.4.5 --- langpython.h 20 Dec 2004 03:31:16 -0000 1.1.4.6 *************** *** 31,34 **** --- 31,35 ---- boolean ispythonnode(hdltreenode, tyvaluerecord *); boolean callpythonscript(tyvaluerecord, hdltreenode, bigstring, tyvaluerecord *, boolean); + boolean pythonrendercode(hdloutlinerecord houtline, Handle *htext); |