Skip to content

Commit

Permalink
Updated for release 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmraya committed Mar 26, 2024
1 parent bfd44bf commit 64cadeb
Show file tree
Hide file tree
Showing 99 changed files with 2,408 additions and 3,087 deletions.
20 changes: 8 additions & 12 deletions .classpath
Original file line number Diff line number Diff line change
@@ -1,45 +1,41 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="jars/dtd.jar">
<classpathentry kind="lib" path="jars/json.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="jars/json.jar">
<classpathentry kind="lib" path="jars/tmxvalidator.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="jars/jsoup.jar">
<classpathentry kind="lib" path="jars/xmljava.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="jars/mapdb.jar">
<classpathentry kind="lib" path="jars/bcp47j.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="jars/openxliff.jar">
<classpathentry kind="lib" path="jars/slf4j-api-2.0.9.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="jars/tmxvalidator.jar">
<classpathentry kind="lib" path="jars/slf4j-nop-2.0.9.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="jars/xmljava.jar">
<classpathentry kind="lib" path="jars/sqlite-jdbc-3.45.2.0.jar">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="out"/>
</classpath>
12 changes: 6 additions & 6 deletions build.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project basedir="." default="dist" name="TMXServer">
<property name="target" value="17" />
<property name="source" value="17" />
<property name="target" value="21" />
<property name="source" value="21" />
<property name="build.compiler" value="javac10+" />
<path id="TMXServer.classpath">
<pathelement location="jars/dtd.jar" />
<pathelement location="jars/bcp47j.jar" />
<pathelement location="jars/json.jar" />
<pathelement location="jars/jsoup.jar" />
<pathelement location="jars/mapdb.jar" />
<pathelement location="jars/openxliff.jar" />
<pathelement location="jars/slf4j-api-2.0.9.jar" />
<pathelement location="jars/slf4j-nop-2.0.9.jar" />
<pathelement location="jars/sqlite-jdbc-3.45.2.0.jar" />
<pathelement location="jars/tmxvalidator.jar" />
<pathelement location="jars/xmljava.jar" />
</path>
Expand Down
35 changes: 35 additions & 0 deletions html/en/convertTBX.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>

<head>
<title>Convert TBX File to TMX</title>
<link id="theme" rel="stylesheet" type="text/css" href="../../css/light.css">
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
</head>

<body onload="new ConvertTBX();">

<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="tbxFile">TBX File</label></td>
<td class="middle fill_width"><input type="text" id="tbxFile" class="fill_width"></td>
<td><button id="browseTbxFiles">Browse...</button></td>
</tr>
<tr>
<td class="middle noWrap"><label for="tmxFile">TMX File</label></td>
<td class="middle fill_width"> <input type="text" id="tmxFile" class="fill_width"></td>
<td class="middle"><button id="browseTmxFiles">Browse...</button></td>
</tr>
</table>
<div style="padding: 4px; margin:4px 8px;">
<input type="checkbox" id="openTMX" checked> <label for="openTMX">Open Generated TMX File</label>
</div>
<div class="buttonArea">
<button id="convert">Convert TBX File to TMX</button>
</div>

<script src="../../js/keyboardHandler.js"></script>
<script src="../../js/convertTBX.js"></script>
</body>

</html>
2 changes: 1 addition & 1 deletion html/en/fileInfo.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
</head>

<body class="lighter" onload="new FileInfo();">
<body onload="new FileInfo();">

<div class="tabHolder">
<div class="tab selectedTab" id="atributesTab">
Expand Down
94 changes: 48 additions & 46 deletions html/en/licenses.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,52 +8,54 @@
</head>

<body onload="new Licenses();">
<table class="fill_width " style="height: 20em;">
<tr>
<td>TMXEditor</td>
<td><a id="TMXEditor">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>DTDParser</td>
<td><a id="DTDParser">LGPL 2.1</a></td>
</tr>
<tr>
<td>Electron</td>
<td><a id="electron">MIT License</a></td>
</tr>
<tr>
<td>Java</td>
<td><a id="Java">GPL2 with Classpath Exception</a></td>
</tr>
<tr>
<td>JSON</td>
<td><a id="JSON">JSON.org</a></td>
</tr>
<tr>
<td>jsoup</td>
<td><a id="jsoup">MIT License</a></td>
</tr>
<tr>
<td>MapDB</td>
<td><a id="MapDB">Apache License 2.0</a></td>
</tr>
<tr>
<td>OpenXLIFF Filters</td>
<td><a id="OpenXLIFF">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>sdltm</td>
<td><a id="sdltm">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>TMXValidator</td>
<td><a id="TMXValidator">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>XMLJava</td>
<td><a id="XMLJava">Eclipse Public License 1.0</a></td>
</tr>
</table>
<div id="holder" class="paddedArea">
<table>
<tr>
<td>TMXEditor</td>
<td><a id="TMXEditor">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>BCP47J</td>
<td><a id="bcp47j">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>Electron</td>
<td><a id="electron">MIT License</a></td>
</tr>
<tr>
<td>Java</td>
<td><a id="Java">GPL2 with Classpath Exception</a></td>
</tr>
<tr>
<td>JSON</td>
<td><a id="JSON">JSON.org</a></td>
</tr>
<tr>
<td>sdltm</td>
<td><a id="sdltm">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>SLF4J</td>
<td><a id="SLF4J">MIT License</a></td>
</tr>
<tr>
<td>SQLite JDBC Driver</td>
<td><a id="SQLite">Apache License 2.0</a></td>
</tr>
<tr>
<td>TMXValidator</td>
<td><a id="TMXValidator">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>TypesXML</td>
<td><a id="typesxml">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>XMLJava</td>
<td><a id="XMLJava">Eclipse Public License 1.0</a></td>
</tr>
</table>
</div>
<script src="../../js/licenses.js"></script>
</body>

