Mentions légales du service

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

Suppressed reference to gforge URL from command line

parent 9f170c2b
No related branches found
No related tags found
No related merge requests found
......@@ -106,7 +106,6 @@ Options:
-B,--dbms <DBMS> Use DBMS system (mysql,postgres; default: mysql)
-b,--dbmsbase <BASE> Use DBMS BASE (default: AServDB)
-d,--debug debug argument is deprecated, use logging instead
See http://alignapi.gforge.inria.fr/logging.html
-D <NAME=VALUE> Use value for given property
-h,--help Print this page
-H,--http Launch HTTP service (with port PORT; default 8089)
......
......@@ -68,7 +68,6 @@ Options:
-a,--alignment <FILE> Use initial alignment FILE
-D <NAME=VALUE> Use value for given property
-d,--debug <LEVEL> debug argument is deprecated, use logging instead
See http://alignapi.gforge.inria.fr/logging.html
-h,--help Print this page
-i,--impl <CLASS> Use the given CLASS for matcher
-o,--output <FILE> Send output to FILE
......@@ -98,7 +97,6 @@ usage: java fr.inrialpes.exmo.align.cli.ParserPrinter [options] alignfile
Options:
-D <NAME=VALUE> Use value for given property
-d,--debug <LEVEL> debug argument is deprecated, use logging instead
See http://alignapi.gforge.inria.fr/logging.html
-e,--embedded Read the alignment as embedded in a XML file
-h,--help Print this page
-i,--inverse Inverse first and second ontology
......@@ -142,35 +140,6 @@ Options:
-a,--alignment <URI> use the alignment identified by URI
-D <NAME=VALUE> Use value for given property
-d,--debug <LEVEL> debug argument is deprecated, use logging instead
See http://alignapi.gforge.inria.fr/logging.html
-e,--echo Echo the input query
-h,--help Print this page
-o,--output <FILE> Send output to FILE
-P,--params <FILE> Read parameters from FILE
-q,--query <FILE> get the query from the corresponding FILE
Alignment API implementation 4.6 (1886:1889M)
</div>
<p>
The utility may be invoked in the following way:
<div class="terminal">
$ java -cp lib/procalign.jar fr.inrialpes.exmo.align.cli.TransformQuery -a file:examples/rdf/newsample.rdf -q examples/rdf/query.sparql -Donto2=http://www.example.org/ontology2#
</div>
</p>
<h3>Batch matching</h3>
<p>There is a small utility (<tt>GroupAlign</tt>) which allows to implement batch matching. It starts with a directory containing a set of subdirectories. Each subdirectory contains an ontology to align (usually called <tt>onto.rdf</tt>) and there exist an ontology to be aligned againts these (-n argument, e.g., named <tt>./onto.rdf</tt>).</p>
<div class="terminal">
$ java -cp lib/procalign.jar fr.inrialpes.exmo.align.cli.GroupAlign --help
usage: java fr.inrialpes.exmo.align.cli.GroupAlign [options]
Matches pairs of ontologies in subdirectories
Options:
-a,--alignment &lt;FILE> Use an initial alignment FILE
-D &lt;NAME=VALUE> Use value for given property
-d,--debug &lt;LEVEL> debug argument is deprecated, use logging instead
See http://alignapi.gforge.inria.fr/logging.html
-h,--help Print this page
-i,--impl &lt;CLASS> Use the given Alignment implementation
-n,--name &lt;URI> Use the given URI as common source ontology
......@@ -223,10 +192,8 @@ usage: java fr.inrialpes.exmo.align.cli.GroupAggreg [options]
Options:
-D &lt;NAME=VALUE> Use value for given property
-d,--debug &lt;LEVEL> debug argument is deprecated, use logging instead
See http://alignapi.gforge.inria.fr/logging.html
-h,--help Print this page
-l,--list &lt;FILE> List of FILEs to be included in the results
(required)
-l,--list &lt;FILE> List of FILEs to be included in the results (required)
-m,--aggmethod &lt;METHOD> Method to use for aggregating (min|max|avg|pool)
-o,--outputDir &lt;DIR> The DIRectory where to output results
-P,--params &lt;FILE> Read parameters from FILE
......
......@@ -67,7 +67,6 @@ usage: java fr.inrialpes.exmo.align.cli.EvalAlign [options] alignURI alignURI
Options:
-D &lt;NAME=VALUE> Use value for given property
-d,--debug &lt;LEVEL> debug argument is deprecated, use logging instead
See http://alignapi.gforge.inria.fr/logging.html
-h,--help Print this page
-i,--impl &lt;CLASS> Use the given CLASS for evaluator
-o,--output &lt;FILENAME> Send output to FILENAME
......@@ -299,15 +298,11 @@ usage: java fr.inrialpes.exmo.align.cli.GenPlot [options]
Options:
-D &lt;NAME=VALUE> Use value for given property
-d,--debug &lt;LEVEL> debug argument is deprecated, use logging
instead
See
http://alignapi.gforge.inria.fr/logging.html
-d,--debug &lt;LEVEL> debug argument is deprecated, use logging instead
-e,--evaluator &lt;CLASS> Use CLASS as evaluation plotter
-g,--grapher &lt;CLASS> Use CLASS as graph generator
-h,--help Print this page
-l,--list &lt;FILE> Consider this list of FILEs for inclusion in
the results
-l,--list &lt;FILE> Consider this list of FILEs for inclusion in the results
-o,--output &lt;FILENAME> Send output to FILENAME
-P,--params &lt;FILE> Read parameters from FILE
-t,--type &lt;tsv|tex|html(|xml)> Output in the specified FORMAT (values
......
......@@ -76,6 +76,7 @@ with a warning:
<p><ul compact="1">
<li>Revised documentation after moving to gitlab pages (html)</li>
<li>Fixed problem with Postgres initialisation (serv)</li>
<li>Suppressed URL to gforge from comand line usage and documentation (cli)</li>
</ul></p>
<h2>Version 4.10 (2228): 2020-11-21 - Sweny&apos;s</h2>
......
/*
* $Id$
*
* Copyright (C) INRIA, 2013-2015, 2017
* Copyright (C) INRIA, 2013-2015, 2017, 2021
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
......@@ -68,7 +68,7 @@ public abstract class CommonCLI {
options = new Options();
options.addOption( createOption( "h", "help", "Print this page" ) );
options.addOption( createRequiredOption( "o", "output", "Send output to FILE", "FILE" ) );
options.addOption( createOptionalOption( "d", "debug", "debug argument is deprecated, use logging instead\nSee http://alignapi.gforge.inria.fr/logging.html", "LEVEL") );
options.addOption( createOptionalOption( "d", "debug", "debug argument is deprecated, use logging instead", "LEVEL") );
options.addOption( createRequiredOption( "P", "params", "Read parameters from FILE", "FILE" ) );
// Special one
Option opt = new Option( "D", "Use value for given property" );
......
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