-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtools_consolemerger_de.php
71 lines (68 loc) · 2.8 KB
/
tools_consolemerger_de.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php
$page = "tools";
$language = "de";
include_once "head.php";
?>
<title>Magellan Tools - Console Merger</title>
</head>
<body>
<div id="container">
<?php
include_once "navi_" . $language . ".php";
include_once "header.php";
?>
<div id="center">
<h3>Console Merger</h3>
<table summary="" cellspacing="0" cellpadding="1" border="0" class="plugin">
<tr class="plugin">
<td class="plugin">Name:</td>
<td class="plugin">Console Merger Tool</td>
</tr>
<tr class="plugin">
<td class="plugin">Version:</td>
<td class="plugin">1.0.1</td>
</tr>
<tr class="plugin">
<td class="plugin">Kurzbeschreibung:</td>
<td class="plugin">Dieses Tool ist ein Javaprogramm, welches über die
Kommandozeile aufgerufen wird und zwei Eressea-Reporte zusammenfügt. Es
benötigt mindestens Java 6 (Java 1.6).</td>
</tr>
<tr class="plugin">
<td class="plugin">Autor:</td>
<td class="plugin">Thoralf</td>
</tr>
<tr class="plugin">
<td class="plugin">Website:</td>
<td class="plugin">-</td>
</tr>
<tr class="plugin">
<td class="plugin">Download:</td>
<td class="plugin"><a href="download_en.php#tools">http://magellan.narabi.de</a>
</td>
</tr>
</table>
<p>
Syntax:
<code>java magellan.ext.console.merge.ConsoleMerger Parameter</code>
<br /> Parameter: magellan_dir base_report merge_report result_report <br />
<ul>
<li>magellan_dir - das Verzeichnis, welches benötigte Magellan2-Dateien enthält.
(Regeln und Ressourcen).</li>
<li>base_report - der Original-Report.</li>
<li>merge_report - der zum base_report hinzuzufügende Report</li>
<li>result_report - Zieldatei. Falls diese existiert, wird sie überschrieben.</li>
</ul>
Möglicher anderer Aufruf:
<code>java -jar consolemerger.jar Parameter</code>
<br /> Das Programm berücksichtigt Dateiendungen und lädt und speichert im
entsprechenden Format.
</p>
</div>
</div>
</body>
</html>