Skip to content
Snippets Groups Projects
Commit 37772a3b authored by Piotr Gawron's avatar Piotr Gawron
Browse files

typos in plugins.html

parent fba37d57
No related branches found
No related tags found
3 merge requests!1559Merge 16.3.x +16.2.10,!1557Merge 16.2.10,!1546Resolve "typo in section Users description of ldapAccountAvailable"
...@@ -10,21 +10,26 @@ gui ...@@ -10,21 +10,26 @@ gui
HMDB HMDB
INTERPRO INTERPRO
ISOFORM ISOFORM
inputFormat
inputType inputType
isDefault
isPublic
lastActive lastActive
ldapAccountAvailable ldapAccountAvailable
maxColor maxColor
minColor minColor
MGD MGD
neutralColor neutralColor
OMIM
objectId objectId
OMIM
outputFormat
PDB PDB
privilegeType privilegeType
REFSEQ REFSEQ
requestResetPassword requestResetPassword
sbgn sbgn
simpleColor simpleColor
taxonomyId
termsOfUseConsent termsOfUseConsent
updatePreferences updatePreferences
updatePrivileges updatePrivileges
......
...@@ -258,6 +258,7 @@ MGED ...@@ -258,6 +258,7 @@ MGED
MicrosporidiaDB MicrosporidiaDB
MimoDB MimoDB
minerva minerva
MINERVA’s
MIPModDB MIPModDB
mirEX mirEX
miriam miriam
......
...@@ -596,4 +596,4 @@ changelog_spelling: ...@@ -596,4 +596,4 @@ changelog_spelling:
script: script:
- apt-get update - apt-get update
- apt-get install -y aspell aspell-en - apt-get install -y aspell aspell-en
- sh test_spelling.sh - ./test_spelling.sh
#!/bin/bash #!/bin/bash
ls web/target/generated-docs/*.html CHANGELOG -c1 | while read filename result=0
while read filename
do do
html='' html=''
case $filename in *.html) case $filename in *.html)
...@@ -11,7 +13,8 @@ do ...@@ -11,7 +13,8 @@ do
echo "[$filename] Unknown words:" echo "[$filename] Unknown words:"
echo echo
cat $filename | aspell --lang=en $html --encoding=utf-8 --add-extra-dicts=./.aspell.en.pws --add-extra-dicts=./.aspell-api-exceptions.pws list |sort |uniq cat $filename | aspell --lang=en $html --encoding=utf-8 --add-extra-dicts=./.aspell.en.pws --add-extra-dicts=./.aspell-api-exceptions.pws list |sort |uniq
exit 1 result=1
fi fi
done done <<< "$(ls web/target/generated-docs/*.html CHANGELOG -c1)"
exit $result
...@@ -132,7 +132,7 @@ public class PluginControllerIntegrationTest extends ControllerIntegrationTest { ...@@ -132,7 +132,7 @@ public class PluginControllerIntegrationTest extends ControllerIntegrationTest {
.description("version"), .description("version"),
parameterWithName("isDefault") parameterWithName("isDefault")
.optional() .optional()
.description("should be opened automatically whem map is browsed"), .description("should be opened automatically when map is browsed"),
parameterWithName("isPublic") parameterWithName("isPublic")
.description("should the plugin be visible by all users"), .description("should the plugin be visible by all users"),
parameterWithName("url") parameterWithName("url")
...@@ -171,7 +171,7 @@ public class PluginControllerIntegrationTest extends ControllerIntegrationTest { ...@@ -171,7 +171,7 @@ public class PluginControllerIntegrationTest extends ControllerIntegrationTest {
.description("md5 checksum of the source file") .description("md5 checksum of the source file")
.type("string"), .type("string"),
fieldWithPath("isDefault") fieldWithPath("isDefault")
.description("should be opened automatically whem map is browsed") .description("should be opened automatically when map is browsed")
.type("boolean"), .type("boolean"),
fieldWithPath("isPublic") fieldWithPath("isPublic")
.description("should be visible on plugin list to all users") .description("should be visible on plugin list to all users")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment