From 4717d3235c665af7dfd099189800ed52d94b34d8 Mon Sep 17 00:00:00 2001 From: lgomez Date: Thu, 21 Mar 2013 13:51:29 -0300 Subject: [PATCH] First version of django-cms-chunck. Created app and test_app. Added models. --- .gitignore | 1 + LICENSE.txt | 23 +++++ MANIFEST.in | 1 + cms_chunks/__init__.py | 0 cms_chunks/models.py | 11 +++ cms_chunks/tests.py | 16 ++++ cms_chunks/views.py | 1 + requirements.txt | 2 + setup.py | 66 ++++++++++++++ test_app/manage.py | 10 +++ test_app/test_app/__init__.py | 0 test_app/test_app/settings.py | 160 ++++++++++++++++++++++++++++++++++ test_app/test_app/urls.py | 17 ++++ test_app/test_app/wsgi.py | 28 ++++++ 14 files changed, 336 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE.txt create mode 100644 MANIFEST.in create mode 100644 cms_chunks/__init__.py create mode 100644 cms_chunks/models.py create mode 100644 cms_chunks/tests.py create mode 100644 cms_chunks/views.py create mode 100644 requirements.txt create mode 100644 setup.py create mode 100755 test_app/manage.py create mode 100644 test_app/test_app/__init__.py create mode 100644 test_app/test_app/settings.py create mode 100644 test_app/test_app/urls.py create mode 100644 test_app/test_app/wsgi.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..485dee6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.idea diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..11562c1 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,23 @@ +Copyright (c) 2013 devartis + +Permission is hereby granted, free of charge, to any +person obtaining a copy of this software and associated +documentation files (the "Software"), to deal in the +Software without restriction, including without limitation +the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the +Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice +shall be included in all copies or substantial portions of +the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY +KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR +PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS +OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR +OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..d29281d --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include *.txt *.md \ No newline at end of file diff --git a/cms_chunks/__init__.py b/cms_chunks/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/cms_chunks/models.py b/cms_chunks/models.py new file mode 100644 index 0000000..af18826 --- /dev/null +++ b/cms_chunks/models.py @@ -0,0 +1,11 @@ +from django.db import models +from cms.models.fields import PlaceholderField + + +class Chunk(models.Model): + tags = models.CharField(max_length=200) + code = PlaceholderField('chunk_placeholder', related_name="chunks") + video_placeholder = PlaceholderField('video_placeholder', related_name="videos") + priority = models.IntegerField() + +# Create your models here. diff --git a/cms_chunks/tests.py b/cms_chunks/tests.py new file mode 100644 index 0000000..501deb7 --- /dev/null +++ b/cms_chunks/tests.py @@ -0,0 +1,16 @@ +""" +This file demonstrates writing tests using the unittest module. These will pass +when you run "manage.py test". + +Replace this with more appropriate tests for your application. +""" + +from django.test import TestCase + + +class SimpleTest(TestCase): + def test_basic_addition(self): + """ + Tests that 1 + 1 always equals 2. + """ + self.assertEqual(1 + 1, 2) diff --git a/cms_chunks/views.py b/cms_chunks/views.py new file mode 100644 index 0000000..60f00ef --- /dev/null +++ b/cms_chunks/views.py @@ -0,0 +1 @@ +# Create your views here. diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..4c71d0f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,2 @@ +Django==1.4.5 +django-cms==2.3.5 diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c205cc2 --- /dev/null +++ b/setup.py @@ -0,0 +1,66 @@ +#! coding: utf-8 + +from distutils.core import setup +import os + +version = __import__('cms_chunks').__version__ +install_requires = open('requirements.txt').readlines(), + +# Compile the list of packages available, because distutils doesn't have +# an easy way to do this. + +packages, data_files = [], [] +root_dir = os.path.dirname(__file__) +if root_dir: + os.chdir(root_dir) + +PACKAGE = 'cms_chunks' + +for dirpath, dirnames, filenames in os.walk(PACKAGE): + for i, dirname in enumerate(dirnames): + if dirname in ['.', '..']: + del dirnames[i] + if '__init__.py' in filenames: + pkg = dirpath.replace(os.path.sep, '.') + if os.path.altsep: + pkg = pkg.replace(os.path.altsep, '.') + packages.append(pkg) + elif filenames: + prefix = dirpath[len(PACKAGE) + 1:] # Strip package directory + path separator + for f in filenames: + data_files.append(os.path.join(prefix, f)) + +setup( + name='django-cms-chunks', + version=version, + author='Leandro Gomez', + author_email='lgomez@devartis.com', + + packages=packages, + package_data={'cms_chunks': data_files}, + + url='http://github.com/devartis/django-cms-chunks/', + license=open('LICENSE.txt').read(), + description='Simple FAQ app for django', + long_description=open('README.md').read(), + + download_url='http://pypi.python.org/packages/source/d/django-simple-faq/django-cms-chunks-%s.tar.gz' % version, + + install_requires=install_requires, + + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Environment :: Web Environment', + 'Framework :: Django', + 'License :: OSI Approved :: MIT License', + 'Intended Audience :: Developers', + 'Intended Audience :: Developers', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 2 :: Only', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', + ], +) + +__author__ = 'lgomez' diff --git a/test_app/manage.py b/test_app/manage.py new file mode 100755 index 0000000..ddf2123 --- /dev/null +++ b/test_app/manage.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python +import os +import sys + +if __name__ == "__main__": + os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_app.settings") + + from django.core.management import execute_from_command_line + + execute_from_command_line(sys.argv) diff --git a/test_app/test_app/__init__.py b/test_app/test_app/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/test_app/test_app/settings.py b/test_app/test_app/settings.py new file mode 100644 index 0000000..fb00490 --- /dev/null +++ b/test_app/test_app/settings.py @@ -0,0 +1,160 @@ +# Django settings for test_app project. +from os.path import join, dirname, abspath, pardir + +PROJECT_PATH = join(abspath(dirname(__file__)), pardir) + +DEBUG = True +TEMPLATE_DEBUG = DEBUG + +ADMINS = ( + # ('Your Name', 'your_email@example.com'), +) + +MANAGERS = ADMINS + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'. + 'NAME': 'db-sqlite3', # Or path to database file if using sqlite3. + 'USER': '', # Not used with sqlite3. + 'PASSWORD': '', # Not used with sqlite3. + 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. + 'PORT': '', # Set to empty string for default. Not used with sqlite3. + } +} + +# Hosts/domain names that are valid for this site; required if DEBUG is False +# See https://docs.djangoproject.com/en/1.4/ref/settings/#allowed-hosts +ALLOWED_HOSTS = [] + +# Local time zone for this installation. Choices can be found here: +# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name +# although not all choices may be available on all operating systems. +# In a Windows environment this must be set to your system time zone. +TIME_ZONE = 'America/Chicago' + +# Language code for this installation. All choices can be found here: +# http://www.i18nguy.com/unicode/language-identifiers.html +LANGUAGE_CODE = 'en-us' + +SITE_ID = 1 + +# If you set this to False, Django will make some optimizations so as not +# to load the internationalization machinery. +USE_I18N = True + +# If you set this to False, Django will not format dates, numbers and +# calendars according to the current locale. +USE_L10N = True + +# If you set this to False, Django will not use timezone-aware datetimes. +USE_TZ = True + +# Absolute filesystem path to the directory that will hold user-uploaded files. +# Example: "/home/media/media.lawrence.com/media/" +MEDIA_ROOT = '' + +# URL that handles the media served from MEDIA_ROOT. Make sure to use a +# trailing slash. +# Examples: "http://media.lawrence.com/media/", "http://example.com/media/" +MEDIA_URL = '' + +# Absolute path to the directory static files should be collected to. +# Don't put anything in this directory yourself; store your static files +# in apps' "static/" subdirectories and in STATICFILES_DIRS. +# Example: "/home/media/media.lawrence.com/static/" +STATIC_ROOT = '' + +# URL prefix for static files. +# Example: "http://media.lawrence.com/static/" +STATIC_URL = '/static/' + +# Additional locations of static files +STATICFILES_DIRS = ( + # Put strings here, like "/home/html/static" or "C:/www/django/static". + # Always use forward slashes, even on Windows. + # Don't forget to use absolute paths, not relative paths. +) + +# List of finder classes that know how to find static files in +# various locations. +STATICFILES_FINDERS = ( + 'django.contrib.staticfiles.finders.FileSystemFinder', + 'django.contrib.staticfiles.finders.AppDirectoriesFinder', +# 'django.contrib.staticfiles.finders.DefaultStorageFinder', +) + +# Make this unique, and don't share it with anybody. +SECRET_KEY = '%#zp02k)c5a^d=s2utfnbxshdk8&2n2w7mn0svi$po#x#we_k^' + +# List of callables that know how to import templates from various sources. +TEMPLATE_LOADERS = ( + 'django.template.loaders.filesystem.Loader', + 'django.template.loaders.app_directories.Loader', +# 'django.template.loaders.eggs.Loader', +) + +MIDDLEWARE_CLASSES = ( + 'django.middleware.common.CommonMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + # Uncomment the next line for simple clickjacking protection: + # 'django.middleware.clickjacking.XFrameOptionsMiddleware', +) + +ROOT_URLCONF = 'test_app.urls' + +# Python dotted path to the WSGI application used by Django's runserver. +WSGI_APPLICATION = 'test_app.wsgi.application' + +TEMPLATE_DIRS = ( + # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". + # Always use forward slashes, even on Windows. + # Don't forget to use absolute paths, not relative paths. +) + +INSTALLED_APPS = ( + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.sites', + 'django.contrib.messages', + 'django.contrib.staticfiles', + # Uncomment the next line to enable the admin: + 'django.contrib.admin', + # Uncomment the next line to enable admin documentation: + # 'django.contrib.admindocs', + 'south', + '' +) + +# A sample logging configuration. The only tangible logging +# performed by this configuration is to send an email to +# the site admins on every HTTP 500 error when DEBUG=False. +# See http://docs.djangoproject.com/en/dev/topics/logging for +# more details on how to customize your logging configuration. +LOGGING = { + 'version': 1, + 'disable_existing_loggers': False, + 'filters': { + 'require_debug_false': { + '()': 'django.utils.log.RequireDebugFalse' + } + }, + 'handlers': { + 'mail_admins': { + 'level': 'ERROR', + 'filters': ['require_debug_false'], + 'class': 'django.utils.log.AdminEmailHandler' + } + }, + 'loggers': { + 'django.request': { + 'handlers': ['mail_admins'], + 'level': 'ERROR', + 'propagate': True, + }, + } +} diff --git a/test_app/test_app/urls.py b/test_app/test_app/urls.py new file mode 100644 index 0000000..57baef4 --- /dev/null +++ b/test_app/test_app/urls.py @@ -0,0 +1,17 @@ +from django.conf.urls import patterns, include, url + +# Uncomment the next two lines to enable the admin: +from django.contrib import admin +admin.autodiscover() + +urlpatterns = patterns('', + # Examples: + # url(r'^$', 'test_app.views.home', name='home'), + # url(r'^test_app/', include('test_app.foo.urls')), + + # Uncomment the admin/doc line below to enable admin documentation: + # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), + + # Uncomment the next line to enable the admin: + url(r'^admin/', include(admin.site.urls)), +) diff --git a/test_app/test_app/wsgi.py b/test_app/test_app/wsgi.py new file mode 100644 index 0000000..07d96b8 --- /dev/null +++ b/test_app/test_app/wsgi.py @@ -0,0 +1,28 @@ +""" +WSGI config for test_app project. + +This module contains the WSGI application used by Django's development server +and any production WSGI deployments. It should expose a module-level variable +named ``application``. Django's ``runserver`` and ``runfcgi`` commands discover +this application via the ``WSGI_APPLICATION`` setting. + +Usually you will have the standard Django WSGI application here, but it also +might make sense to replace the whole Django WSGI application with a custom one +that later delegates to the Django one. For example, you could introduce WSGI +middleware here, or combine a Django application with an application of another +framework. + +""" +import os + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "test_app.settings") + +# This application object is used by any WSGI server configured to use this +# file. This includes Django's development server, if the WSGI_APPLICATION +# setting points here. +from django.core.wsgi import get_wsgi_application +application = get_wsgi_application() + +# Apply WSGI middleware here. +# from helloworld.wsgi import HelloWorldApplication +# application = HelloWorldApplication(application)