source:
trunk/abcl/etc/changes.lisp
| Last change on this file was 15109, checked in by , 8 years ago | |
|---|---|
| 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.