-
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.
- entities updated - CRUD UI OK for the entities - Excel ETL class have been removed, the class will be externalized in a separate module
- Loading branch information
Showing
1,364 changed files
with
406,656 additions
and
6,662 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"directory": "src/main/webapp/bower_components" | ||
} |
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,24 @@ | ||
# EditorConfig helps developers define and maintain consistent | ||
# coding styles between different editors and IDEs | ||
# editorconfig.org | ||
|
||
root = true | ||
|
||
[*] | ||
|
||
# Change these settings to your own preference | ||
indent_style = space | ||
indent_size = 4 | ||
|
||
# We recommend you to keep these unchanged | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false | ||
|
||
[{package,bower}.json] | ||
indent_style = space | ||
indent_size = 2 |
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,22 @@ | ||
# All text files should have the "lf" (Unix) line endings | ||
* text eol=lf | ||
|
||
# Explicitly declare text files you want to always be normalized and converted | ||
# to native line endings on checkout. | ||
*.java text | ||
*.js text | ||
*.css text | ||
*.html text | ||
|
||
# Denote all files that are truly binary and should not be modified. | ||
*.png binary | ||
*.jpg binary | ||
*.jar binary | ||
*.pdf binary | ||
*.eot binary | ||
*.ttf binary | ||
*.gzip binary | ||
*.gz binary | ||
*.ai binary | ||
*.eps binary | ||
*.swf binary |
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 |
---|---|---|
@@ -1,29 +1,124 @@ | ||
# Generic files | ||
*~ | ||
*.lock | ||
*.DS_Store | ||
*.swp | ||
*.out | ||
###################### | ||
# Project Specific | ||
###################### | ||
/src/main/webapp/assets/styles/main.css | ||
/src/main/webapp/dist | ||
|
||
###################### | ||
# Node | ||
###################### | ||
/node/** | ||
/node_modules/** | ||
|
||
###################### | ||
# SASS | ||
###################### | ||
.sass-cache/** | ||
|
||
###################### | ||
# Eclipse | ||
.classpath | ||
###################### | ||
*.pydevproject | ||
.project | ||
.settings/ | ||
.metadata | ||
/bin/** | ||
/tmp/** | ||
/tmp/**/* | ||
*.tmp | ||
*.bak | ||
*.swp | ||
*~.nib | ||
local.properties | ||
.classpath | ||
.settings/** | ||
.loadpath | ||
/src/main/resources/rebel.xml | ||
|
||
# External tool builders | ||
.externalToolBuilders/** | ||
|
||
# Locally stored "Eclipse launch configurations" | ||
*.launch | ||
|
||
# CDT-specific | ||
.cproject | ||
|
||
# PDT-specific | ||
.buildpath | ||
|
||
###################### | ||
# Intellij | ||
.idea/ | ||
###################### | ||
.idea/** | ||
*.iml | ||
*.iws | ||
*.ipr | ||
*.ids | ||
*.orig | ||
|
||
# Netbeans | ||
nbproject/private/ | ||
build/ | ||
nbbuild/ | ||
dist/ | ||
nbdist/ | ||
nbactions.xml | ||
nb-configuration.xml | ||
|
||
###################### | ||
# Maven | ||
log/ | ||
target/ | ||
###################### | ||
/log/** | ||
/target/** | ||
|
||
###################### | ||
# Gradle | ||
###################### | ||
.gradle/** | ||
|
||
###################### | ||
# Package Files | ||
###################### | ||
*.jar | ||
*.war | ||
*.ear | ||
*.db | ||
|
||
###################### | ||
# Windows | ||
###################### | ||
# Windows image file caches | ||
Thumbs.db | ||
|
||
# Folder config file | ||
Desktop.ini | ||
|
||
###################### | ||
# Mac OSX | ||
###################### | ||
.DS_Store | ||
.svn | ||
|
||
# Thumbnails | ||
._* | ||
|
||
# Files that might appear on external disk | ||
.Spotlight-V100 | ||
.Trashes | ||
|
||
###################### | ||
# Directories | ||
###################### | ||
/build/** | ||
/bin/** | ||
/spring_loaded/** | ||
/deploy/** | ||
|
||
###################### | ||
# Logs | ||
###################### | ||
*.log | ||
|
||
###################### | ||
# Others | ||
###################### | ||
*.class | ||
*.*~ | ||
*~ | ||
.merge_file* | ||
|
||
###################### | ||
# Gradle Wrapper | ||
###################### | ||
!gradle/wrapper/gradle-wrapper.jar |
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,35 @@ | ||
{ | ||
"relationships": [ | ||
{ | ||
"relationshipId": 1, | ||
"relationshipName": "publication", | ||
"otherEntityName": "Publication", | ||
"relationshipType": "many-to-one", | ||
"otherEntityField": "title" | ||
} | ||
], | ||
"fields": [ | ||
{ | ||
"fieldId": 1, | ||
"fieldName": "family", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"required", | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
}, | ||
{ | ||
"fieldId": 2, | ||
"fieldName": "given", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
} | ||
], | ||
"changelogDate": "20151005000001", | ||
"dto": "no", | ||
"pagination": "pagination" | ||
} |
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,59 @@ | ||
{ | ||
"relationships": [ | ||
{ | ||
} | ||
], | ||
"fields": [ | ||
{ | ||
"fieldId": 1, | ||
"fieldName": "family", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"required", | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
}, | ||
{ | ||
"fieldId": 2, | ||
"fieldName": "given", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"required", | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
}, | ||
{ | ||
"fieldId": 3, | ||
"fieldName": "institution", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
}, | ||
{ | ||
"fieldId": 4, | ||
"fieldName": "institutionAddress", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
}, | ||
{ | ||
"fieldId": 5, | ||
"fieldName": "email", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"required", | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
} | ||
], | ||
"changelogDate": "20151005000002", | ||
"dto": "no", | ||
"pagination": "pagination" | ||
} |
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,66 @@ | ||
{ | ||
"relationships": [ | ||
{ | ||
"relationshipId": 1, | ||
"relationshipName": "publication", | ||
"otherEntityName": "Publication", | ||
"relationshipType": "many-to-one", | ||
"otherEntityField": "title" | ||
}, | ||
{ | ||
"relationshipId": 2, | ||
"relationshipName": "plantIngredient", | ||
"otherEntityName": "PlantIngredient", | ||
"relationshipType": "many-to-many", | ||
"otherEntityRelationshipName": "ethnology", | ||
"otherEntityField": "id", | ||
"ownerSide": true | ||
} | ||
], | ||
"fields": [ | ||
{ | ||
"fieldId": 1, | ||
"fieldName": "ethnoRelevancy", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"required" | ||
] | ||
}, | ||
{ | ||
"fieldId": 2, | ||
"fieldName": "treatmentType", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"required", | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
}, | ||
{ | ||
"fieldId": 3, | ||
"fieldName": "traditionalRecipeDetails", | ||
"fieldType": "String" | ||
}, | ||
{ | ||
"fieldId": 4, | ||
"fieldName": "preparationMode", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
}, | ||
{ | ||
"fieldId": 5, | ||
"fieldName": "administrationRoute", | ||
"fieldType": "String", | ||
"fieldValidateRules": [ | ||
"maxlength" | ||
], | ||
"fieldValidateRulesMaxlength": "255" | ||
} | ||
], | ||
"changelogDate": "20151005000006", | ||
"dto": "no", | ||
"pagination": "pagination" | ||
} |
Oops, something went wrong.