Webpage Standards

html guidelines

in order to add a new page to the isber website the following process must be followed:

% mkdir /www/isber/devel/www/new_directory
% ln /www/isber/devel/www/static/index.php /www/isber/devel/www/new_directory
% cp /www/isber/devel/www/templates/static-template.html \
/www/isber/devel/www/new_directory/static.html
% setenv CVSROOT /home/cvs
% cvs add /www/isber/devel/www/new_director
% cvs add /www/isber/devel/www/new_directory/index.php
% cvs add /www/isber/devel/www/new_directory/static.html

the new page is now immediately available at:
http://www.isber.ucsb.edu:81/new_directory/

once you are ready for the page to be put into the production website, issue the following commands:

% setenv CVSROOT /home/cvs
% cd /www/isber/devel/www/new_directory
% cvs commit .

after commiting the directory and files into the cvs repository, they are automatically published to the production isber website, so your page is now available at:
http://www.isber.ucsb.edu/new_directory/

notes: the contents of your static.html file may be either standard html code, or plain text. in either case, if it is possible please include the following tag as the first line:
<!-- $Id$ -->

a sample static.html page:
<!-- $Id$ -->

<h2>bold title</h2>

<p>add some body text</p>

<!-- end static.html -->