EDM/commit

Fixed dependencies

authorJan Wielemaker
Thu Nov 25 11:42:46 2010 +0100
committerJan Wielemaker
Thu Nov 25 11:42:46 2010 +0100
commit691047646e8c23bafadd8de6eb66dcba4f46e9a8
tree1dca219ac2ae3042a27b419e96b37070886765c0
parentcb0f97b9485722535e3f27d8443c5e39d219b140
Diff style: patch stat
diff --git a/components/edm/components.pl b/components/edm/components.pl
index 3072615..e7a12d5 100644
--- a/components/edm/components.pl
+++ b/components/edm/components.pl
@@ -31,11 +31,12 @@
 :- module(edm_components,
 	  [ edm_display_link//2		% +URI, +Options
 	  ]).
-:- include(bundle(html_page)).
 :- use_module(cliopatria(hooks)).
 :- use_module(library(http/page_info)).
+:- use_module(library(http/html_write)).
 :- use_module(library(semweb/rdf_db)).
 :- use_module(library(http/http_path)).
+:- use_module(components(label)).
 
 /** <module> Domain-specific components for EDM models
 
diff --git a/config-available/EDM.pl b/config-available/EDM.pl
index a274ff6..202047f 100644
--- a/config-available/EDM.pl
+++ b/config-available/EDM.pl
@@ -17,8 +17,8 @@ Europeana Data Model (EDM).
 cliopatria:display_link(R, Options) -->
 	edm_display_link(R, Options).
 
-cliopatria:context_graph(R, RDF, Options) -->
+cliopatria:context_graph(R, RDF, Options) :-
 	edm_context_graph(R, RDF, Options).
 
-cliopatria:node_shape(URI, Shape, Options) -->
+cliopatria:node_shape(URI, Shape, Options) :-
 	edm_node_shape(URI, Shape, Options).