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 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439
|
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>File: ChangeLog</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<link rel="stylesheet" href=".././rdoc-style.css" type="text/css" media="screen" />
<script type="text/javascript">
// <![CDATA[
function popupCode( url ) {
window.open(url, "Code", "resizable=yes,scrollbars=yes,toolbar=no,status=no,height=150,width=400")
}
function toggleCode( id ) {
if ( document.getElementById )
elem = document.getElementById( id );
else if ( document.all )
elem = eval( "document.all." + id );
else
return false;
elemStyle = elem.style;
if ( elemStyle.display != "block" ) {
elemStyle.display = "block"
} else {
elemStyle.display = "none"
}
return true;
}
// Make codeblocks hidden by default
document.writeln( "<style type=\"text/css\">div.method-source-code { display: none }</style>" )
// ]]>
</script>
</head>
<body>
<div id="fileHeader">
<h1>ChangeLog</h1>
<table class="header-table">
<tr class="top-aligned-row">
<td><strong>Path:</strong></td>
<td>ChangeLog
(<a href="http://cvs.pablotron.org/cgi-bin/viewcvs.cgi/fam-ruby/ChangeLog">CVS</a>)
</td>
</tr>
<tr class="top-aligned-row">
<td><strong>Last Update:</strong></td>
<td>Tue Dec 05 02:00:51 -0500 2006</td>
</tr>
</table>
</div>
<!-- banner header -->
<div id="bodyContent">
<div id="contextContent">
<div id="description">
<ul>
<li>Monday, May 27 20:11:45 2002 EST, <pabs@pablotron.org>
<ul>
<li>fam.c: disabled <a
href="../classes/Fam/Connection.html#M000026">Fam::Connection#close</a>;
it’s handled automagically by the free method now.
</li>
<li>famtest.rb: moved to examples/
</li>
<li>event_codes.txt: moved to doc/
</li>
<li>fam.c: added select() usage example to <a
href="../classes/Fam/Connection.html#M000036">Fam::Connection#fd</a>
documentation.
</li>
</ul>
</li>
<li>Monday, May 27 21:17:24 2002 EST, <pabs@pablotron.org>
<ul>
<li>examples/dirmon.rb: added this examples
</li>
<li>README: created README
</li>
<li>examples/dirmon.rb: full comments
</li>
<li>fam.c: removed reference to <a
href="../classes/Fam/Connection.html#M000026">Fam::Connection#close</a>
(rdoc was finding it even though it was commented out).
</li>
<li>doc/: regenerated documentation
</li>
<li>released version 0.1.0
</li>
</ul>
</li>
<li>Monday, May 27 21:35:05 2002 EST, <pabs@pablotron.org>
<ul>
<li>minor updates to README
</li>
</ul>
</li>
<li>Tuesday, May 28 10:19:10 2002 EST, <pabs@pablotron.org>
<ul>
<li>README: added reference to rdoc-generated documentation in intro.
</li>
<li>doc/event_codes.txt: added note about EXEC and ENDEXEC events not working
on non-imon Linux systems.
</li>
</ul>
</li>
<li>Wed Jun 25 16:08:10 2003, pabs <pabs@pablotron.org>
<ul>
<li>fam.c: return request numbers with INT2NUM() instead of INT2FIX() (slightly
safer)
</li>
<li>fam.c: switched from FAMMonitorFile2() to FAMMonitorFile() in <a
href="../classes/Fam/Connection.html#M000028">Fam::Connection#monitor_file</a>
to avoid an apparent FAM bug reported by Thomas Maier
(Thomas.Maier@uni-kassel.de).
</li>
<li>released version 0.1.1.
</li>
</ul>
</li>
<li>Fri Sep 26 14:18:26 2003, pabs <pabs@pablotron.org>
<ul>
<li>initial improt to cvs
</li>
<li>remove doc/
</li>
</ul>
</li>
<li>Fri Sep 26 14:20:02 2003, pabs <pabs@pablotron.org>
<ul>
<li>fam.c: patch from Jon Bernard <jbernard@roanoke.edu> to correct
warning
</li>
</ul>
</li>
<li>Fri Sep 26 16:02:39 2003, pabs <pabs@pablotron.org>
<ul>
<li>releasing version 0.1.2.
</li>
</ul>
</li>
<li>Thu Jan 22 15:30:43 2004, pabs <pabs@pablotron.org>
<ul>
<li>applied unique reqnum patch from MORI Daijiro <mori@epepe.com>
</li>
</ul>
</li>
<li>Thu Jan 22 15:32:36 2004, pabs <pabs@pablotron.org>
<ul>
<li>COPYING: updated copyright year
</li>
<li>README: updated version
</li>
<li>releasing version 0.1.3
</li>
</ul>
</li>
<li>Thu Jan 22 15:39:11 2004, pabs <pabs@pablotron.org>
<ul>
<li>added AUTHORS
</li>
<li><em>really</em> releasing version 0.1.3 :)
</li>
</ul>
</li>
<li>Sat Jul 10 18:20:04 2004, pabs <pabs@pablotron.org>
<ul>
<li>fam.c: incremented version to 0.1.4
</li>
<li>README: updated copyright year
</li>
<li>COPYING: updated copyright year
</li>
</ul>
</li>
<li>Sat Jul 10 18:35:58 2004, pabs <pabs@pablotron.org>
<ul>
<li>AUTHORS: added entry for Nobuyoshi Nakada <nobu@ruby-lang.org>
</li>
</ul>
</li>
<li>Sat Jul 10 18:49:34 2004, pabs <pabs@pablotron.org>
<ul>
<li>fam.c: change Fam::FAMError to <a
href="../classes/Fam/Error.html">Fam::Error</a>
</li>
<li>fam.c: update all documentation to describe exceptions
</li>
</ul>
</li>
<li>Sat Jul 10 19:54:16 2004, pabs <pabs@pablotron.org>
<ul>
<li>README: minor updates
</li>
<li>re-added event_codes.txt
</li>
</ul>
</li>
<li>Sat Jul 10 19:56:30 2004, pabs <pabs@pablotron.org>
<ul>
<li>MANIFEST: updated to reflect event_codes.txt
</li>
<li>releasing 0.1.4
</li>
</ul>
</li>
<li>Wed Aug 25 00:32:05 2004, pabs <pabs@pablotron.org>
<ul>
<li>added fam.gemspec
</li>
</ul>
</li>
<li>Wed Aug 25 01:41:34 2004, pabs <pabs@pablotron.org>
<ul>
<li>fam.gemspec: added CVS to rdoc options
</li>
</ul>
</li>
<li>Wed Aug 25 02:16:56 2004, pabs <pabs@pablotron.org>
<ul>
<li>fam.gemspec: removed —ri-site, added —title (rdoc opts)
</li>
</ul>
</li>
<li>Tue Dec 05 00:29:29 2006, pabs <pabs@pablotron.org>
<ul>
<li>extconf.rb: check for FAMDebugLevel (patch from dlutter@redhat.com)
</li>
<li>fam.c: check for FAM_DEBUG_{OFF|ON} (patch from dlutter@redhat.com)
</li>
<li>fam.c: don’t fail if debug_level isn’t supported
</li>
<li>examples/famtest.rb: don’t fail if Fam#suspend isn’t supported
(also a patch from dlutter@redhat.com)
</li>
<li>fam.c: don’t define Fam#debug if HAVE_FAMDEBUGLEVEL isn’t set
(lets you test for fam.respond_to?(:debug) instead of guessing what might
happen
</li>
<li>fam.c: switch from FamMonitorDir2() to FamMonitorDir(); the latter
doesn’t leak requests.
</li>
<li>fam.c: added conditional support for Gamin-specific FamNoExists() (patch
from dlutter@redhat.com)
</li>
</ul>
</li>
<li>Tue Dec 5 00:52:47 EST 2006, Paul Duncan <pabs@pablotron.org>
<ul>
<li>AUTHORS: added David Lutterkort
</li>
<li>COPYING: updated year to 2006
</li>
<li>MANIFEST: removed CVS entries
</li>
<li>README: added note about Gamin
</li>
<li>README: updated version to 0.2.0
</li>
<li>fam.c: updated version to 0.2.0
</li>
</ul>
</li>
<li>Tue Dec 5 01:25:18 EST 2006, Paul Duncan <pabs@pablotron.org>
<ul>
<li>README: added section about Gamin support
</li>
<li>extconf.rb: check for monitor functions
</li>
<li>fam.c: added note about Gamin behavior to <a
href="../classes/Fam/Connection.html#M000045">Fam::Connection#suspend</a>,
<a
href="../classes/Fam/Connection.html#M000046">Fam::Connection#resume</a>,
and <a href="../classes/Fam.html">Fam</a>#Connection#monitor_collection
</li>
</ul>
</li>
<li>Tue Dec 5 01:28:17 EST 2006, Paul Duncan <pabs@pablotron.org>
<ul>
<li>README: slightly re-worded Gamin section
</li>
</ul>
</li>
<li>Tue Dec 5 01:32:37 EST 2006, Paul Duncan <pabs@pablotron.org>
<ul>
<li>examples/famtest.rb: clean up whitespace from patch
</li>
</ul>
</li>
<li>Tue Dec 05 01:51:41 2006, pabs <pabs@pablotron.org>
<ul>
<li>releasing 0.2.0
</li>
</ul>
</li>
<li>Tue Dec 5 02:00:31 EST 2006, Paul Duncan <pabs@pablotron.org>
<ul>
<li>fam.gemspec: update to reflect 0.2.0
</li>
<li>fam.gemspec: add package signing
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<!-- if includes -->
<div id="section">
<!-- if method_list -->
</div>
<div id="validator-badges">
<p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p>
</div>
</body>
</html>
|