This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 9ea4fbc166 Clean up ASP files (#363)
9ea4fbc166 is described below

commit 9ea4fbc1667792d8a6b990c2bb183d374e223170
Author: John Bampton <[email protected]>
AuthorDate: Tue May 6 02:32:30 2025 +1000

    Clean up ASP files (#363)
    
    - Use lowercase HTML tags
    - Add quotes to all HTML tag attribute values
    - fix meta tag attribute "http-equiv" value for "refresh"
---
 main/sd/res/webview/edit.asp    | 18 +++++++++---------
 main/sd/res/webview/webview.asp | 24 ++++++++++++------------
 2 files changed, 21 insertions(+), 21 deletions(-)

diff --git a/main/sd/res/webview/edit.asp b/main/sd/res/webview/edit.asp
index d7c2331450..487543eb37 100755
--- a/main/sd/res/webview/edit.asp
+++ b/main/sd/res/webview/edit.asp
@@ -1,4 +1,4 @@
-<HTML>
+<html>
 <!--***********************************************************
  *
  * Licensed to the Apache Software Foundation (ASF) under one
@@ -19,11 +19,11 @@
  * under the License.
  *
  ***********************************************************-->
-<HEAD>
-  <TITLE>$$1</TITLE>
-</HEAD>
-<FRAMESET ROWS="90%,10%" FRAMEBORDER=yes>
-  <FRAME name="view" src="webcast.asp">
-  <FRAME name="edit" src="editpic.asp">
-</FRAMESET>
-</HTML>
+<head>
+  <title>$$1</title>
+</head>
+<frameset rows="90%,10%" frameborder="yes">
+  <frame name="view" src="webcast.asp">
+  <frame name="edit" src="editpic.asp">
+</frameset>
+</html>
diff --git a/main/sd/res/webview/webview.asp b/main/sd/res/webview/webview.asp
index 7d9286e827..0100ef9d8a 100755
--- a/main/sd/res/webview/webview.asp
+++ b/main/sd/res/webview/webview.asp
@@ -29,20 +29,20 @@
     Session( "GIFID" ) = File_getDataVirtual( csFileCurrent, ".", ";" )( 0 )
 %>
 
-<HTML>
+<html>
 
-<HEAD>
-</HEAD>
+<head>
+</head>
 
-<FRAMESET ROWS="*,2" BORDER=0 FRAMEBORDER=0 FRAMESPACING=0>
-       <FRAME SRC="./show.asp" NAME="frame1" SCROLLING=yes  RESIZE 
MARGINWIDTH=0 MARGINHEIGHT=0 FRAMEBORDER=0>
-       <FRAME SRC="./poll.asp" NAME="frame2" SCROLLING=no NORESIZE 
MARGINWIDTH=0 MARGINHEIGHT=0 FRAMEBORDER=0>
-</FRAMESET>
+<frameset rows="*,2" border="0" frameborder="0" framespacing="0">
+       <frame src="./show.asp" name="frame1" scrolling="yes"  resize 
marginwidth="0" marginheight="0" frameborder="0">
+       <frame src="./poll.asp" name="frame2" scrolling="no" noresize 
marginwidth="0" marginheight="0" frameborder="0">
+</frameset>
 
-<NOFRAMES>
+<noframes>
 
-<BODY BGCOLOR="white">
-    <META HTTP-EQUIV="-REFRESH" CONTENT="1;URL=./show.asp">
-</BODY>
+<body bgcolor="white">
+    <meta http-equiv="refresh" content="1;URL=./show.asp">
+</body>
 
-</HTML>
+</html>

Reply via email to