Latest build

This commit is contained in:
Tom Christie 2012-09-07 13:57:03 +01:00
parent 57e9a36c3a
commit 58a19c6f16
2 changed files with 2 additions and 4 deletions

View File

@ -127,7 +127,6 @@ margin-top: 5px;
<div class="well affix span3">
<ul class="nav nav-list side-nav">
<li class="main"><a href="#contributing-to-rest-framework">Contributing to REST framework</a></li>
<li><a href="#accessing-settings">Accessing settings</a></li>
<li><a href="#managing-compatibility-issues">Managing compatibility issues</a></li>
<li><a href="#running-the-tests">Running the tests</a></li>
@ -137,8 +136,6 @@ margin-top: 5px;
<div class="span9">
<h1 id="contributing-to-rest-framework">Contributing to REST framework</h1>
<h2 id="accessing-settings">Accessing settings</h2>
<p><strong>Describe api_settings</strong></p>
<h2 id="managing-compatibility-issues">Managing compatibility issues</h2>
<p><strong>Describe compat module</strong></p>
<h2 id="running-the-tests">Running the tests</h2>

View File

@ -244,7 +244,8 @@ urlpatterns = format_suffix_patterns(urlpatterns)
<h2 id="hows-it-looking">How's it looking?</h2>
<p>Go ahead and test the API from the command line, as we did in <a href="1-serialization">tutorial part 1</a>. Everything is working pretty similarly, although we've got some nicer error handling if we send invalid requests.</p>
<p><strong>TODO: Describe using accept headers, content-type headers, and format suffixed URLs</strong></p>
<p>Now go and open the API in a web browser, by visiting <a href="http://127.0.0.1:8000/">http://127.0.0.1:8000/</a>.</p>
<p>Now go and open the API in a web browser, by visiting <a href="http://127.0.0.1:8000/">http://127.0.0.1:8000/</a>."</p>
<p><strong>Note: Right now the Browseable API only works with the CBV's. Need to fix that.</strong></p>
<p><strong>TODO: Describe browseable API awesomeness</strong></p>
<h2 id="whats-next">What's next?</h2>
<p>In <a href="3-class-based-views">tutorial part 3</a>, we'll start using class based views, and see how generic views reduce the amount of code we need to write.</p>