Skip to content

Commit

Permalink
1. Added DOCTYPE to all management screens that needed.
Browse files Browse the repository at this point in the history
2. Added lang=en to all <html> tags
3. Updated all python source and dtml source files to use the new <dtml-X > synt   ax
  • Loading branch information
sroberts committed Nov 3, 1999
1 parent 87b63a9 commit 5b45681
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
3 changes: 2 additions & 1 deletion methodAdd.dtml
@@ -1,4 +1,5 @@
<HTML>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML lang="en">
<HEAD>
<TITLE>Add External Method</TITLE>
</HEAD>
Expand Down
17 changes: 9 additions & 8 deletions methodEdit.dtml
@@ -1,30 +1,31 @@
<HTML>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML lang="en">
<HEAD>
<TITLE>Edit <!--#var title_or_id--></TITLE>
<TITLE>Edit <dtml-var title_or_id></TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555" ALINK="#77003B">
<!--#var manage_tabs-->
<dtml-var manage_tabs>

<h2>Edit <!--#var title_or_id--></h2>
<h2>Edit <dtml-var title_or_id></h2>

<FORM ACTION="manage_edit" METHOD="POST">
<TABLE CELLSPACING="2">
<TR>
<TH ALIGN="LEFT" VALIGN="TOP">Id</TH>
<TD ALIGN="LEFT" VALIGN="TOP"><!--#var id--></TD>
<TD ALIGN="LEFT" VALIGN="TOP"><dtml-var id></TD>
</TR>
<TR>
<TH ALIGN="LEFT" VALIGN="TOP"><EM>Title</EM></TH>
<TD ALIGN="LEFT" VALIGN="TOP">
<INPUT TYPE="TEXT" NAME="title" SIZE="50" VALUE="<!--#var title html_quote-->">
<INPUT TYPE="TEXT" NAME="title" SIZE="50" VALUE="<dtml-var title html_quote>">
</TD>
</TR>
<tr> <th ALIGN="LEFT">Function name</th>
<td ALIGN="LEFT"><input name="function" size="30"
value="<!--#var function html_quote-->"></td></tr>
value="<dtml-var function html_quote>"></td></tr>
<tr> <th ALIGN="LEFT">Python module file (without suffix)</th>
<td ALIGN="LEFT"><input name="module" size="30"
value="<!--#var module html_quote-->"></td></tr>
value="<dtml-var module html_quote>"></td></tr>
<TR>
<TR>
<TD></TD>
Expand Down

0 comments on commit 5b45681

Please sign in to comment.