Ticket #19571: 19571.diff

File 19571.diff, 1.4 KB (added by Tim Graham, 11 years ago)
  • docs/intro/install.txt

    diff --git a/docs/intro/install.txt b/docs/intro/install.txt
    index f9b122e..3cbc8d8 100644
    a b Verifying  
    7878---------
    7979
    8080To verify that Django can be seen by Python, type ``python`` from your shell.
    81 Then at the Python prompt, try to import Django::
     81Then at the Python prompt, try to import Django:
     82
     83.. parsed-literal::
    8284
    8385    >>> import django
    8486    >>> print(django.get_version())
    85     1.5
     87    |version|
    8688
    8789You may have another version of Django installed.
    8890
    That's it!  
    9092----------
    9193
    9294That's it -- you can now :doc:`move onto the tutorial </intro/tutorial01>`.
    93 
    94 
    95 
  • docs/intro/tutorial01.txt

    diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt
    index d24e19c..eebcf21 100644
    a b The development server  
    127127
    128128Let's verify this worked. Change into the outer :file:`mysite` directory, if
    129129you haven't already, and run the command ``python manage.py runserver``. You'll
    130 see the following output on the command line::
     130see the following output on the command line:
    131131
    132     Validating models...
     132.. parsed-literal::
    133133
     134    Validating models...
    134135    0 errors found
    135136    January 06, 2013 - 15:50:53
    136     Django version 1.5, using settings 'mysite.settings'
     137    Django version |version|, using settings 'mysite.settings'
    137138    Development server is running at http://127.0.0.1:8000/
    138139    Quit the server with CONTROL-C.
    139140
Back to Top