Author: mwriedt
Date: Tue Apr 15 09:14:33 2025
New Revision: 1925092

URL: http://svn.apache.org/viewvc?rev=1925092&view=rev
Log:
Fix some unicode related issues

Modified:
    db/torque/trunk/pom.xml
    
db/torque/trunk/torque-generator/src/test/java/org/apache/torque/generator/configuration/PackageResourcesTest.java
    db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/Torque.java
    
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/TorqueInstance.java
    
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java
    
db/torque/trunk/torque-test/src/test/java/org/apache/torque/util/LargeSelectTest.java

Modified: db/torque/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/db/torque/trunk/pom.xml?rev=1925092&r1=1925091&r2=1925092&view=diff
==============================================================================
--- db/torque/trunk/pom.xml (original)
+++ db/torque/trunk/pom.xml Tue Apr 15 09:14:33 2025
@@ -249,6 +249,16 @@
             </roles>
             <timezone>+1</timezone>
         </developer>
+        <developer>
+            <name>Max Philipp Wriedt</name>
+            <id>mwriedt</id>
+            <email>mwri...@apache.org</email>
+            <organization>HeimTec GmbH</organization>
+            <roles>
+                <role>Java Developer</role>
+            </roles>
+            <timezone>+1</timezone>
+        </developer>
     </developers>
 
     <contributors>

Modified: 
db/torque/trunk/torque-generator/src/test/java/org/apache/torque/generator/configuration/PackageResourcesTest.java
URL: 
http://svn.apache.org/viewvc/db/torque/trunk/torque-generator/src/test/java/org/apache/torque/generator/configuration/PackageResourcesTest.java?rev=1925092&r1=1925091&r2=1925092&view=diff
==============================================================================
--- 
db/torque/trunk/torque-generator/src/test/java/org/apache/torque/generator/configuration/PackageResourcesTest.java
 (original)
+++ 
db/torque/trunk/torque-generator/src/test/java/org/apache/torque/generator/configuration/PackageResourcesTest.java
 Tue Apr 15 09:14:33 2025
@@ -39,10 +39,10 @@ public class PackageResourcesTest
 {
 
     /**
-     * Testet, dass ein Paket in mehreren Jar files und directories
-     * gefunden wird, wenn der Pfad nicht mit einem Slash anfängt und endet.
+     * Tested that a package can be found in multiple JAR files and directories
+     * when the path does not start and end with a slash.
      *
-     * @throws Exception wenn der Test Fehlschlägt.
+     * @throws Exception if test fails
      */
     @Test @Ignore // produces errors on Jenkins
     public void testGetJarFilesAndDirectories() throws Exception
@@ -91,10 +91,10 @@ public class PackageResourcesTest
     }
 
     /**
-     * Testet, dass ein Paket in mehreren Jar files und directories
-     * gefunden wird, wenn der Pfad mit einem Slash anfängt und endet.
+     * Tested that a package can be found in multiple JAR files and directories
+     * when the path does start and end with a slash
      *
-     * @throws Exception wenn der Test Fehlschlägt.
+     * @throws Exception it test fails
      */
     @Test @Ignore // produces errors on Jenkins
     public void testGetJarFilesAndDirectoriesSlashes() throws Exception

Modified: 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/Torque.java
URL: 
http://svn.apache.org/viewvc/db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/Torque.java?rev=1925092&r1=1925091&r2=1925092&view=diff
==============================================================================
--- db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/Torque.java 
(original)
+++ db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/Torque.java 
Tue Apr 15 09:14:33 2025
@@ -37,7 +37,7 @@ import org.apache.torque.util.BasePeerIm
  * </p>
  *
  * @author <a href="mailto:d...@finemaltcoding.com";>Daniel Rall</a>
- * @author <a href="mailto:mag...@handtolvur.is";>Magn�s ��r Torfason</a>
+ * @author <a href="mailto:mag...@handtolvur.is";>Magnús Þór Torfason</a>
  * @author <a href="mailto:jvan...@apache.org";>Jason van Zyl</a>
  * @author <a href="mailto:rafal.krzew...@e-point.pl";>Rafal Krzewski</a>
  * @author <a href="mailto:mpoes...@marmot.at";>Martin Poeschl</a>

