log context.c @ 67:b5160c82be65

age author description
Sun, 26 Jul 2009 16:19:12 -0700 Atul Varma Added comments.
Sun, 26 Jul 2009 15:06:19 -0700 Atul Varma Pymonkey now handles the GIL properly so that Python code can run while JS code does.
Sun, 26 Jul 2009 12:43:31 -0700 Atul Varma Added context.set_operation_callback() and trigger_operation_callback() methods.
Sat, 25 Jul 2009 16:10:21 -0700 Atul Varma Added a gc() method to the context object which performs garbage collection.
Mon, 06 Jul 2009 09:22:31 -0700 Atul Varma Added license blocks to all .c/.h files.
Mon, 06 Jul 2009 08:13:45 -0700 Atul Varma Converting JS exceptions into Python exceptions is now doable, albeit not yet implemented, thanks to the discovery of JSOPTION_DONT_REPORT_UNCAUGHT. Also, JS warnings are now converted into Python warnings.
Mon, 06 Jul 2009 01:37:16 -0700 Atul Varma Added basic functionality for passing useful exceptions between Python and JS code.
Sun, 05 Jul 2009 23:55:42 -0700 Atul Varma Changed function signature of PYM_pyObjectToJsval() to be consistent w/ the rest of the API.
Sun, 05 Jul 2009 23:52:14 -0700 Atul Varma JS-wrapped python functions now take a context object as their first parameter.
Fri, 03 Jul 2009 21:15:18 -0700 Atul Varma Added a TODO.
Fri, 03 Jul 2009 20:57:58 -0700 Atul Varma Added a context.call_function() method.
Fri, 03 Jul 2009 20:04:01 -0700 Atul Varma Renamed PYM_newJSFunction() to PYM_newJSFunctionFromCallable(). PYM_newJSObject() now returns objects of type PYM_JSFunctionType as needed.
Thu, 02 Jul 2009 22:56:59 -0700 Atul Varma If the JS engine supports GC zeal setting, we enable it automatically to help find any memory management bugs.
Thu, 02 Jul 2009 22:42:31 -0700 Atul Varma Added a new PYM_JSFunction type, PYM_JSContext.define_property(), and PYM_JSContext.new_function(). Also fixed a memory leak.
Tue, 30 Jun 2009 22:42:48 -0700 Atul Varma Changed PYM_pyObjectToJsval() to simply return an int status/error code; this way callers don't have to worry about decreasing the reference count of a Py_NONE.
Tue, 30 Jun 2009 21:53:45 -0700 Atul Varma Changed PYM_pyObjectToJsval() to assume the caller is in Python-space for consistency.
Tue, 30 Jun 2009 21:23:04 -0700 Atul Varma Added a new PYM_pyObjectToJsval() function that only supports unicode for the moment. Also, whereever we're assuming that Py_UNICODE is UCS-2, we're surrounding such code with #ifndef Py_UNICODE_WIDE.
Mon, 29 Jun 2009 13:33:07 -0700 Atul Varma Based on my new understanding of JSString */jschar * thanks to folks on #jsapi, I've removed the requirement that SpiderMonkey be in UTF-8 mode to translate strings between Python and SpiderMonkey.
Mon, 29 Jun 2009 07:28:56 -0700 Atul Varma Added very primitive support for calling python functions from JS.
Sun, 28 Jun 2009 20:40:18 -0700 Atul Varma Changed object constructor to take a context instead of a runtime.
Sun, 28 Jun 2009 20:19:39 -0700 Atul Varma PYM_jsvalToPyObject() can now deal with JSObjects.
Sun, 28 Jun 2009 20:08:59 -0700 Atul Varma Moved context creation code into its own public function in context.c.
Sun, 28 Jun 2009 20:00:48 -0700 Atul Varma Refactoring; moved PYM_JSObject creation code into a new public function in object.c.
Sun, 28 Jun 2009 19:44:13 -0700 Atul Varma Added a context.get_property() method.
Sun, 28 Jun 2009 19:01:43 -0700 Atul Varma Created a new context.evaluate_script() function, replacing pymonkey.evaluate(). Separated out one of the big unit tests into several.
Sun, 28 Jun 2009 18:39:43 -0700 Atul Varma JS objects in python-land are now rooted while in python-land so that they're not gc'd while in python-land.
Sun, 28 Jun 2009 18:28:35 -0700 Atul Varma added an init_standard_classes() method to context objects.
Sun, 28 Jun 2009 18:19:14 -0700 Atul Varma Added an object class.
Sun, 28 Jun 2009 17:43:42 -0700 Atul Varma Fixed a code typo.
Sun, 28 Jun 2009 17:28:57 -0700 Atul Varma factored out Runtime, Context, and utils into separate files.