amalgame/commit

make dependency on SWI-Prolog 7 explicit

authorJacco van Ossenbruggen
Fri Aug 8 12:23:15 2014 +0200
committerJacco van Ossenbruggen
Fri Aug 8 12:23:15 2014 +0200
commitd5a81fb2f152e42ae175383c046022b16fd7e196
treed6aeb4b96f8ae7fd6d38d616c48572079de28aaf
parent72f9755cb1e8297d0fb855bf5adb88f3527da69c
Diff style: patch stat
diff --git a/README.md b/README.md
index 1dbab74..1da0051 100644
--- a/README.md
+++ b/README.md
@@ -4,12 +4,12 @@ This open source tool has originally been developed as part of the EuropeanaConn
 
 
 ## Objective
-amalgame provides a web-based interactive platform for creating, analyzing and evaluating vocabulary alignments.  It aims to support domain experts to make alignments interactively.  To realize this it focuses on simple alignment techniques which the user understand and knows how to use, and which are sufficiently fast to be used in an interactive session.  amalgame keeps track of all the provenance related information, so that mapping experiments can be replicated later, and other users can explore the context that played a role in creating the mappings.  amalgame is implemented by using common web technology on the client (e.g. HTML,CSS,AJAX and the YUI toolkit) and SWI-Prolog's ClioPatria platform on the server.
+amalgame provides a web-based interactive platform for creating, analyzing and evaluating vocabulary alignments.  It aims to support domain experts to make alignments interactively.  To realize this it focuses on simple alignment techniques which the user understands and knows how to use, and which are sufficiently fast to be used in an interactive session.  amalgame keeps track of all the provenance related information, so that mapping experiments can be replicated later, and other users can explore the context that played a role in creating the mappings.  amalgame is implemented by using common web technology on the client (e.g. HTML,CSS,AJAX and the YUI toolkit) and SWI-Prolog's ClioPatria platform on the server.
 
 ## Installation
 Amalgame is a web application build as a package in the ClioPatria semantic web server. To install, make sure you have:
 
-1. The latest development release of SWI Prolog, see http://www.swi-prolog.org/Download.html
+1. The latest development release of SWI Prolog, at least version 7.1.x. See http://www.swi-prolog.org/Download.html
 2. ClioPatria itself, see http://cliopatria.swi-prolog.org/help/Download.html
 3. Once you have your ClioPatria server up and running, just install amalgame as a cpack:
 
diff --git a/config-available/025-amalgame.pl b/config-available/025-amalgame.pl
index fab1c0f..557bf61 100644
--- a/config-available/025-amalgame.pl
+++ b/config-available/025-amalgame.pl
@@ -4,8 +4,8 @@
 */
 
 :- current_prolog_flag(version, Version),
-   (   Version < 60318
-   ->  format('Warning: amalgame needs SWI-Prolog version 6.3.18 or higher~n', [])
+   (   Version < 70117
+   ->  format('Warning: amalgame needs SWI-Prolog version 7.1.17 or higher~n', [])
    ;   true
    ).