300 lines
10 KiB
Plaintext
Executable File
300 lines
10 KiB
Plaintext
Executable File
<!-- $Id: help40.htt,v 1.2 2006/05/23 13:55:24 psims Exp $ -->
|
||
<HTML>
|
||
<HEAD>
|
||
<TITLE>Test-Central Import Upload Form</TITLE>
|
||
<BASEFONT FACE="Arial">
|
||
<script language="JavaScript">
|
||
<!--
|
||
var down, csec, syncform;
|
||
|
||
function wdw_onLoad() {
|
||
syncform = top.findex.document.syncform
|
||
syncform.csec.value = <%=SYSTEM.autologout%>;
|
||
monitor();
|
||
}
|
||
|
||
function monitor() {
|
||
monitorrepeat();
|
||
}
|
||
|
||
function monitorrepeat() {
|
||
csec=syncform.csec.value;
|
||
csec--;
|
||
syncform.csec.value=csec;
|
||
if ((csec > 0)) {
|
||
down=setTimeout("monitorrepeat()",1000);
|
||
}
|
||
}
|
||
|
||
function reset_autotimer() {
|
||
syncform.csec.value=<%=SYSTEM.autologout%>;
|
||
}
|
||
// -->
|
||
</script>
|
||
</HEAD>
|
||
|
||
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0080FF" VLINK="#FF00FF" ALINK="#FFFF00"
|
||
onLoad="wdw_onLoad()">
|
||
<CENTER>
|
||
<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0>
|
||
<TR>
|
||
<TD COLSPAN="2" ALIGN="center" VALIGN="middle">
|
||
<FONT SIZE=4 COLOR="#00FFFF">
|
||
<B><I>TEST-CENTRAL IMPORT UPLOADS</I></B>
|
||
</FONT>
|
||
</TD>
|
||
</TR>
|
||
<TR>
|
||
<TD> </TD>
|
||
</TR>
|
||
</table>
|
||
<HR>
|
||
<A NAME="ascii"></A>
|
||
<P ALIGN="left">
|
||
<U><B>ASCII Standard Comma Delimited Text Files</B></U><BR>
|
||
ASCII Text Files can be generated any common text editor, such as Notedpad in Microsoft Windows or the DOS Edit program,
|
||
or the <I>'vi'</I> editer on Unix systems,
|
||
or by exporting spreadsheet data from popular spreadsheet applications such as Microsoft Excel, Lotus, and others.
|
||
All major databases provide features or utilities to dump data in ASCII delimited or fixed length formats as well.<BR>
|
||
This format separates each data element (or field) by a comma with each row of data (or record) separated by an EOL (End-of-Line) character.
|
||
Test delimiters for individual data elements (fields) are only required if the data element contains commas (,) or double quotes (").<BR>
|
||
As an example, if the specifications calls for 5 data elements named id, pwd, fname, minit, and lname, the text file could contain:<BR>
|
||
<BR>
|
||
id,pwd,fname,minit,lname<BR>
|
||
jad,john,John,A,Doe<BR>
|
||
jxd,jane,Jane,,Doe<BR>
|
||
<BR>
|
||
Notes:<BR>
|
||
1. The first line containing the data element names is optional if all data elements in the specification are included in each row.<BR>
|
||
2. Jane Doe has no middle initial but the specification requires the minit data element, so the absence of a minit is indicated by
|
||
the two consecutive commas between Jane and Doe in the row.<BR>
|
||
<BR>
|
||
If the file only contains required data elements, the first line should include the names of those elements
|
||
included any data row in the file and in the order in the same order as the data elements in the data rows.<BR>
|
||
For example, the data does not contain Middle Initials for any data row AND the minit is an optional data element
|
||
by specification, the data used in the first example would appear in the file as:<BR>
|
||
<BR>
|
||
id,pwd,fname,lname<BR>
|
||
jad,john,John,Doe<BR>
|
||
jxd,jane,Jane,Doe<BR>
|
||
</P>
|
||
<A NAME="alphanum"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Alphanumeric</B></U><BR>
|
||
Data consisting of Letters (A-Z, a-z) or Numbers (0-9) only.
|
||
</P>
|
||
<%=SYSTEM.STARTIF?SESSION.uac gadmin INCLUDE %>
|
||
<A NAME="cndspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Administator/Candidate Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
|
||
<TABLE ABLE CELLSPACING=0 CELLPADDING=0 BORDER=1 WIDTH="100%">
|
||
<TR>
|
||
<TD>Required</TD>
|
||
<TD>Name</TD>
|
||
<TD>Min-Max Length</TD>
|
||
<TD>Accepted Values</TD>
|
||
<TD>Description</TD>
|
||
</TR>
|
||
<TR>
|
||
<TD>Yes</TD>
|
||
<TD>uid</TD>
|
||
<TD>3-20</TD>
|
||
<TD><A HREF="#alphanum">alphanumeric</A></TD>
|
||
<TD>uid is a unique 4-20 character identifier
|
||
for each user/candidate/administrator on the system.<BR>
|
||
Rules:<BR>
|
||
MUST BEGIN WITH A LETTER (A-Z or a-z)<BR>
|
||
CANNOT CONTAIN SPACES<BR>
|
||
IS CASE SENSITIVE
|
||
</TD>
|
||
</TR>
|
||
<TR>
|
||
<TD>Yes</TD>
|
||
<TD>pwd</TD>
|
||
<TD>3-20</TD>
|
||
<TD><A HREF="#alphanum">alphanumeric</A></TD>
|
||
<TD>pwd is a 4-20 character password associated with the
|
||
uid that the user provides for validation during login.<BR>
|
||
Rules:<BR>
|
||
MUST BEGIN WITH A LETTER (A-Z or a-z)<BR>
|
||
CANNOT CONTAIN SPACES<BR>
|
||
IS CASE SENSITIVE
|
||
</TD>
|
||
</TR>
|
||
<TR>
|
||
<TD>Yes</TD>
|
||
<TD>nmf</TD>
|
||
<TD>1-20</TD>
|
||
<TD><A HREF="#alphanum">alphanumeric</A></TD>
|
||
<TD>nmf is a 1-20 character first name associated with the uid.
|
||
</TD>
|
||
</TR>
|
||
<TR>
|
||
<TD>no</TD>
|
||
<TD>nmm</TD>
|
||
<TD>1</TD>
|
||
<TD><A HREF="#alphanum">alphanumeric</A></TD>
|
||
<TD>nmm is a 1 character middle initial associated with the uid.
|
||
</TD>
|
||
</TR>
|
||
<TR>
|
||
<TD>Yes</TD>
|
||
<TD>nml</TD>
|
||
<TD>1-20</TD>
|
||
<TD><A HREF="#alphanum">alphanumeric</A></TD>
|
||
<TD>nml is a 1-20 character last name associated with the uid.
|
||
Rules:<BR>
|
||
MUST BEGIN WITH A LETTER (A-Z or a-z)
|
||
</TD>
|
||
</TR>
|
||
</TABLE>
|
||
</p>
|
||
<HR>
|
||
<A NAME="grpspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Global Group Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
<TABLE border=1>
|
||
<TR>
|
||
</TR>
|
||
</TABLE>
|
||
</P>
|
||
<HR>
|
||
<A NAME="testspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Global Test Definition Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
<TABLE border=1>
|
||
<TR>
|
||
</TR>
|
||
</TABLE>
|
||
</P>
|
||
<HR>
|
||
<A NAME="questspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Global Test Question Definition Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
<TABLE border=1>
|
||
<TR>
|
||
</TR>
|
||
</TABLE>
|
||
</P>
|
||
<HR>
|
||
<%=SYSTEM.ENDIF%>
|
||
<%=SYSTEM.STARTIF?SESSION.uac admin INCLUDE %>
|
||
<A NAME="cndspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Candidate Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
<TABLE border=1>
|
||
<TR>
|
||
</TR>
|
||
</TABLE>
|
||
</P>
|
||
<HR>
|
||
<A NAME="grpspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Public/Private Group Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
<TABLE border=1>
|
||
<TR>
|
||
</TR>
|
||
</TABLE>
|
||
</P>
|
||
<HR>
|
||
<A NAME="testspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Public/Private Test Definition Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
<TABLE border=1>
|
||
<TR>
|
||
</TR>
|
||
</TABLE>
|
||
</P>
|
||
<HR>
|
||
<A NAME="questspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Public/Private Test Question Definition Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
<TABLE border=1>
|
||
<TR>
|
||
</TR>
|
||
</TABLE>
|
||
</P>
|
||
<HR>
|
||
<%=SYSTEM.ENDIF%>
|
||
<%=SYSTEM.STARTIF?SESSION.uac cnd INCLUDE %>
|
||
<A NAME="testspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Private Test Definition Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
<TABLE border=1>
|
||
<TR>
|
||
</TR>
|
||
</TABLE>
|
||
</P>
|
||
<HR>
|
||
<A NAME="questspecs"></A>
|
||
<P ALIGN="left">
|
||
<U><B>Private Test Question Definition Upload File Specifications</B></U><BR>
|
||
<B><I>File Format: </I></B><A HREF="#ascii">ASCII Comma Delimited Text</A><BR>
|
||
<B><I>File Layout: </I></B><BR>
|
||
Uploaded files must contain data elements for each row (record) in the order shown in the table below and
|
||
Required elements MUST be included, optional elements may be left blank but the comma delimiter must exist for it
|
||
unless the data elements are named in the first row of the file.<BR>
|
||
<TABLE border=1>
|
||
<TR>
|
||
</TR>
|
||
</TABLE>
|
||
</P>
|
||
<HR>
|
||
<%=SYSTEM.ENDIF%>
|
||
<P>
|
||
<FONT SIZE=1 COLOR="#8C8C8C">
|
||
Copyrighted <20> 2000 by<br>
|
||
<A HREF="http://www.actscorp.com">ACTS Corporation</A>.<BR>
|
||
All Rights Reserved.<BR>
|
||
</FONT>
|
||
</P>
|
||
</CENTER>
|
||
</BODY>
|
||
</HTML>
|