ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/src/screen.C
Revision 1.472 - (view) (download) (annotate) - [select for diffs]
Mon Aug 8 10:33:14 2022 UTC (21 months ago) by root
Branch: MAIN
CVS Tags: HEAD
Changes since 1.471: +0 -1 lines
Diff to previous 1.471
*** empty log message ***

Revision 1.471 - (view) (download) (annotate) - [select for diffs]
Mon Aug 8 10:31:51 2022 UTC (21 months ago) by root
Branch: MAIN
Changes since 1.470: +10 -10 lines
Diff to previous 1.470
*** empty log message ***

Revision 1.470 - (view) (download) (annotate) - [select for diffs]
Mon Aug 8 10:09:49 2022 UTC (21 months ago) by root
Branch: MAIN
Changes since 1.469: +1 -1 lines
Diff to previous 1.469
*** empty log message ***

Revision 1.469 - (view) (download) (annotate) - [select for diffs]
Mon Aug 8 10:09:34 2022 UTC (21 months ago) by root
Branch: MAIN
Changes since 1.468: +1 -1 lines
Diff to previous 1.468
*** empty log message ***

Revision 1.468 - (view) (download) (annotate) - [select for diffs]
Mon Aug 8 09:47:56 2022 UTC (21 months ago) by root
Branch: MAIN
Changes since 1.467: +2 -2 lines
Diff to previous 1.467
*** empty log message ***

Revision 1.467 - (view) (download) (annotate) - [select for diffs]
Mon Aug 8 09:45:06 2022 UTC (21 months ago) by root
Branch: MAIN
Changes since 1.466: +3 -3 lines
Diff to previous 1.466
*** empty log message ***

Revision 1.466 - (view) (download) (annotate) - [select for diffs]
Fri Aug 5 07:54:11 2022 UTC (21 months, 1 week ago) by root
Branch: MAIN
Changes since 1.465: +2 -1 lines
Diff to previous 1.465
*** empty log message ***

Revision 1.465 - (view) (download) (annotate) - [select for diffs]
Thu Aug 4 18:28:44 2022 UTC (21 months, 1 week ago) by root
Branch: MAIN
Changes since 1.464: +7 -4 lines
Diff to previous 1.464
*** empty log message ***

Revision 1.464 - (view) (download) (annotate) - [select for diffs]
Thu Aug 4 18:11:59 2022 UTC (21 months, 1 week ago) by root
Branch: MAIN
Changes since 1.463: +18 -20 lines
Diff to previous 1.463
*** empty log message ***

