From 6d632344f1036dca0c5fd11d67bdab7fceff2cac Mon Sep 17 00:00:00 2001 From: Dusty Phillips Date: Tue, 7 Oct 2008 10:57:27 -0400 Subject: remove reference to old cvs entry --- devel/views.py | 3 --- templates/devel/cvs.html | 48 ------------------------------------------------ urls.py | 12 ++++++++---- 3 files changed, 8 insertions(+), 55 deletions(-) delete mode 100644 templates/devel/cvs.html diff --git a/devel/views.py b/devel/views.py index b21f3495..95c90f3f 100644 --- a/devel/views.py +++ b/devel/views.py @@ -97,9 +97,6 @@ def siteindex(request): request, 'devel/siteindex.html', {'news_updates': news, 'pkg_updates': pkgs, 'repos': repos}) -def cvs(request): - return render_response(request, 'devel/cvs.html') - def developers(request): devs = User.objects.filter(is_active=True).order_by('username') return render_response(request, 'devel/developers.html', {'devs':devs}) diff --git a/templates/devel/cvs.html b/templates/devel/cvs.html deleted file mode 100644 index 715d00d3..00000000 --- a/templates/devel/cvs.html +++ /dev/null @@ -1,48 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -
- You can access all of our PKGBUILD files from the - cvsweb interface. -
-

-
-

CVS Repositories

-

- Anonymous CVS access is also available. Use anonymous as the - username and password.

-
    -
  1. - Set CVSROOT to the repository you wish to access:

    -
    -# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-core

    -OR

    -# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-extra

    -OR

    -# export CVSROOT=:pserver:anonymous@cvs.archlinux.org:/home/cvs-unstable

    -
    -

    -
  2. -
  3. - Login:

    -
    -# touch ~/.cvspass
    -# cvs login
    -Logging in to :pserver:anonymous@cvs.archlinux.org:2401/home/cvs-core
    -CVS password: anonymous
    -
    -

    -
  4. -
  5. - Check out the repository:

    -
    -# cvs -z3 co core

    -OR

    -# cvs -z3 co extra
    -
    -
  6. -
-
-

-{% endblock %} - diff --git a/urls.py b/urls.py index 1e55dacb..98f7be8b 100644 --- a/urls.py +++ b/urls.py @@ -61,10 +61,14 @@ # Authentication / Admin (r'^denied/$', 'archweb_dev.devel.views.denied'), - (r'^login/$', 'django.contrib.auth.views.login', {'template_name': 'registration/login.html'}), - (r'^accounts/login/$', 'django.contrib.auth.views.login', {'template_name': 'registration/login.html'}), - (r'^logout/$', 'django.contrib.auth.views.logout', {'template_name': 'registration/logout.html'}), - (r'^accounts/logout/$', 'django.contrib.auth.views.logout', {'template_name': 'registration/logout.html'}), + (r'^login/$', 'django.contrib.auth.views.login', { + 'template_name': 'registration/login.html'}), + (r'^accounts/login/$', 'django.contrib.auth.views.login', { + 'template_name': 'registration/login.html'}), + (r'^logout/$', 'django.contrib.auth.views.logout', { + 'template_name': 'registration/logout.html'}), + (r'^accounts/logout/$', 'django.contrib.auth.views.logout', { + 'template_name': 'registration/logout.html'}), (r'^admin/(.*)', admin.site.root), ) -- cgit v1.2.3-54-g00ecf