Home > Source > Stamping > add_html_headers.m

add_html_headers

PURPOSE ^

ADD_HTML_HEADERS: Adds some header and body data to experiments HTML

SYNOPSIS ^

function add_html_headers(fid)

DESCRIPTION ^

 ADD_HTML_HEADERS: Adds some header and body data to experiments HTML

    GENERAL

      add_table_index(fid)

    INPUT/S

      -
           
    OUTPUT/S

      -.

    PENDING WORK

      -

    KNOWN BUG/S

      -

    COMMENT/S

      -

    RELATED FUNCTION/S

      

    ABOUT

      -Created:     April 27th , 2004
      -Last update: April 27th , 2004
      -Revision:    0.0.1
      -Author:      R. S. Schestowitz, University of Manchester
 ==============================================================

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function add_html_headers(fid)
0002 % ADD_HTML_HEADERS: Adds some header and body data to experiments HTML
0003 %
0004 %    GENERAL
0005 %
0006 %      add_table_index(fid)
0007 %
0008 %    INPUT/S
0009 %
0010 %      -
0011 %
0012 %    OUTPUT/S
0013 %
0014 %      -.
0015 %
0016 %    PENDING WORK
0017 %
0018 %      -
0019 %
0020 %    KNOWN BUG/S
0021 %
0022 %      -
0023 %
0024 %    COMMENT/S
0025 %
0026 %      -
0027 %
0028 %    RELATED FUNCTION/S
0029 %
0030 %
0031 %
0032 %    ABOUT
0033 %
0034 %      -Created:     April 27th , 2004
0035 %      -Last update: April 27th , 2004
0036 %      -Revision:    0.0.1
0037 %      -Author:      R. S. Schestowitz, University of Manchester
0038 % ==============================================================
0039 
0040 fprintf(fid, ['<HTML><HEAD><TITLE>AART Experiments</TITLE>\n']);
0041 fprintf(fid, ['<link rel="stylesheet" href="../../exp.css" type="text/css">\n']);
0042 fprintf(fid, ['</head>\n']);
0043 fprintf(fid, ['<BODY background="../../fg.gif">\n']);
0044 fprintf(fid, ['<A HREF="../../index.htm">Index</A>\n']);
0045 fprintf(fid, ['<table align=center height=120 width=100%% cellspacing=0> \n']);
0046 fprintf(fid, ['<td background="../../middle.gif"align=center valign=center> \n']);
0047 fprintf(fid, ['<H1>AART Experiments</H1>\n']);
0048 fprintf(fid, ['</td>\n']);
0049 fprintf(fid, ['</table>\n']);
0050 fprintf(fid, ['<HR SIZE=5>\n']);
0051 fprintf(fid, ['<B>This page is automatically generated</B>\n']);
0052 fprintf(fid, ['<BR>\n']);
0053 fprintf(fid, ['<B>Person responsible for this page is Roy Schestowitz</B>\n']);
0054 fprintf(fid, ['<HR SIZE=5>\n']);
0055 fprintf(fid, ['<BR>\n']);

Generated on Fri 14-May-2004 10:05:30 by m2html © 2003