Clemens Wolff
4b7dc702af
Speed up build by reducing staticfiles scope
5 years ago
Clemens Wolff
5cd3f31783
Speed up failed CI by delaying collectstatic
5 years ago
Clemens Wolff
e249f3b0ef
Add support for private docker registry
5 years ago
Clemens Wolff
a6e0ddd959
Add option to publish to non DockerHub registry
5 years ago
Clemens Wolff
fd2e7ca363
Factor out reloading of settings module
5 years ago
Clemens Wolff
02bbc413c3
Fix Azure database connection string parsing
5 years ago
Clemens Wolff
996d67ad54
Add compose file for development setup
5 years ago
Clemens Wolff
402f9fe8e5
Move database setup instructions to usage section
5 years ago
Hiroki Nakayama
c0917873ba
Merge pull request #200 from CatalystCode/enhancement/view-document-metadata
Enhancement/View document metadata
5 years ago
Clemens Wolff
9c5bf9c9fd
Add modal to show document metadata
5 years ago
Clemens Wolff
64798605cd
Make annotation modal state name more explicit
5 years ago
Clemens Wolff
606ecfa90b
Auto-generate label colors on corpus import
5 years ago
Clemens Wolff
e37e16bfad
Auto-generate label shortkeys on corpus import
5 years ago
Clemens Wolff
112fba1a7c
Add tests for label creation on corpus import
5 years ago
Hiroki Nakayama
d5de748e26
Merge pull request #194 from CatalystCode/bugfix/completed-samples-are-duplicated
Bugfix/Fix multiple display of completed items
5 years ago
Hiroki Nakayama
870e7fe963
Merge pull request #192 from maneo/features/download_progress
improvement in responsivness of download view
5 years ago
Hiroki Nakayama
5f5eae1a8f
Merge pull request #184 from CatalystCode/enhancement/tag-docker-image-with-build-number
Enhancement/Publish each master to Docker Hub
5 years ago
Hiroki Nakayama
eba04ab68e
Merge pull request #189 from CatalystCode/bugfix/ssl-connection-with-sqlite
Bugfix/Fix sslmode with custom sqlite path and on Heroku
5 years ago
Hiroki Nakayama
0006cf75f2
Merge pull request #181 from CatalystCode/enhancement/move-projects-template-to-pug
Enhancement/Move projects Vue template to pug
5 years ago
Clemens Wolff
8ffaeff473
Fix link
5 years ago
Clemens Wolff
379635b0d0
Move projects Vue template to pug
All Vue templates in the code base except for the Projects component are
written in pug, so this change makes the codebase consistent by also
porting the Projects component template from html to pug.
5 years ago
Clemens Wolff
c571d69b35
Fix multiple display of completed items
5 years ago
Clemens Wolff
3759edb544
Add button to delete documents on dataset page
5 years ago
Adam Dudczak
487e7ab204
improvement in responsivness of download view
5 years ago
Clemens Wolff
477f8c3724
Fix sslmode example value
Correct values can be found here:
https://www.postgresql.org/docs/9.1/libpq-ssl.html
5 years ago
Clemens Wolff
756fff84fa
Add test case for explicit sslmode enabling
5 years ago
Clemens Wolff
89372b6242
Remove IS_HEROKU flag
5 years ago
Clemens Wolff
65f2420851
Add unit tests for config
5 years ago
Clemens Wolff
e5c935afa4
Avoid auto-overwriting sslmode outside of heroku
5 years ago
Clemens Wolff
6f2dd0cb72
Fix sslmode with custom SQLite DATABASE_URL
5 years ago
Hiroki Nakayama
6ee23ec4fa
Merge pull request #170 from CatalystCode/enhancement/allow-non-ssl-database-connections
Enhancement/Enable non-SSL connections to the database
5 years ago
Clemens Wolff
0d5ff1436a
Publish each master build to docker hub
5 years ago
Hiroki Nakayama
8c0eb4dc9c
Merge pull request #176 from CatalystCode/enhancement/remove-django-template-inheritance-from-admin
Enhancement/Remove Django template inheritance in admin pages
5 years ago
Clemens Wolff
df2bbe34b8
Remove Django template inheritance in admin pages
5 years ago
Hiroki Nakayama
1e7533eb4c
Merge branch 'master' into enhancement/move-swiper-to-bundle
5 years ago
Hiroki Nakayama
fd4910f374
Merge pull request #159 from CatalystCode/enhancement/remove-django-template-inheritance-from-annotation
Enhancement/Remove Django template inheritance from annotation pages
5 years ago
Clemens Wolff
7f302e1448
Add environment variable for conn_max_age
5 years ago
Clemens Wolff
e311efcc2a
Enable non-SSL connections to the database
Currently, whenever the database is changed from the default SQLite via
the DATABASE_URL environment variable, the connection to the database is
forced to be SSL. This is a great default for production use-cases.
However, in some scenarios, users may not want to use SSL, e.g. when
testing against a local MySQL or PostgreSQL database.
This change enables users to explicitly request a non-SSL connection to
the database by passing the `?sslmode=disable` (or similar) query
argument in the DATABASE_URL environment variable.
For backwards compatibility, if the `sslmode` is not set explicitly in
the connection URL, the code still defaults to requiring SSL on the
connection.
5 years ago
Clemens Wolff
84653f31fb
Move swiper initialization to webpack bundle
Currently most of doccano's Javascript is in webpack bundles, except for
a few snippets like swiper. To increase consistency, this change moves
the swiper code also into a webpack bundle.
In addition to increasing consistency, this also has the advantages of:
1) Giving developers a single location/directory to look for all the
Javascript.
2) Making the swiper dependency explicit by listing it in the
package.json manifest
3) Ensuring that swiper gets built and minified in the same way as other
dependencies.
4) Making swiper available when developing offline.
In the future, it would also be worth considering to move all the CSS
includes into webpack.
5 years ago
Clemens Wolff
88a4826951
Extract inline styles to scoped styles
5 years ago
Clemens Wolff
e5fc2dbab7
Fix incorrect sequence labeling annotation UI
5 years ago
Clemens Wolff
af26d38397
Fix TypeError: this.chunks is not a function
5 years ago
Clemens Wolff
2bdcada9a7
Collapse Django annotation templates
5 years ago
Clemens Wolff
c2adf315cb
Add linter for pug templates
5 years ago
Clemens Wolff
8d7c98cbb1
Refactor to remove Django template inheritance
5 years ago
Hiroki Nakayama
ec7cf38017
Merge pull request #163 from chakki-works/#162
Possible to save the same label in other projects
5 years ago
Hironsan
eb854b1929
Add filter condition to label serializer and fix #162
5 years ago
Hiroki Nakayama
781f94333e
Merge pull request #161 from chakki-works/fix-vulnerability
Fix security vulnerability for marked
5 years ago
Hironsan
a90fd5ef41
Fix security vulnerability for marked
5 years ago
Hiroki Nakayama
e652289367
Merge pull request #160 from CatalystCode/bugfix/fix-demo-pages-for-superuser
Bugfix/Fix NoReverseMatch on demo page for superuser
5 years ago