Re: Python in HTML Application (HTA)

2007-10-13 Thread M�ta-MCI (MVP)
Hi! I give a solution in the french newsgroup. Michel Claveau -- http://mail.python.org/mailman/listinfo/python-list

Re: Python in HTML Application (HTA)

2007-10-13 Thread Salvatore
In fact, whatever I do in "infoSystem" (modifiying style attributes of an object, change cursor appearance...), changes are only reflected at the end of the function call ... Salvatore a écrit : > Hello, > > I encounter a display problem in one of my script > > ... > ... > def setValue(divid,

Re: Python in HTML

2006-06-25 Thread Tim Roberts
[EMAIL PROTECTED] wrote: > >Does anyone know of a way to embed python scripts into html, much like >you would javascript or php? I do not want to use this to connect to a >database, but rather for a functional script to be called when a user >clicks on a link to open a page. If you are running Win

Re: Python in HTML

2006-06-25 Thread Mirco Wahab
Thus spoke [EMAIL PROTECTED] (on 2006-06-23 17:40): > Does anyone know of a way to embed python scripts into html, much like > you would javascript or php? I do not want to use this to connect to a > database, but rather for a functional script to be called when a user > clicks on a link to open a

Re: Python in HTML

2006-06-23 Thread Mitja Trampus
[EMAIL PROTECTED] wrote: > Does anyone know of a way to embed python scripts into html, much like > you would javascript or php? Two very different things, JS and PHP... First make sure you know what you're after. If you want PHP-like embedding of code, google for "python server pages". Several

Re: Python in HTML

2006-06-23 Thread Andy Dingley <[EMAIL PROTECTED]>
[EMAIL PROTECTED] wrote: > Python, like it's (evil?) cousin Perl, Isn't that evil cousin Ruby? Perl's the mad old grandmother in the attic, spewing out incomprehensible [EMAIL PROTECTED]&% swearing all day. > can be used as a CGI. If you > don't have one already, go download Apache server to pl

Re: Python in HTML

2006-06-23 Thread [EMAIL PROTECTED]
Bruno Desthuilliers wrote: > [EMAIL PROTECTED] wrote: > > Does anyone know of a way to embed python scripts into html, much like > > you would javascript or php? > > I think you'd better learn the profound difference between client-side > and server-side scripting. Indeed. You really should Google

Re: Python in HTML

2006-06-23 Thread Bruno Desthuilliers
[EMAIL PROTECTED] wrote: > Does anyone know of a way to embed python scripts into html, much like > you would javascript or php? I think you'd better learn the profound difference between client-side and server-side scripting. > I do not want to use this to connect to a > database, but rather fo