source: trunk/abcl/etc/changes.lisp

Last change on this file was 15109, checked in by Mark Evenson, 6 years ago

Start modeling the source locations for changes and their metadata

Uses Jeannie <https://bitbucket.org/easye/jeannie>, a W3 semantics
toolkit based on Apache Jena <https://jena.apache.org/>.

File size: 359 bytes
Line 
1(defpackage abcl/model/changes
2  (:use :cl)
3  (:export
4   #:validate))
5
6(in-package :abcl/model/changes)
7
8(defun validate (&key
9                   (system "abcl")
10                   (model "etc/changes.n3"))
11  (let ((file (probe-file (asdf:system-relative-pathname system model))))
12    (when file
13      (jeannie:read-rdf file :format :n3))))
14
15           
16 
Note: See TracBrowser for help on using the repository browser.