forked from sakaiproject/sakai
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SAK-32083 Tags Service and tool (sakaiproject#3762)
- Loading branch information
1 parent
2fa6def
commit 82df5e5
Showing
70 changed files
with
13,811 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -498,7 +498,7 @@ | |
# DEFAULT: | ||
# archives.import.source=http://someserver.edu/file/import.txt | ||
|
||
# Upload limit per request, in MBs. | ||
# Upload limit per request, in MBs. | ||
# "ceiling" is used for resources. "max" is used for attachments. | ||
# In the case when both are set, resources are limited to the smaller of the two. If only one of the two are set, resource uploads | ||
# are limited to the value whichever is set. Attachments are limited at either 20 or the setting of "max". | ||
|
@@ -1946,7 +1946,7 @@ | |
# contentreview.option.exclude_self_plag.default=true | ||
|
||
# SAK-31923 | ||
# Sets the separation char on exporting to CSV | ||
# Sets the separation char on exporting to CSV | ||
# Default: , | ||
# csv.separator=; | ||
|
||
|
@@ -4714,3 +4714,37 @@ | |
# Defaults to 10000 | ||
# ############################################################### | ||
#portal.bullhorns.poll.interval=5000 | ||
|
||
#TAGS | ||
|
||
# If the tag service will be enabled or not. (default is true) | ||
#tagservice.enabled=true | ||
|
||
# The max size of the pages returned by the rest services in searches and lists | ||
# to avoid heavy queries in big collections. (By default 200) | ||
#tagservice.maxpagesize=200 | ||
|
||
# The route inside the SAKAI folder for the full collection XML file. | ||
# It will delete all the non updated tags of the collection, so | ||
# it needs to be complete because after update and create the | ||
# new tags, it will delete the tags that can't be found in the file. (By default tags/fullxmltags.xml) | ||
#tags.fullxmltagsfile=tags/fullxmltags.xml | ||
|
||
# The route inside the SAKAI folder for the "one by one" update option | ||
#You can find samples of these files in the sources of sakai, at: /tags/tags-impl/impl/src/resources/xmlsamples | ||
# (By default tags/tags.xml and tags/tagcollections.xml) | ||
#tags.tagsfile=tags/tags.xml | ||
#tags.tagcollectionsfile=tags/tagcollections.xml | ||
|
||
# The route inside the SAKAI folder for the MESH collection file: | ||
# It can be downloaded from (The "Descriptors" file): | ||
# https://www.nlm.nih.gov/mesh/download_mesh.html | ||
# ftp://nlmpubs.nlm.nih.gov/online/mesh/MESH_FILES/xmlmesh/desc2017.xml | ||
# Needs to be the complete full file because after update and create the | ||
# new tags, it will delete the tags that can't be found in the file. | ||
# to work it needs to have previously created a collection with the external source defined as "MESH" (By default tags/mesh.xml) | ||
#tags.meshcollectionfile=tags/mesh.xml | ||
|
||
|
||
# The email address that will receive the confirmation mails from the import jobs (by default uses the defined in portal.error.email) | ||
#[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
library/src/morpheus-master/sass/modules/tool/tagservice/_tagservice.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
.#{$namespace}sakai-tagservice{ | ||
|
||
.tagservice-body .alert li { | ||
list-style: none; | ||
} | ||
.tag-modal { | ||
position: fixed !important; | ||
top:10% !important; | ||
} | ||
.incollection { | ||
font-size: smaller; | ||
font-style: italic; | ||
color:$background-color-secondary; | ||
} | ||
.tagservice-section { | ||
margin: 20px 0 30px; | ||
} | ||
.tagservice-section-header { | ||
overflow: hidden; | ||
} | ||
.tagservice-section-header h3 { | ||
float: left; | ||
} | ||
.tagservice-table .actions { | ||
text-align: right; | ||
} | ||
.tagservice-body .checkbox { | ||
border: none; | ||
} | ||
.tags-collections-percent-small { | ||
width:15% | ||
} | ||
.tags-collections-percent-big { | ||
width:25% | ||
} | ||
.tags-percent-small { | ||
width:15% | ||
} | ||
.tags-percent-big { | ||
width:25% | ||
} | ||
.tags-percent-total { | ||
width:100% | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.