Gitlab CSE Unil
Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
M. Chardon
ADIM
Commits
81a3fd9e
Commit
81a3fd9e
authored
Sep 16, 2014
by
Julien Furrer
Browse files
Initial commit
parents
Changes
226
Hide whitespace changes
Inline
Side-by-side
.gitignore
0 → 100644
View file @
81a3fd9e
.DS_Store
*.pyc
*.swp
.idea
requirements.txt
screen_session_cmd
adim_project/media/*
adim_project/static/*
adim_project/apache.conf
adim_project/wsgi.py
adim_project/settings/local_settings.py
adim/__init__.py
0 → 100644
View file @
81a3fd9e
adim/admin.py
0 → 100644
View file @
81a3fd9e
# coding=utf-8
from
__future__
import
unicode_literals
from
django.contrib
import
admin
from
eav.admin
import
BaseEntityAdmin
,
BaseSchemaAdmin
from
sorl.thumbnail.admin
import
AdminImageMixin
from
adim.models
import
AnObj
,
AOSchema
,
AOType
,
AOAttribute
,
AOChoice
,
Annotation
from
adim.forms
import
AnObjForm
class
AnObjAdmin
(
AdminImageMixin
,
BaseEntityAdmin
):
form
=
AnObjForm
admin
.
site
.
register
(
AnObj
,
AnObjAdmin
)
admin
.
site
.
register
(
AOType
)
class
AOSchemaAdmin
(
BaseSchemaAdmin
):
filter_horizontal
=
(
'ao_types'
,
)
admin
.
site
.
register
(
AOSchema
,
AOSchemaAdmin
)
class
AOChoiceAdmin
(
admin
.
ModelAdmin
):
list_filter
=
(
'schema'
,
)
admin
.
site
.
register
(
AOChoice
,
AOChoiceAdmin
)
admin
.
site
.
register
(
AOAttribute
)
admin
.
site
.
register
(
Annotation
)
\ No newline at end of file
adim/forms.py
0 → 100644
View file @
81a3fd9e
# coding=utf-8
from
__future__
import
unicode_literals
from
models
import
AnObj
from
eav.forms
import
BaseDynamicEntityForm
from
django.forms
import
ImageField
BaseDynamicEntityForm
.
FIELD_CLASSES
.
update
({
'image'
:
ImageField
})
class
AnObjForm
(
BaseDynamicEntityForm
):
model
=
AnObj
adim/migrations/0001_initial.py
0 → 100644
View file @
81a3fd9e
# -*- coding: utf-8 -*-
from
south.utils
import
datetime_utils
as
datetime
from
south.db
import
db
from
south.v2
import
SchemaMigration
from
django.db
import
models
class
Migration
(
SchemaMigration
):
def
forwards
(
self
,
orm
):
# Adding model 'AOType'
db
.
create_table
(
u
'adim_aotype'
,
(
(
u
'id'
,
self
.
gf
(
'django.db.models.fields.AutoField'
)(
primary_key
=
True
)),
(
'name'
,
self
.
gf
(
'django.db.models.fields.CharField'
)(
max_length
=
128
)),
(
'title'
,
self
.
gf
(
'django.db.models.fields.CharField'
)(
default
=
u
''
,
max_length
=
512
,
blank
=
True
)),
))
db
.
send_create_signal
(
u
'adim'
,
[
'AOType'
])
# Adding model 'AOSchema'
db
.
create_table
(
u
'adim_aoschema'
,
(
(
u
'id'
,
self
.
gf
(
'django.db.models.fields.AutoField'
)(
primary_key
=
True
)),
(
'title'
,
self
.
gf
(
'django.db.models.fields.CharField'
)(
max_length
=
250
)),
(
'name'
,
self
.
gf
(
'autoslug.fields.AutoSlugField'
)(
unique_with
=
(),
max_length
=
250
,
populate_from
=
'title'
,
blank
=
True
)),
(
'help_text'
,
self
.
gf
(
'django.db.models.fields.CharField'
)(
max_length
=
250
,
blank
=
True
)),
(
'datatype'
,
self
.
gf
(
'django.db.models.fields.CharField'
)(
max_length
=
5
)),
(
'required'
,
self
.
gf
(
'django.db.models.fields.BooleanField'
)()),
(
'searched'
,
self
.
gf
(
'django.db.models.fields.BooleanField'
)()),
(
'filtered'
,
self
.
gf
(
'django.db.models.fields.BooleanField'
)()),
(
'sortable'
,
self
.
gf
(
'django.db.models.fields.BooleanField'
)()),
))
db
.
send_create_signal
(
u
'adim'
,
[
'AOSchema'
])
# Adding M2M table for field ao_types on 'AOSchema'
m2m_table_name
=
db
.
shorten_name
(
u
'adim_aoschema_ao_types'
)
db
.
create_table
(
m2m_table_name
,
(
(
'id'
,
models
.
AutoField
(
verbose_name
=
'ID'
,
primary_key
=
True
,
auto_created
=
True
)),
(
'aoschema'
,
models
.
ForeignKey
(
orm
[
u
'adim.aoschema'
],
null
=
False
)),
(
'aotype'
,
models
.
ForeignKey
(
orm
[
u
'adim.aotype'
],
null
=
False
))
))
db
.
create_unique
(
m2m_table_name
,
[
'aoschema_id'
,
'aotype_id'
])
# Adding model 'AOChoice'
db
.
create_table
(
u
'adim_aochoice'
,
(
(
u
'id'
,
self
.
gf
(
'django.db.models.fields.AutoField'
)(
primary_key
=
True
)),
(
'title'
,
self
.
gf
(
'django.db.models.fields.CharField'
)(
max_length
=
100
)),
(
'schema'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
related_name
=
u
'choices'
,
to
=
orm
[
'adim.AOSchema'
])),
))
db
.
send_create_signal
(
u
'adim'
,
[
'AOChoice'
])
# Adding model 'AOAttribute'
db
.
create_table
(
u
'adim_aoattribute'
,
(
(
u
'id'
,
self
.
gf
(
'django.db.models.fields.AutoField'
)(
primary_key
=
True
)),
(
'entity_type'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
to
=
orm
[
'contenttypes.ContentType'
])),
(
'entity_id'
,
self
.
gf
(
'django.db.models.fields.IntegerField'
)()),
(
'value_text'
,
self
.
gf
(
'django.db.models.fields.TextField'
)(
null
=
True
,
blank
=
True
)),
(
'value_float'
,
self
.
gf
(
'django.db.models.fields.FloatField'
)(
null
=
True
,
blank
=
True
)),
(
'value_date'
,
self
.
gf
(
'django.db.models.fields.DateField'
)(
null
=
True
,
blank
=
True
)),
(
'value_bool'
,
self
.
gf
(
'django.db.models.fields.NullBooleanField'
)(
null
=
True
,
blank
=
True
)),
(
'value_range_min'
,
self
.
gf
(
'django.db.models.fields.FloatField'
)(
null
=
True
,
blank
=
True
)),
(
'value_range_max'
,
self
.
gf
(
'django.db.models.fields.FloatField'
)(
null
=
True
,
blank
=
True
)),
(
'schema'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
related_name
=
u
'attrs'
,
to
=
orm
[
'adim.AOSchema'
])),
(
'choice'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
to
=
orm
[
'adim.AOChoice'
],
null
=
True
,
blank
=
True
)),
(
'value_image'
,
self
.
gf
(
'django.db.models.fields.files.ImageField'
)(
max_length
=
100
,
null
=
True
,
blank
=
True
)),
))
db
.
send_create_signal
(
u
'adim'
,
[
'AOAttribute'
])
# Adding model 'AnObj'
db
.
create_table
(
u
'adim_anobj'
,
(
(
u
'id'
,
self
.
gf
(
'django.db.models.fields.AutoField'
)(
primary_key
=
True
)),
(
'name'
,
self
.
gf
(
'django.db.models.fields.CharField'
)(
max_length
=
125
)),
(
'owner'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
to
=
orm
[
'auth.User'
])),
(
'ao_type'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
to
=
orm
[
'adim.AOType'
],
null
=
True
,
blank
=
True
)),
))
db
.
send_create_signal
(
u
'adim'
,
[
'AnObj'
])
def
backwards
(
self
,
orm
):
# Deleting model 'AOType'
db
.
delete_table
(
u
'adim_aotype'
)
# Deleting model 'AOSchema'
db
.
delete_table
(
u
'adim_aoschema'
)
# Removing M2M table for field ao_types on 'AOSchema'
db
.
delete_table
(
db
.
shorten_name
(
u
'adim_aoschema_ao_types'
))
# Deleting model 'AOChoice'
db
.
delete_table
(
u
'adim_aochoice'
)
# Deleting model 'AOAttribute'
db
.
delete_table
(
u
'adim_aoattribute'
)
# Deleting model 'AnObj'
db
.
delete_table
(
u
'adim_anobj'
)
models
=
{
u
'adim.anobj'
:
{
'Meta'
:
{
'object_name'
:
'AnObj'
},
'ao_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['adim.AOType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'125'
}),
'owner'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['auth.User']"
})
},
u
'adim.aoattribute'
:
{
'Meta'
:
{
'object_name'
:
'AOAttribute'
},
'choice'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['adim.AOChoice']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'entity_id'
:
(
'django.db.models.fields.IntegerField'
,
[],
{}),
'entity_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['contenttypes.ContentType']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'schema'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"u'attrs'"
,
'to'
:
u
"orm['adim.AOSchema']"
}),
'value_bool'
:
(
'django.db.models.fields.NullBooleanField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_date'
:
(
'django.db.models.fields.DateField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_float'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_image'
:
(
'django.db.models.fields.files.ImageField'
,
[],
{
'max_length'
:
'100'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_range_max'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_range_min'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_text'
:
(
'django.db.models.fields.TextField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
})
},
u
'adim.aochoice'
:
{
'Meta'
:
{
'object_name'
:
'AOChoice'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'schema'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"u'choices'"
,
'to'
:
u
"orm['adim.AOSchema']"
}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
})
},
u
'adim.aoschema'
:
{
'Meta'
:
{
'object_name'
:
'AOSchema'
},
'ao_types'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'to'
:
u
"orm['adim.AOType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'datatype'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'5'
}),
'filtered'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'help_text'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'250'
,
'blank'
:
'True'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'autoslug.fields.AutoSlugField'
,
[],
{
'unique_with'
:
'()'
,
'max_length'
:
'250'
,
'populate_from'
:
"'title'"
,
'blank'
:
'True'
}),
'required'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'searched'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'sortable'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'250'
})
},
u
'adim.aotype'
:
{
'Meta'
:
{
'object_name'
:
'AOType'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'128'
}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"u''"
,
'max_length'
:
'512'
,
'blank'
:
'True'
})
},
u
'auth.group'
:
{
'Meta'
:
{
'object_name'
:
'Group'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'80'
}),
'permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
u
"orm['auth.Permission']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
})
},
u
'auth.permission'
:
{
'Meta'
:
{
'ordering'
:
"(u'content_type__app_label', u'content_type__model', u'codename')"
,
'unique_together'
:
"((u'content_type', u'codename'),)"
,
'object_name'
:
'Permission'
},
'codename'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'content_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['contenttypes.ContentType']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'50'
})
},
u
'auth.user'
:
{
'Meta'
:
{
'object_name'
:
'User'
},
'date_joined'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'email'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
,
'blank'
:
'True'
}),
'first_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'groups'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'related_name'
:
"u'user_set'"
,
'blank'
:
'True'
,
'to'
:
u
"orm['auth.Group']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'is_active'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'is_staff'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'is_superuser'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'last_login'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'last_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'password'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'128'
}),
'user_permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'related_name'
:
"u'user_set'"
,
'blank'
:
'True'
,
'to'
:
u
"orm['auth.Permission']"
}),
'username'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'30'
})
},
u
'contenttypes.contenttype'
:
{
'Meta'
:
{
'ordering'
:
"('name',)"
,
'unique_together'
:
"(('app_label', 'model'),)"
,
'object_name'
:
'ContentType'
,
'db_table'
:
"'django_content_type'"
},
'app_label'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'model'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
})
}
}
complete_apps
=
[
'adim'
]
\ No newline at end of file
adim/migrations/0002_auto__add_field_anobj_image.py
0 → 100644
View file @
81a3fd9e
# -*- coding: utf-8 -*-
from
south.utils
import
datetime_utils
as
datetime
from
south.db
import
db
from
south.v2
import
SchemaMigration
from
django.db
import
models
class
Migration
(
SchemaMigration
):
def
forwards
(
self
,
orm
):
# Adding field 'AnObj.image'
db
.
add_column
(
u
'adim_anobj'
,
'image'
,
self
.
gf
(
'django.db.models.fields.files.ImageField'
)(
max_length
=
100
,
null
=
True
),
keep_default
=
False
)
def
backwards
(
self
,
orm
):
# Deleting field 'AnObj.image'
db
.
delete_column
(
u
'adim_anobj'
,
'image'
)
models
=
{
u
'adim.anobj'
:
{
'Meta'
:
{
'object_name'
:
'AnObj'
},
'ao_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['adim.AOType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'image'
:
(
'django.db.models.fields.files.ImageField'
,
[],
{
'max_length'
:
'100'
,
'null'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'125'
}),
'owner'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['auth.User']"
})
},
u
'adim.aoattribute'
:
{
'Meta'
:
{
'object_name'
:
'AOAttribute'
},
'choice'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['adim.AOChoice']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'entity_id'
:
(
'django.db.models.fields.IntegerField'
,
[],
{}),
'entity_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['contenttypes.ContentType']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'schema'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"u'attrs'"
,
'to'
:
u
"orm['adim.AOSchema']"
}),
'value_bool'
:
(
'django.db.models.fields.NullBooleanField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_date'
:
(
'django.db.models.fields.DateField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_float'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_image'
:
(
'django.db.models.fields.files.ImageField'
,
[],
{
'max_length'
:
'100'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_range_max'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_range_min'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_text'
:
(
'django.db.models.fields.TextField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
})
},
u
'adim.aochoice'
:
{
'Meta'
:
{
'object_name'
:
'AOChoice'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'schema'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"u'choices'"
,
'to'
:
u
"orm['adim.AOSchema']"
}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
})
},
u
'adim.aoschema'
:
{
'Meta'
:
{
'object_name'
:
'AOSchema'
},
'ao_types'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'to'
:
u
"orm['adim.AOType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'datatype'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'5'
}),
'filtered'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'help_text'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'250'
,
'blank'
:
'True'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'autoslug.fields.AutoSlugField'
,
[],
{
'unique_with'
:
'()'
,
'max_length'
:
'250'
,
'populate_from'
:
"'title'"
,
'blank'
:
'True'
}),
'required'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'searched'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'sortable'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'250'
})
},
u
'adim.aotype'
:
{
'Meta'
:
{
'object_name'
:
'AOType'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'128'
}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"u''"
,
'max_length'
:
'512'
,
'blank'
:
'True'
})
},
u
'auth.group'
:
{
'Meta'
:
{
'object_name'
:
'Group'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'80'
}),
'permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
u
"orm['auth.Permission']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
})
},
u
'auth.permission'
:
{
'Meta'
:
{
'ordering'
:
"(u'content_type__app_label', u'content_type__model', u'codename')"
,
'unique_together'
:
"((u'content_type', u'codename'),)"
,
'object_name'
:
'Permission'
},
'codename'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'content_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['contenttypes.ContentType']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'50'
})
},
u
'auth.user'
:
{
'Meta'
:
{
'object_name'
:
'User'
},
'date_joined'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'email'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
,
'blank'
:
'True'
}),
'first_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'groups'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'related_name'
:
"u'user_set'"
,
'blank'
:
'True'
,
'to'
:
u
"orm['auth.Group']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'is_active'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'is_staff'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'is_superuser'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'last_login'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'last_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'password'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'128'
}),
'user_permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'related_name'
:
"u'user_set'"
,
'blank'
:
'True'
,
'to'
:
u
"orm['auth.Permission']"
}),
'username'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'30'
})
},
u
'contenttypes.contenttype'
:
{
'Meta'
:
{
'ordering'
:
"('name',)"
,
'unique_together'
:
"(('app_label', 'model'),)"
,
'object_name'
:
'ContentType'
,
'db_table'
:
"'django_content_type'"
},
'app_label'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'model'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
})
}
}
complete_apps
=
[
'adim'
]
\ No newline at end of file
adim/migrations/0003_auto__chg_field_anobj_image.py
0 → 100644
View file @
81a3fd9e
# -*- coding: utf-8 -*-
from
south.utils
import
datetime_utils
as
datetime
from
south.db
import
db
from
south.v2
import
SchemaMigration
from
django.db
import
models
class
Migration
(
SchemaMigration
):
def
forwards
(
self
,
orm
):
# Changing field 'AnObj.image'
db
.
alter_column
(
u
'adim_anobj'
,
'image'
,
self
.
gf
(
u
'sorl.thumbnail.fields.ImageField'
)(
max_length
=
100
,
null
=
True
))
def
backwards
(
self
,
orm
):
# Changing field 'AnObj.image'
db
.
alter_column
(
u
'adim_anobj'
,
'image'
,
self
.
gf
(
'django.db.models.fields.files.ImageField'
)(
max_length
=
100
,
null
=
True
))
models
=
{
u
'adim.anobj'
:
{
'Meta'
:
{
'object_name'
:
'AnObj'
},
'ao_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['adim.AOType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'image'
:
(
u
'sorl.thumbnail.fields.ImageField'
,
[],
{
'max_length'
:
'100'
,
'null'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'125'
}),
'owner'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['auth.User']"
})
},
u
'adim.aoattribute'
:
{
'Meta'
:
{
'object_name'
:
'AOAttribute'
},
'choice'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['adim.AOChoice']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'entity_id'
:
(
'django.db.models.fields.IntegerField'
,
[],
{}),
'entity_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['contenttypes.ContentType']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'schema'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"u'attrs'"
,
'to'
:
u
"orm['adim.AOSchema']"
}),
'value_bool'
:
(
'django.db.models.fields.NullBooleanField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_date'
:
(
'django.db.models.fields.DateField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_float'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_image'
:
(
'django.db.models.fields.files.ImageField'
,
[],
{
'max_length'
:
'100'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_range_max'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_range_min'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_text'
:
(
'django.db.models.fields.TextField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
})
},
u
'adim.aochoice'
:
{
'Meta'
:
{
'object_name'
:
'AOChoice'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'schema'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"u'choices'"
,
'to'
:
u
"orm['adim.AOSchema']"
}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
})
},
u
'adim.aoschema'
:
{
'Meta'
:
{
'object_name'
:
'AOSchema'
},
'ao_types'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'to'
:
u
"orm['adim.AOType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'datatype'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'5'
}),
'filtered'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'help_text'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'250'
,
'blank'
:
'True'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'autoslug.fields.AutoSlugField'
,
[],
{
'unique_with'
:
'()'
,
'max_length'
:
'250'
,
'populate_from'
:
"'title'"
,
'blank'
:
'True'
}),
'required'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'searched'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'sortable'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'250'
})
},
u
'adim.aotype'
:
{
'Meta'
:
{
'object_name'
:
'AOType'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'128'
}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"u''"
,
'max_length'
:
'512'
,
'blank'
:
'True'
})
},
u
'auth.group'
:
{
'Meta'
:
{
'object_name'
:
'Group'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'80'
}),
'permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
u
"orm['auth.Permission']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
})
},
u
'auth.permission'
:
{
'Meta'
:
{
'ordering'
:
"(u'content_type__app_label', u'content_type__model', u'codename')"
,
'unique_together'
:
"((u'content_type', u'codename'),)"
,
'object_name'
:
'Permission'
},
'codename'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'content_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['contenttypes.ContentType']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'50'
})
},
u
'auth.user'
:
{
'Meta'
:
{
'object_name'
:
'User'
},
'date_joined'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'email'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
,
'blank'
:
'True'
}),
'first_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'groups'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'related_name'
:
"u'user_set'"
,
'blank'
:
'True'
,
'to'
:
u
"orm['auth.Group']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'is_active'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'is_staff'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'is_superuser'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'last_login'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'last_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'30'
,
'blank'
:
'True'
}),
'password'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'128'
}),
'user_permissions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'related_name'
:
"u'user_set'"
,
'blank'
:
'True'
,
'to'
:
u
"orm['auth.Permission']"
}),
'username'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'30'
})
},
u
'contenttypes.contenttype'
:
{
'Meta'
:
{
'ordering'
:
"('name',)"
,
'unique_together'
:
"(('app_label', 'model'),)"
,
'object_name'
:
'ContentType'
,
'db_table'
:
"'django_content_type'"
},
'app_label'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'model'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
})
}
}
complete_apps
=
[
'adim'
]
\ No newline at end of file
adim/migrations/0004_auto__add_annotation.py
0 → 100644
View file @
81a3fd9e
# -*- coding: utf-8 -*-
from
south.utils
import
datetime_utils
as
datetime
from
south.db
import
db
from
south.v2
import
SchemaMigration
from
django.db
import
models
class
Migration
(
SchemaMigration
):
def
forwards
(
self
,
orm
):
# Adding model 'Annotation'
db
.
create_table
(
u
'adim_annotation'
,
(
(
u
'id'
,
self
.
gf
(
'django.db.models.fields.AutoField'
)(
primary_key
=
True
)),
(
'owner'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
to
=
orm
[
'auth.User'
])),
(
'annotable'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
related_name
=
u
'annotations'
,
to
=
orm
[
'adim.AnObj'
])),
(
'item'
,
self
.
gf
(
'django.db.models.fields.TextField'
)()),
(
'order'
,
self
.
gf
(
'django.db.models.fields.IntegerField'
)(
default
=
0
)),
(
'comment'
,
self
.
gf
(
'django.db.models.fields.CharField'
)(
default
=
u
''
,
max_length
=
512
,
blank
=
True
)),
(
'creation_date'
,
self
.
gf
(
'django.db.models.fields.DateTimeField'
)(
auto_now_add
=
True
,
blank
=
True
)),
(
'modification_date'
,
self
.
gf
(
'django.db.models.fields.DateTimeField'
)(
auto_now
=
True
,
blank
=
True
)),
))
db
.
send_create_signal
(
u
'adim'
,
[
'Annotation'
])
def
backwards
(
self
,
orm
):
# Deleting model 'Annotation'
db
.
delete_table
(
u
'adim_annotation'
)
models
=
{
u
'adim.annotation'
:
{
'Meta'
:
{
'ordering'
:
"(u'owner__id', u'-order', u'modification_date')"
,
'object_name'
:
'Annotation'
},
'annotable'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"u'annotations'"
,
'to'
:
u
"orm['adim.AnObj']"
}),
'comment'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"u''"
,
'max_length'
:
'512'
,
'blank'
:
'True'
}),
'creation_date'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now_add'
:
'True'
,
'blank'
:
'True'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'item'
:
(
'django.db.models.fields.TextField'
,
[],
{}),
'modification_date'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now'
:
'True'
,
'blank'
:
'True'
}),
'order'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
}),
'owner'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['auth.User']"
})
},
u
'adim.anobj'
:
{
'Meta'
:
{
'object_name'
:
'AnObj'
},
'ao_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['adim.AOType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'image'
:
(
u
'sorl.thumbnail.fields.ImageField'
,
[],
{
'max_length'
:
'100'
,
'null'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'125'
}),
'owner'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['auth.User']"
})
},
u
'adim.aoattribute'
:
{
'Meta'
:
{
'object_name'
:
'AOAttribute'
},
'choice'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['adim.AOChoice']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'entity_id'
:
(
'django.db.models.fields.IntegerField'
,
[],
{}),
'entity_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u
"orm['contenttypes.ContentType']"
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'schema'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"u'attrs'"
,
'to'
:
u
"orm['adim.AOSchema']"
}),
'value_bool'
:
(
'django.db.models.fields.NullBooleanField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_date'
:
(
'django.db.models.fields.DateField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_float'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_image'
:
(
'django.db.models.fields.files.ImageField'
,
[],
{
'max_length'
:
'100'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_range_max'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_range_min'
:
(
'django.db.models.fields.FloatField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'value_text'
:
(
'django.db.models.fields.TextField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
})
},
u
'adim.aochoice'
:
{
'Meta'
:
{
'object_name'
:
'AOChoice'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'schema'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"u'choices'"
,
'to'
:
u
"orm['adim.AOSchema']"
}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
})
},
u
'adim.aoschema'
:
{
'Meta'
:
{
'object_name'
:
'AOSchema'
},
'ao_types'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'to'
:
u
"orm['adim.AOType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'datatype'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'5'
}),
'filtered'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'help_text'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'250'
,
'blank'
:
'True'
}),
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'autoslug.fields.AutoSlugField'
,
[],
{
'unique_with'
:
'()'
,
'max_length'
:
'250'
,
'populate_from'
:
"'title'"
,
'blank'
:
'True'
}),
'required'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'searched'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'sortable'
:
(
'django.db.models.fields.BooleanField'
,
[],
{}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'250'
})
},
u
'adim.aotype'
:
{
'Meta'
:
{
'object_name'
:
'AOType'
},
u
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'128'
}),
'title'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"u''"
,
'max_length'
:
'512'
,
'blank'
:
'True'
})
},