1
0
mirror of https://github.com/r4sas/py-i2phosts synced 2025-03-10 04:11:02 +00:00

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

This reverts commit d50bb7a66f1ab53b925ca312763a3ae49d32e039.

Conflicts:

	web/settings.py

Do imports from pyi2phosts.*
This commit is contained in:
Hidden Z 2010-11-04 12:23:55 +00:00
parent 14d076eb4d
commit f63768095d
9 changed files with 19 additions and 17 deletions

View File

@ -1,6 +1,6 @@
from django.db import models
from lib.validation import validate_i2purl
from pyi2phosts.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('jump.views',
urlpatterns = patterns('pyi2phosts.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 postkey.models import i2phost
from lib.validation import validate_hostname
import settings
from pyi2phosts.postkey.models import i2phost
from pyi2phosts.lib.validation import validate_hostname
from web import settings
def jumper(request, host):
"""Actually do jumps."""

View File

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

View File

@ -1,5 +1,5 @@
from django.shortcuts import render_to_response
import settings
from web 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('postkey.views',
urlpatterns = patterns('pyi2phosts.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
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
from web import settings
from pyi2phosts.postkey.models import i2phost
from pyi2phosts.lib.utils import get_logger
from pyi2phosts.lib.validation import validate_hostname
from pyi2phosts.lib.validation import validate_b64hash
class AddForm(ModelForm):
"""

View File

@ -78,7 +78,7 @@ MIDDLEWARE_CLASSES = (
'django.contrib.messages.middleware.MessageMiddleware',
)
ROOT_URLCONF = 'urls'
ROOT_URLCONF = 'pyi2phosts.urls'
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".

View File

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