Hironsan
344b7ab0a3
Add unit test for organisms/ProjectList
5 years ago
Hironsan
8b504b200c
Create folders for testing and move tests to it
5 years ago
Hironsan
91754b1a73
Add components for project creation and deletion
5 years ago
Hironsan
c9cbfb4be3
Update project page
5 years ago
Hironsan
528fcf9f59
Add nuxt-link for each project
5 years ago
Hironsan
58e842879e
Add form for project creation
5 years ago
Hironsan
7a6167a23f
Add project service
5 years ago
Hironsan
5114c42fab
Add request class to define services
5 years ago
Hironsan
61757523ee
Add dummy API for development
5 years ago
Hironsan
18b859b3c0
Add frontend boilerplate
5 years ago
Hiroki Nakayama
74f9bba3ae
Merge pull request #298 from shizacat/import_conllu
Use library conllu
5 years ago
Alexey Matveev
4be71c6603
Fix inline variable j
5 years ago
Alexey Matveev
54623a2e58
Fix multi line
5 years ago
Alexey Matveev
43d9234b78
Fix by comment
5 years ago
Alexey Matveev
4a07b2e3f2
Add version bor conllu
5 years ago
Hiroki Nakayama
fa9ae3b1f3
Merge pull request #312 from guillim/guillim_auth_fix
Fix for the authentification test
5 years ago
Hiroki Nakayama
c573c0b3fa
Merge pull request #315 from matthewpick/fix-metadata-import-readme
Improve metadata import/export example
5 years ago
Hiroki Nakayama
2c151114f2
Merge pull request #303 from CatalystCode/enhancement/test-mssql-database
Enhancement/Extend integration tests to cover SQL Server database
5 years ago
Hiroki Nakayama
a44a40b347
Merge pull request #293 from CatalystCode/enhancement/auto-create-admin
Enhancement/Auto create admin
5 years ago
Hiroki Nakayama
f2116565e2
Merge pull request #291 from CatalystCode/enhancement/color-palette
Added color dropdown to help choose contrasting colors for the labels.
5 years ago
Hiroki Nakayama
2b4c54af58
Merge pull request #316 from chakki-works/heroku_docker
Enhancement/Enable Heroku deploy from Dockerfile
5 years ago
Hiroki Nakayama
ef01fc54ed
Merge pull request #320 from CatalystCode/bugfix/google-analytics
Bugfix/Remove Google Analytics from Azure deployment
5 years ago
Clemens Wolff
33f3f17c39
Remove Google Analytics from Azure deployment
5 years ago
icoxfog417
74c81c2a37
Implement docker deployment from app.json
5 years ago
Matt Pick
491893d43a
improve metadata import/export example
5 years ago
Guillim
72a0e04742
We fix the test for the authentification: reusing the setenv function defined in the api package in order to set the proper environment for the test
5 years ago
Hiroki Nakayama
e39b3a1939
Merge pull request #287 from CatalystCode/bugfix/seq2seq_label_download
Bugfix/seq2seq label download
5 years ago
Federica Nocera
48c7ec5441
Now referencing same class for random-color-button.
5 years ago
Federica Nocera
194863532d
Fixed bug with color randomizer button in edit.
5 years ago
Clemens Wolff
b2848b089d
Fix pug
5 years ago
Federica Nocera
ca88194c36
Added color dropdown to help choose contrasting colors for the labels.
5 years ago
Clemens Wolff
c711372a9b
Ensure database is up before migrations
5 years ago
Clemens Wolff
4285fda947
Add test automation for SQL Server backend
5 years ago
Hiroki Nakayama
7e2ba5dd36
Merge pull request #285 from hkaraoguz/master
added environment.yml and updated readme
5 years ago
Hiroki Nakayama
2f997c7e60
Merge pull request #278 from CatalystCode/enhancement/test-production-databases
Enhancement/Test production databases
5 years ago
Hiroki Nakayama
4a211e3fef
Merge pull request #273 from clarus/highlight-search-results
Add highlight of the search results
5 years ago
Hiroki Nakayama
e4458133f4
Merge pull request #269 from CatalystCode/enhancement/render-source-document
Enhancement/Add viewer pane for source document
5 years ago
Hiroki Nakayama
1f316b692f
Merge pull request #255 from CatalystCode/bugfix/support-sql-server
Bugfix/Add support for SQL Server database
5 years ago
Alexey Matveev
4c194289e4
#FIX Lambda may not be necessary
5 years ago
Alexey Matveev
a07dd1863b
Use library conllu
5 years ago
Clemens Wolff
225c5eb2ca
Remove admin user creation container
5 years ago
Clemens Wolff
6b5e525a6b
Ensure container gets cleaned up on stop
5 years ago
Clemens Wolff
b04fb465fb
Turn setup options into sub-headers
5 years ago
Clemens Wolff
dc6028bc74
Add option to auto-create admin
5 years ago
Clemens Wolff
7e30a1e756
Create admin if it doesn't exist
5 years ago
Clemens Wolff
ddef7de35e
Switch to Python 3 superclass method calling
5 years ago
Clemens Wolff
ccbb9b0d2f
Run tests against postgres
5 years ago
Clemens Wolff
d4fea8f6c5
Replace cd with WORKDIR
5 years ago
Clemens Wolff
34028ded09
Add viewer pane for source document
5 years ago
Clemens Wolff
6b0e32e96b
Fix integrity error on SQL Server
Currently we use the unique_together constraint to ensure that if a label has a
shortcut key combination, no other label has the same combination.
However, on SQL Server, the unique_together constraint also looks at null
values which breaks the unique_together constraint since we now can no longer
have two labels without shortcut keys. The error message is as follows:
```
Violation of UNIQUE KEY constraint 'api_label_project_id_prefix_key_suffix_key_1b3d8f77_uniq'.
Cannot insert duplicate key in object 'dbo.api_label'.
The duplicate key value is (32, <NULL>, <NULL>).
```
Moving the validation logic from the database into Django fixes the issue and
makes the constraint clearer.
5 years ago