UNPKG

issue-pane

Version:

Solid-compatible Panes: issue editor

79 lines (72 loc) 2.63 kB
@prefix : <#>. @prefix dc: <http://purl.org/dc/elements/1.1/>. @prefix dct: <http://purl.org/dc/terms/>. @prefix foaf: <http://xmlns.com/foaf/0.1/>. @prefix owl: <http://www.w3.org/2002/07/owl#>. @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#>. @prefix ui: <http://www.w3.org/ns/ui#>. @prefix wf: <http://www.w3.org/2005/01/wf/flow#>. @prefix xsd: <http://www.w3.org/2001/XMLSchema#>. @prefix c: </profile/card#>. :Classification rdfs:label "Category"; owl:disjointUnionOf ( :Specification :Tests :Servers :Clients :DeveloperTools :Vertical ). :Clients rdfs:comment "Client side frameworks, SDKs and operating systems"; rdfs:label "Clients"; rdfs:subClassOf :Classification. :DeveloperTools rdfs:label "Developer tools"; rdfs:subClassOf :Classification. :InProgress rdfs:label "In progress"; rdfs:subClassOf wf:Open, :States; ui:backgroundColor "#f9ee71"^^xsd:color. :NextSession rdfs:label "To be done this month"; rdfs:subClassOf wf:Open, :States; ui:backgroundColor "#91fdb9"^^xsd:color. :Released rdfs:label "Released"; rdfs:subClassOf wf:Open, :States; ui:backgroundColor "#e2a7fb"^^xsd:color. :Research rdfs:label "Research"; rdfs:subClassOf wf:Open, :States; ui:backgroundColor "#ffffff"^^xsd:color. :Servers rdfs:label "Solid Server implementations"; rdfs:subClassOf :Classification. :Someday rdfs:label "Someday pile"; rdfs:subClassOf wf:Open, :States; ui:backgroundColor "#e3e3e3"^^xsd:color. :Specification rdfs:label "Parts of the Solid specification"; rdfs:subClassOf :Classification. :States rdfs:label "Task"; owl:disjointUnionOf ( :Research :Someday :ToBeDone :NextSession :InProgress :Works :Released ). :Tests rdfs:label "Test suites"; rdfs:subClassOf :Classification. :this a wf:Tracker; dc:author c:me; dc:created "2020-07-21T14:00:20Z"^^xsd:dateTime; dct:title "Solid Ecosystem: Roadmap"; wf:assigneeClass foaf:Person; wf:defaultView :Classification; wf:description """A roadmap for the whole Solid ecosystem. See also other linked roadmaps for parts of the ecosystem like the SolidOS, Spec, open source projects, etc. """; wf:initialState :Someday; wf:issueCategory :Classification; wf:issueClass :States; wf:stateStore <state.ttl>. :ToBeDone rdfs:label "To Be Done"; rdfs:subClassOf wf:Open, :States; ui:backgroundColor "#e0ffeb"^^xsd:color. :Vertical rdfs:label "Apps and Verticals"; rdfs:subClassOf :Classification. :Works rdfs:label "Code runs"; rdfs:subClassOf wf:Open, :States; ui:backgroundColor "#dcdbff"^^xsd:color.