1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-01-22 20:44:55 +00:00

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

This commit is contained in:
Hidden Z 2010-11-03 19:26:58 +00:00
parent 9a9ddbc23f
commit d50bb7a66f
9 changed files with 19 additions and 21 deletions

View File

@ -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)

View File

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

View File

@ -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."""

View File

@ -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):

View File

@ -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', {

View File

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

View File

@ -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):
"""

View File

@ -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 = (
'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',
)

View File

@ -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: