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
0a2e41e3
Commit
0a2e41e3
authored
Apr 11, 2013
by
Michal Čihař
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add model for storing exported git URL (issue #207)
parent
3996ce32
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
216 additions
and
0 deletions
+216
-0
trans/migrations/0034_auto__add_field_subproject_git_export.py
.../migrations/0034_auto__add_field_subproject_git_export.py
+211
-0
trans/models/subproject.py
trans/models/subproject.py
+5
-0
No files found.
trans/migrations/0034_auto__add_field_subproject_git_export.py
0 → 100644
View file @
0a2e41e3
# -*- coding: utf-8 -*-
#
# Copyright © 2012 - 2013 Michal Čihař <michal@cihar.com>
#
# This file is part of Weblate <http://weblate.org/>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import
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 'SubProject.git_export'
db
.
add_column
(
'trans_subproject'
,
'git_export'
,
self
.
gf
(
'django.db.models.fields.CharField'
)(
default
=
''
,
max_length
=
200
,
blank
=
True
),
keep_default
=
False
)
def
backwards
(
self
,
orm
):
# Deleting field 'SubProject.git_export'
db
.
delete_column
(
'trans_subproject'
,
'git_export'
)
models
=
{
'auth.group'
:
{
'Meta'
:
{
'object_name'
:
'Group'
},
'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'
:
"orm['auth.Permission']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
})
},
'auth.permission'
:
{
'Meta'
:
{
'ordering'
:
"('content_type__app_label', 'content_type__model', 'codename')"
,
'unique_together'
:
"(('content_type', 'codename'),)"
,
'object_name'
:
'Permission'
},
'codename'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'content_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['contenttypes.ContentType']"
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'50'
})
},
'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'
,
[],
{
'to'
:
"orm['auth.Group']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
}),
'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'
,
[],
{
'to'
:
"orm['auth.Permission']"
,
'symmetrical'
:
'False'
,
'blank'
:
'True'
}),
'username'
:
(
'django.db.models.fields.CharField'
,
[],
{
'unique'
:
'True'
,
'max_length'
:
'30'
})
},
'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'
}),
'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'
})
},
'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'
}),
'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.change'
:
{
'Meta'
:
{
'ordering'
:
"['-timestamp']"
,
'object_name'
:
'Change'
},
'action'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'2'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'timestamp'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now_add'
:
'True'
,
'db_index'
:
'True'
,
'blank'
:
'True'
}),
'translation'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Translation']"
}),
'unit'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Unit']"
,
'null'
:
'True'
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['auth.User']"
,
'null'
:
'True'
})
},
'trans.check'
:
{
'Meta'
:
{
'object_name'
:
'Check'
},
'check'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'20'
}),
'checksum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'ignore'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'db_index'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['lang.Language']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
})
},
'trans.comment'
:
{
'Meta'
:
{
'ordering'
:
"['timestamp']"
,
'object_name'
:
'Comment'
},
'checksum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
'comment'
:
(
'django.db.models.fields.TextField'
,
[],
{}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['lang.Language']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
}),
'timestamp'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now_add'
:
'True'
,
'db_index'
:
'True'
,
'blank'
:
'True'
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['auth.User']"
,
'null'
:
'True'
,
'blank'
:
'True'
})
},
'trans.dictionary'
:
{
'Meta'
:
{
'ordering'
:
"['source']"
,
'object_name'
:
'Dictionary'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['lang.Language']"
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
}),
'source'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
,
'db_index'
:
'True'
}),
'target'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
})
},
'trans.indexupdate'
:
{
'Meta'
:
{
'object_name'
:
'IndexUpdate'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'source'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'unit'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Unit']"
})
},
'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'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'instructions'
:
(
'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'
})
},
'trans.subproject'
:
{
'Meta'
:
{
'ordering'
:
"['project__name', 'name']"
,
'unique_together'
:
"(('project', 'name'), ('project', 'slug'))"
,
'object_name'
:
'SubProject'
},
'allow_translation_propagation'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
}),
'branch'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'master'"
,
'max_length'
:
'50'
}),
'extra_commit_file'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"''"
,
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'file_format'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"'auto'"
,
'max_length'
:
'50'
}),
'filemask'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
}),
'git_export'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'locked'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'100'
}),
'pre_commit_script'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"''"
,
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
}),
'push'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'repo'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
}),
'report_source_bugs'
:
(
'django.db.models.fields.EmailField'
,
[],
{
'max_length'
:
'75'
,
'blank'
:
'True'
}),
'repoweb'
:
(
'django.db.models.fields.URLField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
}),
'slug'
:
(
'django.db.models.fields.SlugField'
,
[],
{
'max_length'
:
'50'
}),
'template'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
,
'blank'
:
'True'
})
},
'trans.suggestion'
:
{
'Meta'
:
{
'object_name'
:
'Suggestion'
},
'checksum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['lang.Language']"
}),
'project'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Project']"
}),
'target'
:
(
'django.db.models.fields.TextField'
,
[],
{}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['auth.User']"
,
'null'
:
'True'
,
'blank'
:
'True'
})
},
'trans.translation'
:
{
'Meta'
:
{
'ordering'
:
"['language__name']"
,
'object_name'
:
'Translation'
},
'enabled'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'True'
,
'db_index'
:
'True'
}),
'failing_checks'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'filename'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'200'
}),
'fuzzy'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'have_suggestion'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'language'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['lang.Language']"
}),
'language_code'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"''"
,
'max_length'
:
'20'
}),
'lock_time'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'default'
:
'datetime.datetime.now'
}),
'lock_user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'default'
:
'None'
,
'to'
:
"orm['auth.User']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'revision'
:
(
'django.db.models.fields.CharField'
,
[],
{
'default'
:
"''"
,
'max_length'
:
'100'
,
'blank'
:
'True'
}),
'subproject'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.SubProject']"
}),
'total'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
}),
'translated'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'default'
:
'0'
,
'db_index'
:
'True'
})
},
'trans.unit'
:
{
'Meta'
:
{
'ordering'
:
"['position']"
,
'object_name'
:
'Unit'
},
'checksum'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'40'
,
'db_index'
:
'True'
}),
'comment'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'context'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'flags'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'fuzzy'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'db_index'
:
'True'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'location'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'position'
:
(
'django.db.models.fields.IntegerField'
,
[],
{
'db_index'
:
'True'
}),
'previous_source'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'source'
:
(
'django.db.models.fields.TextField'
,
[],
{}),
'target'
:
(
'django.db.models.fields.TextField'
,
[],
{
'default'
:
"''"
,
'blank'
:
'True'
}),
'translated'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'db_index'
:
'True'
}),
'translation'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['trans.Translation']"
})
}
}
complete_apps
=
[
'trans'
]
trans/models/subproject.py
View file @
0a2e41e3
...
@@ -94,6 +94,11 @@ class SubProject(models.Model, PercentMixin, URLMixin):
...
@@ -94,6 +94,11 @@ class SubProject(models.Model, PercentMixin, URLMixin):
validators
=
[
validate_repoweb
],
validators
=
[
validate_repoweb
],
blank
=
True
,
blank
=
True
,
)
)
git_export
=
models
.
CharField
(
max_length
=
200
,
help_text
=
ugettext_lazy
(
'URL of Git repository where users can fetch changes from Weblate'
),
blank
=
True
)
report_source_bugs
=
models
.
EmailField
(
report_source_bugs
=
models
.
EmailField
(
help_text
=
ugettext_lazy
(
help_text
=
ugettext_lazy
(
'Email address where errors in source string will be reported, '
'Email address where errors in source string will be reported, '
...
...
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