Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 71bb4ddd authored by Jérôme Euzenat's avatar Jérôme Euzenat
Browse files

Updates align.html with CVS instructions

Updated build with new repository
parent a97bb20e
No related branches found
No related tags found
No related merge requests found
...@@ -31,6 +31,7 @@ ...@@ -31,6 +31,7 @@
<property name="email" value="Jerome.Euzenat@inrialpes.fr"/> <property name="email" value="Jerome.Euzenat@inrialpes.fr"/>
<property name="libdir" value="lib" /> <property name="libdir" value="lib" />
<property name="debug" value="off"/> <property name="debug" value="off"/>
<property name="WebDir" value="/Volumes/Phata/Web/html/co4/align"/>
<filter token="DATE" value="${date}"/> <filter token="DATE" value="${date}"/>
<filter token="VERS" value="${version}"/> <filter token="VERS" value="${version}"/>
...@@ -116,19 +117,18 @@ ...@@ -116,19 +117,18 @@
</javadoc> </javadoc>
</target> </target>
<!-- tested -->
<target name="release" depends="init"> <target name="release" depends="init">
<antcall target="zip"/>
</target> </target>
<!-- tested -->
<target name="zip" depends="jar"> <target name="zip" depends="jar">
<echo message="Ziping..."/> <echo message="Ziping..."/>
<mkdir dir="html"/> <copy todir="${WebDir}">
<copy todir="html"> <fileset dir="html" includes="**/*.html"/>
<fileset dir="/Volumes/Phata/Web/html/co4/align"
includes="**/*.html" excludes="**/plan.html"/>
</copy> </copy>
<!-- zip everything from outside --> <!-- zip everything from outside -->
<zip zipfile="/Volumes/Phata/Web/html/co4/align/align.zip"> <zip zipfile="${WebDir}/align.zip">
<fileset dir="." includes="**/*"/> <fileset dir="." includes="**/*"/>
</zip> </zip>
</target> </target>
......
...@@ -11,9 +11,45 @@ ...@@ -11,9 +11,45 @@
<li>Implementing further alignment methods;</li> <li>Implementing further alignment methods;</li>
</ul></p> </ul></p>
<h1>Getting ontoalign</h1>
<h2>Fetching the ZIP'ed version</h2>
<p>The simplest way to use ontoalign is to get the following
<a href="align.zip">zipfile</a>. It contains all the soources, compiled
library, OWL API library.</p>
<h2>Anonymous CVS</h2>
<p>The very last version of ontoalign can be fetched from the CVS
source tree. Just do the following:
<pre>
$ cvs -d :pserver:cvs@cvs-sop.inria.fr:/CVS/exmosoft login
&lt;ENTER return when asked for the password&gt;
$ cvs -d :pserver:cvs@cvs-sop.inria.fr:/CVS/exmosoft checkout ontoalign
</pre>
... and you are done.
Note that you will have to fetch separately the <a href="owlapi.html">OWL-API</a>.</p>
<h2>CVS account</h2>
<p>If you have improved ontoalign and want this to be included in the
source tree and want to have a CVS account for that, please contact
Jerome . Euzenat (&Agrave;) inrialpes . fr.</p>
<p>Once provided with a password you will be able to check out from and
commit in our repository through:
<pre>
$
</pre>
</p>
<h1>Distribution</h1> <h1>Distribution</h1>
<p>It comes in a zip file: <a href="align.zip">align.zip</a>.</p> <p>It comes in a zip file: <a href="align.zip">align.zip</a>.</p>
<h2>Files</h2>
<p>Everything is built on top of the OWL-API binary distribution <p>Everything is built on top of the OWL-API binary distribution
(which does not need to be recompiled). (which does not need to be recompiled).
It is made of: It is made of:
...@@ -21,15 +57,33 @@ It is made of: ...@@ -21,15 +57,33 @@ It is made of:
<li>src: source classes;</li> <li>src: source classes;</li>
<li>rdf: some examples to be tested;</li> <li>rdf: some examples to be tested;</li>
<li>dtd: the align.dtd and align.owl alignment specification;</li> <li>dtd: the align.dtd and align.owl alignment specification;</li>
<li>lib: jar-files including a procalign.jar;</li> <li>lib: jar-files including a procalign.jar (in the zip-file the
owl-api libraries are included);</li>
<li>html: a few html presentation files</li> <li>html: a few html presentation files</li>
<li>build.xml: ant file to compile and generate jar-file.</li> <li>build.xml: ant file to compile and generate jar-file.</li>
<li>distrib: contains a few files for building the distribution</li> <li>distrib: contains a few files for building the distribution</li>
<li>classes: the compiled classes (useless)</li> <li>classes: the compiled classes (in the zip file, the classes are
<li>javadoc: generated javadoc;</li> included)</li>
<li>javadoc: generated javadoc (in the zip file the doc are
pregenerated);</li>
</ul> </ul>
</p> </p>
<h2>Requirements</h2>
<p><b>For using</b> you will need <a href="http://java.sun.com">Java
runtime environment</a> (tested in 1.4.1) and the <a href="owlapi.html">OWL-API binary distribution</a> (this is
included in the above zip file).</p>
<p><b>For extending</b> you will need Java compiler (tested in <a href="http://java.sun.com">Java
standard edition</a> 1.4.1) and the <a href="owlapi.html">OWL-API binary distribution</a> (this is included in the
above zip file).
<p><b>For developing</b> (compiling) you will need Java compiler
(tested in <a href="http://java.sun.com">Java standard edition</a> 1.4.1) and the <a href="owlapi.html">OWL-API binary distribution</a> (which is
not included in the CVS repositories). It is also very usefull to
have <a ref="http://ant.apache.org">Ant</a>.</p>
<h1>Compilation and use</h1> <h1>Compilation and use</h1>
<p>Generating the lib/procalign.jar file can be done by launching: <p>Generating the lib/procalign.jar file can be done by launching:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment