ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/rxvt-unicode/doc/rxvt.1.pod
Revision 1.263 - (view) (download) (annotate) - [select for diffs]
Sat Jan 20 08:00:50 2024 UTC (4 months, 2 weeks ago) by sf-exg
Branch: MAIN
CVS Tags: HEAD
Changes since 1.262: +1 -1 lines
Diff to previous 1.262
Fix POD markup

Patch by Jakub Wilk.

Revision 1.262 - (view) (download) (annotate) - [select for diffs]
Mon Feb 13 17:29:02 2023 UTC (15 months, 3 weeks ago) by root
Branch: MAIN
Changes since 1.261: +2 -2 lines
Diff to previous 1.261
*** empty log message ***

Revision 1.261 - (view) (download) (annotate) - [select for diffs]
Fri Dec 23 21:48:24 2022 UTC (17 months, 2 weeks ago) by root
Branch: MAIN
Changes since 1.260: +4 -3 lines
Diff to previous 1.260
*** empty log message ***

Revision 1.260 - (view) (download) (annotate) - [select for diffs]
Fri Dec 23 21:46:46 2022 UTC (17 months, 2 weeks ago) by root
Branch: MAIN
Changes since 1.259: +16 -0 lines
Diff to previous 1.259
*** empty log message ***

Revision 1.259 - (view) (download) (annotate) - [select for diffs]
Sun Dec 19 20:48:21 2021 UTC (2 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.258: +1 -1 lines
Diff to previous 1.258
Fix typo

Patch by Ryan Kavanagh.

Revision 1.258 - (view) (download) (annotate) - [select for diffs]
Mon Nov 22 17:01:36 2021 UTC (2 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_29, rxvt-unicode-rel-9_30
Changes since 1.257: +1 -1 lines
Diff to previous 1.257
*** empty log message ***

Revision 1.257 - (view) (download) (annotate) - [select for diffs]
Mon Nov 22 17:01:05 2021 UTC (2 years, 6 months ago) by root
Branch: MAIN
Changes since 1.256: +1 -1 lines
Diff to previous 1.256
*** empty log message ***

Revision 1.256 - (view) (download) (annotate) - [select for diffs]
Mon Nov 22 17:00:49 2021 UTC (2 years, 6 months ago) by root
Branch: MAIN
Changes since 1.255: +17 -0 lines
Diff to previous 1.255
*** empty log message ***

Revision 1.255 - (view) (download) (annotate) - [select for diffs]
Sat Jul 24 11:00:58 2021 UTC (2 years, 10 months ago) by root
Branch: MAIN
Changes since 1.254: +16 -7 lines
Diff to previous 1.254
*** empty log message ***

Revision 1.254 - (view) (download) (annotate) - [select for diffs]
Sat Jul 24 09:48:43 2021 UTC (2 years, 10 months ago) by root
Branch: MAIN
Changes since 1.253: +9 -9 lines
Diff to previous 1.253
remove =over identation

Revision 1.253 - (view) (download) (annotate) - [select for diffs]
Sat Jul 3 15:34:35 2021 UTC (2 years, 11 months ago) by root
Branch: MAIN
Changes since 1.252: +3 -3 lines
Diff to previous 1.252
a drop

Revision 1.252 - (view) (download) (annotate) - [select for diffs]
Sat Jul 3 15:32:32 2021 UTC (2 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.251: +3 -3 lines
Diff to previous 1.251
Fix typos

Revision 1.251 - (view) (download) (annotate) - [select for diffs]
Sat Jul 3 04:04:12 2021 UTC (2 years, 11 months ago) by root
Branch: MAIN
Changes since 1.250: +27 -0 lines
Diff to previous 1.250
-dpb

Revision 1.250 - (view) (download) (annotate) - [select for diffs]
Sat Oct 10 20:06:45 2020 UTC (3 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_25, rxvt-unicode-rel-9_26
Changes since 1.249: +1 -1 lines
Diff to previous 1.249
*** empty log message ***

Revision 1.249 - (view) (download) (annotate) - [select for diffs]
Sat Oct 10 20:03:39 2020 UTC (3 years, 7 months ago) by root
Branch: MAIN
Changes since 1.248: +1 -1 lines
Diff to previous 1.248
*** empty log message ***

Revision 1.248 - (view) (download) (annotate) - [select for diffs]
Fri Oct 13 17:13:58 2017 UTC (6 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.247: +19 -4 lines
Diff to previous 1.247
Improve readability of keysym modifier names (debian bug #839769).

Revision 1.247 - (view) (download) (annotate) - [select for diffs]
Thu Jul 14 05:33:25 2016 UTC (7 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.246: +0 -114 lines
Diff to previous 1.246
Move old bg image frontend to background extension.

Revision 1.246 - (view) (download) (annotate) - [select for diffs]
Tue Jun 21 12:03:55 2016 UTC (7 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.245: +9 -0 lines
Diff to previous 1.245
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.245 - (view) (download) (annotate) - [select for diffs]
Wed Jun 17 11:59:37 2015 UTC (8 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_22
Changes since 1.244: +1 -2 lines
Diff to previous 1.244
*** empty log message ***

Revision 1.244 - (view) (download) (annotate) - [select for diffs]
Tue Jun 16 11:58:26 2015 UTC (8 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.243: +6 -0 lines
Diff to previous 1.243
Add pointerShape resource to change the mouse pointer shape.

Based on a patch by Brian Watson.

Revision 1.243 - (view) (download) (annotate) - [select for diffs]
Sat May 30 21:02:05 2015 UTC (9 years ago) by root
Branch: MAIN
Changes since 1.242: +4 -1 lines
Diff to previous 1.242
*** empty log message ***

Revision 1.242 - (view) (download) (annotate) - [select for diffs]
Fri Dec 26 21:49:11 2014 UTC (9 years, 5 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_21
Changes since 1.241: +2 -3 lines
Diff to previous 1.241
Doc fixes.

Revision 1.241 - (view) (download) (annotate) - [select for diffs]
Wed Dec 17 15:22:10 2014 UTC (9 years, 5 months ago) by root
Branch: MAIN
Changes since 1.240: +3 -2 lines
Diff to previous 1.240
*** empty log message ***

Revision 1.240 - (view) (download) (annotate) - [select for diffs]
Mon Oct 13 17:05:32 2014 UTC (9 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.239: +15 -0 lines
Diff to previous 1.239
Restore keysym-list extension.

Revision 1.239 - (view) (download) (annotate) - [select for diffs]
Sun Oct 12 20:51:51 2014 UTC (9 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.238: +6 -6 lines
Diff to previous 1.238
Doc fix.

Revision 1.238 - (view) (download) (annotate) - [select for diffs]
Sat Oct 11 22:02:50 2014 UTC (9 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.237: +6 -4 lines
Diff to previous 1.237
Fix extension autoload.

Revision 1.237 - (view) (download) (annotate) - [select for diffs]
Thu Aug 21 19:21:14 2014 UTC (9 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.236: +2 -2 lines
Diff to previous 1.236
Doc fix.

Revision 1.236 - (view) (download) (annotate) - [select for diffs]
Sat Aug 16 10:51:23 2014 UTC (9 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.235: +9 -0 lines
Diff to previous 1.235
Add -mc option and multiClickTime resource, patch by Joe Peterson.

Revision 1.235 - (view) (download) (annotate) - [select for diffs]
Tue Jul 29 13:50:05 2014 UTC (9 years, 10 months ago) by mikachu
Branch: MAIN
Changes since 1.234: +5 -0 lines
Diff to previous 1.234
Add -dockapp option

Revision 1.234 - (view) (download) (annotate) - [select for diffs]
Sat Jun 7 17:47:29 2014 UTC (10 years ago) by sf-exg
Branch: MAIN
Changes since 1.233: +1 -1 lines
Diff to previous 1.233
Fix typo.

Revision 1.233 - (view) (download) (annotate) - [select for diffs]
Sat May 24 18:41:29 2014 UTC (10 years ago) by sf-exg
Branch: MAIN
Changes since 1.232: +2 -2 lines
Diff to previous 1.232
Doc fix.

Revision 1.232 - (view) (download) (annotate) - [select for diffs]
Sun May 18 18:19:10 2014 UTC (10 years ago) by root
Branch: MAIN
Changes since 1.231: +9 -4 lines
Diff to previous 1.231
*** empty log message ***

Revision 1.231 - (view) (download) (annotate) - [select for diffs]
Sat May 17 17:12:29 2014 UTC (10 years ago) by root
Branch: MAIN
Changes since 1.230: +10 -26 lines
Diff to previous 1.230
*** empty log message ***

Revision 1.230 - (view) (download) (annotate) - [select for diffs]
Mon Apr 28 16:00:34 2014 UTC (10 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.229: +2 -2 lines
Diff to previous 1.229
Fix typo.

Revision 1.229 - (view) (download) (annotate) - [select for diffs]
Sun Apr 27 20:26:28 2014 UTC (10 years, 1 month ago) by root
Branch: MAIN
Changes since 1.228: +27 -0 lines
Diff to previous 1.228
*** empty log message ***

Revision 1.228 - (view) (download) (annotate) - [select for diffs]
Sun Apr 27 19:43:46 2014 UTC (10 years, 1 month ago) by root
Branch: MAIN
Changes since 1.227: +113 -52 lines
Diff to previous 1.227
*** empty log message ***

Revision 1.227 - (view) (download) (annotate) - [select for diffs]
Sat Apr 26 14:07:36 2014 UTC (10 years, 1 month ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_20
Changes since 1.226: +6 -0 lines
Diff to previous 1.226
Add bindings to interact with the CLIPBOARD selection.

Revision 1.226 - (view) (download) (annotate) - [select for diffs]
Thu Jan 16 07:59:24 2014 UTC (10 years, 4 months ago) by root
Branch: MAIN
Changes since 1.225: +2 -2 lines
Diff to previous 1.225
Robert Wittek

Revision 1.225 - (view) (download) (annotate) - [select for diffs]
Wed Jun 5 07:58:17 2013 UTC (11 years ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_19
Changes since 1.224: +1 -1 lines
Diff to previous 1.224
Update my email address.

Revision 1.224 - (view) (download) (annotate) - [select for diffs]
Thu May 30 18:54:44 2013 UTC (11 years ago) by root
Branch: MAIN
Changes since 1.223: +8 -8 lines
Diff to previous 1.223
L really wnats urls

Revision 1.223 - (view) (download) (annotate) - [select for diffs]
Thu May 30 18:49:16 2013 UTC (11 years ago) by root
Branch: MAIN
Changes since 1.222: +4 -0 lines
Diff to previous 1.222
fix some pod errors

Revision 1.222 - (view) (download) (annotate) - [select for diffs]
Mon Nov 5 13:05:51 2012 UTC (11 years, 7 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_16, rxvt-unicode-rel-9_17, rxvt-unicode-rel-9_18
Changes since 1.221: +1 -1 lines
Diff to previous 1.221
Fix resource name.

Revision 1.221 - (view) (download) (annotate) - [select for diffs]
Mon Nov 5 12:59:13 2012 UTC (11 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.220: +110 -128 lines
Diff to previous 1.220
Group together the descriptions of the bg image options/resources in a
new section.

Revision 1.220 - (view) (download) (annotate) - [select for diffs]
Fri Sep 21 23:31:43 2012 UTC (11 years, 8 months ago) by root
Branch: MAIN
Changes since 1.219: +2 -1 lines
Diff to previous 1.219
*** empty log message ***

Revision 1.219 - (view) (download) (annotate) - [select for diffs]
Thu Jun 7 16:06:23 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.218: +6 -1 lines
Diff to previous 1.218
visual selection

Revision 1.218 - (view) (download) (annotate) - [select for diffs]
Tue Jun 5 22:26:55 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.217: +7 -3 lines
Diff to previous 1.217
*** empty log message ***

Revision 1.217 - (view) (download) (annotate) - [select for diffs]
Tue Jun 5 21:51:23 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.216: +2 -2 lines
Diff to previous 1.216
*** empty log message ***

Revision 1.216 - (view) (download) (annotate) - [select for diffs]
Tue Jun 5 21:29:51 2012 UTC (12 years ago) by root
Branch: MAIN
Changes since 1.215: +10 -4 lines
Diff to previous 1.215
*** empty log message ***

Revision 1.215 - (view) (download) (annotate) - [select for diffs]
Sun May 20 16:34:42 2012 UTC (12 years ago) by sf-exg
Branch: MAIN
Changes since 1.214: +1 -1 lines
Diff to previous 1.214
Remove arbitrary limit of 1000 on scaling factors and limit the maximum
width/height of a scaled image to 32767.

Revision 1.214 - (view) (download) (annotate) - [select for diffs]
Sun May 13 21:34:29 2012 UTC (12 years ago) by sf-exg
Branch: MAIN
Changes since 1.213: +0 -4 lines
Diff to previous 1.213
Remove leftover reference to removed option.

Revision 1.213 - (view) (download) (annotate) - [select for diffs]
Sat Feb 4 21:47:06 2012 UTC (12 years, 4 months ago) by sf-exg
Branch: MAIN
Changes since 1.212: +3 -15 lines
Diff to previous 1.212
Remove deprecated libAfterImage image backend.

Revision 1.212 - (view) (download) (annotate) - [select for diffs]
Sun Jan 1 14:31:28 2012 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
CVS Tags: rxvt-unicode-rel-9_15
Changes since 1.211: +2 -1 lines
Diff to previous 1.211
Disable blur when either the horizontal or vertical radius is 0.

It is not useful to allow a 0 radius value, i.e., apply horizontal or
vertical blur only.

Revision 1.211 - (view) (download) (annotate) - [select for diffs]
Sat Dec 31 17:17:12 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.210: +3 -3 lines
Diff to previous 1.210
Doc fix.

Revision 1.210 - (view) (download) (annotate) - [select for diffs]
Mon Dec 26 15:20:58 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.209: +1 -1 lines
Diff to previous 1.209
Fix typo.

Revision 1.209 - (view) (download) (annotate) - [select for diffs]
Mon Dec 12 13:56:03 2011 UTC (12 years, 5 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_14
Changes since 1.208: +5 -5 lines
Diff to previous 1.208
Rename 'pscale' and 'root' pixmap operations to 'keep-aspect' and 'root-align', respectively.

Revision 1.208 - (view) (download) (annotate) - [select for diffs]
Fri Dec 2 09:13:50 2011 UTC (12 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.207: +2 -1 lines
Diff to previous 1.207
Reimplement keysym list parsing in a perl extension.

Revision 1.207 - (view) (download) (annotate) - [select for diffs]
Tue Nov 22 13:35:10 2011 UTC (12 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.206: +1 -1 lines
Diff to previous 1.206
Change the urxvtd default socket path to $HOME/.urxvt/urxvtd-<nodename>.

Revision 1.206 - (view) (download) (annotate) - [select for diffs]
Sun Nov 20 10:58:58 2011 UTC (12 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.205: +2 -2 lines
Diff to previous 1.205
Look for perl extensions also in $HOME/.urxvt/ext.

Revision 1.205 - (view) (download) (annotate) - [select for diffs]
Fri Nov 18 02:15:22 2011 UTC (12 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.204: +47 -22 lines
Diff to previous 1.204
Doc fix.

Revision 1.204 - (view) (download) (annotate) - [select for diffs]
Sun Aug 14 22:01:25 2011 UTC (12 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.203: +1 -1 lines
Diff to previous 1.203
Honour scale factors when pscale is enabled rather than always scaling to the window size.

Revision 1.203 - (view) (download) (annotate) - [select for diffs]
Sat Aug 13 09:05:43 2011 UTC (12 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.202: +9 -9 lines
Diff to previous 1.202
Do not special case the scale/position string of the bg image.

Make it possible to specify it anywhere in the list rather than just at
the beginning, like other operations.

Revision 1.202 - (view) (download) (annotate) - [select for diffs]
Thu Aug 11 08:37:17 2011 UTC (12 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.201: +25 -6 lines
Diff to previous 1.201
Overhaul of the bg image operations.

Remove old operations in favour of simple operations to perform tiling,
proportional scaling and root window-like positioning. Add styles, in
terms of the low level scale, position and operations settings, for the
most common setups (old operations are still parsed for backward
compatibility).

Revision 1.201 - (view) (download) (annotate) - [select for diffs]
Wed Aug 10 07:34:35 2011 UTC (12 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.200: +1 -0 lines
Diff to previous 1.200
Add 'center' bg image operation.

Revision 1.200 - (view) (download) (annotate) - [select for diffs]
Wed Aug 10 07:28:35 2011 UTC (12 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.199: +0 -2 lines
Diff to previous 1.199
Remove 'hscale' and 'vscale' bg image operations.

These operations are most likely useless for any user.

Revision 1.199 - (view) (download) (annotate) - [select for diffs]
Tue Aug 9 21:48:00 2011 UTC (12 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.198: +0 -1 lines
Diff to previous 1.198
Remove 'auto' bg image operation.

This operation is equivalent to the 'scale' operation so there is no
reason to keep it.

Revision 1.198 - (view) (download) (annotate) - [select for diffs]
Tue Aug 9 18:41:31 2011 UTC (12 years, 10 months ago) by sf-exg
Branch: MAIN
Changes since 1.197: +2 -2 lines
Diff to previous 1.197
Do not tile the bg image when a scale value of 0 is specified.

This change makes it possible to disable both scaling and tiling (tiling
can still be enabled with the 'tile' tag).

Revision 1.197 - (view) (download) (annotate) - [select for diffs]
Sat May 7 18:29:17 2011 UTC (13 years, 1 month ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_12
Changes since 1.196: +14 -0 lines
Diff to previous 1.196
Restore support for 'list' keysym syntax in a less intrusive way.

Revision 1.196 - (view) (download) (annotate) - [select for diffs]
Fri May 6 10:18:00 2011 UTC (13 years, 1 month ago) by root
Branch: MAIN
Changes since 1.195: +4 -3 lines
Diff to previous 1.195
*** empty log message ***

Revision 1.195 - (view) (download) (annotate) - [select for diffs]
Sat Apr 30 18:45:38 2011 UTC (13 years, 1 month ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_11
Changes since 1.194: +0 -14 lines
Diff to previous 1.194
Remove 'list' syntax for keysym resources, it serves no useful purpose.

Revision 1.194 - (view) (download) (annotate) - [select for diffs]
Wed Mar 9 13:24:30 2011 UTC (13 years, 3 months ago) by sf-exg
Branch: MAIN
Changes since 1.193: +4 -0 lines
Diff to previous 1.193
Document 'thickness' resource.

Revision 1.193 - (view) (download) (annotate) - [select for diffs]
Mon Dec 20 11:35:13 2010 UTC (13 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.192: +4 -4 lines
Diff to previous 1.192
Doc fix.

Revision 1.192 - (view) (download) (annotate) - [select for diffs]
Sat Dec 18 12:20:18 2010 UTC (13 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.191: +2 -2 lines
Diff to previous 1.191
Doc fixes.

Revision 1.191 - (view) (download) (annotate) - [select for diffs]
Thu Dec 9 14:19:39 2010 UTC (13 years, 6 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_10
Changes since 1.190: +1 -1 lines
Diff to previous 1.190
Update information about my contributions.

Revision 1.190 - (view) (download) (annotate) - [select for diffs]
Thu Dec 9 10:03:56 2010 UTC (13 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.189: +5 -2 lines
Diff to previous 1.189
Doc fixes.

Revision 1.189 - (view) (download) (annotate) - [select for diffs]
Tue Nov 23 18:52:13 2010 UTC (13 years, 6 months ago) by sf-exg
Branch: MAIN
Changes since 1.188: +4 -4 lines
Diff to previous 1.188
Doc fixes.

Revision 1.188 - (view) (download) (annotate) - [select for diffs]
Thu Nov 4 12:13:20 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
CVS Tags: rel-9_09
Changes since 1.187: +13 -23 lines
Diff to previous 1.187
Doc fixes.

Revision 1.187 - (view) (download) (annotate) - [select for diffs]
Fri Oct 15 10:46:57 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.186: +0 -6 lines
Diff to previous 1.186
Update Changes and docs.

Revision 1.186 - (view) (download) (annotate) - [select for diffs]
Wed Oct 13 23:36:00 2010 UTC (13 years, 7 months ago) by sf-exg
Branch: MAIN
Changes since 1.185: +4 -3 lines
Diff to previous 1.185
Update Changes and docs.

Revision 1.185 - (view) (download) (annotate) - [select for diffs]
Mon Oct 4 07:18:23 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.184: +1 -1 lines
Diff to previous 1.184
Fix typo.

Revision 1.184 - (view) (download) (annotate) - [select for diffs]
Sat Sep 11 21:28:59 2010 UTC (13 years, 8 months ago) by sf-exg
Branch: MAIN
Changes since 1.183: +3 -5 lines
Diff to previous 1.183
Update backgroundPixmap docs to match reality.

Revision 1.183 - (view) (download) (annotate) - [select for diffs]
Fri Sep 3 10:16:12 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.182: +2 -2 lines
Diff to previous 1.182
Add gdk-pixbuf docs.

Revision 1.182 - (view) (download) (annotate) - [select for diffs]
Wed Aug 18 22:48:08 2010 UTC (13 years, 9 months ago) by sf-exg
Branch: MAIN
Changes since 1.181: +1 -1 lines
Diff to previous 1.181
Fix typos.

Revision 1.181 - (view) (download) (annotate) - [select for diffs]
Tue Jun 15 13:05:39 2010 UTC (13 years, 11 months ago) by sf-exg
Branch: MAIN
Changes since 1.180: +1 -1 lines
Diff to previous 1.180
Doc fix.

Revision 1.180 - (view) (download) (annotate) - [select for diffs]
Tue Jun 15 11:45:48 2010 UTC (13 years, 11 months ago) by root
Branch: MAIN
Changes since 1.179: +1 -1 lines
Diff to previous 1.179
shift-backspace is ctrl-backspace

Revision 1.179 - (view) (download) (annotate) - [select for diffs]
Sun May 23 01:06:47 2010 UTC (14 years ago) by root
Branch: MAIN
Changes since 1.178: +5 -1 lines
Diff to previous 1.178
nail it

Revision 1.178 - (view) (download) (annotate) - [select for diffs]
Sun May 23 01:05:01 2010 UTC (14 years ago) by root
Branch: MAIN
Changes since 1.177: +20 -11 lines
Diff to previous 1.177
nail it

Revision 1.177 - (view) (download) (annotate) - [select for diffs]
Sun May 23 00:48:53 2010 UTC (14 years ago) by root
Branch: MAIN
Changes since 1.176: +8 -8 lines
Diff to previous 1.176
256c enable docs, fix speling to colour everywhere

Revision 1.176 - (view) (download) (annotate) - [select for diffs]
Sat Apr 17 23:00:45 2010 UTC (14 years, 1 month ago) by sf-exg
Branch: MAIN
Changes since 1.175: +10 -5 lines
Diff to previous 1.175
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.175 - (view) (download) (annotate) - [select for diffs]
Mon Apr 12 17:06:55 2010 UTC (14 years, 1 month ago) by root
Branch: MAIN
Changes since 1.174: +1 -1 lines
Diff to previous 1.174
*** empty log message ***

Revision 1.174 - (view) (download) (annotate) - [select for diffs]
Wed Jan 6 12:10:45 2010 UTC (14 years, 5 months ago) by sf-exg
Branch: MAIN
Changes since 1.173: +4 -0 lines
Diff to previous 1.173
Add iso14755 option to disable ISO 14755 at runtime.

Revision 1.173 - (view) (download) (annotate) - [select for diffs]
Wed Dec 16 05:20:50 2009 UTC (14 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-9_07
Changes since 1.172: +3 -7 lines
Diff to previous 1.172
*** empty log message ***

Revision 1.172 - (view) (download) (annotate) - [select for diffs]
Fri Nov 13 23:23:03 2009 UTC (14 years, 6 months ago) by root
Branch: MAIN
Changes since 1.171: +1 -1 lines
Diff to previous 1.171
*** empty log message ***

Revision 1.171 - (view) (download) (annotate) - [select for diffs]
Sat May 30 08:53:48 2009 UTC (15 years ago) by root
Branch: MAIN
Changes since 1.170: +9 -0 lines
Diff to previous 1.170
*** empty log message ***

Revision 1.170 - (view) (download) (annotate) - [select for diffs]
Sat May 30 08:51:23 2009 UTC (15 years ago) by root
Branch: MAIN
Changes since 1.169: +7 -0 lines
Diff to previous 1.169
*** empty log message ***

Revision 1.169 - (view) (download) (annotate) - [select for diffs]
Wed Nov 5 00:14:18 2008 UTC (15 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-9_06
Changes since 1.168: +1 -1 lines
Diff to previous 1.168
*** empty log message ***

Revision 1.168 - (view) (download) (annotate) - [select for diffs]
Tue Nov 4 11:03:29 2008 UTC (15 years, 7 months ago) by root
Branch: MAIN
Changes since 1.167: +11 -1 lines
Diff to previous 1.167
iconfile patch

Revision 1.167 - (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.166: +2 -0 lines
Diff to previous 1.166
*** empty log message ***

Revision 1.166 - (view) (download) (annotate) - [select for diffs]
Fri Oct 10 13:23:56 2008 UTC (15 years, 8 months ago) by root
Branch: MAIN
Changes since 1.165: +2 -4 lines
Diff to previous 1.165
*** empty log message ***

Revision 1.165 - (view) (download) (annotate) - [select for diffs]
Thu Oct 2 17:06:50 2008 UTC (15 years, 8 months ago) by root
Branch: MAIN
Changes since 1.164: +2 -1 lines
Diff to previous 1.164
*** empty log message ***

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

Revision 1.163 - (view) (download) (annotate) - [select for diffs]
Mon May 19 14:00:02 2008 UTC (16 years ago) by root
Branch: MAIN
Changes since 1.162: +2 -2 lines
Diff to previous 1.162
µikachu does fixing

Revision 1.162 - (view) (download) (annotate) - [select for diffs]
Fri May 16 19:27:16 2008 UTC (16 years ago) by root
Branch: MAIN
Changes since 1.161: +5 -4 lines
Diff to previous 1.161
*** empty log message ***

Revision 1.161 - (view) (download) (annotate) - [select for diffs]
Sat Jan 26 14:24:42 2008 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
CVS Tags: rel-9_01, rel-9_02
Changes since 1.160: +7 -0 lines
Diff to previous 1.160
Change the compile-time option to disable xft double-buffering to a
runtime one.

Revision 1.160 - (view) (download) (annotate) - [select for diffs]
Fri Jan 25 18:42:23 2008 UTC (16 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-9_0
Changes since 1.159: +5 -0 lines
Diff to previous 1.159
*** empty log message ***

Revision 1.159 - (view) (download) (annotate) - [select for diffs]
Wed Jan 23 14:34:00 2008 UTC (16 years, 4 months ago) by root
Branch: MAIN
Changes since 1.158: +1 -1 lines
Diff to previous 1.158
better document alpha handling, also shift the blame

Revision 1.158 - (view) (download) (annotate) - [select for diffs]
Wed Jan 23 14:33:42 2008 UTC (16 years, 4 months ago) by root
Branch: MAIN
Changes since 1.157: +39 -17 lines
Diff to previous 1.157
better document alpha handling, also shift the blame

Revision 1.157 - (view) (download) (annotate) - [select for diffs]
Sat Jan 19 16:20:09 2008 UTC (16 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.156: +14 -14 lines
Diff to previous 1.156
Group scrollbar options together.

Revision 1.156 - (view) (download) (annotate) - [select for diffs]
Sun Dec 30 22:43:40 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
Changes since 1.155: +7 -7 lines
Diff to previous 1.155
Fix style.

Revision 1.155 - (view) (download) (annotate) - [select for diffs]
Mon Dec 17 23:52:44 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_9
Changes since 1.154: +0 -7 lines
Diff to previous 1.154
Nuke unused 'selectstyle' resource.

Revision 1.154 - (view) (download) (annotate) - [select for diffs]
Fri Dec 14 09:06:36 2007 UTC (16 years, 5 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_8
Changes since 1.153: +2 -2 lines
Diff to previous 1.153
Doc fix by μikachu.

Revision 1.153 - (view) (download) (annotate) - [select for diffs]
Wed Dec 12 19:57:13 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.152: +3 -0 lines
Diff to previous 1.152
*** empty log message ***

Revision 1.152 - (view) (download) (annotate) - [select for diffs]
Wed Dec 12 19:56:37 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.151: +1 -1 lines
Diff to previous 1.151
*** empty log message ***

Revision 1.151 - (view) (download) (annotate) - [select for diffs]
Wed Dec 12 19:55:55 2007 UTC (16 years, 5 months ago) by root
Branch: MAIN
Changes since 1.150: +5 -3 lines
Diff to previous 1.150
*** empty log message ***

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

Revision 1.149 - (view) (download) (annotate) - [select for diffs]
Fri Dec 7 13:49:43 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.148: +2 -2 lines
Diff to previous 1.148
Fix typo.

Revision 1.148 - (view) (download) (annotate) - [select for diffs]
Sat Nov 24 17:07:46 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
Changes since 1.147: +10 -11 lines
Diff to previous 1.147
Reword and update transparency doc.

Revision 1.147 - (view) (download) (annotate) - [select for diffs]
Fri Nov 23 11:18:04 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-8_6, rel-8_7
Changes since 1.146: +14 -0 lines
Diff to previous 1.146
*** empty log message ***

Revision 1.146 - (view) (download) (annotate) - [select for diffs]
Mon Nov 19 09:41:09 2007 UTC (16 years, 6 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_5a
Changes since 1.145: +1 -1 lines
Diff to previous 1.145
*** empty log message ***

Revision 1.145 - (view) (download) (annotate) - [select for diffs]
Fri Nov 16 11:14:12 2007 UTC (16 years, 6 months ago) by root
Branch: MAIN
Changes since 1.144: +20 -20 lines
Diff to previous 1.144
slightly improve docs

Revision 1.144 - (view) (download) (annotate) - [select for diffs]
Thu Nov 15 18:40:10 2007 UTC (16 years, 6 months ago) by sasha
Branch: MAIN
Changes since 1.143: +13 -4 lines
Diff to previous 1.143
added new geometry op of :root to implement automove-background functionality internally , since absolute pixmap placement no longer supported

Revision 1.143 - (view) (download) (annotate) - [select for diffs]
Sat Nov 10 09:40:51 2007 UTC (16 years, 7 months ago) by ayin
Branch: MAIN
Changes since 1.142: +21 -21 lines
Diff to previous 1.142
Remove trailing whitespace.

Revision 1.142 - (view) (download) (annotate) - [select for diffs]
Wed Oct 31 14:10:33 2007 UTC (16 years, 7 months ago) by ayin
Branch: MAIN
Changes since 1.141: +1 -1 lines
Diff to previous 1.141
Fix typo.

Revision 1.141 - (view) (download) (annotate) - [select for diffs]
Mon Oct 29 13:40:41 2007 UTC (16 years, 7 months ago) by sasha
Branch: MAIN
Changes since 1.140: +3 -2 lines
Diff to previous 1.140
amended docs for -sh parameter to have range between 0..200

Revision 1.140 - (view) (download) (annotate) - [select for diffs]
Fri Oct 26 18:27:29 2007 UTC (16 years, 7 months ago) by sasha
Branch: MAIN
CVS Tags: rel-8_4
Changes since 1.139: +11 -6 lines
Diff to previous 1.139
updated documentation to change inheritPixmap resource to transparent

Revision 1.139 - (view) (download) (annotate) - [select for diffs]
Wed Oct 17 13:53:42 2007 UTC (16 years, 7 months ago) by ayin
Branch: MAIN
Changes since 1.138: +2 -11 lines
Diff to previous 1.138
Update resource syntax doc to reflect the removal of rxvt own parsing.

Revision 1.138 - (view) (download) (annotate) - [select for diffs]
Thu Sep 20 15:56:41 2007 UTC (16 years, 8 months ago) by sasha
Branch: MAIN
Changes since 1.137: +8 -8 lines
Diff to previous 1.137
updated docs to reflect changes in support for transparency and background images

Revision 1.137 - (view) (download) (annotate) - [select for diffs]
Sat Sep 1 09:38:50 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.136: +2 -2 lines
Diff to previous 1.136
http://sourceforge.net/tracker/index.php?func=detail&aid=1702263&group_id=221&atid=100221

Revision 1.136 - (view) (download) (annotate) - [select for diffs]
Mon Aug 13 10:01:18 2007 UTC (16 years, 9 months ago) by root
Branch: MAIN
Changes since 1.135: +1 -1 lines
Diff to previous 1.135
*** empty log message ***

Revision 1.135 - (view) (download) (annotate) - [select for diffs]
Wed Aug 1 01:45:06 2007 UTC (16 years, 10 months ago) by ayin
Branch: MAIN
CVS Tags: rel-8_3
Changes since 1.134: +3 -3 lines
Diff to previous 1.134
*** empty log message ***

Revision 1.134 - (view) (download) (annotate) - [select for diffs]
Tue Jul 31 22:23:56 2007 UTC (16 years, 10 months ago) by sasha
Branch: MAIN
Changes since 1.133: +17 -11 lines
Diff to previous 1.133
updated docs to new stuff in tinting and bluring

Revision 1.133 - (view) (download) (annotate) - [select for diffs]
Sat Jul 28 20:15:18 2007 UTC (16 years, 10 months ago) by ayin
Branch: MAIN
Changes since 1.132: +1 -1 lines
Diff to previous 1.132
*** empty log message ***

Revision 1.132 - (view) (download) (annotate) - [select for diffs]
Mon Jun 18 13:38:12 2007 UTC (16 years, 11 months ago) by root
Branch: MAIN
Changes since 1.131: +24 -4 lines
Diff to previous 1.131
less rough skipscroll

Revision 1.131 - (view) (download) (annotate) - [select for diffs]
Sat Jun 9 09:05:38 2007 UTC (17 years ago) by ayin
Branch: MAIN
Changes since 1.130: +4 -0 lines
Diff to previous 1.130
add iso14755_52 resource to disable iso14755 5.2.

Revision 1.130 - (view) (download) (annotate) - [select for diffs]
Fri Jun 8 20:04:12 2007 UTC (17 years ago) by sasha
Branch: MAIN
Changes since 1.129: +45 -16 lines
Diff to previous 1.129
added preliminary support to use libAfterImage for background pixmap loading and rendering of transparency effects including blending of pixmap over background using several methods, and gaussian blurr of the transparency background

Revision 1.129 - (view) (download) (annotate) - [select for diffs]
Mon May 28 20:34:56 2007 UTC (17 years ago) by root
Branch: MAIN
Changes since 1.128: +10 -8 lines
Diff to previous 1.128
*** empty log message ***

Revision 1.128 - (view) (download) (annotate) - [select for diffs]
Wed May 16 22:37:10 2007 UTC (17 years ago) by root
Branch: MAIN
Changes since 1.127: +6 -6 lines
Diff to previous 1.127
*** empty log message ***

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

Revision 1.126 - (view) (download) (annotate) - [select for diffs]
Sun Feb 18 10:54:49 2007 UTC (17 years, 3 months ago) by ayin
Branch: MAIN
Changes since 1.125: +1 -1 lines
Diff to previous 1.125
*** empty log message ***

Revision 1.125 - (view) (download) (annotate) - [select for diffs]
Fri Jan 19 23:45:03 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-8_2
Changes since 1.124: +2 -2 lines
Diff to previous 1.124
*** empty log message ***

Revision 1.124 - (view) (download) (annotate) - [select for diffs]
Sat Jan 13 15:06:54 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
Changes since 1.123: +3 -3 lines
Diff to previous 1.123
*** empty log message ***

Revision 1.123 - (view) (download) (annotate) - [select for diffs]
Thu Dec 7 03:02:44 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-8_1
Changes since 1.122: +5 -3 lines
Diff to previous 1.122
fix description of [percent]color color format

Revision 1.122 - (view) (download) (annotate) - [select for diffs]
Sat Nov 25 14:50:16 2006 UTC (17 years, 6 months ago) by root
Branch: MAIN
Changes since 1.121: +1 -1 lines
Diff to previous 1.121
*** empty log message ***

Revision 1.121 - (view) (download) (annotate) - [select for diffs]
Sun Aug 20 02:47:26 2006 UTC (17 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-8_0
Changes since 1.120: +1 -1 lines
Diff to previous 1.120
*** empty log message ***

Revision 1.120 - (view) (download) (annotate) - [select for diffs]
Sat Aug 12 01:37:11 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
Changes since 1.119: +2 -1 lines
Diff to previous 1.119
*** empty log message ***

Revision 1.119 - (view) (download) (annotate) - [select for diffs]
Mon Aug 7 16:04:29 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
CVS Tags: rel-7_9
Changes since 1.118: +1 -1 lines
Diff to previous 1.118
*** empty log message ***

Revision 1.118 - (view) (download) (annotate) - [select for diffs]
Mon Aug 7 15:59:44 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
Changes since 1.117: +10 -10 lines
Diff to previous 1.117
*** empty log message ***

Revision 1.117 - (view) (download) (annotate) - [select for diffs]
Fri Jul 28 09:14:10 2006 UTC (17 years, 10 months ago) by root
Branch: MAIN
Changes since 1.116: +2 -1 lines
Diff to previous 1.116
goddamn

Revision 1.116 - (view) (download) (annotate) - [select for diffs]
Mon Jul 10 04:03:09 2006 UTC (17 years, 11 months ago) by root
Branch: MAIN
Changes since 1.115: +2 -2 lines
Diff to previous 1.115
*** empty log message ***

Revision 1.115 - (view) (download) (annotate) - [select for diffs]
Mon Jul 10 04:01:33 2006 UTC (17 years, 11 months ago) by root
Branch: MAIN
Changes since 1.114: +1 -1 lines
Diff to previous 1.114
*** empty log message ***

Revision 1.114 - (view) (download) (annotate) - [select for diffs]
Thu Jul 6 19:43:21 2006 UTC (17 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-7_8
Changes since 1.113: +8 -8 lines
Diff to previous 1.113
*** empty log message ***

Revision 1.113 - (view) (download) (annotate) - [select for diffs]
Sun Apr 2 17:07:32 2006 UTC (18 years, 2 months ago) by root
Branch: MAIN
Changes since 1.112: +1 -1 lines
Diff to previous 1.112
*** empty log message ***

Revision 1.112 - (view) (download) (annotate) - [select for diffs]
Mon Feb 6 05:55:33 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-7_6, rel-7_7
Changes since 1.111: +9 -0 lines
Diff to previous 1.111
*** empty log message ***

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

Revision 1.110 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 22:38:43 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.109: +10 -1 lines
Diff to previous 1.109
*** empty log message ***

Revision 1.109 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 22:27:04 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.108: +2 -2 lines
Diff to previous 1.108
*** empty log message ***

Revision 1.108 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 21:45:47 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.107: +6 -4 lines
Diff to previous 1.107
*** empty log message ***

Revision 1.107 - (view) (download) (annotate) - [select for diffs]
Sun Jan 29 20:51:27 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.106: +9 -1 lines
Diff to previous 1.106
*** empty log message ***

Revision 1.106 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 21:03:03 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-7_3, rel-7_3a, rel-7_4
Changes since 1.105: +10 -0 lines
Diff to previous 1.105
*** empty log message ***

Revision 1.105 - (view) (download) (annotate) - [select for diffs]
Wed Jan 25 13:26:48 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.104: +2 -1 lines
Diff to previous 1.104
*** empty log message ***

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

Revision 1.103 - (view) (download) (annotate) - [select for diffs]
Tue Jan 24 17:31:45 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.102: +6 -4 lines
Diff to previous 1.102
*** empty log message ***

Revision 1.102 - (view) (download) (annotate) - [select for diffs]
Fri Jan 20 18:04:32 2006 UTC (18 years, 4 months ago) by ayin
Branch: MAIN
CVS Tags: rel-7_2
Changes since 1.101: +4 -3 lines
Diff to previous 1.101
*** empty log message ***

Revision 1.101 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 23:18:55 2006 UTC (18 years, 4 months ago) by ayin
Branch: MAIN
Changes since 1.100: +1 -1 lines
Diff to previous 1.100
*** empty log message ***

Revision 1.100 - (view) (download) (annotate) - [select for diffs]
Thu Jan 19 18:02:28 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-7_1
Changes since 1.99: +9 -5 lines
Diff to previous 1.99
*** empty log message ***

Revision 1.99 - (view) (download) (annotate) - [select for diffs]
Wed Jan 18 19:43:51 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.98: +14 -4 lines
Diff to previous 1.98
*** empty log message ***

Revision 1.98 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 15:12:48 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.97: +0 -9 lines
Diff to previous 1.97
*** empty log message ***

Revision 1.97 - (view) (download) (annotate) - [select for diffs]
Mon Jan 16 15:07:27 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.96: +10 -15 lines
Diff to previous 1.96
*** empty log message ***

Revision 1.96 - (view) (download) (annotate) - [select for diffs]
Fri Jan 13 12:40:46 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-7_0
Changes since 1.95: +6 -6 lines
Diff to previous 1.95
*** empty log message ***

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

Revision 1.94 - (view) (download) (annotate) - [select for diffs]
Thu Jan 12 05:37:34 2006 UTC (18 years, 4 months ago) by root
Branch: MAIN
Changes since 1.93: +5 -0 lines
Diff to previous 1.93
*** empty log message ***

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

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

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

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

Revision 1.89 - (view) (download) (annotate) - [select for diffs]
Sun Jan 8 08:43:11 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.88: +5 -3 lines
Diff to previous 1.88
*** empty log message ***

Revision 1.88 - (view) (download) (annotate) - [select for diffs]
Sun Jan 8 00:20:12 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.87: +18 -9 lines
Diff to previous 1.87
*** empty log message ***

Revision 1.87 - (view) (download) (annotate) - [select for diffs]
Fri Jan 6 20:50:58 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.86: +2 -2 lines
Diff to previous 1.86
*** empty log message ***

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

Revision 1.85 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 20:43:37 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-6_3
Changes since 1.84: +20 -6 lines
Diff to previous 1.84
*** empty log message ***

Revision 1.84 - (view) (download) (annotate) - [select for diffs]
Wed Jan 4 05:35:34 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.83: +10 -5 lines
Diff to previous 1.83
*** empty log message ***

Revision 1.83 - (view) (download) (annotate) - [select for diffs]
Tue Jan 3 22:28:07 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.82: +5 -4 lines
Diff to previous 1.82
*** empty log message ***

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

Revision 1.81 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 21:41:51 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.80: +3 -3 lines
Diff to previous 1.80
*** empty log message ***

Revision 1.80 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 21:26:05 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.79: +7 -0 lines
Diff to previous 1.79
*** empty log message ***

Revision 1.79 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 20:40:20 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.78: +1 -1 lines
Diff to previous 1.78
*** empty log message ***

Revision 1.78 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 20:35:39 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.77: +11 -10 lines
Diff to previous 1.77
*** empty log message ***

Revision 1.77 - (view) (download) (annotate) - [select for diffs]
Mon Jan 2 19:36:07 2006 UTC (18 years, 5 months ago) by root
Branch: MAIN
Changes since 1.76: +26 -3 lines
Diff to previous 1.76
*** empty log message ***

Revision 1.76 - (view) (download) (annotate) - [select for diffs]
Sat Dec 31 16:06:48 2005 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-6_2
Changes since 1.75: +14 -0 lines
Diff to previous 1.75
*** empty log message ***

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

Revision 1.74 - (view) (download) (annotate) - [select for diffs]
Thu Dec 22 16:44:10 2005 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-6_0
Changes since 1.73: +19 -0 lines
Diff to previous 1.73
*** empty log message ***

Revision 1.73 - (view) (download) (annotate) - [select for diffs]
Thu Dec 15 18:14:08 2005 UTC (18 years, 5 months ago) by root
Branch: MAIN
CVS Tags: rel-5_9
Changes since 1.72: +9 -7 lines
Diff to previous 1.72
*** empty log message ***

Revision 1.72 - (view) (download) (annotate) - [select for diffs]
Wed Dec 7 20:55:52 2005 UTC (18 years, 6 months ago) by root
Branch: MAIN
Changes since 1.71: +1 -1 lines
Diff to previous 1.71
*** empty log message ***

Revision 1.71 - (view) (download) (annotate) - [select for diffs]
Tue Oct 25 20:22:39 2005 UTC (18 years, 7 months ago) by root
Branch: MAIN
CVS Tags: rel-5_8
Changes since 1.70: +0 -8 lines
Diff to previous 1.70
*** empty log message ***

Revision 1.70 - (view) (download) (annotate) - [select for diffs]
Tue Oct 25 19:41:21 2005 UTC (18 years, 7 months ago) by root
Branch: MAIN
Changes since 1.69: +4 -3 lines
Diff to previous 1.69
*** empty log message ***

Revision 1.69 - (view) (download) (annotate) - [select for diffs]
Tue Oct 25 19:04:45 2005 UTC (18 years, 7 months ago) by root
Branch: MAIN
Changes since 1.68: +4 -2 lines
Diff to previous 1.68
*** empty log message ***

Revision 1.68 - (view) (download) (annotate) - [select for diffs]
Thu Aug 11 02:05:07 2005 UTC (18 years, 10 months ago) by root
Branch: MAIN
Changes since 1.67: +17 -4 lines
Diff to previous 1.67
*** empty log message ***

Revision 1.67 - (view) (download) (annotate) - [select for diffs]
Thu Jul 7 19:37:46 2005 UTC (18 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-5_7
Changes since 1.66: +2 -2 lines
Diff to previous 1.66
*** empty log message ***

Revision 1.66 - (view) (download) (annotate) - [select for diffs]
Thu Jun 30 14:02:17 2005 UTC (18 years, 11 months ago) by root
Branch: MAIN
Changes since 1.65: +7 -0 lines
Diff to previous 1.65
*** empty log message ***

Revision 1.65 - (view) (download) (annotate) - [select for diffs]
Thu Jun 30 14:00:49 2005 UTC (18 years, 11 months ago) by root
Branch: MAIN
Changes since 1.64: +2 -0 lines
Diff to previous 1.64
*** empty log message ***

Revision 1.64 - (view) (download) (annotate) - [select for diffs]
Fri Jun 17 12:05:31 2005 UTC (18 years, 11 months ago) by root
Branch: MAIN
Changes since 1.63: +3 -3 lines
Diff to previous 1.63
*** empty log message ***

Revision 1.63 - (view) (download) (annotate) - [select for diffs]
Fri Apr 22 02:09:39 2005 UTC (19 years, 1 month ago) by root
Branch: MAIN
CVS Tags: rel-5_5
Changes since 1.62: +19 -0 lines
Diff to previous 1.62
*** empty log message ***

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

Revision 1.61 - (view) (download) (annotate) - [select for diffs]
Sat Feb 19 01:07:57 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-5_2, rel-5_3
Changes since 1.60: +5 -6 lines
Diff to previous 1.60
*** empty log message ***

Revision 1.60 - (view) (download) (annotate) - [select for diffs]
Thu Feb 17 15:13:47 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
Changes since 1.59: +1 -1 lines
Diff to previous 1.59
*** empty log message ***

Revision 1.59 - (view) (download) (annotate) - [select for diffs]
Thu Feb 17 15:07:48 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
Changes since 1.58: +38 -2 lines
Diff to previous 1.58
*** empty log message ***

Revision 1.58 - (view) (download) (annotate) - [select for diffs]
Wed Feb 16 21:49:36 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
Changes since 1.57: +2 -2 lines
Diff to previous 1.57
*** empty log message ***

Revision 1.57 - (view) (download) (annotate) - [select for diffs]
Mon Feb 14 18:50:57 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-5_1
Changes since 1.56: +2 -0 lines
Diff to previous 1.56
*** empty log message ***

Revision 1.56 - (view) (download) (annotate) - [select for diffs]
Mon Feb 14 18:47:54 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
Changes since 1.55: +14 -4 lines
Diff to previous 1.55
*** empty log message ***

Revision 1.55 - (view) (download) (annotate) - [select for diffs]
Mon Feb 14 10:44:50 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
Changes since 1.54: +3 -3 lines
Diff to previous 1.54
*** empty log message ***

Revision 1.54 - (view) (download) (annotate) - [select for diffs]
Fri Feb 11 18:55:39 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
Changes since 1.53: +2 -2 lines
Diff to previous 1.53
*** empty log message ***

Revision 1.53 - (view) (download) (annotate) - [select for diffs]
Fri Feb 11 18:14:07 2005 UTC (19 years, 3 months ago) by root
Branch: MAIN
CVS Tags: rel-5_0
Changes since 1.48: +98 -17 lines
Diff to previous 1.48
*** empty log message ***

Revision 1.48 - (view) (download) (annotate) - [select for diffs]
Thu Feb 3 10:24:10 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-4_9
Changes since 1.43: +76 -33 lines
Diff to previous 1.43
*** empty log message ***

Revision 1.43 - (view) (download) (annotate) - [select for diffs]
Sun Jan 16 19:22:16 2005 UTC (19 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-4_8
Changes since 1.36: +53 -16 lines
Diff to previous 1.36
*** empty log message ***

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

Revision 1.35 - (view) (download) (annotate) - [select for diffs]
Wed Dec 15 00:53:23 2004 UTC (19 years, 5 months ago) by root
Branch: MAIN
Changes since 1.34: +5 -0 lines
Diff to previous 1.34
*** empty log message ***

Revision 1.34 - (view) (download) (annotate) - [select for diffs]
Wed Dec 1 02:29:14 2004 UTC (19 years, 6 months ago) by root
Branch: MAIN
CVS Tags: rel-4_2, rel-4_3, rel-4_4
Changes since 1.32: +23 -3 lines
Diff to previous 1.32
*** empty log message ***

Revision 1.32 - (view) (download) (annotate) - [select for diffs]
Sat Oct 9 11:18:12 2004 UTC (19 years, 8 months ago) by root
Branch: MAIN
CVS Tags: rel-4_1
Changes since 1.30: +0 -4 lines
Diff to previous 1.30
*** empty log message ***

Revision 1.30 - (view) (download) (annotate) - [select for diffs]
Wed Sep 8 17:10:23 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-4_0
Changes since 1.22: +15 -482 lines
Diff to previous 1.22
*** empty log message ***

Revision 1.22 - (view) (download) (annotate) - [select for diffs]
Tue Aug 24 15:46:27 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_8
Changes since 1.12: +216 -32 lines
Diff to previous 1.12
*** empty log message ***

Revision 1.12 - (view) (download) (annotate) - [select for diffs]
Mon Aug 16 02:09:28 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_7
Changes since 1.5: +173 -33 lines
Diff to previous 1.5
*** empty log message ***

Revision 1.5 - (view) (download) (annotate) - [select for diffs]
Sat Aug 14 03:00:32 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
CVS Tags: rel-3_6
Changes since 1.4: +108 -25 lines
Diff to previous 1.4
*** empty log message ***

Revision 1.4 - (view) (download) (annotate) - [select for diffs]
Fri Aug 13 03:47:09 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
Changes since 1.3: +2 -2 lines
Diff to previous 1.3
*** empty log message ***

Revision 1.3 - (view) (download) (annotate) - [select for diffs]
Thu Aug 12 22:22:30 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
Changes since 1.2: +238 -19 lines
Diff to previous 1.2
*** empty log message ***

Revision 1.2 - (view) (download) (annotate) - [select for diffs]
Thu Aug 12 21:30:14 2004 UTC (19 years, 9 months ago) by root
Branch: MAIN
Changes since 1.1: +43 -30 lines
Diff to previous 1.1
*** empty log message ***

Revision 1.1 - (view) (download) (annotate) - [select for diffs]
Thu Aug 12 20:42:12 2004 UTC (19 years, 9 months ago) by root
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