From: D-Man <ds...@ri...> - 2001-02-02 23:31:47
|
On Sat, Feb 03, 2001 at 07:19:12AM +0900, syKim wrote: | | -You could tell users to use the "Grail" browser ;-), it can execute | -"Python Applets". The basic problem with web-browser-based | -applications is your users (web browsers) must have the required | -interpreter/libraries available. Sun did a good job selling java, so | -now all browsers include a java interpreter which allows them to run | -java applets. Browsers aren't including a python interpreter, which | -makes it harder to run python code. I would expect that, since Jython | -is written entirely in Java, and it outputs java code that any JVM can | -run stuff made with jython. Now we just have to solve all the java | -dependencies the browsers have. | | I don't know both "Grail" & python applets. | | How it works? | | How can I get more information about it? | Grail is a web browser written in python. You can find it on the python web site, maybe in the Vaults of Parnassus, and I think it is actually located on sourceforge (try http://grail.sourceforge.net). I don't think it is being actively maintained anymore though. Since Grail is written in python, it was made with the ability to run python applets. I don't know if they would need to be put in a zip file or what for the browser to get them. I think that using jython is the best solution for you since (almost) everybody has a web browser that can run java applets. -D |