diff --git a/bin/rdfdb b/bin/rdfdb --- a/bin/rdfdb +++ b/bin/rdfdb @@ -218,6 +218,12 @@ class WatchedFiles(object): # yet. if '-rules' in inFile: return + + # for legacy versions, compile all the config stuff you want + # read into one file called config.n3. New versions won't read + # it. + if inFile.endswith("config.n3"): + return ctx = self.uriFromFile(inFile) gf = GraphFile(self.notifier, inFile, ctx, diff --git a/show/dance2013/makefile b/show/dance2013/makefile --- a/show/dance2013/makefile +++ b/show/dance2013/makefile @@ -1,2 +1,6 @@ patch.n3: patch-source.n3 patch-rules.n3 cwm patch-source.n3 --filter=patch-rules.n3 --n3=/ > build/patch.n3 + +# this only to help the 2012 tools work +config.n3: dmxchannels.n3 networking.n3 build/patch.n3 playlist.n3 + cat dmxchannels.n3 networking.n3 build/patch.n3 playlist.n3 > config.n3