~ubuntu-branches/ubuntu/karmic/motion/karmic-proposed

« back to all changes in this revision

Viewing changes to CODE_STANDARD

  • Committer: Bazaar Package Importer
  • Author(s): Juan Angulo Moreno
  • Date: 2008-06-10 09:15:47 UTC
  • mfrom: (4.1.4 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080610091547-2dcuzqpznlivgvxl
Tags: 3.2.9-4
* Fixed errors in the file debian/rules that affected the non-apply of 
  two patches (01_ffmpeg_creation_update_API.dpatch and 
  02_webhttpd_security_video2_backport.dpatch) (Closes: #484566).
* Bumped Standards-Version to 3.8.0. No changes to package necessary.

Show diffs side-by-side

added added

removed removed

Lines of Context:
257
257
Avoid x,t,vt type variable names.
258
258
Use names like image, image_buffer, image_height, output_buffer
259
259
Short names like i and j for loop index variable are a known good practice.
260
 
Variable names are in lower case. Use '_' to separate words.
 
260
Variable and function names are in lower case. Use '_' to separate words.
261
261
MACROS are in uppercase.
 
262
camelCase (mix of upper and lower case) is not allowed because it creates too
 
263
many typos for many two finger typers.
262
264
 
263
265
 
264
266
--------------------