initial commit
This commit is contained in:
parent
b3a218e675
commit
cf30c677db
15 changed files with 294 additions and 0 deletions
0
gazhdict/addentry/__init__.py
Normal file
0
gazhdict/addentry/__init__.py
Normal file
3
gazhdict/addentry/admin.py
Normal file
3
gazhdict/addentry/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.contrib import admin
|
||||||
|
|
||||||
|
# Register your models here.
|
5
gazhdict/addentry/apps.py
Normal file
5
gazhdict/addentry/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
from django.apps import AppConfig
|
||||||
|
|
||||||
|
|
||||||
|
class AddentryConfig(AppConfig):
|
||||||
|
name = 'addentry'
|
0
gazhdict/addentry/migrations/__init__.py
Normal file
0
gazhdict/addentry/migrations/__init__.py
Normal file
57
gazhdict/addentry/models.py
Normal file
57
gazhdict/addentry/models.py
Normal file
|
@ -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
|
3
gazhdict/addentry/tests.py
Normal file
3
gazhdict/addentry/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
from django.test import TestCase
|
||||||
|
|
||||||
|
# Create your tests here.
|
9
gazhdict/addentry/views.py
Normal file
9
gazhdict/addentry/views.py
Normal file
|
@ -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()),})
|
0
gazhdict/gazhdict/__init__.py
Normal file
0
gazhdict/gazhdict/__init__.py
Normal file
16
gazhdict/gazhdict/asgi.py
Normal file
16
gazhdict/gazhdict/asgi.py
Normal file
|
@ -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()
|
122
gazhdict/gazhdict/settings.py
Normal file
122
gazhdict/gazhdict/settings.py
Normal file
|
@ -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/'
|
23
gazhdict/gazhdict/urls.py
Normal file
23
gazhdict/gazhdict/urls.py
Normal file
|
@ -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),
|
||||||
|
]
|
16
gazhdict/gazhdict/wsgi.py
Normal file
16
gazhdict/gazhdict/wsgi.py
Normal file
|
@ -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()
|
22
gazhdict/manage.py
Executable file
22
gazhdict/manage.py
Executable file
|
@ -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()
|
18
gazhdict/templates/hello_world.html
Normal file
18
gazhdict/templates/hello_world.html
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>I come from template!!</title>
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
background-color: lightyellow;
|
||||||
|
}
|
||||||
|
em {
|
||||||
|
color: LightSeaGreen;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<h1>Hello World!</h1>
|
||||||
|
<em>{{ current_time }}</em>
|
||||||
|
</body>
|
||||||
|
</html>
|
BIN
sql-schema.ods
Normal file
BIN
sql-schema.ods
Normal file
Binary file not shown.
Loading…
Reference in a new issue