Initial commit
authorRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Thu, 5 Dec 2013 11:42:41 +0000 (12:42 +0100)
committerRadek Czajka <radekczajka@nowoczesnapolska.org.pl>
Thu, 5 Dec 2013 11:42:41 +0000 (12:42 +0100)
commit2374306a346a48eb02bcedf0ce19694a1b0b7c25
tree62630ee217731d1ebac0969b2618c814aec68d60
Initial commit
73 files changed:
.gitignore [new file with mode: 0644]
LICENSE [new file with mode: 0644]
NOTICE [new file with mode: 0644]
fabfile.py [new file with mode: 0644]
requirements-dev.txt [new file with mode: 0644]
requirements.txt [new file with mode: 0644]
src/chunks/__init__.py [new file with mode: 0644]
src/chunks/admin.py [new file with mode: 0644]
src/chunks/locale/de/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/de/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/locale/en/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/en/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/locale/es/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/es/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/locale/fr/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/fr/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/locale/it/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/it/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/locale/jp/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/jp/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/locale/lt/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/lt/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/locale/pl/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/pl/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/locale/ru/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/ru/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/locale/uk/LC_MESSAGES/django.mo [new file with mode: 0644]
src/chunks/locale/uk/LC_MESSAGES/django.po [new file with mode: 0644]
src/chunks/migrations/0001_initial.py [new file with mode: 0644]
src/chunks/migrations/__init__.py [new file with mode: 0644]
src/chunks/models.py [new file with mode: 0644]
src/chunks/templatetags/__init__.py [new file with mode: 0644]
src/chunks/templatetags/chunks.py [new file with mode: 0644]
src/copyspeak/__init__.py [new file with mode: 0644]
src/copyspeak/locale/pl/LC_MESSAGES/django.mo [new file with mode: 0644]
src/copyspeak/locale/pl/LC_MESSAGES/django.po [new file with mode: 0644]
src/copyspeak/settings/__init__.py [new file with mode: 0644]
src/copyspeak/settings/apps.py [new file with mode: 0644]
src/copyspeak/settings/auth.py [new file with mode: 0644]
src/copyspeak/settings/basic.py [new file with mode: 0644]
src/copyspeak/settings/context.py [new file with mode: 0644]
src/copyspeak/settings/contrib.py [new file with mode: 0644]
src/copyspeak/settings/custom.py [new file with mode: 0644]
src/copyspeak/settings/locale.py [new file with mode: 0644]
src/copyspeak/settings/logging.py [new file with mode: 0644]
src/copyspeak/settings/middleware.py [new file with mode: 0644]
src/copyspeak/settings/paths.py [new file with mode: 0644]
src/copyspeak/settings/static.py [new file with mode: 0644]
src/copyspeak/static/css/base.css [new file with mode: 0644]
src/copyspeak/static/css/base.scss [new file with mode: 0644]
src/copyspeak/static/img/bg/chaotic.png [new file with mode: 0644]
src/copyspeak/static/img/bg/info.png [new file with mode: 0644]
src/copyspeak/static/img/bg/lawful.png [new file with mode: 0644]
src/copyspeak/static/img/bg/neutral.png [new file with mode: 0644]
src/copyspeak/static/img/brackets.png [new file with mode: 0644]
src/copyspeak/static/img/logofnp.png [new file with mode: 0644]
src/copyspeak/static/img/logofnp_white.png [new file with mode: 0644]
src/copyspeak/templates/404.html [new file with mode: 0644]
src/copyspeak/templates/500.html [new file with mode: 0644]
src/copyspeak/templates/base.html [new file with mode: 0644]
src/copyspeak/templates/flatpages/default.html [new file with mode: 0644]
src/copyspeak/urls.py [new file with mode: 0644]
src/copyspeak/wsgi.py [new file with mode: 0644]
src/manage.py [new file with mode: 0755]
src/words/__init__.py [new file with mode: 0644]
src/words/admin.py [new file with mode: 0644]
src/words/migrations/0001_initial.py [new file with mode: 0644]
src/words/migrations/__init__.py [new file with mode: 0644]
src/words/models.py [new file with mode: 0644]
src/words/templates/words/home.html [new file with mode: 0755]
src/words/templates/words/word_detail.html [new file with mode: 0755]
src/words/tests.py [new file with mode: 0644]
src/words/views.py [new file with mode: 0644]