Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mgaldieri committed May 19, 2014
0 parents commit 32a09fb
Show file tree
Hide file tree
Showing 13 changed files with 518 additions and 0 deletions.
Empty file added crosswords/__init__.py
Empty file.
83 changes: 83 additions & 0 deletions crosswords/settings.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
"""
Django settings for crosswords project.
For more information on this file, see
https://docs.djangoproject.com/en/1.6/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/1.6/ref/settings/
"""

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
BASE_DIR = os.path.dirname(os.path.dirname(__file__))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.6/howto/deployment/checklist/

# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '&)amn3&8tr21q&mmful^55dc4p+awyheuc2^yv@#9rnlaur3p%'

# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True

TEMPLATE_DEBUG = True

ALLOWED_HOSTS = []


# Application definition

INSTALLED_APPS = (
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'main',
)

MIDDLEWARE_CLASSES = (
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.csrf.CsrfViewMiddleware',
'django.contrib.auth.middleware.AuthenticationMiddleware',
'django.contrib.messages.middleware.MessageMiddleware',
'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

ROOT_URLCONF = 'crosswords.urls'

WSGI_APPLICATION = 'crosswords.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.6/ref/settings/#databases

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}

# Internationalization
# https://docs.djangoproject.com/en/1.6/topics/i18n/

LANGUAGE_CODE = 'en-us'

TIME_ZONE = 'UTC'

USE_I18N = True

USE_L10N = True

USE_TZ = True


# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.6/howto/static-files/

STATIC_URL = '/static/'
12 changes: 12 additions & 0 deletions crosswords/urls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from django.conf.urls import patterns, include, url

from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
# Examples:
# url(r'^$', 'crosswords.views.home', name='home'),
# url(r'^blog/', include('blog.urls')),

url(r'^admin/', include(admin.site.urls)),
)
14 changes: 14 additions & 0 deletions crosswords/wsgi.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
"""
WSGI config for crosswords project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/1.6/howto/deployment/wsgi/
"""

import os
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "crosswords.settings")

from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()
Empty file added main/__init__.py
Empty file.
3 changes: 3 additions & 0 deletions main/admin.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.
3 changes: 3 additions & 0 deletions main/models.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.
3 changes: 3 additions & 0 deletions main/tests.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.
1 change: 1 addition & 0 deletions main/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__author__ = 'mgaldieri'
15 changes: 15 additions & 0 deletions main/utils/chars.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# -*- coding=utf-8 -*-
__author__ = 'mgaldieri'


class _pt_BR():
def __init__(self):
self.lowerchars = list(u'abcdefghijklmnopqrstuvwxyz')
self.upperchars = list(u'ABCDEFGHIJKLMNOPQRSTUVWXYZ')
self.loweraccented = list(u'áàâãéêíóôõúüç')
self.upperaccented = list(u'ÁÀÂÃÉÊÍÓÔÕÚÜÇ')
self.lowercase = self.lowerchars + self.loweraccented
self.uppercase = self.upperchars + self.upperaccented
self.allchars = self.lowercase + self.uppercase

pt_BR = _pt_BR()
Loading

0 comments on commit 32a09fb

Please sign in to comment.