Expand Down
12 changes: 0 additions & 12 deletions html/en/preferences.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,18 +28,6 @@
</select>
</td>
</tr>
<tr>
<td class="middle noWrap"><label for="threshold">Max File size for<br>&nbsp;Memory Storage</label></td>
<td class="middle fill_width noWrap">
<select id="threshold">
<option value="100">100</option>
<option value="200">200</option>
<option value="500">500</option>
<option value="1000">1000</option>
</select>
(MB)
</td>
</tr>
<tr>
<td class="middle noWrap"><label for="indentation">Indentation</label></td>
<td class="middle fill_width"><input type="number" id="indentation" min="0" max="8" value="4"> spaces</td>
Expand Down
47 changes: 24 additions & 23 deletions html/en/systemInfo.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,29 +8,30 @@
</head>

<body onload="new SystemInformation();">

<table>
<tr>
<td>TMXEditor</td>
<td id="tmxeditor"></td>
</tr>
<tr>
<td>OpenXLIFF</td>
<td id="openxliff"></td>
</tr>
<tr>
<td>XMLJava</td>
<td id="xmljava"></td>
</tr>
<tr>
<td>Java</td>
<td id="java"></td>
</tr>
<tr>
<td>Electron</td>
<td id="electron"></td>
</tr>
</table>
<div class="paddedArea">
<table>
<tr>
<td>TMXEditor</td>
<td id="tmxeditor"></td>
</tr>
<tr>
<td>BCP47J</td>
<td id="bcp47j"></td>
</tr>
<tr>
<td>Java</td>
<td id="java"></td>
</tr>
<tr>
<td>XMLJava</td>
<td id="xmljava"></td>
</tr>
<tr>
<td>Electron</td>
<td id="electron"></td>
</tr>
</table>
</div>
<script src="../../js/keyboardHandler.js"></script>
<script src="../../js/systemInfo.js"></script>
</body>
Expand Down
35 changes: 35 additions & 0 deletions html/es/convertTBX.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<!DOCTYPE html>
<html>

<head>
<title>Convertir Archivo TBX a TMX</title>
<link id="theme" rel="stylesheet" type="text/css" href="../../css/light.css">
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
</head>

<body onload="new ConvertTBX();">

<table class="fill_width">
<tr>
<td class="middle noWrap"><label for="tbxFile">Archivo TBX</label></td>
<td class="middle fill_width"><input type="text" id="tbxFile" class="fill_width"></td>
<td><button id="browseTbxFiles">Examinar...</button></td>
</tr>
<tr>
<td class="middle noWrap"><label for="tmxFile">Archivo TMX</label></td>
<td class="middle fill_width"> <input type="text" id="tmxFile" class="fill_width"></td>
<td class="middle"><button id="browseTmxFiles">Examinar...</button></td>
</tr>
</table>
<div style="padding: 4px; margin:4px 8px;">
<input type="checkbox" id="openTMX" checked> <label for="openTMX">Abrir Archivo TMX Generado</label>
</div>
<div class="buttonArea">
<button id="convert">Convertir Archivo TBX a TMX</button>
</div>

<script src="../../js/keyboardHandler.js"></script>
<script src="../../js/convertTBX.js"></script>
</body>

</html>
2 changes: 1 addition & 1 deletion html/es/fileInfo.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<link rel="stylesheet" type="text/css" href="../../css/fonts.css">
</head>

<body class="lighter" onload="new FileInfo();">
<body onload="new FileInfo();">

<div class="tabHolder">
<div class="tab selectedTab" id="atributesTab">
Expand Down
13 changes: 8 additions & 5 deletions html/es/licenses.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
</head>

<body onload="new Licenses();">
<table class="fill_width " style="height: 20em;">
<table class="fill_width " style="height: 30em;">
<tr>
<td>TMXEditor</td>
<td><a id="TMXEditor">Eclipse Public License 1.0</a></td>
Expand All @@ -33,17 +33,20 @@
<td>jsoup</td>
<td><a id="jsoup">MIT License</a></td>
</tr>
<tr>
<td>MapDB</td>
<td><a id="MapDB">Apache License 2.0</a></td>
</tr>
<tr>
<td>OpenXLIFF Filters</td>
<td><a id="OpenXLIFF">Eclipse Public License 1.0</a></td>
</tr>
<tr>
<td>sdltm</td>
<td><a id="sdltm">Eclipse Public License 1.0</a></td>
</tr> <tr>
<td>SLF4J</td>
<td><a id="SLF4J">MIT License</a></td>
</tr>
<tr>
<td>SQLite JDBC Driver</td>
<td><a id="SQLite">Apache License 2.0</a></td>
</tr>
<tr>
<td>TMXValidator</td>
Expand Down
6 changes: 0 additions & 6 deletions html/es/preferences.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@
</select>
</td>
</tr>
<tr>
<td class="middle noWrap"><label for="threshold">Tama&ntilde;o M&aacute;ximo para<br>&nbsp;Almacenar en Memoria</label></td>
<td class="middle fill_width noWrap">
<select id="threshold">
<option value="100">100</option> <option value="200">200</option> <option value="500">500</option> <option value="1000">1000</option> </select> (MB) </td>
</tr>
<tr>
<td class="middle noWrap"><label for="indentation">Sangr&iacute;a</label></td>
<td class="middle fill_width"><input type="number" id="indentation" min="0" max="8" value="4"> espacios</td>
Expand Down
Loading

0 comments on commit 64cadeb

Please sign in to comment.