Skip to content
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

Parsing external owl entities (direct/indirect imports) + individual facts with external owl entites #668

Merged
merged 5 commits into from
Jan 9, 2024

Commits on Jan 2, 2024

  1. Support for Named individuals external properties

    Named individuals with assertions not belonging to the URI
    of the ontology were not parsed. This commit allows
    to parse object/data/annotation properties which are
    not in the URI of the ontology and marks them with
    superscript "ep" (external property)
    Victor Chavez committed Jan 2, 2024
    Configuration menu
    Copy the full SHA
    c8c5dfa View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. Parsing external owl entities (direct/indirect imports)

    The xslt parser cannot extract metadata from imported ontologies when
    `-includeImportedOntologies` is not enabled. This is important because
    sometimes you do not want to document the imported ontologies but you
    still want to include metadata from the imported ontologies.
    
    This change allows to tag owl entities that are not part of the
    main ontology (i.e. direct/indirect imports) as an external property.
    With the owlapi an ExternalPropertyParser class is added which looks for the
    external property superscripts in the html generated by LODE and tries to find
    the owl entity based on the IRI.
    
    The xslt extraction sheet was modified to add the `external property` superscript
    and html class `type-ep`.
    Victor Chavez authored and vChavezB committed Jan 4, 2024
    Configuration menu
    Copy the full SHA
    e33b54d View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

  1. Configuration menu
    Copy the full SHA
    5ae1f86 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a10f03a View commit details
    Browse the repository at this point in the history

Commits on Jan 6, 2024

  1. Configuration menu
    Copy the full SHA
    7064023 View commit details
    Browse the repository at this point in the history