-
Notifications
You must be signed in to change notification settings - Fork 253
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
Fix #636 #688
base: master
Are you sure you want to change the base?
Fix #636 #688
Conversation
Add support for OBO files
Adding functionality for OBO files
DownloadFormatExtension fixed, OBO supported, XML files fixed
@riya24899 and I were working together on this issue. Here are some screenshots of the added OBO download feature. |
@@ -19,6 +19,8 @@ | |||
RDF_TURLE(TurtleDocumentFormat::new, "text/turtle", DownloadFormatExtension.ttl), | |||
|
|||
OWL_XML(OWLXMLDocumentFormat::new, "application/owl+xml", DownloadFormatExtension.owx), | |||
|
|||
OBO(OBODocumentFormat::new, "application/octet-stream", DownloadFormatExtension.obo), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious. Where does this Mime Type come from?
@@ -75,7 +75,7 @@ | |||
<dependency> | |||
<groupId>net.sourceforge.owlapi</groupId> | |||
<artifactId>owlapi-gwt</artifactId> | |||
<version>4.3.2.1-SNAPSHOT</version> | |||
<version>4.3.2.1</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please can you remove this? It's since been updated.
@@ -81,7 +81,7 @@ | |||
<dependency> | |||
<groupId>net.sourceforge.owlapi</groupId> | |||
<artifactId>owlapi-gwt</artifactId> | |||
<version>4.3.2.1-SNAPSHOT</version> | |||
<version>4.3.2.1</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please can you remove this? It's since been updated.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. I've just a couple of minor comments. Easy to fix. Thanks a lot for the contribution.
Add functionality to export a project as an OBO file.