SWP-logging.ui.ttl 21.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429
# baseURI: http://www.reportinghub.no/system/swp/SWP-logging
# imports: http://topbraid.org/swa
# imports: http://www.reportinghub.no/swp/rh
# imports: http://www.reportinghub.no/system/schema/logging

@prefix :        <http://www.reportinghub.no/system/swp/SWP-logging#> .
@prefix arg:     <http://spinrdf.org/arg#> .
@prefix default:  <http://uispin.org/default#> .
@prefix html:    <http://uispin.org/html#> .
@prefix let:     <http://uispin.org/let#> .
@prefix letrs:   <http://uispin.org/letrs#> .
@prefix log:     <http://www.reportinghub.no/system/schema/logging#> .
@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 rhswp:   <http://www.reportinghub.no/swp/rh#> .
@prefix sp:      <http://spinrdf.org/sp#> .
@prefix spin:    <http://spinrdf.org/spin#> .
@prefix spl:     <http://spinrdf.org/spl#> .
@prefix swa:     <http://topbraid.org/swa#> .
@prefix ui:      <http://uispin.org/ui#> .
@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .

arg:rootClass
      rdf:type rdf:Property ;
      rdfs:label "root class"^^xsd:string ;
      rdfs:subPropertyOf sp:arg .

arg:schemaGraph
      rdf:type rdf:Property ;
      rdfs:label "schema graph"^^xsd:string ;
      rdfs:subPropertyOf sp:arg .

log:LogBrowser
      rdf:type ui:NodeClass ;
      rdfs:comment "A complex element with a Tree of log event classes in the upper left corner, a search form in the upper center area, and a grid of results in the main center area."^^xsd:string ;
      rdfs:label "Log Browser"^^xsd:string ;
      rdfs:subClassOf ui:Element ;
      ui:prototype
              [ rdf:type log:TableBrowser ;
                arg:queryGraph <http://www.reportinghub.no/graph/logging> ;
                arg:rootClass log:LogEvent ;
                arg:schemaGraph
                        [ rdf:type ui:graphWithImports ;
                          sp:arg1 <http://www.reportinghub.no/system/schema/logging>
                        ]
              ] .

