Skip to content
Snippets Groups Projects
Select Git revision
  • ceda32be23c17c9bc526456fe6ae10ecfc6c867a
  • main default
  • 35-cgu
  • 34-peertube-support
  • 27-add-autoplay-to-iframe
  • 33-bug-on-youtube-embed-urls
  • RC-Rekall-v1.1-fix_lpo
  • tuleap-140-go-back-to-my-capsules-page-when-i-m-on-capsule-preview-page
  • RC-Rekall-v1.2-fix10
  • RC-Rekall-v1.2-fix9
  • RC-Rekall-v1.2-fix8
  • RC-Rekall-v1.2-fix7
  • RC-Rekall-v1.2-fix6
  • RC-Rekall-v1.2-fix5
  • RC-Rekall-v1.2-fix4
  • RC-Rekall-v1.2-fix3
  • RC-Rekall-v1.2-fix2
  • RC-Rekall-v1.2-fix1
  • RC-Rekall-v1.1-fix-3
  • RC-Rekall-v1.1-fix-2
  • RC-Rekall-v1.1-fix-1
  • RC-Rekall-v1.1-delivered
  • preprod20220209-1535
23 results

.env_default

Blame
  • 305.cts 1.36 KiB
    PREFIX owl: <http://www.w3.org/2002/07/owl#>
    PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
    PREFIX rdfs: <http://www.w3.org/2000/01/rdf-schema#>
    PREFIX xsd: <http://www.w3.org/2001/XMLSchema#>
    PREFIX unl: <https://unl.tetras-libre.fr/rdf/schema#>
    PREFIX net: <https://unsel.tetras-libre.fr/tenet/semantic-net#>
    PREFIX cprm: <https://unsel.tetras-libre.fr/tenet/config/parameters#>
    PREFIX req: <https://unsel.tetras-libre.fr/tenet/frame/requirement-ontology#>
    PREFIX sys: <https://unsel.tetras-libre.fr/tenet/frame/system-ontology#>
    PREFIX fprm: <https://unsel.tetras-libre.fr/tenet/frame/parameters#>
        
    # -- Query to typify a ModList net as complement
    INSERT { 
       ?semNet net:type net:complement_mod_list.
       ?semNet net:featureClass ?featureClass.
       ?semNet net:concept ?concept1.
    }
    WHERE {
       # Entity Feature (from System Ontology)
       ?entity rdf:type fprm:System_Feature.
       ?entity fprm:class ?featureClass.
       ?entity fprm:restriction ?featureRestriction.
       # UW: type UW-Occurrence and substructure of req sentence
       ?uw1 rdf:type unl:UW_Occurrence.
       ?uw1 unl:is_substructure_of ?req.
       # net: modList
       ?semNet a net:Instance.
       ?semNet net:type net:mod_list.
       ?semNet net:node ?uw1.
       # Label(s) / URI
       ?uw1 rdfs:label ?uw1Label.
       BIND (strbefore(?uw1Label, '(') AS ?concept1)
       # Filter
       FILTER ( regex(str(?uw1Label),str(?featureRestriction))  ).
    }