diff options
author | eliott <eliott@cactuswax.net> | 2007-12-29 18:42:50 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-12-29 18:42:50 -0800 |
commit | 8fcdf0c2cde1c3cff98be4572a0e9e3a1d910901 (patch) | |
tree | aa49de02aa64dfade956dbd9e79f09bf7fc06f13 /templates/devel/cvs.html | |
parent | 45454908dfa2c925c4689d74fc84c4c2055257ab (diff) |
Moved some templates around
Diffstat (limited to 'templates/devel/cvs.html')
-rw-r--r-- | templates/devel/cvs.html | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/templates/devel/cvs.html b/templates/devel/cvs.html new file mode 100644 index 00000000..715d00d3 --- /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 %} + |