From: <lor...@us...> - 2010-03-10 19:43:27
|
Revision: 2111 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=2111&view=rev Author: lorenz_b Date: 2010-03-10 19:43:20 +0000 (Wed, 10 Mar 2010) Log Message: ----------- Added README and INSTALL file. Removed unnecessary script files in ORE build. Added LICENSE file to ORE build. Modified Paths: -------------- trunk/build.xml trunk/src/dl-learner/org/dllearner/Info.java Added Paths: ----------- trunk/src/dl-learner/org/dllearner/tools/ore/INSTALL trunk/src/dl-learner/org/dllearner/tools/ore/README Property Changed: ---------------- trunk/ Property changes on: trunk ___________________________________________________________________ Modified: svn:ignore - .lastUsedExample .settings .project .classpath classes log cache cachePersistant reports results local rdbtoonto the_log.txt tmp fragmentOntology.owl output ling osmdata matching stanley dllearner.jar father.inp lgd.nt files errorDescription + .lastUsedExample .settings .project .classpath classes log cache cachePersistant reports results local rdbtoonto the_log.txt tmp fragmentOntology.owl output ling osmdata matching stanley dllearner.jar father.inp lgd.nt files errorDescription bin Modified: trunk/build.xml =================================================================== --- trunk/build.xml 2010-03-10 10:58:35 UTC (rev 2110) +++ trunk/build.xml 2010-03-10 19:43:20 UTC (rev 2111) @@ -458,7 +458,7 @@ <!-- build the ORE tool --> <target name="buildORE" description="build ore including scripts, no javadoc"> - + <property name="ore_source" value="src/dl-learner/org/dllearner/tools/ore" /> <!-- build scripts --> <path id="addjar"> <path refid="classpath"/> @@ -476,8 +476,7 @@ <map from="${removeprefix}" to="."/> </pathconvert> - <echo file="bin/ore.bat" message="java -Xmx${max_memory}m -Djava.library.path=lib/fact/ -cp ${pathStringWin} org.dllearner.tools.ore.OREApplication"/> - <echo file="bin/ore" message="#!/bin/bash${line.separator}java -Xmx${max_memory}m -Djava.library.path=lib/fact/ -cp ${pathStringUnix} org.dllearner.tools.ore.OREApplication $@"/> + <!-- write current build date into Info.java --> <echo file="${source_dir}/org/dllearner/Info.java" append="false"> @@ -502,11 +501,7 @@ </copy> <mkdir dir="${release_ore_dir}"/> <mkdir dir="${release_ore_dir}/lib/"/> - <mkdir dir="${temp}/lib/pellet" /> - <mkdir dir="${temp}/lib/jena" /> - <mkdir dir="${temp}/lib/ore-tool" /> - <mkdir dir="${temp}/lib/owlapi" /> - <mkdir dir="${temp}/lib/protege" /> + <jar jarfile="${release_ore_dir}/lib/dllearner.jar"> <fileset dir="classes_tmp"/> @@ -538,15 +533,26 @@ <copy toDir="${release_ore_dir}/examples"> <fileset dir="examples/ore"/> </copy> - <copy toDir="${release_ore_dir}"> - <fileset dir="bin"/> - </copy> + <echo file="${release_ore_dir}/ore.bat" message="java -Xmx${max_memory}m -Djava.library.path=lib/fact/ -cp ${pathStringWin} org.dllearner.tools.ore.OREApplication"/> + <echo file="${release_ore_dir}/ore" message="#!/bin/bash${line.separator}java -Xmx${max_memory}m -Djava.library.path=lib/fact/ -cp ${pathStringUnix} org.dllearner.tools.ore.OREApplication $@"/> + <!-- create file containing the build info --> <echo file="${release_ore_dir}/build.txt" append="false">ORE Build ${today}</echo> <!-- create empty log directory for release --> <mkdir dir="${release_ore_dir}/log" /> + + <!-- create cache directory for SPARQL extraction --> + <mkdir dir="${release_ore_dir}/cache" /> + + <!-- copy README and INSTALL file --> + <copy toDir="${release_ore_dir}" > + <fileset dir="${ore_source}" includes="INSTALL,README"/> + </copy> + + <!-- copy LICENSE file --> + <copy file="LICENSE" toDir="${release_ore_dir}" /> <!-- create tar.gz files (allows storing whether a file is executable) --> <tar longfile="gnu" destfile="ore-nosource-${today}.tar.gz" compression="gzip"> Modified: trunk/src/dl-learner/org/dllearner/Info.java =================================================================== --- trunk/src/dl-learner/org/dllearner/Info.java 2010-03-10 10:58:35 UTC (rev 2110) +++ trunk/src/dl-learner/org/dllearner/Info.java 2010-03-10 19:43:20 UTC (rev 2111) @@ -3,6 +3,6 @@ package org.dllearner; public class Info { - public static final String build = "2010-03-09"; + public static final String build = "2010-03-10"; } \ No newline at end of file Added: trunk/src/dl-learner/org/dllearner/tools/ore/INSTALL =================================================================== --- trunk/src/dl-learner/org/dllearner/tools/ore/INSTALL (rev 0) +++ trunk/src/dl-learner/org/dllearner/tools/ore/INSTALL 2010-03-10 19:43:20 UTC (rev 2111) @@ -0,0 +1,20 @@ +Requirements +============ +Java 6 is required. (All other libraries are included in the release.) + +Installation +============ +No further installation is necessary. Just download and extract ORE. + +Running Instructions +==================== + +Linux (and other systems) + +Make sure the file "ore" is executable. You can run it on the command line either individually or +followed by the name of the ontology to process, e.g. "./ore examples/koala.owl". + +Windows: + +Run "ore.bat" either individually or followed by the name of the ontology to process, + e.g. "ore.bat examples/koala.owl". Added: trunk/src/dl-learner/org/dllearner/tools/ore/README =================================================================== --- trunk/src/dl-learner/org/dllearner/tools/ore/README (rev 0) +++ trunk/src/dl-learner/org/dllearner/tools/ore/README 2010-03-10 19:43:20 UTC (rev 2111) @@ -0,0 +1,19 @@ +README +====== + +The ORE-Tool supports the user to check and improve the quality of ontologies. Therefore it +allows to detect semantic defects, e.g. inconsistencies in the ontology are detected and can +be explained by showing the relevant axioms. Another feature is to enrich ontologies with new logical axioms +by using powerful machine learning algorithms from the underlying DL-Learner framework. + +Homepage: http://dl-learner.org/wiki/ORE +Sourceforge.net Project Page: http://sourceforge.net/projects/dl-learner/ +Bugs & Feature Requests: http://sourceforge.net/tracker/?group_id=203619 +Mailing Lists: http://sourceforge.net/mail/?group_id=203619 +Latest Release: http://sourceforge.net/project/showfiles.php?group_id=203619 +Sourcecode: https://dl-learner.svn.sourceforge.net/svnroot/dl-learner/trunk/src/dl-learner/org/dllearner/tools/ore/ + +ORE is Open Source and licensed under the GNU General Public License. + +More information and a screencast can be found at: +http://dl-learner.org/wiki/ORE. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |