[Blahzdns-cvs] blahzdns/doc CODINGSTANDARD,NONE,1.1
Status: Alpha
Brought to you by:
msroest
From: Mike R. <ms...@us...> - 2004-08-23 01:11:29
|
Update of /cvsroot/blahzdns/blahzdns/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7845/doc Added Files: CODINGSTANDARD Log Message: Added doc directory, and the starts of the coding standard doc. --- NEW FILE: CODINGSTANDARD --- Source File Layouts: All source files should begin with the following Comment Block. /* File: FILENAME Author: AUTHOR NAME <AUTHOR EMAIL ADDRESS> Homepage: http://blahzdns.sourceforge.net/ Comments: Description of the operation of the module. Including any known bugs and planned feature changes. */ SQL Query Syntax: All queries should be completely in caps. Columns selected must always be specified. (NO SELECT *) Any Updates/Inserts should use mysql_escape_string to sanitize user input before being submitted to the DB. |