Modified: 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/TorqueInstance.java
URL: 
http://svn.apache.org/viewvc/db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/TorqueInstance.java?rev=1925092&r1=1925091&r2=1925092&view=diff
==============================================================================
--- 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/TorqueInstance.java
 (original)
+++ 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/TorqueInstance.java
 Tue Apr 15 09:14:33 2025
@@ -62,7 +62,7 @@ import org.apache.torque.util.Transactio
  * this class.
  *
  * @author <a href="mailto:d...@finemaltcoding.com";>Daniel Rall</a>
- * @author <a href="mailto:mag...@handtolvur.is";>Magn�s ��r Torfason</a>
+ * @author <a href="mailto:mag...@handtolvur.is";>Magnús Þór Torfason</a>
  * @author <a href="mailto:jvan...@apache.org";>Jason van Zyl</a>
  * @author <a href="mailto:rafal.krzew...@e-point.pl";>Rafal Krzewski</a>
  * @author <a href="mailto:mpoes...@marmot.at";>Martin Poeschl</a>

Modified: 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java
URL: 
http://svn.apache.org/viewvc/db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java?rev=1925092&r1=1925091&r2=1925092&view=diff
==============================================================================
--- 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java
 (original)
+++ 
db/torque/trunk/torque-runtime/src/main/java/org/apache/torque/util/SummaryHelper.java
 Tue Apr 15 09:14:33 2025
@@ -129,7 +129,7 @@ public class SummaryHelper
      * @param crit The base criteria to build on.
      * @param resultTypes the classes to which the return values of the query
      *        should be cast, or null to let the database driver decide.
-     *        See org.apache.torque.om.mapper.ObjectListMapper�for the 
supported
+     *        See {@link org.apache.torque.om.mapper.ObjectListMapper} for the 
supported
      *        classes.
      *
      * @return Results as a ListOrderMapCI&lt;String, List&lt;Object&gt;&gt; 
object.
@@ -179,7 +179,7 @@ public class SummaryHelper
      * @param crit The base criteria to build on.
      * @param resultTypes the classes to which the return values of the query
      *        should be cast, or null to let the database driver decide.
-     *        See org.apache.torque.om.mapper.ObjectListMapper�for the 
supported
+     *        See {@link org.apache.torque.om.mapper.ObjectListMapper} for the 
supported
      *        classes.
      * @param conn The DB Connection to use.
      *

Modified: 
db/torque/trunk/torque-test/src/test/java/org/apache/torque/util/LargeSelectTest.java
URL: 
http://svn.apache.org/viewvc/db/torque/trunk/torque-test/src/test/java/org/apache/torque/util/LargeSelectTest.java?rev=1925092&r1=1925091&r2=1925092&view=diff
==============================================================================
--- 
db/torque/trunk/torque-test/src/test/java/org/apache/torque/util/LargeSelectTest.java
 (original)
+++ 
db/torque/trunk/torque-test/src/test/java/org/apache/torque/util/LargeSelectTest.java
 Tue Apr 15 09:14:33 2025
@@ -189,7 +189,7 @@ public class LargeSelectTest extends Bas
         assertEquals("Page progress text pattern", "{0} of {1,choice,0#&gt; 
|1#}{2}", ls.getPageProgressTextPattern());
 
         assertEquals("Record progress text pattern", "{0} - {1} of 
{2,choice,0#&gt; |1#}{3}", ls.getRecordProgressTextPattern());
-        String newRecordProgressTextPattern = "Datensätze {0} bis {1} von 
{2,choice,0#mehr als |1#}{3}";
+        String newRecordProgressTextPattern = "Datensätze {0} bis {1} von 
{2,choice,0#mehr als |1#}{3}";
         ls.setRecordProgressTextPattern(newRecordProgressTextPattern);
         assertEquals("Record progress text pattern", 
newRecordProgressTextPattern, ls.getRecordProgressTextPattern());
         
ls.setRecordProgressTextPattern(LargeSelect.DEFAULT_RECORD_PROGRESS_TEXT_PATTERN);



---------------------------------------------------------------------
To unsubscribe, e-mail: torque-dev-unsubscr...@db.apache.org
For additional commands, e-mail: torque-dev-h...@db.apache.org

Reply via email to