Home > Source > Stamping > add_html_headers.m

add_html_headers

PURPOSE ^

==============================================================

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

Generated on Thu 13-May-2004 18:00:46 by m2html © 2003