]> code.citadel.org Git - citadel.git/commitdiff
* Removed some unreferenced files from the static/ directory.
authorArt Cancro <ajc@citadel.org>
Sun, 12 Jun 2005 18:34:50 +0000 (18:34 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 12 Jun 2005 18:34:50 +0000 (18:34 +0000)
webcit/ChangeLog
webcit/static/email.gif [deleted file]
webcit/static/insert_link.htm [deleted file]
webcit/static/insert_table.gif [deleted file]
webcit/static/insert_table.htm [deleted file]
webcit/static/smiley.gif [deleted file]
webcit/static/up.gif [deleted file]

index 0f8aee0d2b6385133e66b518b5034b5061ec9b3b..1c68c0e2db50d69c8bf3103518b9c01a20fa575c 100644 (file)
@@ -1,4 +1,7 @@
 $Log$
+Revision 611.9  2005/06/12 18:34:50  ajc
+* Removed some unreferenced files from the static/ directory.
+
 Revision 611.8  2005/06/12 17:01:00  ajc
 * Increase maximum viewable message count from 4096 to 10000
 * Summary view now truncates subject to 75 characters, and sender
@@ -2570,4 +2573,3 @@ Sun Dec  6 19:50:55 EST 1998 Art Cancro <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
diff --git a/webcit/static/email.gif b/webcit/static/email.gif
deleted file mode 100644 (file)
index eb355f0..0000000
Binary files a/webcit/static/email.gif and /dev/null differ
diff --git a/webcit/static/insert_link.htm b/webcit/static/insert_link.htm
deleted file mode 100644 (file)
index 7a78967..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-
-<html>
-<head>
-       <title>Insert Link</title>
-       <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<script language="JavaScript" type="text/javascript">
-<!--
-function AddLink() {
-       var oForm = document.linkForm;
-       
-       //validate form
-       if (oForm.url.value == '') {
-               alert('Please enter a url.');
-               return false;
-       }
-       if (oForm.linkText.value == '') {
-               alert('Please enter link text.');
-               return false;
-       }
-       
-       var html = '<a href="' + document.linkForm.url.value + '" target="' + document.linkForm.linkTarget.options[document.linkForm.linkTarget.selectedIndex].value + '">' + document.linkForm.linkText.value + '</a>';
-       
-       window.opener.insertHTML(html);
-       window.close();
-       return true;
-}
-//-->
-</script>
-</head>
-
-<body style="margin: 10px; background: #D3D3D3;">
-
-<form name="linkForm" onSubmit="return AddLink();">
-<table cellpadding="4" cellspacing="0" border="0">
-       <tr>
-               <td align="right">URL:</td>
-               <td><input name="url" type="text" id="url" size="40"></td>
-       </tr>
-       <tr>
-               <td align="right">Link Text:</td>
-               <td><input name="linkText" type="text" id="linkText" size="40"></td>
-       </tr>
-       <tr>
-               <td align="right">Link Target:</td>
-               <td align="left">
-                       <select name="linkTarget" id="linkTarget">
-                               <option value="_blank">_blank</option>
-                               <option value="_parent">_parent</option>
-                               <option value="_self" selected>_self</option>
-                               <option value="_top">_top</option>
-                       </select>
-               </td>
-       </tr>
-       <tr>
-               <td colspan="3" align="center">
-                       <input type="submit" value="Insert Link" />
-                       <input type="button" value="Cancel" onClick="window.close();" />
-               </td>
-       </tr>
-</table>
-
-</form>
-
-</body>
-</html>
diff --git a/webcit/static/insert_table.gif b/webcit/static/insert_table.gif
deleted file mode 100644 (file)
index 607ff38..0000000
Binary files a/webcit/static/insert_table.gif and /dev/null differ
diff --git a/webcit/static/insert_table.htm b/webcit/static/insert_table.htm
deleted file mode 100644 (file)
index fa6a0f6..0000000
+++ /dev/null
@@ -1,70 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-
-<html>
-<head>
-       <title>Insert Table</title>
-       <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-<script language="JavaScript" type="text/javascript">
-<!--
-function AddTable() {
-       var widthType = (document.tableForm.widthType.value == "pixels") ? "" : "%";
-       var html = '<table border="' + document.tableForm.border.value + '" cellpadding="' + document.tableForm.padding.value + '" ';
-       
-       html += 'cellspacing="' + document.tableForm.spacing.value + '" width="' + document.tableForm.width.value + widthType + '">\n';
-       for (var rows = 0; rows < document.tableForm.rows.value; rows++) {
-               html += "<tr>\n";
-               for (cols = 0; cols < document.tableForm.columns.value; cols++) {
-                       html += "<td>&nbsp;</td>\n";
-               }
-               html+= "</tr>\n";
-       }
-       html += "</table>\n";
-       
-       window.opener.insertHTML(html);
-       window.close();
-}
-//-->
-</script>
-</head>
-
-<body style="margin: 10px; background: #D3D3D3;">
-
-<form name="tableForm">
-<table cellpadding="4" cellspacing="0" border="0">
-       <tr>
-               <td align="right">Rows:</td>
-               <td><input name="rows" type="text" id="rows" value="2" size="4"></td>
-               <td align="left">Columns: <input name="columns" type="text" id="columns" value="2" size="4"></td>
-       </tr>
-       <tr>
-               <td align="right">Table width:</td>
-               <td><input name="width" type="text" id="width" value="100" size="4"></td>
-               <td align="left">
-                       <select name="widthType" id="widthType">
-                               <option value="pixels">pixels</option>
-                               <option value="percent" selected>percent</option>
-                       </select>
-               </td>
-       </tr>
-       <tr>
-               <td align="right">Border thickness:</td>
-               <td><input name="border" type="text" id="border" value="1" size="4"></td>
-               <td align="left">pixels</td>
-       </tr>
-       <tr>
-               <td align="right">Cell padding:</td>
-               <td><input name="padding" type="text" id="padding" value="4" size="4"></td>
-               <td>Cell spacing: <input name="spacing" type="text" id="0" value="0" size="4"></td>
-       </tr>
-       <tr>
-               <td colspan="3" align="center">
-                       <input type="button" value="Insert Table" onClick="AddTable();" />
-                       <input type="button" value="Cancel" onClick="window.close();" />
-               </td>
-       </tr>
-</table>
-
-</form>
-
-</body>
-</html>
diff --git a/webcit/static/smiley.gif b/webcit/static/smiley.gif
deleted file mode 100644 (file)
index cf2c68e..0000000
Binary files a/webcit/static/smiley.gif and /dev/null differ
diff --git a/webcit/static/up.gif b/webcit/static/up.gif
deleted file mode 100644 (file)
index 1bf371a..0000000
Binary files a/webcit/static/up.gif and /dev/null differ