====== PERL Coding Style ====== The following text is a recommendation for coding. See this text as guideline. ==== Indenting and Line Length ==== Use an indent of 1 tab. Tab width: 4. It is recommended to keep lines length at 80 characters long for better code readability. ==== Header Comment Blocks (VHCS Based File) ==== #!/usr/bin/perl # ispCP ω (OMEGA) a Virtual Hosting Control Panel # Copyright (C) 2001-2006 by moleSoftware GmbH - http://www.molesoftware.com # Copyright (C) 2006-2009 by isp Control Panel - http://ispcp.net # # Version: $Id$ # # The contents of this file are subject to the Mozilla Public License # Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at # http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations # under the License. # # The Original Code is "VHCS - Virtual Hosting Control System". # # The Initial Developer of the Original Code is moleSoftware GmbH. # Portions created by Initial Developer are Copyright (C) 2001-2006 # by moleSoftware GmbH. All Rights Reserved. # Portions created by the ispCP Team are Copyright (C) 2006-2009 by # isp Control Panel. All Rights Reserved. # # The ispCP ω Home Page is: # # http://isp-control.net # ==== Header Comment Blocks (New File) ==== #!/usr/bin/perl # ispCP ω (OMEGA) a Virtual Hosting Control Panel # Copyright (C) 2006-2009 by isp Control Panel - http://ispcp.net # # Version: $Id: ispcp-update 2133 2009-11-14 00:34:49Z nuxwin $ # # The contents of this file are subject to the Mozilla Public License # Version 1.1 (the "License"); you may not use this file except in # compliance with the License. You may obtain a copy of the License at # http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS IS" # basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the # License for the specific language governing rights and limitations # under the License. # # The Original Code is "ispCP ω (OMEGA) a Virtual Hosting Control Panel". # # The Initial Developer of the Original Code is ispCP Team. # Portions created by Initial Developer are Copyright (C) 2006-2009 by # isp Control Panel. All Rights Reserved. # # The ispCP ω Home Page is: # # http://isp-control.net #