-
Notifications
You must be signed in to change notification settings - Fork 3
Merge recent refactorings and bug fixes #420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
This file contains hidden or 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
Replace EL expression `${errors.class.simpleName}` with scriptlet-based
type checking to avoid NumberFormatException in modern EL resolvers.
The issue occurred because when `errors` is a List, the EL resolver
tries to interpret `.class` as a list index access, attempting to parse
"class" as an integer, which fails with NumberFormatException.
Co-authored-by: rvosa <[email protected]>
…tion Fix NumberFormatException in messages.jsp type checking
…teWindow.headless=true before Mesquite.main() Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
Fix NullPointerException in Mesquite headless initialization during nexus file upload
… copying Mesquite library files to Docker Co-authored-by: rvosa <[email protected]>
…tract common logic and use specific exception types Co-authored-by: rvosa <[email protected]>
Fix NullPointerException in Mesquite headless initialization during NEXUS file upload
…lint to boolean Co-authored-by: rvosa <[email protected]>
…nsert Fix TAXONLABEL.linked column type mismatch causing nexus file upload failure
…nal to 500 chars Co-authored-by: rvosa <[email protected]>
Increase CITATION column lengths to fix insert failures
The TBASE2_POSTGRES_CREATION.sql file defined the linked column as smallint, but the Java TaxonLabel entity uses a boolean field mapped to this column. This caused a type mismatch error when Hibernate tried to insert boolean values into the smallint column. This fix changes the column type to boolean in the schema creation script, matching the type expected by the Hibernate entity mapping and the existing snapshot schema. Co-authored-by: rvosa <[email protected]>
Comprehensive fix for all columns where the database schema defines smallint but the Java entity expects boolean type: - analysis.validated (Analysis.java) - analyzeddata.input (AnalyzedData.java) - geneticcode.predefined (GeneticCode.java) - matrix.aligned (DiscreteMatrix.java) - matrix.diagonal (DistanceMatrix.java) - matrix.casesensitive (StandardMatrix.java) - matrixelement.andlogic (CompoundMatrixElement.java) - matrixelement.gap (for consistency) - phylotree.bigtree (PhyloTree.java) - phylotree.rootedtree (PhyloTree.java) - statechangeset.reversible (StateChangeSet.java) - taxonlabelset.taxa (TaxonLabelSet.java) submission.test is correctly left as smallint since it maps to Integer. Co-authored-by: rvosa <[email protected]>
…-again Fix TAXONLABEL.linked column type mismatch (smallint → boolean)
Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
…ssue Add missing hibernate_sequence to database schema
…ment Co-authored-by: rvosa <[email protected]>
…sults Co-authored-by: rvosa <[email protected]>
…tches Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
Fix Autocompleter is not defined error by making autocomplete.js self-contained
Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
Update image paths in styles.css
Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
…place-prototypejs Replace Prototype.js with jQuery
Co-authored-by: rvosa <[email protected]>
Fix JavaScript MIME type in validator.jsp
Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
Co-authored-by: rvosa <[email protected]>
Remove unused raphael-min.js and jsphylosvg-min.js
Remove unused d3.phylogram.js
Remove unused newick.js file
Co-authored-by: rvosa <[email protected]>
Remove unused sha1.js
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.