log:LogEvent
      swa:keyProperties (<http://purl.org/dc/terms/created> rdf:type log:initiatedBy log:onBehalfOf log:outcome rdfs:comment) ;
      ui:instanceView
              [ rdf:type log:LogEventFormBody ;
                arg:resource spin:_this ;
                ui:id   "search"^^xsd:string
              ] ;
      ui:view [ rdf:type log:LogBrowser
              ] .

log:LogEventClassTreeDataProvider
      rdf:type swa:QueryTreeDataProvider ;
      rdfs:label "Log event class tree data provider"^^xsd:string ;
      arg:childrenQuery
              [ rdf:type sp:Select ;
                sp:orderBy ([ sp:varName "label"^^xsd:string
                          ]) ;
                sp:resultVariables ([ sp:varName "child"^^xsd:string
                          ] [ sp:varName "label"^^xsd:string
                          ] [ sp:varName "leaf"^^xsd:string
                          ] [ sp:varName "icon"^^xsd:string
                          ] [ sp:varName "type"^^xsd:string
                          ]) ;
                sp:where ([ sp:object
                                    [ sp:varName "parent"^^xsd:string
                                    ] ;
                            sp:predicate rdfs:subClassOf ;
                            sp:subject
                                    [ sp:varName "child"^^xsd:string
                                    ]
                          ] [ rdf:type sp:Bind ;
                            sp:expression
                                    [ rdf:type sp:notExists ;
                                      sp:elements ([ sp:object
                                                          [ sp:varName "child"^^xsd:string
                                                          ] ;
                                                  sp:predicate rdfs:subClassOf ;
                                                  sp:subject
                                                          [ sp:varName "grandChild"^^xsd:string
                                                          ]
                                                ])
                                    ] ;
                            sp:variable
                                    [ sp:varName "leaf"^^xsd:string
                                    ]
                          ] [ rdf:type sp:Bind ;
                            sp:expression
                                    [ rdf:type ui:label ;
                                      sp:arg1 [ sp:varName "child"^^xsd:string
                                              ]
                                    ] ;
                            sp:variable
                                    [ sp:varName "label"^^xsd:string
                                    ]
                          ] [ rdf:type sp:Bind ;
                            sp:expression "appIconClass" ;
                            sp:variable
                                    [ sp:varName "icon"^^xsd:string
                                    ]
                          ] [ rdf:type sp:Bind ;
                            sp:expression
                                    [ rdf:type spl:object ;
                                      sp:arg1 [ sp:varName "child"^^xsd:string
                                              ] ;
                                      sp:arg2 rdf:type
                                    ] ;
                            sp:variable
                                    [ sp:varName "type"^^xsd:string
                                    ]
                          ])
              ] ;
      arg:id  [ sp:varName "id"^^xsd:string
              ] ;
      arg:rootsQuery
              [ rdf:type sp:Select ;
                sp:resultVariables ([ sp:varName "child"^^xsd:string
                          ] [ sp:varName "label"^^xsd:string
                          ] [ sp:varName "leaf"^^xsd:string
                          ] [ sp:varName "icon"^^xsd:string
                          ]) ;
                sp:where ([ rdf:type sp:Bind ;
                            sp:expression log:LogEvent ;
                            sp:variable
                                    [ sp:varName "child"^^xsd:string
                                    ]
                          ] [ rdf:type sp:Bind ;
                            sp:expression "Any Event" ;
                            sp:variable
                                    [ sp:varName "label"^^xsd:string
                                    ]
                          ] [ rdf:type sp:Bind ;
                            sp:expression "false"^^xsd:boolean ;
                            sp:variable
                                    [ sp:varName "leaf"^^xsd:string
                                    ]
                          ] [ rdf:type sp:Bind ;
                            sp:expression "appIconClass" ;
                            sp:variable
                                    [ sp:varName "icon"^^xsd:string
                                    ]
                          ])
              ] .

log:LogEventFormBody
      rdf:type ui:ResourceViewClass ;
      rdfs:label "Log event form body"^^xsd:string ;
      rdfs:subClassOf swa:FormBody ;
      ui:prototype
              [ rdf:type html:Div ;
                default:subject
                        [ sp:varName "resource"^^xsd:string
                        ] ;
                ui:child
                        [ rdf:type swa:ColumnLayout ;
                          arg:colWidths "50%,50%"^^xsd:string ;
                          arg:width "600px"^^xsd:string ;
                          ui:child
                                  [ rdf:type swa:Object ;
                                    arg:label "Created"^^xsd:string ;
                                    arg:predicate <http://purl.org/dc/terms/created> ;
                                    ui:childIndex 0
                                  ] ;
                          ui:child
                                  [ rdf:type swa:Object ;
                                    arg:label "Outcome"^^xsd:string ;
                                    arg:predicate log:outcome ;
                                    ui:childIndex 1
                                  ] ;
                          ui:childIndex 0
                        ] ;
                ui:child
                        [ rdf:type swa:ColumnLayout ;
                          arg:colWidths "50%,50%"^^xsd:string ;
                          arg:width "600px"^^xsd:string ;
                          ui:child
                                  [ rdf:type swa:Object ;
                                    arg:label "User"^^xsd:string ;
                                    arg:predicate log:initiatedBy ;
                                    ui:childIndex 0
                                  ] ;
                          ui:child
                                  [ rdf:type swa:Object ;
                                    arg:label "Company"^^xsd:string ;
                                    arg:predicate log:onBehalfOf ;
                                    ui:childIndex 1
                                  ] ;
                          ui:childIndex 1
                        ] ;
                ui:child
                        [ rdf:type swa:Object ;
                          arg:label "Comment"^^xsd:string ;
                          arg:predicate rdfs:comment ;
                          ui:childIndex 2
                        ]
              ] .

log:ReportDownloadEvent
      swa:keyProperties (<http://purl.org/dc/terms/created> rdf:type log:reportType log:ownerId log:initiatedBy log:onBehalfOf log:outcome rdfs:comment) ;
      ui:instanceView
              [ rdf:type ui:group ;
                default:subject spin:_this ;
                ui:child
                        [ rdf:type log:LogEventFormBody ;
                          arg:resource spin:_this ;
                          ui:childIndex 0
                        ] ;
                ui:child
                        [ rdf:type swa:ColumnLayout ;
                          arg:colWidths "50%,50%"^^xsd:string ;
                          arg:width "600px"^^xsd:string ;
                          ui:child
                                  [ rdf:type swa:Object ;
                                    arg:label "Report type"^^xsd:string ;
                                    arg:predicate log:reportType ;
                                    ui:childIndex 0
                                  ] ;
                          ui:child
                                  [ rdf:type swa:Object ;
                                    arg:label "Licence/BAA id"^^xsd:string ;
                                    arg:predicate log:ownerId ;
                                    ui:childIndex 1
                                  ] ;
                          ui:childIndex 1
                        ] ;
                ui:id   "search"^^xsd:string
              ] .

log:ReportEvent
      swa:keyProperties (<http://purl.org/dc/terms/created> rdf:type log:reportType log:initiatedBy log:onBehalfOf log:outcome rdfs:comment) ;
      ui:instanceView
              [ rdf:type ui:group ;
                ui:child
                        [ rdf:type log:LogEventFormBody ;
                          arg:resource spin:_this ;
                          ui:childIndex 0
                        ] ;
                ui:child
                        [ rdf:type swa:Object ;
                          arg:label "Report type"^^xsd:string ;
                          arg:predicate log:reportType ;
                          ui:childIndex 1
                        ] ;
                ui:id   "search"^^xsd:string
              ] .

log:ReportUploadEvent
      swa:keyProperties (<http://purl.org/dc/terms/created> rdf:type log:reportType log:wellBoreName log:initiatedBy log:onBehalfOf log:outcome rdfs:comment) ;
      ui:instanceView
              [ rdf:type ui:group ;
                default:subject spin:_this ;
                ui:child
                        [ rdf:type log:LogEventFormBody ;
                          arg:resource spin:_this ;
                          ui:childIndex 0
                        ] ;
                ui:child
                        [ rdf:type swa:ColumnLayout ;
                          arg:colWidths "50%,50%"^^xsd:string ;
                          arg:width "600px"^^xsd:string ;
                          ui:child
                                  [ rdf:type swa:Object ;
                                    arg:label "Report type"^^xsd:string ;
                                    arg:predicate log:reportType ;
                                    ui:childIndex 0
                                  ] ;
                          ui:child
                                  [ rdf:type swa:Object ;
                                    arg:label "Well bore name"^^xsd:string ;
                                    arg:predicate log:wellBoreName ;
                                    ui:childIndex 1
                                  ] ;
                          ui:childIndex 1
                        ] ;
                ui:id   "search"^^xsd:string
              ] .

log:TableBrowser
      rdf:type ui:NodeClass ;
      rdfs:comment "A complex element with a Tree of log event classes in the upper left corner, a search form in the upper center area, and a grid of results in the main center area. The browser can be configured by query graph and the root of the query class tree."^^xsd:string ;
      rdfs:label "Table Browser"^^xsd:string ;
      rdfs:subClassOf ui:Element ;
      spin:constraint
              [ rdf:type spl:Argument ;
                rdfs:comment "The graph to query (instances)"^^xsd:string ;
                spl:predicate arg:queryGraph ;
                spl:valueType rdfs:Resource
              ] ;
      spin:constraint
              [ rdf:type spl:Argument ;
                rdfs:comment "The root class in the search tree."^^xsd:string ;
                spl:predicate arg:rootClass ;
                spl:valueType rdfs:Class
              ] ;
      spin:constraint
              [ rdf:type spl:Argument ;
                rdfs:comment "The schema graph containing the class and property definitions."^^xsd:string ;
                spl:predicate arg:schemaGraph ;
                spl:valueType rdfs:Resource
              ] ;
      ui:prototype
              [ rdf:type html:Div ;
                html:id "tableBrowserMainPanel"^^xsd:string ;
                html:style "width:880px; height: 500px; border-width: 1px; border-style: solid; border-color: black;"^^xsd:string ;
                ui:child
                        [ rdf:type html:Div ;
                          html:class "ui-layout-north"^^xsd:string ;
                          html:id "tableBrowserNorthPanel"^^xsd:string ;
                          html:style "height: 120px"^^xsd:string ;
                          ui:child
                                  [ rdf:type ui:setContext ;
                                    ui:child
                                            [ rdf:type html:Div ;
                                              html:class "ui-layout-west"^^xsd:string ;
                                              ui:child
                                                      [ rdf:type swa:Header ;
                                                        arg:label "Search Type"^^xsd:string ;
                                                        ui:childIndex 0
                                                      ] ;
                                              ui:child
                                                      [ rdf:type html:Div ;
                                                        html:class "ui-layout-content"^^xsd:string ;
                                                        ui:child
                                                                [ rdf:type swa:Tree ;
                                                                  arg:dataProvider swa:ClassTreeDataProvider ;
                                                                  arg:id  "classTree"^^xsd:string ;
                                                                  arg:onSelect "swa.loadWithResource('form', 'resourceType', resource)"^^xsd:string ;
                                                                  arg:root
                                                                          [ sp:varName "rootClass"^^xsd:string
                                                                          ] ;
                                                                  ui:childIndex 0
                                                                ] ;
                                                        ui:childIndex 1
                                                      ] ;
                                              ui:childIndex 0
                                            ] ;
                                    ui:child
                                            [ rdf:type ui:loadable ;
                                              html:class "ui-layout-center"^^xsd:string ;
                                              ui:child
                                                      [ rdf:type swa:SearchForm ;
                                                        arg:formId "searchForm"^^xsd:string ;
                                                        arg:noBorder "true"^^xsd:boolean ;
                                                        arg:onSelect "swa.openResourceViewDialog('viewDialog', resource, 500, 400)"^^xsd:string ;
                                                        arg:queryGraph
                                                                [ sp:varName "queryGraph"^^xsd:string
                                                                ] ;
                                                        arg:resourceType
                                                                [ rdf:type sp:coalesce ;
                                                                  sp:arg1 [ sp:varName "resourceType"^^xsd:string
                                                                          ] ;
                                                                  sp:arg2 [ sp:varName "rootClass"^^xsd:string
                                                                          ]
                                                                ] ;
                                                        arg:resultsId "results"^^xsd:string ;
                                                        ui:childIndex 0
                                                      ] ;
                                              ui:childIndex 1 ;
                                              ui:loadId "form"^^xsd:string
                                            ] ;
                                    ui:childIndex 0 ;
                                    ui:queryGraph
                                            [ sp:varName "schemaGraph"^^xsd:string
                                            ]
                                  ] ;
                          ui:childIndex 0
                        ] ;
                ui:child
                        [ rdf:type html:Div ;
                          html:class "ui-layout-center"^^xsd:string ;
                          html:style "height: 300px"^^xsd:string ;
                          ui:child
                                  [ rdf:type swa:Header ;
                                    arg:label "Search Results"^^xsd:string ;
                                    ui:childIndex 0
                                  ] ;
                          ui:child
                                  [ rdf:type html:Div ;
                                    html:class "ui-layout-content"^^xsd:string ;
                                    html:id "results"^^xsd:string ;
                                    ui:childIndex 1
                                  ] ;
                          ui:childIndex 1
                        ] ;
                ui:child
                        [ rdf:type html:Script ;
                          ui:child
                                  [ rdf:type ui:TextNode ;
                                    ui:childIndex 0 ;
                                    ui:text """$('#tableBrowserMainPanel').layout({
			applyDefaultStyles: true
		});
		$('#tableBrowserNorthPanel').layout({
			applyDefaultStyles: true
		});"""^^xsd:string
                                  ] ;
                          ui:childIndex 2
                        ] ;
                ui:child
                        [ rdf:type ui:setContext ;
                          ui:child
                                  [ rdf:type rhswp:AGResourceViewDialog ;
                                    arg:loadId "viewDialog"^^xsd:string ;
                                    arg:queryGraph
                                            [ sp:varName "queryGraph"^^xsd:string
                                            ] ;
                                    arg:schemaGraph
                                            [ sp:varName "schemaGraph"^^xsd:string
                                            ] ;
                                    ui:childIndex 0
                                  ] ;
                          ui:childIndex 3 ;
                          ui:queryGraph
                                  [ sp:varName "schemaGraph"^^xsd:string
                                  ]
                        ]
              ] .

<http://www.reportinghub.no/system/swp/SWP-logging>
      rdf:type owl:Ontology ;
      owl:imports <http://topbraid.org/swa> , <http://www.reportinghub.no/swp/rh> , <http://www.reportinghub.no/system/schema/logging> ;
      owl:versionInfo "Created with TopBraid Composer"^^xsd:string .