Django

Code

Changeset 51

Show
Ignore:
Timestamp:
07/15/05 11:19:53 (3 years ago)
Author:
adrian
Message:

Made some changes to the FAQ

Files:

Legend:

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

    r41 r51  
    1010 
    1111Django grew from a very practical need: in our fast-paced newsroom, we often 
    12 have only a matter of hours to take a complicated web application from 
     12have only a matter of hours to take a complicated Web application from 
    1313concept to public launch.  Django was designed to not only allow us to 
    14 build web applications quickly, but to allow us to build them right. 
     14build Web applications quickly, but to allow us to build them right. 
    1515 
    1616Django would not be possible without a whole host of open-source projects -- 
    1717Apache, Python, and PostgresSQL to name a few -- and we're thrilled to be 
    18 able to give something back to the open source community. 
     18able to give something back to the open-source community. 
    1919 
    2020How do you pronounce "Django"? 
     
    2828----------------- 
    2929 
    30 We've been using Django for almost two years. Sites built on Django have 
     30We've been using Django for almost two years. Sites built on Django have 
    3131weathered traffic spikes of over one million hits an hour, and at least 
    32 one slashdotting.  Yes; it's quite stable. 
     32one Slashdotting. Yes, it's quite stable. 
    3333 
    3434Does Django scale? 
    3535------------------ 
    3636 
    37 Yes. Compared to development time, hardware is cheap, and so Django is 
     37Yes. Compared to development time, hardware is cheap, and so Django is 
    3838designed to take advantage of as much hardware as you can throw at it. 
    39 Django ships with clean separation of the database layer from the  
    40 application layer and a simple yet powerful `cache framework`_. 
     39Django ships with clean separation of the database layer from the 
     40application layer and a simple-yet-powerful `cache framework`_. 
    4141 
    4242.. _`cache framework`: http://www.djangoproject.com/documentation/cache/ 
     
    4545------------------ 
    4646 
     47Django was developed at `World Online`_, the Web department of a newspaper in 
     48Lawrence, Kansas, USA. 
     49 
    4750`Adrian Holovaty`_ 
    4851    Adrian is a gypsy-jazz virtuoso, an amateur Beatles historian and a proud 
     
    5053    data into shape and putting it to work for the good of his fellow man. 
    5154    Adrian is the lead developer at World Online and the man behind the code at 
    52     chicagocrime.org
     55    `chicagocrime.org`_
    5356 
    5457`Simon Willison`_ 
    55     XXX 
     58    Simon is a well-respected Web developer from England. He had a one-year stint 
     59    at World Online, during which time he and Adrian developed Django from scratch. 
     60    He's enthusiastic, he's passionate about best practices in Web development, and 
     61    he really likes squirrels. Probably to a fault. He went back to England to 
     62    finish his degree and is poised to continue doing big, exciting things on the Web. 
     63    Read his weblog at `simon.incutio.com`_. 
    5664 
    5765`Jacob Kaplan-Moss`_ 
     
    6674    into apartment complex swimming pools  he is the Commercial Development 
    6775    Director for World Online, which means he makes the money that pays all our 
    68     paychecks.   
    69          
     76    paychecks. 
     77 
     78.. _`World Online`: http://code.djangoproject.com/wiki/WorldOnline 
    7079.. _`Adrian Holovaty`: http://www.holovaty.com/ 
     80.. _`chicagocrime.org`: http://www.chicagocrime.org/ 
    7181.. _`Simon Willison`: http://simon.incutio.com/ 
     82.. _`simon.incutio.com`: http://simon.incutio.com/ 
    7283.. _`Jacob Kaplan-Moss`: http://www.jacobian.org/ 
    7384.. _`Wilson Miner`: http://www.wilsonminer.com/live/ 
     
    7990--------------------- 
    8091 
    81 ..
     92We're working on this documentation as you read this
    8293 
    8394The admin interface 
    8495=================== 
    8596 
    86 The admin site is ugly! How can I change it? 
     97The dynamically-generated admin site is ugly! How can I change it? 
    8798--------------------------------------------- 
    8899 
    89 We think it's very purty, but if you don't agree you can modify the admin site's 
    90 presentation by editing the CSS stylesheet and/or associated image files. The  
     100We think it's very purty, but if you don't agree, you can modify the admin site's 
     101presentation by editing the CSS stylesheet and/or associated image files. The 
    91102site is built using semantic HTML, so any changes you'd like to make should be 
    92 possible by editing the CSS stylesheet. We've got a `guide to the CSS used  
     103possible by editing the CSS stylesheet. We've got a `guide to the CSS used 
    93104in the admin`_ to get you started. 
    94105