-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME-rlog.txt
More file actions
54 lines (53 loc) · 1.86 KB
/
README-rlog.txt
File metadata and controls
54 lines (53 loc) · 1.86 KB
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
The current code is based on rlog, as found in FreeBSD. It contains
a patch by phk@, which can be seen below. As dokuforge2 should run
on generic rcs we have to build a workaround. Nevertheless, we
document the patch FYI.
hilbert# cd /usr/src/gnu/usr.bin/rcs
hilbert# cvs diff -r1.5 -r1.2 rlog.c
Index: rlog.c
===================================================================
RCS file: /usr/ctm/cvs-cur/src/gnu/usr.bin/rcs/rlog/rlog.c,v
retrieving revision 1.5
retrieving revision 1.2
diff -r1.5 -r1.2
39,48d38
< * Revision 1.4 1994/05/12 00:37:59 phk
< * made -v produce tip-revision, which was what I wanted in the first place...
< *
< * Revision 1.3 1994/05/11 22:39:44 phk
< * Added -v option to rlog. This gives a quick way to get a list of versions.
< *
< * Revision 1.2 1993/08/06 16:47:16 nate
< * Have rlog output be much easier to parse. (Added one line which is not
< * used by any CVS/RCS commands)
< *
207c197
< mainProg(rlogId, "rlog", "$Id: rlog.c,v 1.4 1994/05/12 00:37:59 phk Exp $")
---
> mainProg(rlogId, "rlog", "$Id: rlog.c,v 1.1.1.1 1993/06/18 04:22:17 jkh Exp $")
210c200
< "\nrlog usage: rlog -{bhLRt} [-v[string]] -ddates -l[lockers] -rrevs -sstates -w[logins] -Vn file ...";
---
> "\nrlog usage: rlog -{bhLRt} -ddates -l[lockers] -rrevs -sstates -w[logins] -Vn file ...";
223,224d212
< int versionlist;
< char *vstring;
229,230c217
< versionlist = onlylockflag = onlyRCSflag = false;
< vstring=0;
---
> onlylockflag = onlyRCSflag = false;
293,297d279
< case 'v':
< versionlist = true;
< vstring = a;
< break;
<
347,352d328
< if ( versionlist ) {
< gettree();
< aprintf(out, "%s%s %s\n", vstring, workfilename, tiprev());
< continue;
< }
<
hilbert#