# a rule to say that something is no longer interesting
#
# This version is $Id: dropDone.n3,v 1.3 2004/03/01 00:41:17 charles Exp $
#
# now uses ical namespace, includes completed items or things of status 
# "COMPLETED" or "CANCELLED"

@prefix ical: <http://www.w3.org/2002/12/cal/ical#> .
@prefix log: <http://www.w3.org/2000/10/swap/log#> .


{ ?x ical:status "COMPLETED" }  log:implies { ?x a log:Chaff } .
{ ?x ical:status "CANCELLED" }  log:implies { ?x a log:Chaff } .
{ ?x ical:completed ?y . ?y ical:dateTime ?z }  log:implies { ?x a log:Chaff . ?y a log:Chaff } .


