tkbrowser-devel Mailing List for Tkhtml wrapper for simple browsers.
Status: Pre-Alpha
Brought to you by:
tallniel
You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
From: <aku...@sh...> - 2004-08-20 06:07:59
|
11'th Annual Tcl/Tk Conference October 11 - 15, 2004 New Orleans, Louisiana, USA Email Contact tc...@tc... We are pleased to announce the 11'th Annual Tcl/Tk conference (Tcl'2004), sponsored by Noumena Corporation, in cooperation with ActiveState and ExpoTech. Come to New Orleans to: * Learn about the power of Tcl/Tk. * Present exciting new work involving Tcl/Tk. * See the latest developments in Tcl/Tk. * Meet Tcl/Tk researchers and users from academia, government and industry. * Plan for future Tcl/Tk related developments. The conference program will include paper presentations, tutorials, Birds of a Feather (BOF) sessions and invited key-note talks. Registration Online registration is ready now. <http://www.tcl.tk/community/tcl2004/reg.html> Tutorials Come learn about Tcl from the experts. This year's Tcl/Tk Conference includes one of the best sets of Tutorials ever offered including tutorials on Jacl, TclHttpd, Starkit, Advanced GUI construction, and the API. <http://www.tcl.tk/community/tcl2004/tut2004.html> Schedule More details will be added to the schedule as they become available. <http://www.tcl.tk/community/tcl2004/schedule.html> Those attending the conference will be interested in the conference info page. <http://www.tcl.tk/community/tcl2004/info.html> To keep in touch with news regarding the conference and Tcl events in general, subscribe to the tcl-announce list. <http://listserv.activestate.com/mailman/mysubs?show=announce> Other Forms of Participation For those who are not presenting a paper at the conference, but would like to present their work in some form, we do provide several other forms of participation. Slots for Works-in-Progress (WIP) presentations and Birds-of-a-Feather sessions (BOFs) are available on a first-come, first-served basis by sending email to tc...@tc.... Some WIP and BOF time slots will be held open for on-site reservation, so we encourage all attendees with interesting work in progress to consider presenting that work at the conference. Conference Committee Gerald Lester HMS Software General Chair Andreas Kupries ActiveState Corp Clif Flynt Noumena Corp Website Admin Jeffrey Hobbs ActiveState Corp Kevin Kenny GE Global Research Center Ken Jones Avia Training Mac Cody Raytheon Company Kim Richerts Steve Landers Digital Smarties Sheila Miguez Motorola Larry Virden Tcl FAQ Maintainer Contact Information tc...@tc... |
From: Neil M. <ne...@cs...> - 2002-11-23 08:31:41
|
Hello all (not sure whether anyone is subscribed to this yet), I've been working away at adding form support into the browser package. I= have=20 had some problems with the sheer complexity and amount of information tha= t=20 has to be stored in order to process forms correctly. As I have developed= =20 further, I noticed that to deal with this, I have been essentially develo= ping=20 my own object system, which seems a duplication of code. For this reason,= I=20 am considering moving the code base over to work with SNIT=20 (http://wiki.tcl.tk/3963). SNIT is lightweight and Tcl-only so it should = not=20 prove a problem to add to the project. However, I wanted to ask everyone'= s=20 opinion first, in case this causes problems for anybody. I hope to finish form support, add cookies, history, and a toolbar GUI=20 component (with buttons for forward, back, home, reload etc), and then ma= ke a=20 release on sourceforge. Comments, ideas and bug reports welcome, Neil |
From: Neil M. <ne...@cs...> - 2002-06-06 12:32:45
|
This is a test. Neil -- package r Tkhtml;package r http;pack [scrollbar .v -o v -co {.h yv}] -s right\ -f y;pack [html .h -ys {.v set}] -f both -e 1;bind .h.x <1> {eval g [.h href %x\ %y]};proc g u {set t [http::geturl $u];.h cl;.h p [http::data $t];http::cleanup\ $t;.h co -base $u};g http://mini.net/tcl/976.html;proc bgerror args {};# NEM :-) |
From: Neil M. <ne...@cs...> - 2002-06-04 12:57:42
|
Just testing that this is working... Neil. -- package r Tkhtml;package r http;pack [scrollbar .v -o v -co {.h yv}] -s right\ -f y;pack [html .h -ys {.v set}] -f both -e 1;bind .h.x <1> {eval g [.h href %x\ %y]};proc g u {set t [http::geturl $u];.h cl;.h p [http::data $t];http::cleanup\ $t;.h co -base $u};g http://mini.net/tcl/976.html;proc bgerror args {};# NEM :-) |