Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
nopaque
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
SFB 1288 - INF
nopaque
Commits
de4a8358
Commit
de4a8358
authored
2 years ago
by
Patrick Jentsch
Browse files
Options
Downloads
Patches
Plain Diff
simplify form code
parent
d35ca7c2
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/auth/forms.py
+1
-1
1 addition, 1 deletion
app/auth/forms.py
app/corpora/forms.py
+21
-23
21 additions, 23 deletions
app/corpora/forms.py
app/services/forms.py
+2
-2
2 additions, 2 deletions
app/services/forms.py
with
24 additions
and
26 deletions
app/auth/forms.py
+
1
−
1
View file @
de4a8358
...
...
@@ -23,7 +23,7 @@ class RegistrationForm(FlaskForm):
username
=
StringField
(
'
Username
'
,
validators
=
[
InputRequired
(),
Length
(
min
=
1
,
max
=
64
),
Length
(
1
,
64
),
Regexp
(
USERNAME_REGEX
,
message
=
'
Usernames must have only letters, numbers, dots or underscores
'
# noqa
...
...
This diff is collapsed.
Click to expand it.
app/corpora/forms.py
+
21
−
23
View file @
de4a8358
...
...
@@ -15,20 +15,20 @@ class AddCorpusFileForm(FlaskForm):
Form to add a .vrt corpus file to the current corpus.
'''
# Required fields
author
=
StringField
(
'
Author
'
,
validators
=
[
InputRequired
(),
Length
(
min
=
1
,
max
=
255
)])
author
=
StringField
(
'
Author
'
,
validators
=
[
InputRequired
(),
Length
(
1
,
255
)])
publishing_year
=
IntegerField
(
'
Publishing year
'
,
validators
=
[
InputRequired
()])
title
=
StringField
(
'
Title
'
,
validators
=
[
InputRequired
(),
Length
(
min
=
1
,
max
=
255
)])
title
=
StringField
(
'
Title
'
,
validators
=
[
InputRequired
(),
Length
(
1
,
255
)])
vrt
=
FileField
(
'
File
'
,
validators
=
[
FileRequired
()])
# Optional fields
address
=
StringField
(
'
Adress
'
,
validators
=
[
Length
(
max
=
255
)])
booktitle
=
StringField
(
'
Booktitle
'
,
validators
=
[
Length
(
max
=
255
)])
chapter
=
StringField
(
'
Chapter
'
,
validators
=
[
Length
(
max
=
255
)])
editor
=
StringField
(
'
Editor
'
,
validators
=
[
Length
(
max
=
255
)])
institution
=
StringField
(
'
Institution
'
,
validators
=
[
Length
(
max
=
255
)])
journal
=
StringField
(
'
Journal
'
,
validators
=
[
Length
(
max
=
255
)])
pages
=
StringField
(
'
Pages
'
,
validators
=
[
Length
(
max
=
255
)])
publisher
=
StringField
(
'
Publisher
'
,
validators
=
[
Length
(
max
=
255
)])
school
=
StringField
(
'
School
'
,
validators
=
[
Length
(
max
=
255
)])
address
=
StringField
(
'
Adress
'
,
validators
=
[
Length
(
255
)])
booktitle
=
StringField
(
'
Booktitle
'
,
validators
=
[
Length
(
255
)])
chapter
=
StringField
(
'
Chapter
'
,
validators
=
[
Length
(
255
)])
editor
=
StringField
(
'
Editor
'
,
validators
=
[
Length
(
255
)])
institution
=
StringField
(
'
Institution
'
,
validators
=
[
Length
(
255
)])
journal
=
StringField
(
'
Journal
'
,
validators
=
[
Length
(
255
)])
pages
=
StringField
(
'
Pages
'
,
validators
=
[
Length
(
255
)])
publisher
=
StringField
(
'
Publisher
'
,
validators
=
[
Length
(
255
)])
school
=
StringField
(
'
School
'
,
validators
=
[
Length
(
255
)])
submit
=
SubmitField
()
def
validate_vrt
(
self
,
field
):
...
...
@@ -40,9 +40,9 @@ class EditCorpusFileForm(FlaskForm):
Form to edit meta data of one corpus file.
'''
# Required fields
author
=
StringField
(
'
Author
'
,
validators
=
[
Data
Required
(),
Length
(
1
,
255
)])
publishing_year
=
IntegerField
(
'
Publishing year
'
,
validators
=
[
Data
Required
()])
title
=
StringField
(
'
Title
'
,
validators
=
[
Data
Required
(),
Length
(
1
,
255
)])
author
=
StringField
(
'
Author
'
,
validators
=
[
Input
Required
(),
Length
(
1
,
255
)])
publishing_year
=
IntegerField
(
'
Publishing year
'
,
validators
=
[
Input
Required
()])
title
=
StringField
(
'
Title
'
,
validators
=
[
Input
Required
(),
Length
(
1
,
255
)])
# Optional fields
address
=
StringField
(
'
Adress
'
,
validators
=
[
Length
(
0
,
255
)])
booktitle
=
StringField
(
'
Booktitle
'
,
validators
=
[
Length
(
0
,
255
)])
...
...
@@ -60,8 +60,8 @@ class AddCorpusForm(FlaskForm):
'''
Form to add a a new corpus.
'''
description
=
StringField
(
'
Description
'
,
validators
=
[
Data
Required
(),
Length
(
1
,
255
)])
title
=
StringField
(
'
Title
'
,
validators
=
[
Data
Required
(),
Length
(
1
,
32
)])
description
=
StringField
(
'
Description
'
,
validators
=
[
Input
Required
(),
Length
(
1
,
255
)])
title
=
StringField
(
'
Title
'
,
validators
=
[
Input
Required
(),
Length
(
1
,
32
)])
submit
=
SubmitField
()
...
...
@@ -69,14 +69,12 @@ class ImportCorpusForm(FlaskForm):
'''
Form to import a corpus.
'''
description
=
StringField
(
'
Description
'
,
validators
=
[
Data
Required
(),
Length
(
1
,
255
)])
archive
=
FileField
(
'
File
'
,
validators
=
[
Data
Required
()])
title
=
StringField
(
'
Title
'
,
validators
=
[
Data
Required
(),
Length
(
1
,
32
)])
description
=
StringField
(
'
Description
'
,
validators
=
[
Input
Required
(),
Length
(
1
,
255
)])
archive
=
FileField
(
'
File
'
,
validators
=
[
File
Required
()])
title
=
StringField
(
'
Title
'
,
validators
=
[
Input
Required
(),
Length
(
1
,
32
)])
submit
=
SubmitField
()
def
__init__
(
self
,
*
args
,
**
kwargs
):
super
().
__init__
(
*
args
,
**
kwargs
)
def
validate_archive
(
self
,
field
):
if
field
.
data
.
mimetype
!=
'
application/zip
'
:
valid_mimetypes
=
[
'
application/zip
'
,
'
application/x-zip
'
,
'
application/x-zip-compressed
'
]
if
field
.
data
.
mimetype
not
in
valid_mimetypes
:
raise
ValidationError
(
'
ZIP files only!
'
)
This diff is collapsed.
Click to expand it.
app/services/forms.py
+
2
−
2
View file @
de4a8358
...
...
@@ -15,8 +15,8 @@ from . import SERVICES
class
AddJobForm
(
FlaskForm
):
description
=
StringField
(
'
Description
'
,
validators
=
[
InputRequired
(),
Length
(
min
=
1
,
max
=
255
)])
title
=
StringField
(
'
Title
'
,
validators
=
[
InputRequired
(),
Length
(
min
=
1
,
max
=
32
)])
description
=
StringField
(
'
Description
'
,
validators
=
[
InputRequired
(),
Length
(
1
,
255
)])
title
=
StringField
(
'
Title
'
,
validators
=
[
InputRequired
(),
Length
(
1
,
32
)])
version
=
SelectField
(
'
Version
'
,
validators
=
[
DataRequired
()])
submit
=
SubmitField
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment