summary refs log tree commit diff
path: root/bin/man1/shotty.1
blob: d5eaa780f5bb7965f2cf3fad036cda3d83624701 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
.Dd November 25, 2019
.Dt SHOTTY 1
.Os
.
.Sh NAME
.Nm shotty
.Nd terminal capture
.
.Sh SYNOPSIS
.Nm
.Op Fl Bdns
.Op Fl b Ar bg
.Op Fl f Ar fg
.Op Fl h Ar rows
.Op Fl w Ar cols
.Op Ar file
.
.Sh DESCRIPTION
.Nm
interprets terminal output from
.Ar file
or standard input
and produces HTML
.Sy <pre>
on standard output.
.
.Pp
Terminal output
can be captured with
.Xr ptee 1 .
.Nm
targets compatibility with
.Ev TERM Ns = Ns Cm xterm
and
.Ev TERM Ns = Ns Cm xterm-256color
as used by
.Xr ncurses 3 .
A snapshot of the terminal
is output each time
a media copy sequence occurs,
or once at the end of the capture.
.
.Pp
HTML output uses the classes
.Sy bg Ns Va n
and
.Sy fg Ns Va n ,
and inline styles for
bold, italic and underline.
CSS for colors can be generated with
.Xr scheme 1 .
.
.Pp
The arguments are as follows:
.Bl -tag -width "-w cols"
.It Fl B
Replace bold with bright colors.
.
.It Fl b Ar bg
Set the default background color.
The default value is 0 (black).
.
.It Fl d
Output the terminal state
following each control sequence.
.
.It Fl f Ar fg
Set the default foreground color.
The default value is 7 (white).
.
.It Fl h Ar rows
Set the terminal height.
The default value is 24.
.
.It Fl n
Do not show the cursor.
.
.It Fl s
Set the terminal size
from the current terminal size.
.
.It Fl w Ar cols
Set the terminal width.
The default value is 80.
.El
.
.Sh EXAMPLES
.Dl ptee htop | shotty -s > htop.html
.
.Sh SEE ALSO
.Xr ptee 1 ,
.Xr scheme 1
commit. The drawback is that the "Log" link in the top bar of such a page links to the log limited by the old name, so it will only show pre-rename commits. I consider this a reasonable trade-off since the "Back" button still works and the log matches the path displayed in the top bar. Since following renames requires running diff on every commit we consider, I've added a knob to the configuration file to globally enable/disable this feature. Note that we may consider a large number of commits the revision walking machinery no longer performs any path limitation so we have to examine every commit until we find a page full of commits that affect the target path or something related to it. Suggested-by: René Neumann <necoro@necoro.eu> Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12shared: make cgit_diff_tree_cb publicJohn Keeping This will allow us to use this nice wrapper function elsewhere, avoiding dealing with the diff queue when we only need to inspect a filepair. Signed-off-by: John Keeping <john@keeping.me.uk> 2015-08-12t0110: Chain together using &&Jason A. Donenfeld 2015-08-12about: always ensure page has a trailing slashJason A. Donenfeld Otherwise we can't easily embed links to other /about/ pages. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2015-08-12filters: apply HTML escapingLazaros Koromilas http://www.w3.org/International/questions/qa-escapes#use 2015-08-12git: update to v2.5.0Christian Hesse Update to git version v2.5.0. * Upstream commit 5455ee0573a22bb793a7083d593ae1ace909cd4c (Merge branch 'bc/object-id') changed API: for_each_ref() callback functions were taught to name the objects not with "unsigned char sha1[20]" but with "struct object_id". * Upstream commit dcf692625ac569fefbe52269061230f4fde10e47 (path.c: make get_pathname() call sites return const char *) Signed-off-by: Christian Hesse <mail@eworm.de> 2015-08-12Fix processing of repo.hide and repo.ignoreDaniel Reichelt