incremental development for release 1.2 knowledge base migration

This commit is contained in:
sjm222 2010-12-27 22:07:04 +00:00
parent adcff9fc32
commit ea5270e40a
6 changed files with 9 additions and 3 deletions

View file

@ -20,6 +20,7 @@ Construct {
_:dti a core:DateTimeInterval .
_:dti core:end _:edtv .
?thing core:dateTimeInterval _:dti .
_:dti core:dateTimeIntervalFor ?thing .
} where {
?thing core:endDate ?theEndDate .
}

View file

@ -20,6 +20,7 @@ Construct {
?thing core:dateTimeInterval _:dti .
_:dti a core:DateTimeInterval .
_:dti core:end _:edtv .
_:dti core:dateTimeIntervalFor ?thing .
} where {
?thing core:endYear ?theEndYear .
}

View file

@ -20,6 +20,7 @@ Construct {
_:dti a core:DateTimeInterval .
_:dti core:start _:sdtv .
?thing core:dateTimeInterval _:dti .
_:dti core:dateTimeIntervalFor ?thing .
} where {
?thing core:startDate ?theStartDate .
}

View file

@ -17,9 +17,10 @@ Construct {
_:sdtv a core:DateTimeValue .
_:sdtv core:dateTime ?theStartYear .
_:sdtv core:dateTimePrecision core:yearPrecision .
?thing core:dateTimeInterval _:dti .
_:dti a core:DateTimeInterval .
_:dti core:start _:sdtv .
?thing core:dateTimeInterval _:dti .
_:dti core:dateTimeIntervalFor ?thing .
} where {
?thing core:startYear ?theStartYear .
}

View file

@ -24,6 +24,7 @@ Construct {
_:dti core:start _:sdtv .
_:dti core:end _:edtv .
?thing core:dateTimeInterval _:dti .
_:dti core:dateTimeIntervalFor ?thing .
} where {
?thing core:startDate ?theStartDate .
?thing core:endDate ?theEndDate .

View file

@ -20,10 +20,11 @@ Construct {
_:edtv a core:DateTimeValue .
_:edtv core:dateTime ?theEndYear .
_:edtv core:dateTimePrecision core:yearPrecision .
?thing core:dateTimeInterval _:dti .
_:dti a core:DateTimeInterval .
_:dti core:start _:sdtv .
_:dti core:end _:edtv .
?thing core:dateTimeInterval _:dti .
_:dti core:dateTimeIntervalFor ?thing .
} where {
?thing core:startYear ?theStartYear .
?thing core:endYear ?theEndYear .