diff --git a/gazhdict/addentry/__init__.py b/gazhdict/addentry/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gazhdict/addentry/admin.py b/gazhdict/addentry/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/gazhdict/addentry/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/gazhdict/addentry/apps.py b/gazhdict/addentry/apps.py new file mode 100644 index 0000000..ec9778b --- /dev/null +++ b/gazhdict/addentry/apps.py @@ -0,0 +1,5 @@ +from django.apps import AppConfig + + +class AddentryConfig(AppConfig): + name = 'addentry' diff --git a/gazhdict/addentry/migrations/__init__.py b/gazhdict/addentry/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gazhdict/addentry/models.py b/gazhdict/addentry/models.py new file mode 100644 index 0000000..50b2936 --- /dev/null +++ b/gazhdict/addentry/models.py @@ -0,0 +1,57 @@ +from django.db import models + +# Create your models here. +class Entry(models.Model): + Gaeilge = models.CharField(max_length=100) + PoS = models.CharField(max_length=20) + Pronoun = models.CharField(max_length=250) + PreScript = models.CharField(max_length=200) + PostScript = models.CharField(max_length=2000) + +class Meaning(models.Model): + Entry = models.ForeignKey("Entry", on_delete=models.CASCADE) + Meaning_content = models.CharField(max_length=500) + Exam_Sentence1 = models.CharField(max_length=1000) + Exam_Sentence1_zh = models.CharField(max_length=1000) + Exam_Sentence2 = models.CharField(max_length=1000) + Exam_Sentence2_zh = models.CharField(max_length=1000) + Exam_Sentence3 = models.CharField(max_length=1000) + Exam_Sentence3_zh = models.CharField(max_length=1000) + +class Noun(models.Model): + Entry = models.ForeignKey("Entry", on_delete=models.CASCADE) + Decl_no = models.IntegerField(), + Gsg = models.CharField(max_length=100) + Npl = models.CharField(max_length=100) + Gpl = models.CharField(max_length=100) + Dsg = models.CharField(max_length=100) + +class Adjective(models.Model): + Entry = models.ForeignKey("Entry", on_delete=models.CASCADE) + Decl_no = models.IntegerField() + Comp = models.CharField(max_length=100) + +class Preposition(models.Model): + Entry = models.ForeignKey("Entry", on_delete=models.CASCADE) + _1sg = models.CharField(max_length=100) + _2sg = models.CharField(max_length=100) + _3sg_m = models.CharField(max_length=100) + _3sg_f = models.CharField(max_length=100) + _1pl = models.CharField(max_length=100) + _2pl = models.CharField(max_length=100) + _3pl = models.CharField(max_length=100) + +class Verb(models.Model): + Entry = models.ForeignKey("Entry", on_delete=models.CASCADE) + Conj_no = models.IntegerField() + VN = models.CharField(max_length=100) + PP = models.CharField(max_length=100) + _1sg_pres = models.CharField(max_length=100) + _2sg_pres = models.CharField(max_length=100) + _3sg_pres = models.CharField(max_length=100) + _1pl_pres = models.CharField(max_length=100) + _2pl_pres = models.CharField(max_length=100) + _3pl_pres = models.CharField(max_length=100) + Rel_pres = models.CharField(max_length=100) # for "a leanas" only + + auto_pres 1sg_past 2sg_past 3sg_past 1pl_past 2pl_past 3pl_past auto_past 1sg_pa_ha 2sg_pa_ha 3sg_pa_ha 1pl_pa_ha 2pl_pa_ha 3pl_pa_ha auto_pa_ha 1sg_fut 2sg_fut 3sg_fut 1pl_fut 2pl_fut 3pl_fut rel_fut auto_fut 1sg_cond 2sg_cond 3sg_cond 1pl_cond 2pl_cond 3pl_cond auto_cond 1sg_subj 2sg_subj 3sg_subj 1pl_subj 2pl_subj 3pl_subj auto_subj 1sg_imp 2sg_imp 3sg_imp 1pl_imp 2pl_imp 3pl_imp auto_imp diff --git a/gazhdict/addentry/tests.py b/gazhdict/addentry/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/gazhdict/addentry/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/gazhdict/addentry/views.py b/gazhdict/addentry/views.py new file mode 100644 index 0000000..a0b1a28 --- /dev/null +++ b/gazhdict/addentry/views.py @@ -0,0 +1,9 @@ +from django.shortcuts import render + +from django.http import HttpResponse +from datetime import datetime + +# Create your views here. +def hello_world(request): + return render(request, 'hello_world.html', + {'current_time' : str(datetime.now()),}) diff --git a/gazhdict/gazhdict/__init__.py b/gazhdict/gazhdict/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/gazhdict/gazhdict/asgi.py b/gazhdict/gazhdict/asgi.py new file mode 100644 index 0000000..b3b448b --- /dev/null +++ b/gazhdict/gazhdict/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for gazhdict project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.1/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gazhdict.settings') + +application = get_asgi_application() diff --git a/gazhdict/gazhdict/settings.py b/gazhdict/gazhdict/settings.py new file mode 100644 index 0000000..04727b8 --- /dev/null +++ b/gazhdict/gazhdict/settings.py @@ -0,0 +1,122 @@ +""" +Django settings for gazhdict project. + +Generated by 'django-admin startproject' using Django 3.1.4. + +For more information on this file, see +https://docs.djangoproject.com/en/3.1/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.1/ref/settings/ +""" + +from pathlib import Path +import os + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/3.1/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'z(edll4(o&=28^t0g*6t$jz2ic&q*ql^x7ekrdoux2x&1se=t6' + +# SECURITY WARNING: don't run with debug turned on in production! +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', + 'addentry', +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + '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 = 'gazhdict.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [os.path.join(BASE_DIR, 'templates').replace('\\', '/')], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'gazhdict.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.1/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.1/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/3.1/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/3.1/howto/static-files/ + +STATIC_URL = '/static/' diff --git a/gazhdict/gazhdict/urls.py b/gazhdict/gazhdict/urls.py new file mode 100644 index 0000000..1419d38 --- /dev/null +++ b/gazhdict/gazhdict/urls.py @@ -0,0 +1,23 @@ +"""gazhdict URL Configuration + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/3.1/topics/http/urls/ +Examples: +Function views + 1. Add an import: from my_app import views + 2. Add a URL to urlpatterns: path('', views.home, name='home') +Class-based views + 1. Add an import: from other_app.views import Home + 2. Add a URL to urlpatterns: path('', Home.as_view(), name='home') +Including another URLconf + 1. Import the include() function: from django.urls import include, path + 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) +""" +from django.contrib import admin +from django.urls import path +from addentry.views import hello_world + +urlpatterns = [ + path('admin/', admin.site.urls), + path('hello/', hello_world), +] diff --git a/gazhdict/gazhdict/wsgi.py b/gazhdict/gazhdict/wsgi.py new file mode 100644 index 0000000..f521fe3 --- /dev/null +++ b/gazhdict/gazhdict/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for gazhdict 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/3.1/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gazhdict.settings') + +application = get_wsgi_application() diff --git a/gazhdict/manage.py b/gazhdict/manage.py new file mode 100755 index 0000000..d22d416 --- /dev/null +++ b/gazhdict/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'gazhdict.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/gazhdict/templates/hello_world.html b/gazhdict/templates/hello_world.html new file mode 100644 index 0000000..e23fea6 --- /dev/null +++ b/gazhdict/templates/hello_world.html @@ -0,0 +1,18 @@ + + + + I come from template!! + + + +

Hello World!

+ {{ current_time }} + + diff --git a/sql-schema.ods b/sql-schema.ods new file mode 100644 index 0000000..9f4d083 Binary files /dev/null and b/sql-schema.ods differ