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


The following commit(s) were added to refs/heads/AOO42X by this push:
     new 3222347566 perl: user lowercase HTML tags and attributes (#423)
3222347566 is described below

commit 32223475664d3381dbfae659d390ad99b450637a
Author: John Bampton <[email protected]>
AuthorDate: Thu Oct 2 06:07:45 2025 +1000

    perl: user lowercase HTML tags and attributes (#423)
    
    Add quotes to all HTML attributes
    
    Remove unneeded semi-colon
    
    https://en.wikipedia.org/wiki/Meta_refresh
    (cherry picked from commit 9a20e8cea859c461bc961631baa9cdabf7e3aa90)
---
 main/sd/res/webview/index.pl | 24 ++++++++++++------------
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/main/sd/res/webview/index.pl b/main/sd/res/webview/index.pl
index e0198e6d3a..903c7d219b 100755
--- a/main/sd/res/webview/index.pl
+++ b/main/sd/res/webview/index.pl
@@ -1,17 +1,17 @@
-<HTML>
+<html>
 
-<HEAD>
-  <TITLE>$$1</TITLE>
-</HEAD>
+<head>
+  <title>$$1</title>
+</head>
 
-<FRAMESET ROWS="*" BORDER=0 FRAMEBORDER=0 FRAMESPACING=0>
-    <FRAME SRC="$$3webcast.pl" NAME="frame1" SCROLLING=yes  RESIZE 
MARGINWIDTH=0 MARGINHEIGHT=0 FRAMEBORDER=0>
-</FRAMESET>
+<frameset rows="*" border="0" frameborder="0" framespacing="0">
+    <frame src="$$3webcast.pl" name="frame1" scrolling="yes" resize 
marginwidth="0" marginheight="0" frameborder="0">
+</frameset>
 
-<NOFRAMES>
+<noframes>
 
-<BODY BGCOLOR="white">
-    <META HTTP-EQUIV="-REFRESH" CONTENT="1;URL=$$3webcast.pl">
-</BODY>;
+<body bgcolor="white">
+    <meta http-equiv="refresh" content="1;URL=$$3webcast.pl">
+</body>
 
-</HTML>
+</html>

Reply via email to