Edgewall Software

Changes between Version 24 and Version 25 of TracDev/CodingStyle


Ignore:
Timestamp:
Jan 28, 2015, 7:39:31 PM (9 years ago)
Author:
Ryan J Ollos
Comment:

Results from discussion in gmessage:trac-dev:8MvaR31DsZ8/3dwWFPKf6iMJ.

Legend:

Unmodified
Added
Removed
Modified
  • TracDev/CodingStyle

    v24 v25  
    2020   e.g. `_do_whatever_it_takes_to_delete`
    2121 * Abstract base classes should use the suffix `Base`.
     22 * Use a trailing underscore if the name would shadow a built-in keyword.
    2223
    2324== Strings
     
    6465
    6566* Empty tags should have a single whitespace before the closing bracket, `/>`. For example, `<br />` and `<input type="text" ... />`.
     67* Omit the curly braces for variables in Genshi templates, using `$var` rather than `${var}`.
    6668
    6769----