You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
(32) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
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 05:39:15
|
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: Alfred E. <al...@us...> - 2000-11-04 04:21:23
|
FAQ: HOW TO USE THE FILTER SYSTEM 1. Q: When is it appropriate to use tik filters? Q: When is it appropriate to use preproc filters? A: If you're writing a package or component that needs to filter messages, use the tik filtering functions (located at the end of configandpkg.tcl). If you just want your own filters applied to IM's, CHAT's, etc. use preproc filters (see preproc.tcl in components) 2. Q: How do I make my own filters? A: (For package writers) First thing to do is to create a function that contains your filter code: proc Some_filter {msg args} { ....Some code return $filtered_msg } msg = the incoming text args = additional arguments, like the $id used by some chat filters filtered_msg = the text once you`re done with it Then you need to register it: tik_register_filter connName type Some_filter connName = $::SCREENNAME or * (usually *) type = type of filter [see #3] Some_filter = your function name (For people making there own) Use the gui for preproc (under development) or check out the source of preproc.tcl. 3. Q: What are the filter types? A: These are available for both the tik and preproc functions IM_OUT -- outgoing IM`s IM_IN -- incoming IM`s CHAT_OUT -- outgoing CHAT`s CHAT_IN -- incoming CHAT`s These are for available for just preproc OUT -- both outgoing IM`s and CHAT`s IN -- both incoming IM`s and CHAT`s 4. Q: How do I unload filters? A: (For package writers) You use: tik_unregister_filter connName type func in your "unload" routine where: connName = $::SCREENNAME or * (usually *) type = type of filter [see #3] func = name of your filter function (For people making their own) Use the gui for preproc (under development) or check out the source of preproc.tcl. |
From: Alfred E. <alf...@ho...> - 2000-08-03 05:55:02
|
FAQ: HOW TO USE THE FILTER SYSTEM 1. Q: When is it appropriate to use toc filters? Q: When is it appropriate to use preproc filters? A: Basically, if you're writing a component with filters, you want to directly access the toc functions to avoid calling the preproc_register function before it's loaded. If you're writing a package, or just adding some of your own filters, you want to use the preproc functions. 2. Q: How do I make my own filters? A: First thing to do is to create a function that contains your filter code: proc Some_filter {msg args} { ....Some code return $filtered_msg } msg = the incoming text args = additional arguments, like the $id used by some chat filters filtered_msg = the text once you're done with it Then you need to register it: toc_register_filter connName type Some_filter for components or preproc::register connName type Some_filter optional_comments connName = $::SCREENNAME or * (usually *) type = type of filter [see #3] Some_filter = your function name optional_comments = variable containing comments for preproc filters 3. Q: What are the filter types? A: These are available for both the toc and preproc functions IM_OUT -- outgoing IM's IM_IN -- incoming IM's CHAT_OUT -- outgoing CHAT's CHAT_IN -- incoming CHAT's These are for available for just preproc OUT -- both outgoing IM's and CHAT's IN -- both incoming IM's and CHAT's 4. Q: How do I unload filters when my package is unloaded? A: You use: toc_unregister_filter connName type func for components and preproc::unregister connName type func for packages and all else. connName = $::SCREENNAME or * (usually *) type = type of filter [see #3] func = name of your filter function ________________________________________________________________________ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com |
From: Christopher R K. <chr...@wc...> - 2000-06-14 19:04:14
|
Is anyone of an instant message server implementation? Or is it limited to running clients against AOL's servers? Chris |
From: daron s. <da...@sl...> - 2000-04-14 08:17:50
|
Date: Friday April 14, 2000 @ 1:10 Author: daspek Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv13892 Modified Files: tik.tcl Log Message: upped build # and pointed future commit mails to tik-cvs mailing list...subscribe to it if you want cvs commit mailings |
From: daron s. <da...@sl...> - 2000-04-14 08:17:50
|
Date: Friday April 14, 2000 @ 1:10 Author: daspek Update of /cvsroot/tik/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv13892/CVSROOT Modified Files: loginfo Log Message: upped build # and pointed future commit mails to tik-cvs mailing list...subscribe to it if you want cvs commit mailings |
From: Mengmeng Z. <men...@sl...> - 2000-04-14 08:03:01
|
Date: Friday April 14, 2000 @ 0:55 Author: mengmeng Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv9667 Modified Files: tik.tcl Log Message: fixes for </> bug, tikinfo bugs |
From: Mengmeng Z. <men...@sl...> - 2000-04-14 08:03:01
|
Date: Friday April 14, 2000 @ 0:55 Author: mengmeng Update of /cvsroot/tik/tik/packages In directory slayer.i.sourceforge.net:/tmp/cvs-serv9667/packages Modified Files: tiktools.tcl Log Message: fixes for </> bug, tikinfo bugs |
From: Mengmeng Z. <men...@sl...> - 2000-04-14 07:07:18
|
Date: Friday April 14, 2000 @ 0:00 Author: mengmeng Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv718 Modified Files: tik.tcl Log Message: fix for chat bold bug |
From: Mengmeng Z. <men...@sl...> - 2000-04-14 06:50:27
|
Date: Thursday April 13, 2000 @ 23:43 Author: mengmeng Update of /cvsroot/tik/tik/packages In directory slayer.i.sourceforge.net:/tmp/cvs-serv303/packages Modified Files: bcast.tcl Log Message: tweaks to bcast |
From: Mengmeng Z. <men...@sl...> - 2000-04-14 06:15:36
|
Date: Thursday April 13, 2000 @ 23:08 Author: mengmeng Update of /cvsroot/tik/tik/packages In directory slayer.i.sourceforge.net:/tmp/cvs-serv32180/packages Modified Files: tiktools.tcl Log Message: lots of tiktools changes, cleaned up code, added /eval /date /day, etc; upped tik.tcl to 0.84pre7 |
From: Mengmeng Z. <men...@sl...> - 2000-04-14 06:15:36
|
Date: Thursday April 13, 2000 @ 23:08 Author: mengmeng Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv32180 Modified Files: tik.tcl Log Message: lots of tiktools changes, cleaned up code, added /eval /date /day, etc; upped tik.tcl to 0.84pre7 |
From: Mengmeng Z. <men...@sl...> - 2000-04-14 05:33:47
|
Date: Thursday April 13, 2000 @ 22:26 Author: mengmeng Update of /cvsroot/tik/tik/strs In directory slayer.i.sourceforge.net:/tmp/cvs-serv27647/strs Modified Files: English.strs Log Message: updated English.strs that I forgot |
From: Mengmeng Z. <men...@sl...> - 2000-04-14 03:41:28
|
Date: Thursday April 13, 2000 @ 20:34 Author: mengmeng Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv17787 Modified Files: example.tikrc tik.tcl Log Message: added broadcast package with hooks in tiktools, initial implementation of removing * on focus in IM windows (off by default) |
From: Mengmeng Z. <men...@sl...> - 2000-04-14 03:41:28
|
Date: Thursday April 13, 2000 @ 20:34 Author: mengmeng Update of /cvsroot/tik/tik/packages In directory slayer.i.sourceforge.net:/tmp/cvs-serv17787/packages Modified Files: tiktools.tcl Added Files: bcast.tcl Log Message: added broadcast package with hooks in tiktools, initial implementation of removing * on focus in IM windows (off by default) |
From: Mengmeng Z. <men...@sl...> - 2000-04-13 23:10:42
|
Date: Thursday April 13, 2000 @ 16:03 Author: mengmeng Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv24739 Modified Files: tik.tcl Log Message: tik_show_url _really_ should work now when no netscape is open |
From: John F. M. <fuz...@sl...> - 2000-04-13 18:42:01
|
Date: Thursday April 13, 2000 @ 11:34 Author: fuzzface00 Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv23590/tik Modified Files: sflap.tcl Log Message: FuzzFace00 - Added basic timestamps to SFLAP debug statements. Not pretty, but it insures you know WHEN an SFLAP message was sent/received. Only useful for low level debugging. |
From: Mengmeng Z. <men...@sl...> - 2000-04-13 17:12:06
|
Date: Thursday April 13, 2000 @ 10:05 Author: mengmeng Update of /cvsroot/tik/tik/packages In directory slayer.i.sourceforge.net:/tmp/cvs-serv17065/packages Modified Files: imcapture.tcl Log Message: buddy logon/off is now in imcapture if IM window is open and imcapture timestamps is on |
From: Mengmeng Z. <men...@sl...> - 2000-04-13 14:08:38
|
Date: Thursday April 13, 2000 @ 7:01 Author: mengmeng Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv29981 Modified Files: tik.tcl Log Message: tik_show_url now opens a new Netscape window if needed |
From: Mengmeng Z. <men...@sl...> - 2000-04-13 11:07:04
|
Date: Thursday April 13, 2000 @ 4:00 Author: mengmeng Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv6811 Modified Files: tik.tcl Log Message: subbed trim for trimleft trimright, moved header/footer insert position so that empty messages aren't sent with header/footers, and added '/msg nick msg' capability in tiktools for those who want even more control ;) |
From: Mengmeng Z. <men...@sl...> - 2000-04-13 11:07:04
|
Date: Thursday April 13, 2000 @ 4:00 Author: mengmeng Update of /cvsroot/tik/tik/packages In directory slayer.i.sourceforge.net:/tmp/cvs-serv6811/packages Modified Files: tiktools.tcl Log Message: subbed trim for trimleft trimright, moved header/footer insert position so that empty messages aren't sent with header/footers, and added '/msg nick msg' capability in tiktools for those who want even more control ;) |
From: Mengmeng Z. <men...@sl...> - 2000-04-13 09:22:23
|
Date: Thursday April 13, 2000 @ 2:15 Author: mengmeng Update of /cvsroot/tik/tik/strs In directory slayer.i.sourceforge.net:/tmp/cvs-serv25627/strs Modified Files: English.strs Log Message: added font option, a few more glyphs to addHTML |
From: Mengmeng Z. <men...@sl...> - 2000-04-13 09:22:23
|
Date: Thursday April 13, 2000 @ 2:15 Author: mengmeng Update of /cvsroot/tik/tik In directory slayer.i.sourceforge.net:/tmp/cvs-serv25627 Modified Files: example.tikrc tik.tcl Log Message: added font option, a few more glyphs to addHTML |
From: Mengmeng Z. <men...@sl...> - 2000-04-13 07:11:57
|
Date: Thursday April 13, 2000 @ 0:04 Author: mengmeng Update of /cvsroot/tik/CVSROOT In directory slayer.i.sourceforge.net:/tmp/cvs-serv7820 Modified Files: loginfo Log Message: getting rid of those annoying status messages =================================================================== File: loginfo Status: Up-to-date Working revision: 1.6 Thu Apr 13 07:04:55 2000 Repository revision: 1.6 /cvsroot/tik/CVSROOT/loginfo,v Existing Tags: No Tags Exist |
From: Mengmeng Z. <men...@sl...> - 2000-04-13 07:08:53
|
Date: Thursday April 13, 2000 @ 0:01 Author: mengmeng Update of /cvsroot/tik/tik/packages In directory slayer.i.sourceforge.net:/tmp/cvs-serv7700/packages Modified Files: boxinfo.tcl Log Message: another boxinfo update =================================================================== File: no file boxinfo.tcl Status: Needs Checkout Working revision: 1.3 Thu Apr 13 07:01:51 2000 Repository revision: 1.3 /cvsroot/tik/tik/packages/boxinfo.tcl,v Existing Tags: No Tags Exist |