forked from viewvc/viewvc.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (65 loc) · 2.46 KB
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>ViewVC: Repository Browsing</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<link rel="stylesheet" type="text/css" href="./styles.css"/>
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
</head>
<body>
<div id="title">
<a href="http://www.viewvc.org/"><img
src="./images/title.jpg" alt="ViewVC: Repository Browsing"/></a>
</div>
<div id="menu">
<p><a href="./index.html">Home</a> |
<a href="./downloads">Download</a> |
<a href="./faq.html">FAQ</a> |
<a href="./who.html">About</a>
</p>
</div>
<div id="content">
<div class="highlight">
<p>This project is being developed on GitHub. See
<a href="https://github.com/viewvc/viewvc/">https://github.com/viewvc/viewvc/</a>
for details.</p>
</div> <!-- .highlight -->
<div class="section">
<h2 id="sec-what-is-viewvc">What Is ViewVC?</h2>
<div class="section-body">
<p>ViewVC is a browser interface for CVS and Subversion version
control repositories. It generates templatized HTML to present
navigable directory, revision, and change log listings. It can
display specific versions of files as well as diffs between those
versions. Basically, ViewVC provides the bulk of the report-like
functionality you expect out of your version control tool, but much
more prettily than the average textual command-line program
output.</p>
<p>Here are some screenshots of ViewVC:</p>
<p><div class="imagecaptionbox">
<a href="./images/viewvc-directory.jpg"
><img src="./images/viewvc-directory-thumb.jpg"
style="border: 1px black solid;" /></a>
<br/>Directory view</div>
<div class="imagecaptionbox">
<a href="./images/viewvc-log.jpg"
><img src="./images/viewvc-log-thumb.jpg"
style="border: 1px black solid;" /></a>
<br/>History log view</div>
<div class="imagecaptionbox">
<a href="./images/viewvc-annotate.jpg"
><img src="./images/viewvc-annotate-thumb.jpg"
style="border: 1px black solid;" /></a>
<br/>Annotation view</div>
<div class="imagecaptionbox">
<a href="./images/viewvc-revision.jpg"
><img src="./images/viewvc-revision-thumb.jpg"
style="border: 1px black solid;" /></a>
<br/>Revision/changeset view</div>
</p>
</div> <!-- section-body -->
</div> <!-- section -->
</div> <!-- #content -->
</body>
</html>