summaryrefslogtreecommitdiffstats
path: root/templates/devel/cvs.html
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2007-12-30 03:42:50 +0100
committereliott <eliott@cactuswax.net>2007-12-30 03:42:50 +0100
commit8fcdf0c2cde1c3cff98be4572a0e9e3a1d910901 (patch)
treeaa49de02aa64dfade956dbd9e79f09bf7fc06f13 /templates/devel/cvs.html
parent45454908dfa2c925c4689d74fc84c4c2055257ab (diff)
downloadarchweb-8fcdf0c2cde1c3cff98be4572a0e9e3a1d910901.tar.gz
archweb-8fcdf0c2cde1c3cff98be4572a0e9e3a1d910901.tar.xz
Moved some templates around
Diffstat (limited to 'templates/devel/cvs.html')
-rw-r--r--templates/devel/cvs.html48
1 files changed, 48 insertions, 0 deletions
diff --git a/templates/devel/cvs.html b/templates/devel/cvs.html
new file mode 100644
index 0000000..715d00d
--- /dev/null
+++ b/templates/devel/cvs.html
@@ -0,0 +1,48 @@
+{% extends "base.html" %}
+
+{% block content %}
+<div class="greybox" style="text-align:center">
+ You can access all of our PKGBUILD files from the
+ <a href="http://cvs.archlinux.org">cvsweb</a> interface.
+</div>
+<br /><br />
+<div class="box">
+ <h2 class="title">CVS Repositories</h2>
+ <br /><br />
+ Anonymous CVS access is also available. Use <i><u>anonymous</u></i> as the
+ username and password.<br /><br />
+ <ol class="instructions">
+ <li>
+ Set CVSROOT to the repository you wish to access:<br /><br />
+ <blockquote class="code">
+# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-core<br /><br />
+OR<br /><br />
+# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-extra<br /><br />
+OR<br /><br />
+# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-unstable<br /><br />
+ </blockquote>
+ <br /><br />
+ </li>
+ <li>
+ Login:<br /><br />
+ <blockquote class="code">
+# touch ~/.cvspass<br />
+# cvs login<br />
+Logging in to :pserver:anonymous@cvs.archlinux.org:2401/home/cvs-core<br />
+CVS password: anonymous<br />
+ </blockquote>
+ <br /><br />
+ </li>
+ <li>
+ Check out the repository:<br /><br />
+ <blockquote class="code">
+# cvs -z3 co core<br /><br />
+OR<br /><br />
+# cvs -z3 co extra<br />
+ </blockquote>
+ </li>
+ </ol>
+</div>
+<br /><br />
+{% endblock %}
+