ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/web/www/cvs.xhtml
Revision: 1.10
Committed: Sun Dec 9 01:25:18 2001 UTC (22 years, 3 months ago) by tdb
Branch: MAIN
Changes since 1.9: +3 -2 lines
Log Message:
Mention the "since" feature of the cvslog.cgi.

File Contents

# User Rev Content
1 tdb 1.1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2    
3     <!--
4     cvs.shtml
5     Created by tdb1 04/06/2001
6 tdb 1.6 Last edited 06/06/2001
7 tdb 1.1 -->
8    
9    
10     <html>
11    
12     <head>
13     <title>i-scream cvs repository</title>
14     <meta name="description" content="A list of those who helped to develop the i-scream central monitoring system.">
15     <meta name="keywords" content="i-scream, project, credits, central,monitoring,system, unix, linux, nt, server, alert, acknowledgements">
16     </head>
17    
18 tdb 1.2 <body bgcolor="#ffffff" link="#0000ff" alink="#3333cc" vlink="#3333cc" text="#000066">
19 tdb 1.1
20     <table border="0" cellpadding="2" cellspacing="2">
21     <tr>
22     <td valign="top">
23     <!--#include virtual="left.inc" -->
24     </td>
25     <td valign="top">
26     <!--#include virtual="title.inc" -->
27    
28     <font face="Arial" size="2">
29     <h2>i-scream CVS Repository</h2>
30    
31     <p>The i-scream CVS Repository contains all code,
32 tdb 1.10 documentation, and other files pertaining to all i-scream projects.</p>
33 tdb 1.1
34     <h3>Web Access</h3>
35    
36 tdb 1.4 <p>We use <a href="http://viewcvs.sourceforge.net/">viewcvs</a> to provide a
37     visual frontend to the CVS Repository. It allows you to browse around the
38     repository, viewing any version of a file, and the differences between different
39     versions. There is also a link to download the latest version of any section.</p>
40 tdb 1.1
41     <p><a href="http://www.i-scream.org.uk/cgi-bin/cvs/viewcvs.cgi">http://www.i-scream.org.uk/cgi-bin/cvs/viewcvs.cgi</a></p>
42 tdb 1.4
43     <p>We also have a facility to allow people to keep tabs on what's changed
44     recently. The following are available:</p>
45    
46 tdb 1.5 <p>Commits today: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=today">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=today</a><br>
47     Commits this week: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=thisweek">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=thisweek</a><br>
48 tdb 1.10 Commits in the past 7 days: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=days&days=7">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=days&days=7</a><br>
49     Commits made since 29/03/2001: <a href="http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=since&date=2001/03/29">http://www.i-scream.org.uk/cgi-bin/cvslog.cgi?period=since&date=2001/03/29</a></p>
50 tdb 1.4
51 tdb 1.1 <h3>Anonymous CVS Access (read-only)</h3>
52    
53     <p>Anyone can access the i-scream CVS repository in
54     anonymous mode read-only mode. The following commands will allow you to check
55     out a portion of the CVS repository. To see what is available it is recommended
56     that you first look at the web frontend.</p>
57     </font>
58    
59     <pre>cvs -d :pserver:anonymous@cvs.i-scream.org.uk:/cvs/i-scream login
60     cvs -d :pserver:anonymous@cvs.i-scream.org.uk:/cvs/i-scream checkout [module]</pre>
61    
62     <font face="Arial" size="2">
63     <p>When asked for a password, simply press enter.
64     Replace [module] with the section you wish to checkout.</p>
65    
66     <h3>Developer CVS Access (write)</h3>
67    
68     <p>The i-scream development team have full write
69     access to the CVS repository. This is only available over SSH, and can be done
70     on most clients. First the following environment variables need to be set.</p>
71     </font>
72    
73     <pre>CVS_RSH = ssh
74     CVSROOT = :ext:username@cvs.i-scream.org.uk:/cvs/i-scream</pre>
75    
76     <font face="Arial" size="2">
77     <p>You should know your username and password
78     already. After setting these you will need to enter your password each time you
79     use a CVS command. Obviously this is a time wasting event, so an RSA key can be
80     generated and placed on the server for you. Please view the relevant ssh
81     manpages on how to generate an RSA key pair.</p>
82    
83     <p>After this you will be able to work with CVS as
84     normal.</p>
85    
86     <h3>Other means of accessing CVS</h3>
87    
88 tdb 1.3 <p>We currently provide <a href="http://www.polstra.com/projects/freeware/CVSup/"> CVSup</a> access to the repository, either for mirroring or
89     for maintaining an up-to-date local copy. You will probably want to create a
90     supfile that looks something like this;</p>
91     </font>
92    
93     <pre>*default host=cvsup.i-scream.org.uk
94     *default base=/home/user/sup
95     *default prefix=/home/user/i-scream
96     *default release=cvs
97     *default delete use-rel-suffix
98 tdb 1.9 *default compress
99 tdb 1.3 i-scream.source tag=.</pre>
100    
101     <font face="Arial" size="2">
102     <p>The last item in that list is the collection you which to get. The collection
103     &quot;i-scream&quot; is simply the whole repository, and is best used with no
104     tag specified for mirroring. It is most likely that you will want to do that
105     given above, which gets the latest copy of the i-scream source code.</p>
106 tdb 1.6
107     <h3>CVS Statistics</h3>
108    
109 tdb 1.8 <p>There are some statistics available on the cms module of the CVS
110 tdb 1.6 repository, generated by <a href="http://cvsstat.sourceforge.net/">cvsstat</a>,
111     that allow you to see the progress of development. They're not that exciting,
112     but do show when the work was done.</p>
113    
114     <p><a href="http://www.i-scream.org.uk/cvsstat">http://www.i-scream.org.uk/cvsstat</a></p>
115    
116 tdb 1.1 </font>
117    
118     <!--#include virtual="bottom.inc" -->
119     </td>
120     </tr>
121     </table>
122    
123     </body>
124    
125     </html>