Revision 1.463 - (view) (download) (annotate) - [select for diffs]
Sat Jul 3 04:04:13 2021 UTC (2 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_29, rxvt-unicode-rel-9_30
Changes since 1.462: +7 -3 lines
Diff to previous 1.462
-dpb

Revision 1.462 - (view) (download) (annotate) - [select for diffs]
Thu Jun 17 11:01:57 2021 UTC (2 years, 10 months ago) by root
Branch: MAIN
Changes since 1.461: +2 -2 lines
Diff to previous 1.461
 a rare codesize + time optimisation

Revision 1.461 - (view) (download) (annotate) - [select for diffs]
Thu Jun 17 00:49:20 2021 UTC (2 years, 10 months ago) by root
Branch: MAIN
Changes since 1.460: +1 -1 lines
Diff to previous 1.460
add can_compose flag tor xvt_font, to indicate whether the font handles
glyph composiiton (might go away)
allow rxvt_composite.expand to work with whcar_t and text_t as output,
will likely change.

Revision 1.460 - (view) (download) (annotate) - [select for diffs]
Thu May 13 19:40:20 2021 UTC (2 years, 11 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_25, rxvt-unicode-rel-9_26
Changes since 1.459: +75 -75 lines
Diff to previous 1.459
Require C++11

Revision 1.459 - (view) (download) (annotate) - [select for diffs]
Tue Jun 25 03:35:01 2019 UTC (4 years, 10 months ago) by root
Branch: MAIN
Changes since 1.458: +1 -1 lines
Diff to previous 1.458
*** empty log message ***

Revision 1.458 - (view) (download) (annotate) - [select for diffs]
Sat Jul 15 08:16:22 2017 UTC (6 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.457: +8 -0 lines
Diff to previous 1.457
Account for focus fading when enabling/disabling reverse video.

Patch by Daniel Hahler.

Revision 1.457 - (view) (download) (annotate) - [select for diffs]
Tue Jun 21 12:03:56 2016 UTC (7 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.456: +1 -1 lines
Diff to previous 1.456
24-bit direct color support (patch by Fengguang Wu)

Support directly setting RGB fg/bg colors via ISO-8613-3 24-bit
ANSI color escapes:

  ESC[38;2;<r>;<g>;<b>m Select RGB foreground color
  ESC[48;2;<r>;<g>;<b>m Select RGB background color

The killer applications for me are vim in tmux. It'll not only modernize
their look and feeling, but also bring more eye friendly color schemes.
Very helpful for long time programmers.

To avoid memory overheads and keep the patch non-intrusive, it takes the
approach to adapt the nearest color in an hidden 6x6x4 (88-color mode)
or 7x7x5 (256-color mode) color cube to the new 24-bit RGB color.

The pros/cons are:

+) least memory footprint (close to 0)
   comparing to konsole, gnome-terminal etc. real 24-bit arrays

+) exact colors and excellent user feelings
   comparing to xterm, mlterm, etc. approximating to 256 palette

+) usable in both the existing 88/256-color modes

   Most vim GUI color schemes show up the same as gvim in rxvt-unicode's
   88-color mode, not to mention the 256-color mode. Typical applications
   only use one or two dozens of colors at the same time.

-) may not be able to show 2+ close 24-bit colors

   RGB colors close to each other will likely fall into the same slot in
   the 6x6x4 or 7x7x5 color cube. If necessary, it could be improved
   effectively by implementing some collision avoidance logic, trying to
   find empty/eldest slot in the +1/-1 r/g/b indices (ie. 3-8 neighbors).

The CPU overheads of map_rgb24_color() look ignorable: I feel no
perceptible slow down when doing vim operations in 24-bit color mode.

A micro benchmark running a test script from [1]:

% time (for i in {1..100}; do 24-bit-color.sh; done)

vanilla rxvt-unicode
====================
  2.42s user 1.88s system 31% cpu 13.555 total
  2.59s user 1.74s system 31% cpu 13.615 total
  2.46s user 1.85s system 31% cpu 13.631 total

THIS PATCH (adapt hidden color cube to 24-bit)
==============================================
  2.33s user 1.97s system 31% cpu 13.598 total
  2.46s user 1.89s system 31% cpu 13.613 total
  2.51s user 1.82s system 31% cpu 13.556 total

https://github.com/spudowiar/rxvt-unicode (real 24-bit array)
=============================================================
  2.61s user 1.75s system 31% cpu 13.721 total
  2.48s user 1.82s system 31% cpu 13.566 total
  2.60s user 1.76s system 31% cpu 13.631 total

USE_256_COLORS is defined in all the above rxvt-unicode builds.

References:

[1] True Colour (16 million colours) support in various terminal
    applications and terminals
    https://gist.github.com/XVilka/8346728

[2] https://en.wikipedia.org/wiki/ANSI_escape_code#Colors

Revision 1.456 - (view) (download) (annotate) - [select for diffs]
Tue Oct 13 08:10:43 2015 UTC (8 years, 7 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_22
Changes since 1.455: +1 -0 lines
Diff to previous 1.455
Update copyright years.

Revision 1.455 - (view) (download) (annotate) - [select for diffs]
Wed Sep 30 12:57:04 2015 UTC (8 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.454: +2 -2 lines
Diff to previous 1.454
Fix crash when the number of columns is 1 and a 0 width character is inserted.

In scr_add_lines, in the case when a 0 width character must be inserted
in the first column of the current row, the calculation of the previous
character (i.e., the last character of the previous row) is bogus. In
particular, if the number of columns is 1, the 'tp' pointer points to
either the first or third byte (depending on the size of text_t) of the
rendition of the previous character, which is therefore corrupted by the
assignment '*tp = n'. This triggers a crash if the font id in the
rendition gets changed to the id of a font which is not loaded. Bug
reported by Kuang-che Wu.

Revision 1.454 - (view) (download) (annotate) - [select for diffs]
Sun Jan 18 13:08:46 2015 UTC (9 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.453: +20 -18 lines
Diff to previous 1.453
Change the width of underline and i-beam cursor to 2 pixels, based on a patch by Omar Sandoval.

Revision 1.453 - (view) (download) (annotate) - [select for diffs]
Sat Dec 13 12:24:33 2014 UTC (9 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_21
Changes since 1.452: +1 -1 lines
Diff to previous 1.452
*** empty log message ***

Revision 1.452 - (view) (download) (annotate) - [select for diffs]
Sat Dec 13 09:49:48 2014 UTC (9 years, 5 months ago) by root
Branch: MAIN
Changes since 1.451: +2 -10 lines
Diff to previous 1.451
*** empty log message ***

Revision 1.451 - (view) (download) (annotate) - [select for diffs]
Sat Dec 6 09:36:12 2014 UTC (9 years, 5 months ago) by mikachu
Branch: MAIN
Changes since 1.450: +1 -1 lines
Diff to previous 1.450
need to check for both win and state

Revision 1.450 - (view) (download) (annotate) - [select for diffs]
Sat Dec 6 09:20:13 2014 UTC (9 years, 5 months ago) by mikachu
Branch: MAIN
Changes since 1.449: +1 -1 lines
Diff to previous 1.449
fix wrong check for scrollbar being active

Revision 1.449 - (view) (download) (annotate) - [select for diffs]
Wed Nov 19 12:21:11 2014 UTC (9 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.448: +1 -4 lines
Diff to previous 1.448
Remove optimization in refresh for cells containing a space.

The recent change introduced a regression and, while it can be fixed, it
is not worth the risk.

Revision 1.448 - (view) (download) (annotate) - [select for diffs]
Thu Oct 30 09:53:05 2014 UTC (9 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.447: +1 -1 lines
Diff to previous 1.447
Fix optimization in refresh for cells containing a space.

scr_refresh skips refresh for cells containing a space and whose
rendition attributes defining the bg color have not changed. However,
the computation of such attributes erroneously assumes that, if reverse
video is set, the bg color is given by the fg color, which is not true
in the case where bg == fg. This causes cells with a space and bg == fg
not being refreshed also when the reverse video attribute has changed,
as observed in red hat bug #830236. Fix the bug by amending the
attributes test so that the refresh of such a cell is performed if the
reverse video attribute has changed.

Revision 1.447 - (view) (download) (annotate) - [select for diffs]
Thu Aug 21 15:58:29 2014 UTC (9 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.446: +20 -7 lines
Diff to previous 1.446
Add DECSCUSR xterm extension to set the cursor to a vertical bar.

Revision 1.446 - (view) (download) (annotate) - [select for diffs]
Thu May 22 18:54:33 2014 UTC (9 years, 11 months ago) by root
Branch: MAIN
Changes since 1.445: +1 -1 lines
Diff to previous 1.445
GPLv3

Revision 1.445 - (view) (download) (annotate) - [select for diffs]
Fri Apr 12 07:54:15 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_19, rxvt-unicode-rel-9_20
Changes since 1.444: +2 -1 lines
Diff to previous 1.444
Simplify and correct lerp expression.

Revision 1.444 - (view) (download) (annotate) - [select for diffs]
Tue Apr 2 21:03:35 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.443: +2 -2 lines
Diff to previous 1.443
Fix regression in 2013-02-16 change.

Do not include a leading partial wide char in the selection, as
otherwise a leading tab is erroneously included in the case of a
double-click word selection if pastableTabs is enabled.

Revision 1.443 - (view) (download) (annotate) - [select for diffs]
Sun Mar 31 22:31:45 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.442: +0 -8 lines
Diff to previous 1.442
Revert 2013-03-30 change.

Revision 1.442 - (view) (download) (annotate) - [select for diffs]
Sat Mar 30 08:47:06 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.441: +8 -0 lines
Diff to previous 1.441
Fix bug in core double-click word selection.

selection_delimit_word does not account for (left) delimiters with width > 1.
In such a case, it sets the starting position of the selection to the
second column of the delimiter (thereby including the delimiter in the
selection) rather than to the first column of the character next to it.
This bug was masked before by 'selection_make' but a recent fix to the
selection code revealed it.

Revision 1.441 - (view) (download) (annotate) - [select for diffs]
Thu Mar 28 09:21:46 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.440: +2 -6 lines
Diff to previous 1.440
Simplify.

Revision 1.440 - (view) (download) (annotate) - [select for diffs]
Wed Mar 27 17:24:16 2013 UTC (11 years, 1 month ago) by root
Branch: MAIN
Changes since 1.439: +3 -7 lines
Diff to previous 1.439
if it breaks, the pieces will be sharp

Revision 1.439 - (view) (download) (annotate) - [select for diffs]
Mon Mar 25 16:24:18 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.438: +8 -18 lines
Diff to previous 1.438
Cleanup the code to save the current cursor coordinates when needed.

Revision 1.438 - (view) (download) (annotate) - [select for diffs]
Mon Mar 25 15:41:07 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.437: +11 -11 lines
Diff to previous 1.437
Honour cursorColor also when the cursor style is underline.

Revision 1.437 - (view) (download) (annotate) - [select for diffs]
Mon Mar 25 12:28:04 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.436: +1 -6 lines
Diff to previous 1.436
Simplify.

ccol1 already accounts for Color_cursor if it is set.

Revision 1.436 - (view) (download) (annotate) - [select for diffs]
Sun Mar 24 10:15:27 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_18
Changes since 1.435: +0 -3 lines
Diff to previous 1.435
Remove obsolete comment.

Revision 1.435 - (view) (download) (annotate) - [select for diffs]
Sun Mar 24 10:12:04 2013 UTC (11 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.434: +6 -1 lines
Diff to previous 1.434
Fix regression in 2013-01-13 change.

Do not use copy_line for drawn_buf since the 'l' field of lines in
drawn_buf is always 0.

Revision 1.434 - (view) (download) (annotate) - [select for diffs]
Sat Feb 16 17:26:53 2013 UTC (11 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_17
Changes since 1.433: +17 -3 lines
Diff to previous 1.433
*** empty log message ***

Revision 1.433 - (view) (download) (annotate) - [select for diffs]
Thu Jan 31 08:07:14 2013 UTC (11 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.432: +23 -21 lines
Diff to previous 1.432
When rendering the cursor, modify also the rendition of the filler chars
that belong to the char in the cursor cell.

This fixes a rendering bug that occurs if the character in the cursor
cell has width > 1 and both it and the character to the right have the
careful bit set and the same rendition. Bug reported by Tiago Resende.

Revision 1.432 - (view) (download) (annotate) - [select for diffs]
Sun Jan 13 22:30:47 2013 UTC (11 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.431: +13 -18 lines
Diff to previous 1.431
Factor the code to copy a line into a method.

Revision 1.431 - (view) (download) (annotate) - [select for diffs]
Sun Jan 13 20:19:24 2013 UTC (11 years, 4 months ago) by root
Branch: MAIN
Changes since 1.430: +2 -1 lines
Diff to previous 1.430
more fixes

Revision 1.430 - (view) (download) (annotate) - [select for diffs]
Sun Jan 13 20:16:40 2013 UTC (11 years, 4 months ago) by root
Branch: MAIN
Changes since 1.429: +2 -1 lines
Diff to previous 1.429
more fixes

Revision 1.429 - (view) (download) (annotate) - [select for diffs]
Sun Jan 13 20:11:21 2013 UTC (11 years, 4 months ago) by root
Branch: MAIN
Changes since 1.428: +2 -0 lines
Diff to previous 1.428
fix for secondary screen

Revision 1.428 - (view) (download) (annotate) - [select for diffs]
Sun Jan 13 17:42:24 2013 UTC (11 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.427: +1 -0 lines
Diff to previous 1.427
Fix bug introduced in 2012-05-28 change.

If no scrollback exists and the terminal is resized, the lengths of the
lines copied from the old screen buffer the new one are not properly
initialized, causing artifacts on scrolling if saveLines is 0 (due to an
optimization in scr_scroll_text). Bug reported by Bert Münnich.

Revision 1.427 - (view) (download) (annotate) - [select for diffs]
Sat Dec 29 15:59:51 2012 UTC (11 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.426: +3 -3 lines
Diff to previous 1.426
Make code needed to set the bg pixmap conditional to HAVE_IMG.

Revision 1.426 - (view) (download) (annotate) - [select for diffs]
Tue Oct 2 10:29:12 2012 UTC (11 years, 7 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_16
Changes since 1.425: +1 -1 lines
Diff to previous 1.425
Fix longstanding regression in handling of the scrollbar trough color
for rxvt style, introduced in 2008-01-15 change.

Revision 1.425 - (view) (download) (annotate) - [select for diffs]
Fri Jun 29 22:10:18 2012 UTC (11 years, 10 months ago) by root
Branch: MAIN
Changes since 1.424: +0 -1 lines
Diff to previous 1.424
*** empty log message ***

Revision 1.424 - (view) (download) (annotate) - [select for diffs]
Fri Jun 29 22:10:09 2012 UTC (11 years, 10 months ago) by root
Branch: MAIN
Changes since 1.423: +1 -0 lines
Diff to previous 1.423
*** empty log message ***

Revision 1.423 - (view) (download) (annotate) - [select for diffs]
Fri Jun 29 14:01:53 2012 UTC (11 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.422: +2 -1 lines
Diff to previous 1.422
Fix crash on resize.

Revision 1.422 - (view) (download) (annotate) - [select for diffs]
Thu Jun 28 15:19:15 2012 UTC (11 years, 10 months ago) by root
Branch: MAIN
Changes since 1.421: +7 -3 lines
Diff to previous 1.421
add emman.h/c and use it for scrollback

Revision 1.421 - (view) (download) (annotate) - [select for diffs]
Sun Jun 10 13:07:56 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.420: +5 -5 lines
Diff to previous 1.420
Switch background.C to rxvtimg api (xrender is now required).

Revision 1.420 - (view) (download) (annotate) - [select for diffs]
Mon Jun 4 15:18:52 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.419: +2 -2 lines
Diff to previous 1.419
some #ifdef => #if changes

Revision 1.419 - (view) (download) (annotate) - [select for diffs]
Fri Jun 1 08:12:09 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.418: +3 -9 lines
Diff to previous 1.418
fix crash

Revision 1.418 - (view) (download) (annotate) - [select for diffs]
Mon May 28 21:13:36 2012 UTC (11 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.417: +1 -1 lines
Diff to previous 1.417
Fix typos.

Revision 1.417 - (view) (download) (annotate) - [select for diffs]
Mon May 28 16:40:03 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.416: +36 -36 lines
Diff to previous 1.416
add some ecb_hot/ecb_cold

Revision 1.416 - (view) (download) (annotate) - [select for diffs]
Mon May 28 14:26:11 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.415: +0 -2 lines
Diff to previous 1.415
remove references to salloc.h

Revision 1.415 - (view) (download) (annotate) - [select for diffs]
Mon May 28 14:25:16 2012 UTC (11 years, 11 months ago) by root
Branch: MAIN
Changes since 1.414: +79 -74 lines
Diff to previous 1.414
use one big chunk for all line_t's and rend/text data, get rid fo salloc

Revision 1.414 - (view) (download) (annotate) - [select for diffs]
Tue Jan 24 17:05:05 2012 UTC (12 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.413: +1 -1 lines
Diff to previous 1.413
Fix height mismatch between active and inactive cursor when lineSpace is non zero, patch by Stanislav Seletskiy.

Revision 1.413 - (view) (download) (annotate) - [select for diffs]
Wed Jan 18 12:39:14 2012 UTC (12 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_15
Changes since 1.412: +2 -2 lines
Diff to previous 1.412
*** empty log message ***

Revision 1.412 - (view) (download) (annotate) - [select for diffs]
Wed Jan 18 12:26:59 2012 UTC (12 years, 3 months ago) by root
Branch: MAIN
Changes since 1.411: +2 -2 lines
Diff to previous 1.411
*** empty log message ***

Revision 1.411 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 21:12:08 2012 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.410: +3 -3 lines
Diff to previous 1.410
Store the size of the vt window into two new members vt_width/height and
keep the maximum size in width/height, so that the $term->width/height
accessors return the same value as in pre 9.14.

Revision 1.410 - (view) (download) (annotate) - [select for diffs]
Thu Nov 24 18:09:54 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_14
Changes since 1.409: +0 -1 lines
Diff to previous 1.409
Remove unused variable.

Revision 1.409 - (view) (download) (annotate) - [select for diffs]
Mon Nov 21 18:35:52 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.408: +2 -20 lines
Diff to previous 1.408
Remove non-working code in scr_dump.

Revision 1.408 - (view) (download) (annotate) - [select for diffs]
Thu Nov 17 10:43:16 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.407: +1 -1 lines
Diff to previous 1.407
Fix typo.

Revision 1.407 - (view) (download) (annotate) - [select for diffs]
Wed Nov 16 18:52:17 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.406: +12 -11 lines
Diff to previous 1.406
Inline selection_check calls with argument 2 or 3.

Revision 1.406 - (view) (download) (annotate) - [select for diffs]
Wed Nov 16 18:26:47 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.405: +0 -3 lines
Diff to previous 1.405
Remove useless selection checks in scr_erase_screen.

The check below the switch already clears the selection if it overlaps
with the screen area to be erased. Moreover, the selection check used in
the 'clear screen before the cursor' case was incorrect as it cleared
the selection even when outside of the relevant screen area.

Revision 1.405 - (view) (download) (annotate) - [select for diffs]
Tue Nov 15 20:09:13 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.404: +9 -11 lines
Diff to previous 1.404
Undo part of previous commit that was not supposed to be checked-in.

Revision 1.404 - (view) (download) (annotate) - [select for diffs]
Tue Nov 15 20:07:10 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.403: +12 -10 lines
Diff to previous 1.403
Use bool for boolean variable.

Revision 1.403 - (view) (download) (annotate) - [select for diffs]
Tue Nov 15 19:54:30 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.402: +3 -3 lines
Diff to previous 1.402
Use bool for boolean variables.

Revision 1.402 - (view) (download) (annotate) - [select for diffs]
Tue Nov 15 18:23:46 2011 UTC (12 years, 5 months ago) by root
Branch: MAIN
Changes since 1.401: +1 -1 lines
Diff to previous 1.401
*** empty log message ***

Revision 1.401 - (view) (download) (annotate) - [select for diffs]
Tue Nov 15 18:20:38 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.400: +2 -1 lines
Diff to previous 1.400
do not move the selection when scrolling up and the selection is
outside the scrolling region.

Revision 1.400 - (view) (download) (annotate) - [select for diffs]
Tue Nov 15 02:24:25 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.399: +33 -21 lines
Diff to previous 1.399
Revert 2011-11-02 change.

Revision 1.399 - (view) (download) (annotate) - [select for diffs]
Thu Nov 3 10:42:17 2011 UTC (12 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.398: +1 -4 lines
Diff to previous 1.398
Remove dead code.

Revision 1.398 - (view) (download) (annotate) - [select for diffs]
Wed Nov 2 15:11:51 2011 UTC (12 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.397: +21 -33 lines
Diff to previous 1.397
Unify selection fixup in scr_scroll_text.

Fixes selection update when scrolling up and the selection is outside
the scrolling region. Before this change urxvt would wrongly scroll the
selection in this case.

Revision 1.397 - (view) (download) (annotate) - [select for diffs]
Wed Nov 2 11:56:52 2011 UTC (12 years, 6 months ago) by root
Branch: MAIN
Changes since 1.396: +2 -2 lines
Diff to previous 1.396
*** empty log message ***

Revision 1.396 - (view) (download) (annotate) - [select for diffs]
Wed Nov 2 10:53:12 2011 UTC (12 years, 6 months ago) by root
Branch: MAIN
Changes since 1.395: +1 -7 lines
Diff to previous 1.395
optimisation||| effz|||

Revision 1.395 - (view) (download) (annotate) - [select for diffs]
Tue Nov 1 00:04:46 2011 UTC (12 years, 6 months ago) by root
Branch: MAIN
Changes since 1.394: +1 -1 lines
Diff to previous 1.394
*** empty log message ***

Revision 1.394 - (view) (download) (annotate) - [select for diffs]
Thu Sep 1 08:11:27 2011 UTC (12 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.393: +1 -1 lines
Diff to previous 1.393
Cosmetics, rename enum constants.

Revision 1.393 - (view) (download) (annotate) - [select for diffs]
Sun Jul 10 00:40:17 2011 UTC (12 years, 10 months ago) by root
Branch: MAIN
Changes since 1.392: +0 -1 lines
Diff to previous 1.392
ugh

Revision 1.392 - (view) (download) (annotate) - [select for diffs]
Sun Jul 10 00:40:10 2011 UTC (12 years, 10 months ago) by root
Branch: MAIN
Changes since 1.391: +1 -1 lines
Diff to previous 1.391
ugh

Revision 1.391 - (view) (download) (annotate) - [select for diffs]
Sun Jul 10 00:39:53 2011 UTC (12 years, 10 months ago) by root
Branch: MAIN
Changes since 1.390: +1 -1 lines
Diff to previous 1.390
ugh

Revision 1.390 - (view) (download) (annotate) - [select for diffs]
Fri Jul 8 20:54:31 2011 UTC (12 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.389: +3 -3 lines
Diff to previous 1.389
Use rxvt_temp_buf to allocate the temporary line objects needed in
scr_scroll_text rather than allocating more space in row_buf.

Revision 1.389 - (view) (download) (annotate) - [select for diffs]
Fri Jul 8 00:23:22 2011 UTC (12 years, 10 months ago) by root
Branch: MAIN
Changes since 1.388: +16 -0 lines
Diff to previous 1.388
*** empty log message ***

Revision 1.388 - (view) (download) (annotate) - [select for diffs]
Fri Jul 8 00:08:40 2011 UTC (12 years, 10 months ago) by root
Branch: MAIN
Changes since 1.387: +18 -18 lines
Diff to previous 1.387
*** empty log message ***

Revision 1.387 - (view) (download) (annotate) - [select for diffs]
Thu Jul 7 23:18:13 2011 UTC (12 years, 10 months ago) by root
Branch: MAIN
Changes since 1.386: +1 -1 lines
Diff to previous 1.386
*** empty log message ***

Revision 1.386 - (view) (download) (annotate) - [select for diffs]
Thu Jul 7 23:15:44 2011 UTC (12 years, 10 months ago) by root
Branch: MAIN
Changes since 1.385: +7 -5 lines
Diff to previous 1.385
*** empty log message ***

Revision 1.385 - (view) (download) (annotate) - [select for diffs]
Wed Jul 6 00:40:10 2011 UTC (12 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.384: +4 -4 lines
Diff to previous 1.384
Sanitise the argument of SD / SU sequences so that it never exceeds the
size of the scrolling region. Fixes a possible crash when the argument
is big enough, red hat bug #711137.

Revision 1.384 - (view) (download) (annotate) - [select for diffs]
Mon May 30 18:39:04 2011 UTC (12 years, 11 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_12
Changes since 1.383: +16 -16 lines
Diff to previous 1.383
Migrate to libecb.

Revision 1.383 - (view) (download) (annotate) - [select for diffs]
Fri Apr 29 13:08:24 2011 UTC (13 years ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_11
Changes since 1.382: +0 -1 lines
Diff to previous 1.382
Remove some comments.

Revision 1.382 - (view) (download) (annotate) - [select for diffs]
Tue Apr 26 16:19:45 2011 UTC (13 years ago) by sf-exg
Branch: MAIN
Changes since 1.381: +3 -6 lines
Diff to previous 1.381
Fix some comments.

Revision 1.381 - (view) (download) (annotate) - [select for diffs]
Fri Apr 22 10:01:39 2011 UTC (13 years ago) by sf-exg
Branch: MAIN
Changes since 1.380: +9 -8 lines
Diff to previous 1.380
If the specified property of a SelectionRequest event is None, use the
target atom as the property name for the reply, as suggested in ICCCM
2.2. Patch by Marcin Cieslak.

Revision 1.380 - (view) (download) (annotate) - [select for diffs]
Thu Apr 7 12:19:41 2011 UTC (13 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.379: +5 -5 lines
Diff to previous 1.379
Change type of 'parent' from array of Window to Window as all the
elements except the first are unused.

Revision 1.379 - (view) (download) (annotate) - [select for diffs]
Fri Apr 1 11:06:42 2011 UTC (13 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.378: +4 -0 lines
Diff to previous 1.378
Disable the overlay in scr_reset as its offsets become invalid after
calling this function. Fixes crash when the window is resized and the
overlay is active.

Revision 1.378 - (view) (download) (annotate) - [select for diffs]
Thu Mar 24 23:55:31 2011 UTC (13 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.377: +1 -8 lines
Diff to previous 1.377
Move into the selection object and generalize the handling of a
selection request of primary when the owner is an urxvt terminal
that belongs to the same process of the requestor.

Revision 1.377 - (view) (download) (annotate) - [select for diffs]
Mon Mar 21 13:46:17 2011 UTC (13 years, 1 month ago) by root
Branch: MAIN
Changes since 1.376: +0 -1 lines
Diff to previous 1.376
*** empty log message ***

Revision 1.376 - (view) (download) (annotate) - [select for diffs]
Mon Feb 21 07:41:03 2011 UTC (13 years, 2 months ago) by root
Branch: MAIN
Changes since 1.375: +1 -1 lines
Diff to previous 1.375
the pcg is now the schmorp

Revision 1.375 - (view) (download) (annotate) - [select for diffs]
Mon Feb 21 07:12:03 2011 UTC (13 years, 2 months ago) by root
Branch: MAIN
Changes since 1.374: +1 -13 lines
Diff to previous 1.374
refactor

Revision 1.374 - (view) (download) (annotate) - [select for diffs]
Sat Feb 12 00:50:04 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.373: +2 -2 lines
Diff to previous 1.373
Simplify.

Revision 1.373 - (view) (download) (annotate) - [select for diffs]
Sat Feb 12 00:30:01 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.372: +7 -6 lines
Diff to previous 1.372
Do not allow more than one concurrent selection request and delete the
ongoing selection request, if any, on destruction of the terminal, to
avoid a use-after-free crash.

Revision 1.372 - (view) (download) (annotate) - [select for diffs]
Fri Feb 11 01:24:46 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.371: +13 -201 lines
Diff to previous 1.371
Factor the code to request a selection property into a new toolkit-level
object.

Revision 1.371 - (view) (download) (annotate) - [select for diffs]
Wed Feb 9 23:07:18 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.370: +1 -0 lines
Diff to previous 1.370
Set incr_buf to 0 after freeing it in the incr timer callback. Fixes a
possible crash if the INCR transfer process for a selection property
timeouts and at least one chunk is received.

Revision 1.370 - (view) (download) (annotate) - [select for diffs]
Sun Feb 6 11:42:28 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.369: +0 -3 lines
Diff to previous 1.369
Remove useless code.

Revision 1.369 - (view) (download) (annotate) - [select for diffs]
Sun Feb 6 11:42:03 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.368: +2 -24 lines
Diff to previous 1.368
Get the selection data in a single pass by specifying 2^31 - 1 as
maximum length.

Revision 1.368 - (view) (download) (annotate) - [select for diffs]
Tue Feb 1 00:41:01 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.367: +1 -1 lines
Diff to previous 1.367
Use true/false rather than True/False when the type is bool.

Revision 1.367 - (view) (download) (annotate) - [select for diffs]
Mon Jan 31 15:40:22 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.366: +7 -10 lines
Diff to previous 1.366
Simplify.

Revision 1.366 - (view) (download) (annotate) - [select for diffs]
Fri Jan 28 00:08:58 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.365: +1 -1 lines
Diff to previous 1.365
Cosmetic, rename background pixmap flags.

Revision 1.365 - (view) (download) (annotate) - [select for diffs]
Thu Jan 27 17:37:19 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.364: +6 -6 lines
Diff to previous 1.364
Remove bgPixmap_t struct, move background pixmap handling in rxvt_term.

Revision 1.364 - (view) (download) (annotate) - [select for diffs]
Thu Jan 20 17:39:29 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.363: +35 -11 lines
Diff to previous 1.363
Merge bgPixmap_t::apply in rxvt_term::scr_recolour.

Revision 1.363 - (view) (download) (annotate) - [select for diffs]
Thu Jan 20 14:02:35 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.362: +5 -5 lines
Diff to previous 1.362
Fix indent.

Revision 1.362 - (view) (download) (annotate) - [select for diffs]
Sat Jan 8 10:15:36 2011 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.361: +2 -2 lines
Diff to previous 1.361
Use rxvt_realloc instead of realloc.

Revision 1.361 - (view) (download) (annotate) - [select for diffs]
Thu Jan 6 10:19:29 2011 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.360: +2 -4 lines
Diff to previous 1.360
Merge linefeed handling for the last line of the selection into the loop.

Revision 1.360 - (view) (download) (annotate) - [select for diffs]
Wed Jan 5 22:29:50 2011 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.359: +1 -1 lines
Diff to previous 1.359
Fix error in loop condition that prevented tabs[0] from being initialized.

Revision 1.359 - (view) (download) (annotate) - [select for diffs]
Tue Jan 4 23:06:10 2011 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.358: +2 -6 lines
Diff to previous 1.358
Simplify.

Revision 1.358 - (view) (download) (annotate) - [select for diffs]
Tue Jan 4 18:22:11 2011 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.357: +2 -1 lines
Diff to previous 1.357
Do not append a linefeed to the selection buffer after reading the first
line if selection.beg.col == ncol (i.e., no portion of the first line is
highlighted).

Revision 1.357 - (view) (download) (annotate) - [select for diffs]
Tue Jan 4 17:51:05 2011 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.356: +6 -6 lines
Diff to previous 1.356
Cosmetic, rename variable.

Revision 1.356 - (view) (download) (annotate) - [select for diffs]
Tue Dec 21 10:37:42 2010 UTC (13 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.355: +1 -1 lines
Diff to previous 1.355
Add const qualifier where appropriate.

Revision 1.355 - (view) (download) (annotate) - [select for diffs]
Sat Oct 16 11:32:53 2010 UTC (13 years, 6 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_09, rel-9_10
Changes since 1.354: +1 -1 lines
Diff to previous 1.354
Fix typo.

Revision 1.354 - (view) (download) (annotate) - [select for diffs]
Fri Oct 15 21:14:12 2010 UTC (13 years, 6 months ago) by root
Branch: MAIN
Changes since 1.353: +2 -2 lines
Diff to previous 1.353
*** empty log message ***

Revision 1.353 - (view) (download) (annotate) - [select for diffs]
Fri Oct 15 21:13:44 2010 UTC (13 years, 6 months ago) by root
Branch: MAIN
Changes since 1.352: +4 -5 lines
Diff to previous 1.352
*** empty log message ***

Revision 1.352 - (view) (download) (annotate) - [select for diffs]
Fri Oct 15 20:52:15 2010 UTC (13 years, 6 months ago) by root
Branch: MAIN
Changes since 1.351: +10 -9 lines
Diff to previous 1.351
*** empty log message ***

Revision 1.351 - (view) (download) (annotate) - [select for diffs]
Fri Oct 15 11:07:45 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.350: +8 -8 lines
Diff to previous 1.350
Tune last change to insertion of a character when DECAWM is not set;
kill rather than truncate wide char spanning over the insert position.

Revision 1.350 - (view) (download) (annotate) - [select for diffs]
Thu Oct 14 23:21:40 2010 UTC (13 years, 7 months ago) by root
Branch: MAIN
Changes since 1.349: +0 -2 lines
Diff to previous 1.349
*** empty log message ***

Revision 1.349 - (view) (download) (annotate) - [select for diffs]
Thu Oct 14 23:12:11 2010 UTC (13 years, 7 months ago) by root
Branch: MAIN
Changes since 1.348: +4 -0 lines
Diff to previous 1.348
*** empty log message ***

Revision 1.348 - (view) (download) (annotate) - [select for diffs]
Sat Oct 9 22:33:45 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.347: +9 -4 lines
Diff to previous 1.347
Change scr_add_lines to remove characters from the right when there
are not enough columns to insert a character and DECAWM mode is not
set, rather than looping endlessly.

Revision 1.347 - (view) (download) (annotate) - [select for diffs]
Sat Aug 28 11:03:04 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.346: +4 -7 lines
Diff to previous 1.346
Fix scr_erase_screen to work properly when view_start != 0.

Revision 1.346 - (view) (download) (annotate) - [select for diffs]
Mon Jul 26 09:57:53 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.345: +1 -1 lines
Diff to previous 1.345
Fix typos.

Revision 1.345 - (view) (download) (annotate) - [select for diffs]
Sat Jul 24 10:20:26 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.344: +10 -1 lines
Diff to previous 1.344
Add on_tt_paste perl hook and tt_paste perl binding.

Revision 1.344 - (view) (download) (annotate) - [select for diffs]
Wed Jul 21 09:00:43 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.343: +0 -14 lines
Diff to previous 1.343
Remove unused function.

Revision 1.343 - (view) (download) (annotate) - [select for diffs]
Thu Jul 1 21:52:52 2010 UTC (13 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.342: +2 -1 lines
Diff to previous 1.342
Fix style.

Revision 1.342 - (view) (download) (annotate) - [select for diffs]
Thu Jul 1 20:02:43 2010 UTC (13 years, 10 months ago) by root
Branch: MAIN
Changes since 1.341: +1 -1 lines
Diff to previous 1.341
*** empty log message ***

Revision 1.341 - (view) (download) (annotate) - [select for diffs]
Sat Apr 17 23:05:48 2010 UTC (14 years ago) by root
Branch: MAIN
Changes since 1.340: +1 -0 lines
Diff to previous 1.340
*** empty log message ***

Revision 1.340 - (view) (download) (annotate) - [select for diffs]
Sat Apr 17 23:00:45 2010 UTC (14 years ago) by sf-exg
Branch: MAIN
Changes since 1.339: +22 -17 lines
Diff to previous 1.339
Disable colorRV resource.
Make OSC 17 apply to highlightColor.
Make highlightColor apply also to selected cells with reverse video.
Add highlightTextColor resource to change the foreground colour of
highlighted characters.

Revision 1.339 - (view) (download) (annotate) - [select for diffs]
Sat Apr 17 06:48:27 2010 UTC (14 years ago) by sf-exg
Branch: MAIN
Changes since 1.338: +1 -1 lines
Diff to previous 1.338
Fix typo.

Revision 1.338 - (view) (download) (annotate) - [select for diffs]
Sat Apr 3 16:30:39 2010 UTC (14 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.337: +2 -2 lines
Diff to previous 1.337
Replace leading tabs with spaces, patch by Mikachu.

Revision 1.337 - (view) (download) (annotate) - [select for diffs]
Thu Apr 1 00:58:38 2010 UTC (14 years, 1 month ago) by root
Branch: MAIN
Changes since 1.336: +1 -1 lines
Diff to previous 1.336
d'oh

Revision 1.336 - (view) (download) (annotate) - [select for diffs]
Tue Mar 30 23:54:30 2010 UTC (14 years, 1 month ago) by root
Branch: MAIN
Changes since 1.335: +1 -1 lines
Diff to previous 1.335
revert fontidx stupidity

Revision 1.335 - (view) (download) (annotate) - [select for diffs]
Tue Mar 30 23:00:35 2010 UTC (14 years, 1 month ago) by root
Branch: MAIN
CVS Tags: before_dynamic_fontidx, dynamic_fontidx
Changes since 1.334: +1 -1 lines
Diff to previous 1.334
*** empty log message ***

Revision 1.334 - (view) (download) (annotate) - [select for diffs]
Sun Feb 14 11:04:11 2010 UTC (14 years, 2 months ago) by sf-exg
Branch: MAIN
Changes since 1.333: +1 -1 lines
Diff to previous 1.333
Remove TODO.

Revision 1.333 - (view) (download) (annotate) - [select for diffs]
Sun Jan 24 21:53:13 2010 UTC (14 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.332: +66 -16 lines
Diff to previous 1.332
Add support for copying to clipboard (based on patch by Dana Jansens).

Revision 1.332 - (view) (download) (annotate) - [select for diffs]
Mon Jan 18 10:05:55 2010 UTC (14 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.331: +1 -1 lines
Diff to previous 1.331
Remove useless assignments.

Revision 1.331 - (view) (download) (annotate) - [select for diffs]
Wed Jan 6 17:52:43 2010 UTC (14 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.330: +1 -0 lines
Diff to previous 1.330
Add on_bell perl hook that is called on receipt of a bell character.

Revision 1.330 - (view) (download) (annotate) - [select for diffs]
Tue Dec 29 04:18:10 2009 UTC (14 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-9_07
Changes since 1.329: +1 -1 lines
Diff to previous 1.329
*** empty log message ***

Revision 1.329 - (view) (download) (annotate) - [select for diffs]
Sat Dec 26 10:24:04 2009 UTC (14 years, 4 months ago) by root
Branch: MAIN
Changes since 1.328: +0 -8 lines
Diff to previous 1.328
*** empty log message ***

Revision 1.328 - (view) (download) (annotate) - [select for diffs]
Sun Mar 29 13:36:03 2009 UTC (15 years, 1 month ago) by root
Branch: MAIN
Changes since 1.327: +2 -1 lines
Diff to previous 1.327
*** empty log message ***

Revision 1.327 - (view) (download) (annotate) - [select for diffs]
Wed Nov 5 14:43:54 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-9_06
Changes since 1.326: +42 -36 lines
Diff to previous 1.326
minor overlay refactoring, syntax changes

Revision 1.326 - (view) (download) (annotate) - [select for diffs]
Wed Nov 5 13:04:51 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.325: +6 -6 lines
Diff to previous 1.325
*** empty log message ***

Revision 1.325 - (view) (download) (annotate) - [select for diffs]
Wed Nov 5 12:28:15 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.324: +4 -6 lines
Diff to previous 1.324
*** empty log message ***

Revision 1.324 - (view) (download) (annotate) - [select for diffs]
Wed Nov 5 00:01:01 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.323: +4 -1 lines
Diff to previous 1.323
*** empty log message ***

Revision 1.323 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 23:53:29 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.322: +14 -10 lines
Diff to previous 1.322
*** empty log message ***

Revision 1.322 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 23:35:50 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.321: +2 -2 lines
Diff to previous 1.321
*** empty log message ***

Revision 1.321 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 23:21:00 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.320: +1 -1 lines
Diff to previous 1.320
*** empty log message ***

Revision 1.320 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 23:20:17 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.319: +2 -1 lines
Diff to previous 1.319
*** empty log message ***

Revision 1.319 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 23:08:44 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.318: +0 -3 lines
Diff to previous 1.318
*** empty log message ***

Revision 1.318 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 22:44:09 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.317: +32 -21 lines
Diff to previous 1.317
*** empty log message ***

Revision 1.317 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 15:09:51 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.316: +2 -2 lines
Diff to previous 1.316
*** empty log message ***

Revision 1.316 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 15:02:35 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.315: +27 -30 lines
Diff to previous 1.315
*** empty log message ***

Revision 1.315 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 14:38:29 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.314: +11 -0 lines
Diff to previous 1.314
src/background.C

Revision 1.314 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 14:34:13 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.313: +33 -29 lines
Diff to previous 1.313
*** empty log message ***

Revision 1.313 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 14:25:10 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.312: +20 -16 lines
Diff to previous 1.312
implement scr_kill_char

Revision 1.312 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 13:30:41 2008 UTC (15 years, 6 months ago) by root
Branch: MAIN
Changes since 1.311: +0 -1 lines
Diff to previous 1.311
*** empty log message ***

Revision 1.311 - (view) (download) (annotate) - [select for diffs]
Wed Oct 15 14:48:22 2008 UTC (15 years, 7 months ago) by root
Branch: MAIN
Changes since 1.310: +1 -7 lines
Diff to previous 1.310
*** empty log message ***

Revision 1.310 - (view) (download) (annotate) - [select for diffs]
Wed Jul 23 17:10:07 2008 UTC (15 years, 9 months ago) by root
Branch: MAIN
Changes since 1.309: +5 -5 lines
Diff to previous 1.309
*** empty log message ***

Revision 1.309 - (view) (download) (annotate) - [select for diffs]
Mon Jul 21 16:51:31 2008 UTC (15 years, 9 months ago) by root
Branch: MAIN
Changes since 1.308: +55 -48 lines
Diff to previous 1.308
*** empty log message ***

Revision 1.308 - (view) (download) (annotate) - [select for diffs]
Tue Jul 15 16:41:22 2008 UTC (15 years, 10 months ago) by root
Branch: MAIN
Changes since 1.307: +2 -2 lines
Diff to previous 1.307
*** empty log message ***

Revision 1.307 - (view) (download) (annotate) - [select for diffs]
Fri Jun 27 00:44:32 2008 UTC (15 years, 10 months ago) by root
Branch: MAIN
Changes since 1.306: +11 -16 lines
Diff to previous 1.306
refactoring

Revision 1.306 - (view) (download) (annotate) - [select for diffs]
Sun Jun 15 10:15:39 2008 UTC (15 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-9_05
Changes since 1.305: +11 -0 lines
Diff to previous 1.305
*** empty log message ***

Revision 1.305 - (view) (download) (annotate) - [select for diffs]
Thu Feb 21 10:30:24 2008 UTC (16 years, 2 months ago) by ayin
Branch: MAIN
Changes since 1.304: +1 -1 lines
Diff to previous 1.304
Replace references to nsaved with top_row.

Revision 1.304 - (view) (download) (annotate) - [select for diffs]
Tue Feb 19 10:47:03 2008 UTC (16 years, 2 months ago) by ayin
Branch: MAIN
Changes since 1.303: +1 -1 lines
Diff to previous 1.303
Make scrollbar_{resize,mapping,show} methods of scrollBar_t.

Revision 1.303 - (view) (download) (annotate) - [select for diffs]
Sat Feb 16 13:35:45 2008 UTC (16 years, 2 months ago) by ayin
Branch: MAIN
Changes since 1.302: +2 -2 lines
Diff to previous 1.302
Simplify.

Revision 1.302 - (view) (download) (annotate) - [select for diffs]
Wed Feb 6 16:44:47 2008 UTC (16 years, 3 months ago) by sasha
Branch: MAIN
Changes since 1.301: +3 -2 lines
Diff to previous 1.301
fixed scr_recolour to properly refresh screen when bgPixmap is on but color is still plain

Revision 1.301 - (view) (download) (annotate) - [select for diffs]
Tue Jan 29 13:57:23 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.300: +1 -1 lines
Diff to previous 1.300
Add enum for scrollbar states and remove methods/macros to set/check
it.

Revision 1.300 - (view) (download) (annotate) - [select for diffs]
Sun Jan 27 22:48:33 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
CVS Tags: rel-9_02
Changes since 1.299: +0 -2 lines
Diff to previous 1.299
Always compile in plain style scrollbar.

Revision 1.299 - (view) (download) (annotate) - [select for diffs]
Wed Jan 23 06:49:30 2008 UTC (16 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-9_0, rel-9_01
Changes since 1.298: +9 -11 lines
Diff to previous 1.298
*** empty log message ***

Revision 1.298 - (view) (download) (annotate) - [select for diffs]
Sun Jan 20 14:12:39 2008 UTC (16 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.297: +6 -0 lines
Diff to previous 1.297
implement bracketed paste mode (xterm private mode 2004).

Revision 1.297 - (view) (download) (annotate) - [select for diffs]
Wed Jan 9 01:14:29 2008 UTC (16 years, 4 months ago) by root
Branch: MAIN
Changes since 1.296: +2 -1 lines
Diff to previous 1.296
*** empty log message ***

Revision 1.296 - (view) (download) (annotate) - [select for diffs]
Wed Jan 9 01:05:24 2008 UTC (16 years, 4 months ago) by root
Branch: MAIN
Changes since 1.295: +1 -5 lines
Diff to previous 1.295
*** empty log message ***

Revision 1.295 - (view) (download) (annotate) - [select for diffs]
Wed Jan 9 01:01:31 2008 UTC (16 years, 4 months ago) by root
Branch: MAIN
Changes since 1.294: +2 -2 lines
Diff to previous 1.294
*** empty log message ***

Revision 1.294 - (view) (download) (annotate) - [select for diffs]
Wed Jan 9 00:51:50 2008 UTC (16 years, 4 months ago) by root
Branch: MAIN
Changes since 1.293: +1 -1 lines
Diff to previous 1.293
*** empty log message ***

Revision 1.293 - (view) (download) (annotate) - [select for diffs]
Mon Dec 24 08:00:18 2007 UTC (16 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-8_9
Changes since 1.292: +0 -2 lines
Diff to previous 1.292
*** empty log message ***

Revision 1.292 - (view) (download) (annotate) - [select for diffs]
Sun Dec 23 02:43:55 2007 UTC (16 years, 4 months ago) by root
Branch: MAIN
Changes since 1.291: +2 -0 lines
Diff to previous 1.291
*** empty log message ***

Revision 1.291 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 06:30:50 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-8_8
Changes since 1.290: +1 -0 lines
Diff to previous 1.290
*** empty log message ***

Revision 1.290 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 05:52:34 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.289: +7 -6 lines
Diff to previous 1.289
*** empty log message ***

Revision 1.289 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 05:25:26 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.288: +8 -8 lines
Diff to previous 1.288
*** empty log message ***

Revision 1.288 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 02:22:24 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.287: +1 -1 lines
Diff to previous 1.287
you should do it, too, and less sloppily than me

Revision 1.287 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 02:10:33 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.286: +1 -1 lines
Diff to previous 1.286
*** empty log message ***

Revision 1.286 - (view) (download) (annotate) - [select for diffs]
Tue Dec 11 18:00:07 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.285: +1 -1 lines
Diff to previous 1.285
*** empty log message ***

Revision 1.285 - (view) (download) (annotate) - [select for diffs]
Tue Dec 11 03:30:50 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.284: +1 -1 lines
Diff to previous 1.284
*** empty log message ***

Revision 1.284 - (view) (download) (annotate) - [select for diffs]
Mon Nov 26 11:20:16 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.283: +14 -7 lines
Diff to previous 1.283
Cosmetics.

Revision 1.283 - (view) (download) (annotate) - [select for diffs]
Sun Nov 11 04:08:00 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-8_5a, rel-8_6, rel-8_7
Changes since 1.282: +6 -6 lines
Diff to previous 1.282
first rough cut at libev integration

Revision 1.282 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 10:06:42 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.281: +3 -7 lines
Diff to previous 1.281
*** empty log message ***

Revision 1.281 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 09:55:24 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.280: +16 -16 lines
Diff to previous 1.280
Remove trailing whitespace.

Revision 1.280 - (view) (download) (annotate) - [select for diffs]
Mon Oct 15 14:56:06 2007 UTC (16 years, 7 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_4
Changes since 1.279: +0 -12 lines
Diff to previous 1.279
Nuke pixel_position.

Revision 1.279 - (view) (download) (annotate) - [select for diffs]
Tue Sep 18 22:01:36 2007 UTC (16 years, 7 months ago) by sasha
Branch: MAIN
Changes since 1.278: +2 -2 lines
Diff to previous 1.278
improved flickering on move/resize with transparent background

Revision 1.278 - (view) (download) (annotate) - [select for diffs]
Mon Sep 17 08:31:54 2007 UTC (16 years, 7 months ago) by root
Branch: MAIN
Changes since 1.277: +3 -5 lines
Diff to previous 1.277
clean up some code

Revision 1.277 - (view) (download) (annotate) - [select for diffs]
Mon Sep 3 08:48:00 2007 UTC (16 years, 8 months ago) by ayin
Branch: MAIN
Changes since 1.276: +2 -2 lines
Diff to previous 1.276
sizeof(char) is 1.

Revision 1.276 - (view) (download) (annotate) - [select for diffs]
Sun Aug 26 17:56:19 2007 UTC (16 years, 8 months ago) by ayin
Branch: MAIN
Changes since 1.275: +1 -1 lines
Diff to previous 1.275
Make some inline functions static.

Revision 1.275 - (view) (download) (annotate) - [select for diffs]
Wed Aug 15 22:41:52 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.274: +1 -1 lines
Diff to previous 1.274
fixed segfault on resize by getting rid of touch() in apply(). rearranged redraw calls on configure notify to be sane

Revision 1.274 - (view) (download) (annotate) - [select for diffs]
Mon Aug 13 22:41:34 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.273: +14 -26 lines
Diff to previous 1.273
refactored check_parents into bgPixmap.render(), started cleaning up am_transparent stuff

Revision 1.273 - (view) (download) (annotate) - [select for diffs]
Mon Aug 13 07:18:58 2007 UTC (16 years, 9 months ago) by ayin
Branch: MAIN
Changes since 1.272: +0 -2 lines
Diff to previous 1.272
Remove unneeded include.

Revision 1.272 - (view) (download) (annotate) - [select for diffs]
Fri Aug 10 23:52:12 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.271: +1 -2 lines
Diff to previous 1.271
clear rvideo mode differently to avoid race

Revision 1.271 - (view) (download) (annotate) - [select for diffs]
Fri Aug 3 22:40:10 2007 UTC (16 years, 9 months ago) by sasha
Branch: MAIN
Changes since 1.270: +3 -3 lines
Diff to previous 1.270
updated comments explaining pixmap geometry string; added differentiation between HAVE_AFTERIMAGE and XPM_BACKGROUND; began moving background handling functions under bgPixmap_t - work in progress

Revision 1.270 - (view) (download) (annotate) - [select for diffs]
Tue Jun 26 00:40:19 2007 UTC (16 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-8_3
Changes since 1.269: +3 -3 lines
Diff to previous 1.269
TRANSPARENT => ENABLE_TRANSPARENCY rename to avoid symbol conflict
on solaris..

Revision 1.269 - (view) (download) (annotate) - [select for diffs]
Wed May 2 23:06:32 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.268: +13 -0 lines
Diff to previous 1.268
*** empty log message ***

Revision 1.268 - (view) (download) (annotate) - [select for diffs]
Tue May 1 21:30:01 2007 UTC (17 years ago) by root
Branch: MAIN
Changes since 1.267: +14 -14 lines
Diff to previous 1.267
remove OPTION macro

Revision 1.267 - (view) (download) (annotate) - [select for diffs]
Thu Nov 2 17:23:50 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-8_0, rel-8_1, rel-8_2
Changes since 1.266: +2 -2 lines
Diff to previous 1.266
*** empty log message ***

Revision 1.266 - (view) (download) (annotate) - [select for diffs]
Mon Oct 9 23:12:45 2006 UTC (17 years, 7 months ago) by root
Branch: MAIN
Changes since 1.265: +2 -4 lines
Diff to previous 1.265
misc fixes inspired by an idiot

Revision 1.265 - (view) (download) (annotate) - [select for diffs]
Tue Oct 3 11:56:48 2006 UTC (17 years, 7 months ago) by root
Branch: MAIN
Changes since 1.264: +27 -22 lines
Diff to previous 1.264
*** empty log message ***

Revision 1.264 - (view) (download) (annotate) - [select for diffs]
Thu Jul 6 18:56:10 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-7_8, rel-7_9
Changes since 1.263: +31 -20 lines
Diff to previous 1.263
*** empty log message ***

Revision 1.263 - (view) (download) (annotate) - [select for diffs]
Tue Apr 11 11:07:48 2006 UTC (18 years, 1 month ago) by root
Branch: MAIN
Changes since 1.262: +1 -1 lines
Diff to previous 1.262
*** empty log message ***

Revision 1.262 - (view) (download) (annotate) - [select for diffs]
Mon Feb 20 22:42:01 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-7_7
Changes since 1.261: +1 -1 lines
Diff to previous 1.261
*** empty log message ***

Revision 1.261 - (view) (download) (annotate) - [select for diffs]
Sat Feb 18 15:44:26 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
Changes since 1.260: +3 -1 lines
Diff to previous 1.260
*** empty log message ***

Revision 1.260 - (view) (download) (annotate) - [select for diffs]
Sat Feb 18 15:24:39 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
Changes since 1.259: +23 -20 lines
Diff to previous 1.259
*** empty log message ***

Revision 1.259 - (view) (download) (annotate) - [select for diffs]
Fri Feb 17 14:30:51 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
Changes since 1.258: +1 -1 lines
Diff to previous 1.258
*** empty log message ***

Revision 1.258 - (view) (download) (annotate) - [select for diffs]
Thu Feb 2 18:04:46 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_6
Changes since 1.257: +35 -35 lines
Diff to previous 1.257
*** empty log message ***

Revision 1.257 - (view) (download) (annotate) - [select for diffs]
Tue Jan 31 00:25:16 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_5
Changes since 1.256: +1 -3 lines
Diff to previous 1.256
*** empty log message ***

Revision 1.256 - (view) (download) (annotate) - [select for diffs]
Mon Jan 30 20:12:37 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.255: +16 -14 lines
Diff to previous 1.255
*** empty log message ***

Revision 1.255 - (view) (download) (annotate) - [select for diffs]
Mon Jan 30 04:27:17 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.254: +3 -4 lines
Diff to previous 1.254
*** empty log message ***

Revision 1.254 - (view) (download) (annotate) - [select for diffs]
Sat Jan 28 14:23:16 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_4
Changes since 1.253: +15 -2 lines
Diff to previous 1.253
*** empty log message ***

Revision 1.253 - (view) (download) (annotate) - [select for diffs]
Fri Jan 27 18:36:43 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.252: +1 -10 lines
Diff to previous 1.252
*** empty log message ***

Revision 1.252 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 21:09:21 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_3, rel-7_3a
Changes since 1.251: +30 -30 lines
Diff to previous 1.251
*** empty log message ***

Revision 1.251 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 21:03:04 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.250: +5 -6 lines
Diff to previous 1.250
*** empty log message ***

Revision 1.250 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 13:24:45 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.249: +10 -4 lines
Diff to previous 1.249
*** empty log message ***

Revision 1.249 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 00:42:21 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.248: +4 -4 lines
Diff to previous 1.248
*** empty log message ***

Revision 1.248 - (view) (download) (annotate) - [select for diffs]
Sun Jan 22 20:58:33 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_2
Changes since 1.247: +1 -0 lines
Diff to previous 1.247
*** empty log message ***

Revision 1.247 - (view) (download) (annotate) - [select for diffs]
Sun Jan 22 20:39:47 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.246: +44 -35 lines
Diff to previous 1.246
*** empty log message ***

Revision 1.246 - (view) (download) (annotate) - [select for diffs]
Sat Jan 21 14:25:05 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.245: +28 -13 lines
Diff to previous 1.245
*** empty log message ***

Revision 1.245 - (view) (download) (annotate) - [select for diffs]
Fri Jan 20 10:35:25 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.244: +1 -7 lines
Diff to previous 1.244
*** empty log message ***

Revision 1.244 - (view) (download) (annotate) - [select for diffs]
Fri Jan 20 10:27:08 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.243: +76 -76 lines
Diff to previous 1.243
*** empty log message ***

Revision 1.243 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 23:15:21 2006 UTC (18 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.242: +13 -12 lines
Diff to previous 1.242
*** empty log message ***

Revision 1.242 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 19:51:08 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.241: +1 -1 lines
Diff to previous 1.241
*** empty log message ***

Revision 1.241 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 17:37:01 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-7_1
Changes since 1.240: +4 -3 lines
Diff to previous 1.240
*** empty log message ***

Revision 1.240 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 17:21:20 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.239: +2 -0 lines
Diff to previous 1.239
*** empty log message ***

Revision 1.239 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 17:14:46 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.238: +4 -5 lines
Diff to previous 1.238
*** empty log message ***

Revision 1.238 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 16:22:13 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.237: +1 -4 lines
Diff to previous 1.237
*** empty log message ***

Revision 1.237 - (view) (download) (annotate) - [select for diffs]
Wed Jan 18 11:07:30 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.236: +1 -1 lines
Diff to previous 1.236
*** empty log message ***

Revision 1.236 - (view) (download) (annotate) - [select for diffs]
Wed Jan 18 09:40:53 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.235: +8 -8 lines
Diff to previous 1.235
*** empty log message ***

Revision 1.235 - (view) (download) (annotate) - [select for diffs]
Tue Jan 17 05:47:42 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.234: +6 -4 lines
Diff to previous 1.234
*** empty log message ***

Revision 1.234 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 08:57:02 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.233: +5 -3 lines
Diff to previous 1.233
*** empty log message ***

Revision 1.233 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 06:37:52 2006 UTC (18 years, 3 months ago) by root
Branch: MAIN
Changes since 1.232: +2 -2 lines
Diff to previous 1.232
*** empty log message ***

Revision 1.232 - (view) (download) (annotate) - [select for diffs]
Sun Jan 15 16:59:54 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.231: +1 -3 lines
Diff to previous 1.231
*** empty log message ***

Revision 1.231 - (view) (download) (annotate) - [select for diffs]
Sun Jan 15 16:48:18 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.230: +1 -3 lines
Diff to previous 1.230
*** empty log message ***

Revision 1.230 - (view) (download) (annotate) - [select for diffs]
Sun Jan 15 16:47:29 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.229: +3 -1 lines
Diff to previous 1.229
*** empty log message ***

Revision 1.229 - (view) (download) (annotate) - [select for diffs]
Sun Jan 15 06:39:19 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.228: +8 -10 lines
Diff to previous 1.228
*** empty log message ***

Revision 1.228 - (view) (download) (annotate) - [select for diffs]
Sun Jan 15 06:02:41 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.227: +61 -81 lines
Diff to previous 1.227
*** empty log message ***

Revision 1.227 - (view) (download) (annotate) - [select for diffs]
Sun Jan 15 05:14:12 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.226: +35 -13 lines
Diff to previous 1.226
*** empty log message ***

Revision 1.226 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 09:55:44 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-7_0
Changes since 1.225: +2 -0 lines
Diff to previous 1.225
*** empty log message ***

Revision 1.225 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 05:22:47 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.224: +4 -1 lines
Diff to previous 1.224
*** empty log message ***

Revision 1.224 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 03:32:56 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.223: +9 -5 lines
Diff to previous 1.223
*** empty log message ***

Revision 1.223 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 18:54:30 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.222: +1 -1 lines
Diff to previous 1.222
*** empty log message ***

Revision 1.222 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 05:14:26 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.221: +1 -1 lines
Diff to previous 1.221
*** empty log message ***

Revision 1.221 - (view) (download) (annotate) - [select for diffs]
Wed Jan 11 02:13:56 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.220: +0 -3 lines
Diff to previous 1.220
*** empty log message ***

Revision 1.220 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 23:18:49 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.219: +2 -2 lines
Diff to previous 1.219
*** empty log message ***

Revision 1.219 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 23:00:07 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.218: +54 -39 lines
Diff to previous 1.218
*** empty log message ***

Revision 1.218 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 22:41:41 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.217: +1 -0 lines
Diff to previous 1.217
*** empty log message ***

Revision 1.217 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 19:01:56 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.216: +7 -8 lines
Diff to previous 1.216
*** empty log message ***

Revision 1.216 - (view) (download) (annotate) - [select for diffs]
Mon Jan 9 18:51:19 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.215: +10 -1 lines
Diff to previous 1.215
*** empty log message ***

Revision 1.215 - (view) (download) (annotate) - [select for diffs]
Sun Jan 8 06:35:23 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.214: +5 -8 lines
Diff to previous 1.214
*** empty log message ***

Revision 1.214 - (view) (download) (annotate) - [select for diffs]
Sun Jan 8 00:07:18 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.213: +1 -1 lines
Diff to previous 1.213
*** empty log message ***

Revision 1.213 - (view) (download) (annotate) - [select for diffs]
Fri Jan 6 18:33:30 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.212: +8 -8 lines
Diff to previous 1.212
*** empty log message ***

Revision 1.212 - (view) (download) (annotate) - [select for diffs]
Fri Jan 6 05:37:59 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.211: +1 -1 lines
Diff to previous 1.211
*** empty log message ***

Revision 1.211 - (view) (download) (annotate) - [select for diffs]
Fri Jan 6 01:16:58 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.210: +8 -8 lines
Diff to previous 1.210
*** empty log message ***

Revision 1.210 - (view) (download) (annotate) - [select for diffs]
Thu Jan 5 21:21:49 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.209: +72 -64 lines
Diff to previous 1.209
*** empty log message ***

Revision 1.209 - (view) (download) (annotate) - [select for diffs]
Thu Jan 5 01:04:10 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.208: +1 -0 lines
Diff to previous 1.208
*** empty log message ***

Revision 1.208 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 05:24:55 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-6_3
Changes since 1.207: +0 -1 lines
Diff to previous 1.207
*** empty log message ***

Revision 1.207 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 04:42:45 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.206: +6 -6 lines
Diff to previous 1.206
*** empty log message ***

Revision 1.206 - (view) (download) (annotate) - [select for diffs]
Tue Jan 3 17:34:44 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.205: +5 -2 lines
Diff to previous 1.205
*** empty log message ***

Revision 1.205 - (view) (download) (annotate) - [select for diffs]
Tue Jan 3 04:18:47 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.204: +2 -2 lines
Diff to previous 1.204
*** empty log message ***

Revision 1.204 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 15:35:43 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.203: +30 -5 lines
Diff to previous 1.203
*** empty log message ***

Revision 1.203 - (view) (download) (annotate) - [select for diffs]
Sat Dec 31 19:30:25 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-6_2
Changes since 1.202: +3 -0 lines
Diff to previous 1.202
*** empty log message ***

Revision 1.202 - (view) (download) (annotate) - [select for diffs]
Sat Dec 31 17:16:17 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.201: +13 -13 lines
Diff to previous 1.201
*** empty log message ***

Revision 1.201 - (view) (download) (annotate) - [select for diffs]
Sat Dec 31 16:40:28 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.200: +5 -5 lines
Diff to previous 1.200
*** empty log message ***

Revision 1.200 - (view) (download) (annotate) - [select for diffs]
Tue Dec 27 01:54:08 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-6_1
Changes since 1.199: +5 -1 lines
Diff to previous 1.199
*** empty log message ***

Revision 1.199 - (view) (download) (annotate) - [select for diffs]
Tue Dec 27 01:46:06 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.198: +27 -8 lines
Diff to previous 1.198
*** empty log message ***

Revision 1.198 - (view) (download) (annotate) - [select for diffs]
Tue Dec 27 01:25:42 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.197: +2 -2 lines
Diff to previous 1.197
*** empty log message ***

Revision 1.197 - (view) (download) (annotate) - [select for diffs]
Tue Dec 27 00:52:38 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.196: +1 -1 lines
Diff to previous 1.196
*** empty log message ***

Revision 1.196 - (view) (download) (annotate) - [select for diffs]
Mon Dec 26 23:12:59 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.195: +8 -2 lines
Diff to previous 1.195
*** empty log message ***

Revision 1.195 - (view) (download) (annotate) - [select for diffs]
Mon Dec 26 23:02:34 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.194: +8 -4 lines
Diff to previous 1.194
*** empty log message ***

Revision 1.194 - (view) (download) (annotate) - [select for diffs]
Mon Dec 26 21:30:04 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.193: +15 -12 lines
Diff to previous 1.193
*** empty log message ***

Revision 1.193 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 19:39:29 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-6_0
Changes since 1.192: +11 -17 lines
Diff to previous 1.192
*** empty log message ***

Revision 1.192 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 19:25:58 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.191: +2 -3 lines
Diff to previous 1.191
*** empty log message ***

Revision 1.191 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 18:36:55 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.190: +5 -3 lines
Diff to previous 1.190
*** empty log message ***

Revision 1.190 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 15:52:57 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.189: +13 -1 lines
Diff to previous 1.189
*** empty log message ***

Revision 1.189 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 15:28:15 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.188: +77 -50 lines
Diff to previous 1.188
*** empty log message ***

Revision 1.188 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 00:07:47 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.187: +1 -1 lines
Diff to previous 1.187
*** empty log message ***

Revision 1.187 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 23:57:12 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.186: +48 -61 lines
Diff to previous 1.186
*** empty log message ***

Revision 1.186 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 19:50:17 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.185: +129 -203 lines
Diff to previous 1.185
*** empty log message ***

Revision 1.185 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 14:25:41 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.184: +1 -1 lines
Diff to previous 1.184
*** empty log message ***

Revision 1.184 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 14:23:30 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.183: +6 -5 lines
Diff to previous 1.183
*** empty log message ***

Revision 1.183 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 14:19:19 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.182: +38 -38 lines
Diff to previous 1.182
*** empty log message ***

Revision 1.182 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 10:35:47 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.181: +3 -3 lines
Diff to previous 1.181
*** empty log message ***

Revision 1.181 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 10:34:35 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.180: +1 -1 lines
Diff to previous 1.180
*** empty log message ***

Revision 1.180 - (view) (download) (annotate) - [select for diffs]
Wed Dec 21 10:34:24 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.179: +13 -14 lines
Diff to previous 1.179
*** empty log message ***

Revision 1.179 - (view) (download) (annotate) - [select for diffs]
Tue Dec 20 22:47:14 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.178: +4 -7 lines
Diff to previous 1.178
*** empty log message ***

Revision 1.178 - (view) (download) (annotate) - [select for diffs]
Tue Dec 20 22:27:49 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.177: +2 -5 lines
Diff to previous 1.177
*** empty log message ***

Revision 1.177 - (view) (download) (annotate) - [select for diffs]
Tue Dec 20 21:49:55 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.176: +3 -1 lines
Diff to previous 1.176
*** empty log message ***

Revision 1.176 - (view) (download) (annotate) - [select for diffs]
Tue Dec 20 20:58:31 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.175: +56 -100 lines
Diff to previous 1.175
*** empty log message ***

Revision 1.175 - (view) (download) (annotate) - [select for diffs]
Tue Dec 20 19:30:59 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.174: +194 -228 lines
Diff to previous 1.174
*** empty log message ***

Revision 1.174 - (view) (download) (annotate) - [select for diffs]
Mon Dec 19 02:40:14 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.173: +41 -49 lines
Diff to previous 1.173
*** empty log message ***

Revision 1.173 - (view) (download) (annotate) - [select for diffs]
Mon Dec 19 02:16:24 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.172: +8 -11 lines
Diff to previous 1.172
*** empty log message ***

Revision 1.172 - (view) (download) (annotate) - [select for diffs]
Sun Dec 18 00:59:42 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.171: +513 -537 lines
Diff to previous 1.171
*** empty log message ***

Revision 1.171 - (view) (download) (annotate) - [select for diffs]
Fri Dec 16 13:05:49 2005 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-5_9
Changes since 1.170: +1 -0 lines
Diff to previous 1.170
*** empty log message ***

Revision 1.170 - (view) (download) (annotate) - [select for diffs]
Mon Nov 28 19:35:04 2005 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.169: +1 -5 lines
Diff to previous 1.169
*** empty log message ***

Revision 1.169 - (view) (download) (annotate) - [select for diffs]
Tue Oct 25 19:04:46 2005 UTC (18 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-5_8
Changes since 1.168: +0 -16 lines
Diff to previous 1.168
*** empty log message ***

Revision 1.168 - (view) (download) (annotate) - [select for diffs]
Thu Aug 11 13:23:06 2005 UTC (18 years, 9 months ago) by root
Branch: MAIN
Changes since 1.167: +20 -14 lines
Diff to previous 1.167
*** empty log message ***

Revision 1.167 - (view) (download) (annotate) - [select for diffs]
Fri Aug 5 16:42:44 2005 UTC (18 years, 9 months ago) by root
Branch: MAIN
Changes since 1.166: +4 -0 lines
Diff to previous 1.166
*** empty log message ***

Revision 1.166 - (view) (download) (annotate) - [select for diffs]
Sun Jun 26 20:06:52 2005 UTC (18 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-5_7
Changes since 1.165: +1 -1 lines
Diff to previous 1.165
*** empty log message ***

Revision 1.165 - (view) (download) (annotate) - [select for diffs]
Sun Jun 26 19:59:29 2005 UTC (18 years, 10 months ago) by root
Branch: MAIN
Changes since 1.164: +60 -48 lines
Diff to previous 1.164
*** empty log message ***

Revision 1.164 - (view) (download) (annotate) - [select for diffs]
Wed Jun 22 14:33:23 2005 UTC (18 years, 10 months ago) by root
Branch: MAIN
Changes since 1.163: +11 -5 lines
Diff to previous 1.163
*** empty log message ***

Revision 1.163 - (view) (download) (annotate) - [select for diffs]
Sat Jun 18 09:02:37 2005 UTC (18 years, 10 months ago) by root
Branch: MAIN
Changes since 1.162: +16 -0 lines
Diff to previous 1.162
*** empty log message ***

Revision 1.162 - (view) (download) (annotate) - [select for diffs]
Sun Apr 17 22:36:13 2005 UTC (19 years ago) by root
Branch: MAIN
CVS Tags: rel-5_4, rel-5_5
Changes since 1.161: +29 -28 lines
Diff to previous 1.161
*** empty log message ***

Revision 1.161 - (view) (download) (annotate) - [select for diffs]
Tue Feb 22 21:41:50 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-5_3
Changes since 1.160: +1 -9 lines
Diff to previous 1.160
*** empty log message ***

Revision 1.160 - (view) (download) (annotate) - [select for diffs]
Mon Feb 21 19:30:58 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
Changes since 1.159: +3 -1 lines
Diff to previous 1.159
*** empty log message ***

Revision 1.159 - (view) (download) (annotate) - [select for diffs]
Mon Feb 21 19:26:07 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
Changes since 1.158: +32 -18 lines
Diff to previous 1.158
*** empty log message ***

Revision 1.158 - (view) (download) (annotate) - [select for diffs]
Sat Feb 19 19:37:34 2005 UTC (19 years, 2 months ago) by root
Branch: MAIN
CVS Tags: rel-5_2
Changes since 1.157: +2 -3 lines
Diff to previous 1.157
*** empty log message ***

Revision 1.157 - (view) (download) (annotate) - [select for diffs]
Sun Feb 13 08:56:28 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-5_1
Changes since 1.156: +0 -1 lines
Diff to previous 1.156
*** empty log message ***

Revision 1.156 - (view) (download) (annotate) - [select for diffs]
Fri Feb 4 11:41:23 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-5_0
Changes since 1.155: +6 -5 lines
Diff to previous 1.155
*** empty log message ***

Revision 1.155 - (view) (download) (annotate) - [select for diffs]
Thu Feb 3 07:45:39 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-4_9
Changes since 1.153: +11 -2 lines
Diff to previous 1.153
*** empty log message ***

Revision 1.153 - (view) (download) (annotate) - [select for diffs]
Fri Jan 14 17:15:26 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-4_8
Changes since 1.151: +1 -10 lines
Diff to previous 1.151
*** empty log message ***

Revision 1.151 - (view) (download) (annotate) - [select for diffs]
Wed Dec 15 00:53:23 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-4_6, rel-4_7
Changes since 1.150: +7 -1 lines
Diff to previous 1.150
*** empty log message ***

Revision 1.150 - (view) (download) (annotate) - [select for diffs]
Mon Dec 13 19:16:36 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
Changes since 1.149: +5 -16 lines
Diff to previous 1.149
*** empty log message ***

Revision 1.149 - (view) (download) (annotate) - [select for diffs]
Mon Dec 13 06:44:18 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
Changes since 1.148: +5 -8 lines
Diff to previous 1.148
*** empty log message ***

Revision 1.148 - (view) (download) (annotate) - [select for diffs]
Mon Dec 13 01:29:03 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
Changes since 1.147: +121 -80 lines
Diff to previous 1.147
*** empty log message ***

Revision 1.147 - (view) (download) (annotate) - [select for diffs]
Sun Dec 12 15:13:37 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-4_4
Changes since 1.143: +64 -26 lines
Diff to previous 1.143
*** empty log message ***

Revision 1.143 - (view) (download) (annotate) - [select for diffs]
Sat Dec 4 04:06:03 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-4_3
Changes since 1.141: +4 -4 lines
Diff to previous 1.141
*** empty log message ***

Revision 1.141 - (view) (download) (annotate) - [select for diffs]
Wed Dec 1 02:12:18 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-4_2
Changes since 1.139: +5 -5 lines
Diff to previous 1.139
*** empty log message ***

Revision 1.139 - (view) (download) (annotate) - [select for diffs]
Sun Nov 21 18:51:13 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-4_1
Changes since 1.136: +33 -40 lines
Diff to previous 1.136
*** empty log message ***

Revision 1.136 - (view) (download) (annotate) - [select for diffs]
Tue Sep 7 21:05:41 2004 UTC (19 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-4_0
Changes since 1.129: +104 -66 lines
Diff to previous 1.129
*** empty log message ***

Revision 1.129 - (view) (download) (annotate) - [select for diffs]
Wed Aug 25 03:52:09 2004 UTC (19 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-3_8
Changes since 1.104: +209 -91 lines
Diff to previous 1.104
*** empty log message ***

Revision 1.104 - (view) (download) (annotate) - [select for diffs]
Tue Aug 17 01:29:12 2004 UTC (19 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-3_7
Changes since 1.89: +290 -172 lines
Diff to previous 1.89
*** empty log message ***

Revision 1.89 - (view) (download) (annotate) - [select for diffs]
Fri Aug 13 22:38:57 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_6
Changes since 1.85: +27 -44 lines
Diff to previous 1.85
*** empty log message ***

Revision 1.85 - (view) (download) (annotate) - [select for diffs]
Sun Aug 8 16:43:21 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_5
Changes since 1.82: +19 -61 lines
Diff to previous 1.82
*** empty log message ***

Revision 1.82 - (view) (download) (annotate) - [select for diffs]
Wed Aug 4 03:33:53 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_4
Changes since 1.78: +19 -7 lines
Diff to previous 1.78
*** empty log message ***

Revision 1.78 - (view) (download) (annotate) - [select for diffs]
Fri Jul 30 18:35:11 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_3
Changes since 1.77: +1 -1 lines
Diff to previous 1.77
*** empty log message ***

Revision 1.77 - (view) (download) (annotate) - [select for diffs]
Mon Jul 26 14:57:12 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_2
Changes since 1.74: +34 -31 lines
Diff to previous 1.74
*** empty log message ***

Revision 1.74 - (view) (download) (annotate) - [select for diffs]
Sun May 9 18:19:49 2004 UTC (20 years ago) by pcg
Branch: MAIN
CVS Tags: rel-3_0
Changes since 1.71: +28 -74 lines
Diff to previous 1.71
*** empty log message ***

Revision 1.71 - (view) (download) (annotate) - [select for diffs]
Thu Apr 8 20:31:45 2004 UTC (20 years, 1 month ago) by pcg
Branch: MAIN
CVS Tags: rel-2_8
Changes since 1.68: +18 -14 lines
Diff to previous 1.68
*** empty log message ***

Revision 1.68 - (view) (download) (annotate) - [select for diffs]
Sun Apr 4 14:35:00 2004 UTC (20 years, 1 month ago) by pcg
Branch: MAIN
CVS Tags: rel-2_7
Changes since 1.66: +29 -26 lines
Diff to previous 1.66
*** empty log message ***

Revision 1.66 - (view) (download) (annotate) - [select for diffs]
Sun Mar 28 02:07:08 2004 UTC (20 years, 1 month ago) by pcg
Branch: MAIN
CVS Tags: rel-2_5
Changes since 1.59: +113 -91 lines
Diff to previous 1.59
*** empty log message ***

Revision 1.59 - (view) (download) (annotate) - [select for diffs]
Mon Mar 15 00:08:11 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_4
Changes since 1.57: +62 -130 lines
Diff to previous 1.57
*** empty log message ***

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Sun Mar 14 17:33:08 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_3
Changes since 1.54: +6 -10 lines
Diff to previous 1.54
*** empty log message ***

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Thu Mar 11 00:53:19 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_2
Changes since 1.43: +144 -81 lines
Diff to previous 1.43
*** empty log message ***

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Wed Mar 3 02:59:53 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_1_0
Changes since 1.41: +69 -53 lines
Diff to previous 1.41
*** empty log message ***

Revision 1.41 - (view) (download) (annotate) - [select for diffs]
Sun Feb 29 15:31:56 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-2_0
Changes since 1.39: +1 -1 lines
Diff to previous 1.39
*** empty log message ***

Revision 1.39 - (view) (download) (annotate) - [select for diffs]
Wed Feb 25 15:06:05 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-1_9
Changes since 1.38: +4 -3 lines
Diff to previous 1.38
*** empty log message ***

Revision 1.38 - (view) (download) (annotate) - [select for diffs]
Wed Feb 25 10:26:50 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.37: +10 -7 lines
Diff to previous 1.37
*** empty log message ***

Revision 1.37 - (view) (download) (annotate) - [select for diffs]
Tue Feb 24 23:58:13 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.36: +29 -23 lines
Diff to previous 1.36
*** empty log message ***

Revision 1.36 - (view) (download) (annotate) - [select for diffs]
Tue Feb 24 22:28:42 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.35: +21 -18 lines
Diff to previous 1.35
*** empty log message ***

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Tue Feb 24 11:48:40 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.34: +17 -20 lines
Diff to previous 1.34
*** empty log message ***

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Tue Feb 24 00:44:23 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.33: +4 -4 lines
Diff to previous 1.33
*** empty log message ***

Revision 1.33 - (view) (download) (annotate) - [select for diffs]
Sun Feb 22 17:13:21 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.32: +1 -2 lines
Diff to previous 1.32
*** empty log message ***

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Sun Feb 22 10:38:11 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.31: +23 -0 lines
Diff to previous 1.31
*** empty log message ***

Revision 1.31 - (view) (download) (annotate) - [select for diffs]
Sun Feb 22 08:09:38 2004 UTC (20 years, 2 months ago) by pcg
Branch: MAIN
Changes since 1.30: +1 -57 lines
Diff to previous 1.30
*** empty log message ***

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Fri Feb 13 12:16:21 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.29: +343 -343 lines
Diff to previous 1.29
*** empty log message ***

Revision 1.29 - (view) (download) (annotate) - [select for diffs]
Wed Feb 11 08:13:45 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.28: +1 -1 lines
Diff to previous 1.28
*** empty log message ***

Revision 1.28 - (view) (download) (annotate) - [select for diffs]
Tue Feb 10 00:40:39 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.27: +4 -3 lines
Diff to previous 1.27
*** empty log message ***

Revision 1.27 - (view) (download) (annotate) - [select for diffs]
Mon Feb 9 07:11:49 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.26: +57 -57 lines
Diff to previous 1.26
*** empty log message ***

Revision 1.26 - (view) (download) (annotate) - [select for diffs]
Sun Feb 1 20:12:53 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.25: +11 -11 lines
Diff to previous 1.25
*** empty log message ***

Revision 1.25 - (view) (download) (annotate) - [select for diffs]
Sun Feb 1 01:34:41 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
CVS Tags: after_astyle
Changes since 1.24: +1586 -1434 lines
Diff to previous 1.24
*** empty log message ***

Revision 1.24 - (view) (download) (annotate) - [select for diffs]
Sat Jan 31 04:12:10 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
CVS Tags: before_astyle
Changes since 1.23: +14 -14 lines
Diff to previous 1.23
*** empty log message ***

Revision 1.23 - (view) (download) (annotate) - [select for diffs]
Sat Jan 31 02:31:17 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.22: +5 -1 lines
Diff to previous 1.22
*** empty log message ***

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Sat Jan 31 02:14:58 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.21: +5 -6 lines
Diff to previous 1.21
*** empty log message ***

Revision 1.21 - (view) (download) (annotate) - [select for diffs]
Sat Jan 31 00:20:21 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.20: +730 -780 lines
Diff to previous 1.20
*** empty log message ***

Revision 1.20 - (view) (download) (annotate) - [select for diffs]
Fri Jan 30 15:58:07 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.19: +9 -33 lines
Diff to previous 1.19
*** empty log message ***

Revision 1.19 - (view) (download) (annotate) - [select for diffs]
Thu Jan 29 23:26:01 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.18: +41 -3 lines
Diff to previous 1.18
*** empty log message ***

Revision 1.18 - (view) (download) (annotate) - [select for diffs]
Wed Jan 28 23:40:50 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.17: +92 -50 lines
Diff to previous 1.17
*** empty log message ***

Revision 1.17 - (view) (download) (annotate) - [select for diffs]
Mon Jan 19 17:26:43 2004 UTC (20 years, 3 months ago) by pcg
Branch: MAIN
Changes since 1.16: +32 -76 lines
Diff to previous 1.16
*** empty log message ***

Revision 1.16 - (view) (download) (annotate) - [select for diffs]
Fri Jan 16 22:11:09 2004 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
Changes since 1.15: +2 -3 lines
Diff to previous 1.15
*** empty log message ***

Revision 1.15 - (view) (download) (annotate) - [select for diffs]
Fri Jan 16 16:34:56 2004 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
Changes since 1.14: +3 -3 lines
Diff to previous 1.14
*** empty log message ***

Revision 1.14 - (view) (download) (annotate) - [select for diffs]
Fri Dec 26 07:42:23 2003 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
CVS Tags: rel-1-3
Changes since 1.13: +17 -26 lines
Diff to previous 1.13
*** empty log message ***

Revision 1.13 - (view) (download) (annotate) - [select for diffs]
Wed Dec 24 09:22:29 2003 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
CVS Tags: rel-1-2
Changes since 1.12: +2 -2 lines
Diff to previous 1.12
*** empty log message ***

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Thu Dec 18 14:11:47 2003 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
Changes since 1.11: +33 -34 lines
Diff to previous 1.11
*** empty log message ***

Revision 1.11 - (view) (download) (annotate) - [select for diffs]
Thu Dec 18 13:33:03 2003 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
Changes since 1.10: +251 -251 lines
Diff to previous 1.10
*** empty log message ***

Revision 1.10 - (view) (download) (annotate) - [select for diffs]
Thu Dec 18 08:06:46 2003 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
Changes since 1.9: +6 -1 lines
Diff to previous 1.9
*** empty log message ***

Revision 1.9 - (view) (download) (annotate) - [select for diffs]
Thu Dec 18 02:07:12 2003 UTC (20 years, 4 months ago) by pcg
Branch: MAIN
Changes since 1.8: +2 -2 lines
Diff to previous 1.8
*** empty log message ***

Revision 1.8 - (view) (download) (annotate) - [select for diffs]
Wed Dec 17 09:00:35 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.7: +455 -400 lines
Diff to previous 1.7
*** empty log message ***

Revision 1.7 - (view) (download) (annotate) - [select for diffs]
Tue Dec 16 23:04:13 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.6: +99 -90 lines
Diff to previous 1.6
*** empty log message ***

Revision 1.6 - (view) (download) (annotate) - [select for diffs]
Tue Dec 2 21:49:46 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.5: +2 -21 lines
Diff to previous 1.5
*** empty log message ***

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Thu Nov 27 16:49:45 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.4: +18 -17 lines
Diff to previous 1.4
*** empty log message ***

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Tue Nov 25 15:25:17 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.3: +1365 -1346 lines
Diff to previous 1.3
*** empty log message ***

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Tue Nov 25 11:52:42 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.2: +193 -195 lines
Diff to previous 1.2
*** empty log message ***

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Mon Nov 24 17:31:27 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
Changes since 1.1: +0 -0 lines
Diff to previous 1.1
*** empty log message ***

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Mon Nov 24 17:28:08 2003 UTC (20 years, 5 months ago) by pcg
Branch: MAIN
*** empty log message ***

Convenience Links

Links to HEAD: (view) (download) (annotate)

Compare Revisions

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, select a symbolic revision name using the selection box, or choose 'Use Text Field' and enter a numeric revision.

  Diffs between and
  Type of Diff should be a