Return-Path: Mailing-List: contact mod_dtcl-cvs-help@tcl.apache.org; run by ezmlm Delivered-To: mailing list mod_dtcl-cvs@tcl.apache.org Received: (qmail 82358 invoked by uid 500); 8 Aug 2001 15:03:49 -0000 Delivered-To: apmail-tcl-moddtcl-cvs@apache.org Received: (qmail 82335 invoked from network); 8 Aug 2001 15:03:49 -0000 Received: from h32.sny.collab.net (HELO icarus.apache.org) (64.208.42.42) by h31.sny.collab.net with SMTP; 8 Aug 2001 15:03:49 -0000 Received: (qmail 94022 invoked by uid 1048); 8 Aug 2001 15:01:52 -0000 Date: 8 Aug 2001 15:01:52 -0000 Message-ID: <20010808150152.94021.qmail@icarus.apache.org> From: davidw@apache.org To: tcl-moddtcl-cvs@apache.org Subject: cvs commit: tcl-moddtcl/docs help.html nav.html other.html X-Spam-Rating: h31.sny.collab.net 1.6.2 0/1000/N davidw 01/08/08 08:01:52 Modified: . mod_dtcl.c mod_dtcl.spec tcl_commands.c docs nav.html other.html Added: docs help.html Log: Fixed MakeFileChannel to use ClientData, not ClientData*. Thanks to Mikhail. Created a 'help' page in the docs. Updated spec file, thanks to Simon Greaves. Revision Changes Path 1.45 +2 -2 tcl-moddtcl/mod_dtcl.c Index: mod_dtcl.c =================================================================== RCS file: /home/cvs/tcl-moddtcl/mod_dtcl.c,v retrieving revision 1.44 retrieving revision 1.45 diff -u -r1.44 -r1.45 --- mod_dtcl.c 2001/08/03 14:32:54 1.44 +++ mod_dtcl.c 2001/08/08 15:01:51 1.45 @@ -57,7 +57,7 @@ * originally written at the National Center for Supercomputing Applications, * University of Illinois, Urbana-Champaign. */ -/* $Id: mod_dtcl.c,v 1.44 2001/08/03 14:32:54 davidw Exp $ */ +/* $Id: mod_dtcl.c,v 1.45 2001/08/08 15:01:51 davidw Exp $ */ /* mod_dtcl.c by David Welton - originally mod_include. */ /* See http://tcl.apache.org/mod_dtcl/credits.ttml for additional credits. */ @@ -666,7 +666,7 @@ { if (upload->fp != NULL) { - chan = Tcl_MakeFileChannel((ClientData *)fileno(upload->fp), TCL_READABLE); + chan = Tcl_MakeFileChannel((ClientData)fileno(upload->fp), TCL_READABLE); Tcl_RegisterChannel(interp, chan); channelname = Tcl_GetChannelName(chan); Tcl_ObjSetVar2(interp, 1.3 +5 -2 tcl-moddtcl/mod_dtcl.spec Index: mod_dtcl.spec =================================================================== RCS file: /home/cvs/tcl-moddtcl/mod_dtcl.spec,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- mod_dtcl.spec 2001/05/02 11:29:35 1.2 +++ mod_dtcl.spec 2001/08/08 15:01:51 1.3 @@ -3,7 +3,7 @@ Summary: Simple, fast Tcl server side scripting for Apache. Name: mod_dtcl -Version: 0.10.1 +Version: 0.11.1 Release: 1 Copyright: Freely distributable and usable Group: System Environment/Daemons @@ -23,7 +23,7 @@ use the extensive codebase of existing Tcl code, on the web. %prep -%setup -n %{name}-%{version} +%setup -n %{name} sed -e 's/^INC=.*/INC=\/usr\/include\/apache/' \ -e 's/^APACHE=.*/APACHE=\/usr\/sbin/' \ < builddtcl.sh > rpm-builddtcl.sh @@ -45,6 +45,9 @@ %{_libdir}/apache/mod_dtcl.so %changelog +* Wed Aug 1 2001 Simon Greaves +- mod_dtcl-0.11.1 packaged. + * Wed May 2 2001 Simon Greaves - slight tweaks for mod_dtcl-0.10.1. 1.15 +3 -3 tcl-moddtcl/tcl_commands.c Index: tcl_commands.c =================================================================== RCS file: /home/cvs/tcl-moddtcl/tcl_commands.c,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- tcl_commands.c 2001/08/03 14:32:54 1.14 +++ tcl_commands.c 2001/08/08 15:01:51 1.15 @@ -684,7 +684,7 @@ { /* create and return a file channel */ char *channelname = NULL; - chan = Tcl_MakeFileChannel((ClientData *)fileno( + chan = Tcl_MakeFileChannel((ClientData)fileno( ApacheUpload_FILE(upload)), TCL_READABLE); Tcl_RegisterChannel(interp, chan); channelname = Tcl_GetChannelName(chan); @@ -709,7 +709,7 @@ else Tcl_SetChannelOption(interp, savechan, "-translation", "binary"); - chan = Tcl_MakeFileChannel((ClientData *)fileno( + chan = Tcl_MakeFileChannel((ClientData)fileno( ApacheUpload_FILE(upload)), TCL_READABLE); Tcl_SetChannelOption(interp, chan, "-translation", "binary"); @@ -736,7 +736,7 @@ Tcl_Channel chan = NULL; bytes = Tcl_Alloc(ApacheUpload_size(upload)); - chan = Tcl_MakeFileChannel((ClientData *)fileno( + chan = Tcl_MakeFileChannel((ClientData)fileno( ApacheUpload_FILE(upload)), TCL_READABLE); Tcl_SetChannelOption(interp, chan, "-translation", "binary"); Tcl_SetChannelOption(interp, chan, "-encoding", "binary"); 1.2 +4 -0 tcl-moddtcl/docs/nav.html Index: nav.html =================================================================== RCS file: /home/cvs/tcl-moddtcl/docs/nav.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- nav.html 2001/06/15 17:19:47 1.1 +++ nav.html 2001/08/08 15:01:52 1.2 @@ -39,6 +39,10 @@ + Getting Help + + + mod_dtcl web site 1.2 +1 -22 tcl-moddtcl/docs/other.html Index: other.html =================================================================== RCS file: /home/cvs/tcl-moddtcl/docs/other.html,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- other.html 2001/06/15 17:19:47 1.1 +++ other.html 2001/08/08 15:01:52 1.2 @@ -71,27 +71,6 @@ arguments, whereas this was not necessary in the past. - -

Getting Help

-
    -
  • Mailing list
    -

    - The mod_dtcl mailing list is the best place to go for help - when you have problems. -

    -

    - See the Contact - page for information on sending - mail/subscribing. -

    -

    - Mailing list archives are also available at http://archive.covalent.net, - at the bottom of the page. -

    -
  • -
- \ No newline at end of file + \ No newline at end of file 1.1 tcl-moddtcl/docs/help.html Index: help.html =================================================================== miscellaneous mod_dtcl documentation

Where to get help with mod_dtcl

  • Mailing list

    The mod_dtcl mailing list is the best place to go for help when you have problems.

    mod_dtcl@tcl.apache.org is the mailing list address.

    To subscribe to the mailing list, send an empty email to mod_dtcl-subscribe@tcl.apache.org.

    Currently, lists are not archived. If you'd like to help out, let us know.