Browse Source

web: avoid importing or accessing modules using "web.*"

pull/1/head
Hidden Z 14 years ago
parent
commit
d50bb7a66f
  1. 2
      web/extsources/models.py
  2. 2
      web/jump/urls.py
  3. 6
      web/jump/views.py
  4. 2
      web/lib/validation.py
  5. 2
      web/other/views.py
  6. 2
      web/postkey/urls.py
  7. 10
      web/postkey/views.py
  8. 6
      web/settings.py
  9. 8
      web/urls.py

2
web/extsources/models.py

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
from django.db import models
from web.lib.validation import validate_i2purl
from lib.validation import validate_i2purl
class ExternalSource(models.Model):
name = models.CharField(max_length=128, unique=True)

2
web/jump/urls.py

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
from django.conf.urls.defaults import *
urlpatterns = patterns('web.jump.views',
urlpatterns = patterns('jump.views',
(r'^([^$/]+)', 'jumper'),
)

6
web/jump/views.py

@ -3,9 +3,9 @@ import re @@ -3,9 +3,9 @@ import re
from django.shortcuts import render_to_response
from django.core.exceptions import ValidationError
from web.postkey.models import i2phost
from web.lib.validation import validate_hostname
from web import settings
from postkey.models import i2phost
from lib.validation import validate_hostname
import settings
def jumper(request, host):
"""Actually do jumps."""

2
web/lib/validation.py

@ -4,7 +4,7 @@ import re @@ -4,7 +4,7 @@ import re
from django.core.exceptions import ValidationError
from web.postkey.models import i2phost
from postkey.models import i2phost
def validate_hostname(data):

2
web/other/views.py

@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
from django.shortcuts import render_to_response
from web import settings
import settings
def index(request):
return render_to_response('index.html', {

2
web/postkey/urls.py

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
from django.conf.urls.defaults import *
urlpatterns = patterns('web.postkey.views',
urlpatterns = patterns('postkey.views',
(r'^$', 'addkey'),
(r'^success/', 'success'),
)

10
web/postkey/views.py

@ -5,11 +5,11 @@ from django.forms import ModelForm @@ -5,11 +5,11 @@ from django.forms import ModelForm
from django.shortcuts import render_to_response
from django.template import RequestContext
from web import settings
from web.postkey.models import i2phost
from web.lib.utils import get_logger
from web.lib.validation import validate_hostname
from web.lib.validation import validate_b64hash
import settings
from postkey.models import i2phost
from lib.utils import get_logger
from lib.validation import validate_hostname
from lib.validation import validate_b64hash
class AddForm(ModelForm):
"""

6
web/settings.py

@ -78,7 +78,7 @@ MIDDLEWARE_CLASSES = ( @@ -78,7 +78,7 @@ MIDDLEWARE_CLASSES = (
'django.contrib.messages.middleware.MessageMiddleware',
)
ROOT_URLCONF = 'web.urls'
ROOT_URLCONF = 'urls'
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
@ -93,8 +93,8 @@ INSTALLED_APPS = ( @@ -93,8 +93,8 @@ INSTALLED_APPS = (
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.messages',
'web.postkey',
'web.extsources',
'postkey',
'extsources',
# Uncomment the next line to enable the admin:
'django.contrib.admin',
)

8
web/urls.py

@ -4,14 +4,12 @@ from django.conf.urls.defaults import * @@ -4,14 +4,12 @@ from django.conf.urls.defaults import *
from django.contrib import admin
admin.autodiscover()
from web.other.views import *
from other.views import *
urlpatterns = patterns('',
url(r'^$', index, name='index'),
(r'^postkey/', include('web.postkey.urls')),
(r'^jump/', include('web.jump.urls')),
# Example:
# (r'^web/', include('web.foo.urls')),
(r'^postkey/', include('postkey.urls')),
(r'^jump/', include('jump.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:

Loading…
Cancel
Save