- 05 Oct, 2017 17 commits
-
-
Ryan Herbert authored
Although the jquery plugin autocomplete.js was providing the basic functionnality we needed, it was not natively able to display the list of suggestions in the desired position for our textareas. At.js is capable through the use of Caret.js of displaying a suggestion box under the caret in a textarea. This javascript code is heavily inspired by the code present in the gitlab-ce project and allows us to have a nicely cached data-set to limit database queries.
-
Ryan Herbert authored
The group_id had previously been committed as a hard-coded value, thus locking the completion to a single group. Obviously we want completion to work for everyone, so this will achieve our goal.
-
Ryan Herbert authored
autocomplete.js contains a binding function to bind the autocomplete library to a DOM element. The views then call this function when they are focused
-
Ryan Herbert authored
This is the proper way of removing the tag prefix from the query
-
Ryan Herbert authored
-
Ryan Herbert authored
-
Ryan Herbert authored
takes a tag name and a group id and returns a list of tags in json format
-
Ryan Herbert authored
-
Ryan Herbert authored
register the tags used by a group when registering tags to records
-
Ryan Herbert authored
Returns the group associated to the sample set (separate from the VidjilAuth method get_access_groups since this doesn't check membership)
-
Ryan Herbert authored
The object of the table is to track which tags have been used in association with a particular group.
-
Ryan Herbert authored
-
Ryan Herbert authored
creates a link that actually functions within the vidjil app by creating a callback which is triggered when clicking on a tag url.
-
Ryan Herbert authored
-
Ryan Herbert authored
-
Ryan Herbert authored
-
Ryan Herbert authored
This module will allow the automatic creation and decoration of tags within selected text fields. A database entry is created for each new tag which will then be linked to database records. This will later allow for easy querying.
-
- 07 Sep, 2017 1 commit
-
-
Ryan Herbert authored
there were a couple issues with calls to in non-existant helper instance, so now we have an instance to work with
-
- 23 Aug, 2017 2 commits
-
-
Mikaël Salson authored
-
Ryan Herbert authored
-
- 12 Jul, 2017 2 commits
-
-
Ryan Herbert authored
-
Ryan Herbert authored
-
- 07 Jul, 2017 1 commit
-
-
Mathieu Giraud authored
See #2519.
-
- 05 Jul, 2017 5 commits
-
-
Ryan Herbert authored
The add_form controller had a reference to the wrong variable
-
Ryan Herbert authored
If the config has results_files associated, gisable the delete button
-
Ryan Herbert authored
Previously deleting a config would delete all associated results_files. This is not what we want, and somewhat dangertous since a couple wrong clicks could lead to massive data loss. An error message is now displayed when attempting to remove a config which has results_files associated.
-
Ryan Herbert authored
Add an indication of which file has been selected in the jstree module.
-
Ryan Herbert authored
Add a set of default permissiopns to a newly created group
-
- 30 Jun, 2017 1 commit
-
-
Ryan Herbert authored
migrator.py requires running within the web2py environment which involves a lot of parameters to get everyting working as intended. This is more user-friendly.
-
- 29 Jun, 2017 7 commits
-
-
Ryan Herbert authored
After a little hacking with models and modules, the scope for migrator i n the tests now works, so we implemented the offending tests.
-
Ryan Herbert authored
Modular models make for module imports for modular tests outside the model scope.
-
Ryan Herbert authored
Some erferences to db in the classes were to the global variable defined in the web2py models. This variable is not defined in the test environment.
-
Ryan Herbert authored
-
Ryan Herbert authored
Just removing some capitals from logs.
-
Ryan Herbert authored
-
Ryan Herbert authored
The object is to provide a basis for mapping ids in a more versatile way. Currently a dict is used, but the ConfigMapper will allow us to load a file that contains mappings.
-
- 27 Jun, 2017 4 commits
-
-
Ryan Herbert authored
fixes a wrong parameter in a call to getTableEntries
-
Ryan Herbert authored
-
Ryan Herbert authored
-
Ryan Herbert authored
-