-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jim Fulton
committed
Oct 9, 1997
1 parent
3776da4
commit 17c0412
Showing
4 changed files
with
85 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
*shared* | ||
# install ExternalMethod.py | ||
# install __init__.py | ||
# install addForm.dtml | ||
# install methodAdd.dtml | ||
# install methodEdit.dtml | ||
# install www www/%(package)s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<HTML> | ||
<HEAD> | ||
<TITLE>Edit <!--#var title_or_id--></TITLE> | ||
</HEAD> | ||
<BODY BGCOLOR="#FFFFFF" LINK="#000099" VLINK="#555555" ALINK="#77003B"> | ||
<h2>Edit <!--#var title_or_id--></h2> | ||
|
||
<FORM ACTION="manage_edit" METHOD="POST"> | ||
<TABLE CELLSPACING="2"> | ||
<TR> | ||
<TD ALIGN="LEFT" VALIGN="TOP"><B>Id</B></TD> | ||
<TD ALIGN="LEFT" VALIGN="TOP"><!--#var id--></TD> | ||
</TR> | ||
<TR> | ||
<TD ALIGN="LEFT" VALIGN="TOP"><B>Title</B></TD> | ||
<TD ALIGN="LEFT" VALIGN="TOP"> | ||
<INPUT TYPE="TEXT" NAME="title" SIZE="50" VALUE="<!--#var title-->"> | ||
</TD> | ||
</TR> | ||
<!--#var smallRolesWidget--> | ||
<TR> | ||
<TD ALIGN="LEFT" VALIGN="TOP"><B>External name</B></TD> | ||
<TD ALIGN="LEFT" VALIGN="TOP"> | ||
<INPUT TYPE="TEXT" NAME="external_name" SIZE="50" | ||
VALUE="<!--#var external_name-->"> | ||
</TD> | ||
</TR> | ||
<TR> | ||
<TD></TD> | ||
<TD><BR><INPUT TYPE="SUBMIT" VALUE="Edit"></TD> | ||
</TR> | ||
</TABLE> | ||
</FORM> | ||
</BODY> | ||
</HTML> |