Django

Code

Changeset 5600

Show
Ignore:
Timestamp:
07/03/07 14:26:34 (1 year ago)
Author:
adrian
Message:

Converted some tabs to four spaces in two docs

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/contributing.txt

    r5569 r5600  
    394394These guidelines regulate the format of our ReST documentation: 
    395395 
    396        * In section titles, capitalize only initial words and proper nouns. 
    397  
    398        * Wrap the documentation at 80 characters wide, unless a code example 
    399          is significantly less readable when split over two lines, or for another 
    400          good reason. 
     396    * In section titles, capitalize only initial words and proper nouns. 
     397 
     398    * Wrap the documentation at 80 characters wide, unless a code example 
     399      is significantly less readable when split over two lines, or for another 
     400      good reason. 
    401401 
    402402Commonly used terms 
     
    406406documentation: 
    407407 
    408        * **Django** -- when referring to the framework, capitalize Django. It is 
    409          lowercase only in Python code and in the djangoproject.com logo. 
    410  
    411        * **e-mail** -- it has a hyphen. 
    412  
    413        * **MySQL** 
    414  
    415        * **PostgreSQL** 
    416  
    417        * **Python** -- when referring to the language, capitalize Python. 
    418  
    419        * **realize**, **customize**, **initialize**, etc. -- use the American 
    420          "ize" suffix, not "ise." 
    421  
    422        * **SQLite** 
    423  
    424        * **subclass** -- it's a single word without a hyphen, both as a verb 
    425          ("subclass that model") and as a noun ("create a subclass"). 
    426  
    427        * **Web**, **World Wide Web**, **the Web** -- note Web is always 
    428          capitalized when referring to the World Wide Web. 
     408    * **Django** -- when referring to the framework, capitalize Django. It is 
     409      lowercase only in Python code and in the djangoproject.com logo. 
     410 
     411    * **e-mail** -- it has a hyphen. 
     412 
     413    * **MySQL** 
     414 
     415    * **PostgreSQL** 
     416 
     417    * **Python** -- when referring to the language, capitalize Python. 
     418 
     419    * **realize**, **customize**, **initialize**, etc. -- use the American 
     420      "ize" suffix, not "ise." 
     421 
     422    * **SQLite** 
     423 
     424    * **subclass** -- it's a single word without a hyphen, both as a verb 
     425      ("subclass that model") and as a noun ("create a subclass"). 
     426 
     427    * **Web**, **World Wide Web**, **the Web** -- note Web is always 
     428      capitalized when referring to the World Wide Web. 
    429429 
    430430    * **Web site** -- use two words, with Web capitalized. 
     
    433433--------------------------- 
    434434 
    435        * **model** -- it's not capitalized. 
    436  
    437        * **template** -- it's not capitalized. 
    438  
    439        * **URLconf** -- use three capitalized letters, with no space before 
    440          "conf." 
    441  
    442        * **view** -- it's not capitalized. 
     435    * **model** -- it's not capitalized. 
     436 
     437    * **template** -- it's not capitalized. 
     438 
     439    * **URLconf** -- use three capitalized letters, with no space before 
     440      "conf." 
     441 
     442    * **view** -- it's not capitalized. 
    443443 
    444444Committing code 
  • django/trunk/docs/templates_python.txt

    r5599 r5600  
    679679    @template.stringfilter 
    680680    def lower(value): 
    681        return value.lower() 
     681        return value.lower() 
    682682 
    683683Writing custom template tags