説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
Roland Haroutiounian 486213d06d Committed the test class for LeDataSourceSQL 9年前
EditorialModel Add a check function for integer fieldtype and make some bugfix in LeType 9年前
Lodel Bugfixes in lefactory and letype 9年前
leobject Committed the test class for LeDataSourceSQL 9年前
.gitignore New version (again) of the fieldtypes 9年前
Doxyfile Adding graph generation to Doxyfile 10年前
README.md README : install documentation for test 9年前
lint Add a lint script used to test pep8 and lint error 9年前
makemigrations_interactive_rename.patch Added a dryrun option to the migration handler and solved a bug in the django patch file 9年前
requirements.txt Editorial Model: first shot at the SQL migration handler (bye-bye django) 9年前
runtest Added modify_rank test, done some refactoring and updated runtest utils script 10年前

README.md

First test installation :

  • use python 3.4

** install dependencies pip install -r requirements.txt

** create local config in Lodel/settings/locale.py DATABASES = {

'default': {
    'ENGINE': 'django.db.backends.mysql',
    'NAME': 'lodel2',
    'USER': 'lodel',
    'PASSWORD': 'lodel',
    'HOST': 'localhost',
}

}

** create DATABASES mysql

CREATE DATABASE lodel2 CHARACTER SET utf8 COLLATE utf8_general_ci; GRANT ALL ON lodel2.* TO “lodel”@“localhost”;

** Apply patch(es) for django …

  • makemigrations_interactive_rename.patch => fix makemigrations interactive parameter cd path/to/django/ patch -p2 < /path/to/lodel2/makemigrations_interactive_rename.patch

** create tables for django

if not clean : mysql

DROP DATABASE lodel2; recreate database rm -rf LodelTestInstance/migrations/

./manage.py makemigrations --empty LodelTestInstance ./manage.py migrate