summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authoreliott <eliott@cactuswax.net>2007-12-29 18:21:10 -0800
committereliott <eliott@cactuswax.net>2007-12-29 18:21:10 -0800
commit706152de89a8c64ebbfb6d91bcafe7a8616f4cef (patch)
tree619feb7b8fd09eef6e05ec5662d846461de269ec /public
parent89659cef5f309d7eb6bc6ca3d4ab84b779c6728d (diff)
downloadarchweb-706152de89a8c64ebbfb6d91bcafe7a8616f4cef.tar.gz
archweb-706152de89a8c64ebbfb6d91bcafe7a8616f4cef.zip
Moved some things around.
Diffstat (limited to 'public')
-rw-r--r--public/models.py52
-rw-r--r--public/templatetags/__init__.py0
-rw-r--r--public/templatetags/validation.py15
-rw-r--r--public/views.py2
4 files changed, 1 insertions, 68 deletions
diff --git a/public/models.py b/public/models.py
deleted file mode 100644
index 79afb6f8..00000000
--- a/public/models.py
+++ /dev/null
@@ -1,52 +0,0 @@
-from django.db import models
-from django.contrib.auth.models import User
-
-class Mirror(models.Model):
- id = models.AutoField(primary_key=True)
- domain = models.CharField(maxlength=255)
- country = models.CharField(maxlength=255)
- url = models.CharField(maxlength=255)
- protocol_list = models.CharField(maxlength=255, null=True, blank=True)
- admin_email = models.CharField(maxlength=255, null=True, blank=True)
- def __str__(self):
- return self.domain
- class Admin:
- list_display = ('domain', 'country')
- list_filter = ('country',)
- ordering = ['domain']
- search_fields = ('domain')
- pass
-
-class Donator(models.Model):
- id = models.AutoField(primary_key=True)
- name = models.CharField(maxlength=255)
- def __str__(self):
- return self.name
- class Admin:
- ordering = ['name']
- search_fields = ('name')
- pass
-
-class UserProfile(models.Model):
- id = models.AutoField(primary_key=True) # not technically needed
- notify = models.BooleanField("Send notifications", default=True, help_text="When enabled, user will recieve 'flag out of date' notifications")
- alias = models.CharField(core=True, maxlength=50, help_text="Required field")
- public_email = models.CharField(core=True, maxlength=50, help_text="Required field")
- other_contact = models.CharField(maxlength=100, null=True, blank=True)
- website = models.URLField(null=True, blank=True)
- yob = models.IntegerField(null=True, blank=True)
- location = models.CharField(maxlength=50, null=True, blank=True)
- languages = models.CharField(maxlength=50, null=True, blank=True)
- interests = models.CharField(maxlength=255, null=True, blank=True)
- occupation = models.CharField(maxlength=50, null=True, blank=True)
- roles = models.CharField(maxlength=255, null=True, blank=True)
- favorite_distros = models.CharField(maxlength=255, null=True, blank=True)
- picture = models.FileField(upload_to='devs', default='devs/silhouette.png')
- user = models.ForeignKey(User, edit_inline=models.STACKED, num_in_admin=1, min_num_in_admin=1, max_num_in_admin=1, num_extra_on_change=0, unique=True)
- class Meta:
- db_table = 'user_profiles'
- verbose_name = 'Additional Profile Data'
- verbose_name_plural = 'Additional Profile Data'
-
-# vim: set ts=4 sw=4 et:
-
diff --git a/public/templatetags/__init__.py b/public/templatetags/__init__.py
deleted file mode 100644
index e69de29b..00000000
--- a/public/templatetags/__init__.py
+++ /dev/null
diff --git a/public/templatetags/validation.py b/public/templatetags/validation.py
deleted file mode 100644
index 38a40531..00000000
--- a/public/templatetags/validation.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from django import template
-
-register = template.Library()
-
-@register.inclusion_tag('errors.html')
-def print_errors(errors):
- errs = []
- for e,msg in errors.iteritems():
- errmsg = str(msg[0])
- # hack -- I'm a python idiot
- errs.append( (e, errmsg[2:-2]) )
- return {'errors': errs}
-
-# vim: set ts=4 sw=4 et:
-
diff --git a/public/views.py b/public/views.py
index 9c41ece8..18f0c983 100644
--- a/public/views.py
+++ b/public/views.py
@@ -4,7 +4,7 @@ from django.contrib.auth.models import User
from archweb_dev.packages.models import Package, Repo
from archweb_dev.news.models import News
from archweb_dev.settings import DATA_DIR
-from archweb_dev.public.models import Donator, Mirror
+from archweb_dev.devel.models import Donator, Mirror
def index(request):
# get the most recent 10 news items