This is an automated email from the ASF dual-hosted git repository. mseidel pushed a commit to branch AOO42X in repository https://gitbox.apache.org/repos/asf/openoffice.git
commit eb5cf374f8914f72010915a804a05601861b2e9e Author: John Bampton <[email protected]> AuthorDate: Fri Feb 28 03:42:33 2025 +1000 Use lowercase HTML tags (#301) (cherry picked from commit 2e3fa7e2c400a30297c8d95d459eece626c7bfef) --- .../src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java | 4 ++-- .../qadevOOo/runner/graphical/EnhancedComplexTestCase.java | 14 +++++++------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java b/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java index f6aacbf939..fbf551ca10 100644 --- a/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java +++ b/main/javainstaller2/src/JavaSetup/org/openoffice/setup/Util/InfoCtrl.java @@ -36,10 +36,10 @@ public class InfoCtrl { static public String setHtmlFrame(String position, String htmlInfoText) { if ( position.equals("header") ) { - htmlInfoText = "<HTML><BODY><FONT FACE=\"sans-serif\" SIZE=3>"; + htmlInfoText = "<html><body><font face=\"sans-serif\" size=3>"; } else if ( position.equals("end")) { - htmlInfoText = htmlInfoText + "</FONT></BODY></HTML>"; + htmlInfoText = htmlInfoText + "</font></body></html>"; } return htmlInfoText; diff --git a/main/qadevOOo/runner/graphical/EnhancedComplexTestCase.java b/main/qadevOOo/runner/graphical/EnhancedComplexTestCase.java index 34e720fa0f..5c0521dfa8 100644 --- a/main/qadevOOo/runner/graphical/EnhancedComplexTestCase.java +++ b/main/qadevOOo/runner/graphical/EnhancedComplexTestCase.java @@ -490,20 +490,20 @@ private void callEntry(String _sEntry, ParameterHelper _aParam) // FileOutputStream out2 = new FileOutputStream(sHTMLFile); // PrintStream out = new PrintStream(out2); // -// out.println("<HTML>"); -// out.println("<BODY>"); +// out.println("<html>"); +// out.println("<body>"); // for (int i=0;i<aList.size();i++) // { -// // <A href="link">blah</A> +// // <a href="link">blah</a> // String sPSFile = (String)aList.get(i); -// out.print("<A href=\""); +// out.print("<a href=\""); // out.print(sPSFile + ".html"); // out.print("\">"); // out.print(sPSFile); -// out.println("</A>"); -// out.println("<BR>"); +// out.println("</a>"); +// out.println("<br>"); // } -// out.println("</BODY></HTML>"); +// out.println("</body></html>"); // out.close(); // out2.close(); // }
