source: trunk/abcl/etc/changes.n3

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: 754 bytes
Line 
1# -*- Mode: n3 -*-
2
3@prefix :     <urn:abcl.org/etc/changes.n3> .
4@prefix cl:   <urn:common-lisp/packages/common-lisp#> .
5@prefix rdf:         <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
6@prefix rdfs:        <http://www.w3.org/2000/01/rdf-schema#> .
7@prefix xsd:         <http://www.w3.org/2001/XMLSchema#> .
8
9<https://github.com/armedbear/abcl/pull/78/files>
10  :conversation cl:nil ;
11  :diff
12        [
13                 <abcl/tools/resource:retrieve> <https://github.com/armedbear/abcl/pull/78.diff> ;
14                 rdf:comment "Contains all commits collapsed into single diff."
15        ] ;
16  :commits
17        (<https://github.com/armedbear/abcl/pull/78/commits>) ;
18  :files-changed
19        (<https://github.com/armedbear/abcl/pull/78/files>) .
20
Note: See TracBrowser for help on using the repository browser.