1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
2009-12-07 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.12 ========================
*
2009-11-04 Andreas Kupries <andreask@activestate.com>
* comm.tcl (::comm::commCollect): [Bug 2890743]. Replaced
* comm.man: lindex/lreplace with a procedure emulating lindex's
* pkgIndex.tcl: behaviour pre Tcl 8, i.e. it needs only the first
word to be a proper list element to parse it ouf the
buffer. Bumped package version to 4.6.1.
2009-04-10 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.tcl: Added option -socketcmd enabling users to override how
* comm.man: a socket is opened. The envisioned main use is the
* pkgIndex.tcl: specification of tls::socket to secure the
* comm.pcx: communications. Version bumped to 4.6. Extended syntax
* comm.test: definitions for tclchecker, and extended testsuite.
2008-12-12 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.11.1 ========================
*
2008-10-16 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.11 ========================
*
2008-06-14 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.pcx: New file. Syntax definitions for the public commands
of the comm package.
2008-05-16 Andreas Kupries <andreask@activestate.com>
* comm_wire.man: Fixed the sectref argument order issues.
2008-05-15 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm_wire.man: Updated to changes in doctools (sub)section
reference handling.
2008-03-15 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm_wire.man: Changed 'require' information to show that this
manpage belongs to the documentation for the package 'comm'.
2008-02-29 Andreas Kupries <andreask@activestate.com>
* comm.tcl: Accepted Hemang's <hemanglavana@users.sourceforge.net>
* comm.man: patch for the [SF Tcllib Bug 1861565] he
* comm.test: reported. This changes the handling of 'port already
* pkgIndex.tcl: in use' errors to provide a clear
message. Testsuite was updated. Version bumped to 4.5.7.
2007-09-12 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.10 ========================
*
2007-08-21 Andreas Kupries <andreask@activestate.com>
* comm_wire.man: Fixed description of messages in the basic
message layer, and of EOL, per [SF Tcllib Bug 1739372] (by Lars
Hellstroem). General cleanup (spell checking).
2007-08-20 Andreas Kupries <andreask@activestate.com>
* comm.test: Updated to require Tcl 8.3 (for snit).
2007-08-15 Andreas Kupries <andreask@activestate.com>
* comm.tcl (::comm::Vwait): Fixed uplevel which failed when used
* comm.man: with variable names containing spaces. Bumped the
* pkgIndex.tcl: package version to 4.5.6. Thanks to Bryan Oakley.
2007-08-14 Andreas Kupries <andreask@activestate.com>
* comm.tcl (::comm::CommRunHook): Fixed typo in variable name,
* comm.man: should be 'res', not 'result'. Bumped the package
* pkgIndex.tcl: version to 4.5.5. Thanks to Bryan Oakley.
2007-08-09 Andreas Kupries <andreask@activestate.com>
* comm.tcl (comm::comm_cmd_send): Replaced the 'after idle unset
result' with an immediate unset, saving the information into a
local variable. The 'after idle' can spill into a forked child
process if there is no event loop between its location and the
fork. This may bork the child if the next event loop is the
'vwait' of comm's send a few lines above, and the child used the
same serial number for its next request. In that case the
parent's 'after idle unset' will delete the very array element
the child is waiting for, unlocking the vwait, causing it to
access a now missing array element, instead of the expected
result. Fix by JeffH, Analysis by AndreasK, bugfix actually done
before the analysis. This bug happened at Cisco.
* comm.man: Bumped the package version to 4.5.4.
* pkgIndex.tcl:
2007-06-10 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.tcl: Bugfixes in the wrapper for 'update'.
* comm.man: Bumped the package version to 4.5.3.
* pkgIndex.tcl:
2007-05-10 Andreas Kupries <andreask@activestate.com>
* comm.tcl: Bugfix in the wrapper for 'update'. Bumped the
* comm.man: package version to 4.5.2.
* pkgIndex.tcl:
2007-05-04 Andreas Kupries <andreask@activestate.com>
* comm.tcl: Bugfixes in the handling of -interp for regular
* comm.man: scripts. The handling of the buffer was wrong for
* pkgIndex.tcl: scripts which are a single statement as
list. Fixed missing argument to new command commSendReply,
introduced by version 4.5. Affected debugging. Bumped package
version to 4.5.1.
2007-05-01 Andreas Kupries <andreask@activestate.com>
* comm.tcl: Added ability to asynchronously generate script
* comm.man: results. Enables proper handling of long-running
* comm.test: operations (like db queries) without blocking the
* comm.slaveboot: server, nor requiring nested eventloops.
* pkgIndex.tcl: Extended documentation, and testsuite. Version
bumped to 4.5. Now depending on snit, and Tcl 8.3.
2007-03-19 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.man: Fixed all warnings due to use of now deprecated
* comm_wire.man: commands. Added a section about how to give
feedback.
2006-11-29 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.tcl (commRunHook): Fixed double execution of the hook
script. Thanks to Will Duquette for the report.
2006-10-03 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.9 ========================
*
2006-09-19 Andreas Kupries <andreask@activestate.com>
* pkgIndex.tcl: Bumped to version 4.4. changes were extension
* comm.tcl: of the existing API.
* comm.man:
2006-09-05 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm_wire.man: Clarified the use of the TCP port in the initial
message a bit more, i.e. the meaning of the special value '0'.
* comm.tcl: The rewrite of the hook handling broken the promised
* comm.man: semantics. Fixed. Also extended the handling of a
configured -interp to deal with a variety of possibilities
regarding missing or hidden commands. Updated the documentation.
* pkgIndex.tcl: Bumped to version 4.3.2
2006-08-16 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.man: Bumped to version 4.3.1
* comm.tcl:
* pkgIndex.tcl:
* comm.tcl: Implemented the new options -interp and -events,
* comm.test: extended the testsuite to cover them. Created
utility/helper command for the execution of hook scripts, and
rewrote all hook places to use it.
2006-08-14 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.man: Documented an easier use of slave interpreters
(-interp, -events).
2006-08-11 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.test: Moved startup and cleanup of slave process
* comm.slaveboot: into a separate file.
2006-01-28 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.test: Fixed cleanup of temp. files.
2006-01-22 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.test: More boilerplate simplified via use of test support.
2006-01-19 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.test: Hooked into the new common test support code.
2006-01-10 Andreas Kupries <andreask@activestate.com>
* comm.test: Fixed [SF Tcllib Bug 1316033]. Uncluttering test
output.
2005-10-06 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.8 ========================
*
2005-10-03 Andreas Kupries <andreask@activestate.com>
* comm.tcl: Accepted [SF Tcllib Bug 1006282], which is actually an
* comm.man: RFE. Comm channels are extended with an option which
allows the user to force the server side to silently
ignore connection attempts where the protocol
negotiation with the other side failed.
2005-03-07 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm_wire.man: Added documentation for the wire protocol run by
comm internally.
2004-10-05 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.7 ========================
*
2004-08-24 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.tcl: Typo police.
* comm.man:
2004-05-23 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.6.1 ========================
*
2004-02-15 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.6 ========================
*
2003-10-23 Andreas Kupries <andreask@activestate.com>
* comm.man: Updated version number in documentation.
2003-10-21 Jeff Hobbs <jeffh@ActiveState.com>
* pkgIndex.tcl: updated to v4.2.
* comm.man:
* comm.tcl (comm_cmd_new): make 'comm::comm new ?chan?' fully
qualify the namespace of the new channel and return that.
[Bug #741653, #817351]
* comm.tcl: change default encoding to utf-8. This should still
work with other versions of comm because the previous one-sided
binary setting only allowed for limited i18n-ness. Using this
version of comm on both sides will ensure full i18n-happiness.
[Bug #806420]
2003-05-09 Jeff Hobbs <jeffh@ActiveState.com>
* pkgIndex.tcl: updated to comm 4.1
* comm.man:
* comm.tcl: rewrite of code to remove pseudo-object model.
Clean up code, add send -command callback to allow for
notification of results for asynchronous sends.
2003-05-08 Jeff Hobbs <jeffh@ActiveState.com>
* comm.tcl: update use of string functions to 8.2 cleanliness.
2003-05-05 Andreas Kupries <andreas_kupries@users.sourceforge.net>
*
* Released and tagged Tcllib 1.4 ========================
*
2003-04-11 Andreas Kupries <andreask@activestate.com>
* comm.man:
* comm.tcl:
* pkgIndex.tcl: Set version of the package to to 4.0.1.
2003-01-28 David N. Welton <davidw@dedasys.com>
* comm.tcl (::comm::commConfigure): Use 'string is integer'
instead of regexp's.
Require Tcl 8.2.
2003-01-16 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.man: More semantic markup, less visual one.
2002-08-06 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.test: Removed writing of file ~/foo, was debugging
code. Changed creation and usage of file 'spawn' to allow an
arbitrary setting of -tmpdir. Fixes SF Bug #589225 reported by
Don Porter <dgp@users.sourceforge.net>.
2002-03-06 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* Bumped version number to 4.0 per request by John LoVerso.
* comm.tcl: Applied patch #526499 improving the handling of errors
for async invoked commands.
2002-02-14 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.tcl: Frink run.
2002-01-15 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* Bumped version to 3.7.1.
2001-11-16 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* comm.n: Updated to reflect the changes in the comm code
(namespaces). This fixes SF item #480227.
* comm.tcl: Fixed two places where namespacing was not handled
correctly.
2001-08-22 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* Integrated into tcllib.
|