home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 November / PCWorld_2000-11_cd.bin / Komunik / sambar444 / _SETUP.1 / create.stm < prev    next >
Text File  |  2000-09-04  |  2KB  |  69 lines

  1. <HTML>
  2. <HEAD><TITLE>Sambar Server Document Manager</TITLE>
  3. <SCRIPT language="JavaScript">
  4. <!--
  5.  
  6. var strValid = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.-_";
  7.  
  8. function Form_Validator(theForm)
  9. {
  10.     var alertstr = "Please correct the following\n";
  11.  
  12.     if (theForm.name.value == "")
  13.     {
  14.         alert(alertstr + "Enter a value for the document \"name\" field.");
  15.         theForm.name.focus();
  16.         return (false);
  17.     }
  18.  
  19.     for (j = 0; j < theForm.name.value.length; j++)
  20.     {
  21.         if (strValid.indexOf(theForm.name.value.charAt(j)) == -1)
  22.         {
  23.             alert(alertstr + "The \"name\" contains invalid characters.");
  24.             theForm.name.focus();
  25.             return (false);
  26.         }
  27.     }
  28. }
  29. //-->
  30. </SCRIPT>
  31. </HEAD>
  32. <BODY bgcolor=#ffffff>
  33. <A HREF="/sysadmin/index.stm" TARGET=_top>
  34. <IMG border=0 ALIGN=left SRC="/sysimage/system/console.gif"></A>
  35. <center><FONT SIZE=6>Sambar Server Document Manager</FONT>
  36. <P>
  37. <TABLE border=0 cellspacing=8>
  38. <TR><TD>
  39. <br>
  40. <B><FONT SIZE=+2 COLOR=#000088>Upload File</FONT></B><BR>
  41. <FORM METHOD="POST" ACTION="/session/dm-create" onsubmit="return Form_Validator(this)" enctype="multipart/form-data">
  42. <input type=hidden name="home" value="<RCSbrowse>">
  43. <input type=hidden name="root" value="<RCPdir>">
  44. <input type=hidden name="path" value="<RC@txt2html(RC$path)>">
  45. <TABLE border=0 cellspacing=4>
  46. <TR><TD><B>Path:</B></TD>
  47.     <TD><FONT SIZE=+1><I><RC$path></I></FONT></TD></TR>
  48. <TR><TD><B>File:</B></TD>
  49.     <TD><input type=text name="name" value="new.htm" size=40></TD></TR>
  50. <TR><TD></TD><TD><I>(Note: File name may not contain spaces!)</I></TD></TR>
  51. </TABLE>
  52. <br>
  53. <input type=file name="upfile" size=60>
  54. <br>
  55. <I>(Maximum file size is 100KB).</I>
  56. <br>
  57. <br>
  58. <input type=submit value="Upload File">
  59. </FORM>
  60. <BR>
  61. Return to browsing: 
  62.     <A HREF="<RCSbrowse>/browse.stm?path=<RC@urlescape(RC$path)>"><RC$path></A>
  63. <BR>
  64. </TD></TR>
  65. </TABLE>
  66. </CENTER>
  67. </BODY>
  68. </HTML>
  69.