Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
3bed442c
Commit
3bed442c
authored
Feb 01, 2014
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add data migration to merge first and last names
Issue #401
parent
35304a44
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
122 additions
and
0 deletions
+122
-0
weblate/accounts/migrations/0008_add_full_name.py
weblate/accounts/migrations/0008_add_full_name.py
+122
-0
No files found.
weblate/accounts/migrations/0008_add_full_name.py
0 → 100644
View file @
3bed442c
# -*- coding: utf-8 -*-
from
south.v2
import
DataMigration
class
Migration
(
DataMigration
):
def
forwards
(
self
,
orm
):
'''
Merges first and last name into one field.
'''
for
user
in
orm
[
'auth.User'
].
objects
.
all
():
if
user
.
last_name
not
in
user
.
first_name
:
user
.
first_name
=
u'{0} {1}'
.
format
(
user
.
first_name
,
user
.
last_name
)
user
.
save
()
def
backwards
(
self
,
orm
):
"Write your backwards methods here."
models
=
{
u'accounts.profile'
:
{
'Meta'
:
{
'object_name'
:
'Profile'
},
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'language'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'10'
}),
'languages'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
u"orm['lang.Language']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
}),
'secondary_languages'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'symmetrical'
:
'False'
,
'related_name'
:
"'secondary_profile_set'"
,
'blank'
:
'True'
,
'to'
:
u"orm['lang.Language']"
}),
'subscribe_any_translation'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'subscribe_merge_failure'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'subscribe_new_comment'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'subscribe_new_contributor'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'subscribe_new_language'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'subscribe_new_string'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'subscribe_new_suggestion'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'subscriptions'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
"orm['trans.Project']"
,
'symmetrical'
:
'False'
}),
'suggested'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'translated'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'user'
:
(
'django.db.models.fields.related.OneToOneField'
,
[],
{
'to'
:
u"orm['auth.User']"
,
'unique'
:
'True'
})
},
u'accounts.verifiedemail'
:
{
'Meta'
:
{
'object_name'
:
'VerifiedEmail'
},
'email'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'social'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
u"orm['default.UserSocialAuth']"
})
},
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'
})
},
u'default.usersocialauth'
:
{
'Meta'
:
{
'unique_together'
:
"(('provider', 'uid'),)"
,
'object_name'
:
'UserSocialAuth'
,
'db_table'
:
"'social_auth_usersocialauth'"
},
'extra_data'
:
(
'social.apps.django_app.default.fields.JSONField'
,
[],
{
'default'
:
"'{}'"
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'provider'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'32'
}),
'uid'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'related_name'
:
"'social_auth'"
,
'to'
:
u"orm['auth.User']"
})
},
u'lang.language'
:
{
'Meta'
:
{
'ordering'
:
"['name']"
,
'object_name'
:
'Language'
},
'code'
:
(
'django.db.models.fields.SlugField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'50'
}),
'direction'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'ltr'"
,
'max_length'
:
'3'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'nplurals'
:
(
'django.db.models.fields.SmallIntegerField'
,
[],
{
'default'
:
'0'
}),
'plural_type'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'1'
}),
'pluralequation'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'blank'
:
'True'
})
},
'trans.project'
:
{
'Meta'
:
{
'ordering'
:
"['name']"
,
'object_name'
:
'Project'
},
'commit_message'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"'Translated using Weblate (%(language_name)s)
\
\
n
\
\
nCurrently translated at %(translated_percent)s%% (%(translated)s of %(total)s strings)'"
}),
'committer_email'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'default'
:
"'noreply@weblate.org'"
,
'max_length'
:
'75'
}),
'committer_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'Weblate'"
,
'max_length'
:
'200'
}),
'enable_acl'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
u'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'instructions'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'license'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'150'
,
'blank'
:
'True'
}),
'license_url'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'mail'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
,
'blank'
:
'True'
}),
'merge_style'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'merge'"
,
'max_length'
:
'10'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'100'
}),
'new_lang'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'contact'"
,
'max_length'
:
'10'
}),
'push_on_commit'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'set_translation_team'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'slug'
:
(
'django.db.models.fields.SlugField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'50'
}),
'web'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
})
}
}
complete_apps
=
[
'accounts'
]
symmetrical
=
True
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment