diff options
| author | Tom Christie | 2014-12-10 14:29:33 +0000 | 
|---|---|---|
| committer | Tom Christie | 2014-12-10 14:29:33 +0000 | 
| commit | 5816c561b23c1c3403cb04bd69356ace1102e1e7 (patch) | |
| tree | a787e758aabb307f0c9192a831370fd0c2cbbb08 | |
| parent | 3b2fc6f0d076162cafebb916ae401aaae75fcbc0 (diff) | |
| download | django-rest-framework-5816c561b23c1c3403cb04bd69356ace1102e1e7.tar.bz2 | |
Update documentation
48 files changed, 125 insertions, 73 deletions
| diff --git a/api-guide/authentication/index.html b/api-guide/authentication/index.html index e40fba12..c30a7aa4 100644 --- a/api-guide/authentication/index.html +++ b/api-guide/authentication/index.html @@ -779,6 +779,7 @@ class ExampleAuthentication(authentication.BaseAuthentication):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/content-negotiation/index.html b/api-guide/content-negotiation/index.html index 453cc514..46a240ba 100644 --- a/api-guide/content-negotiation/index.html +++ b/api-guide/content-negotiation/index.html @@ -484,6 +484,7 @@ class NoNegotiationView(APIView):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/exceptions/index.html b/api-guide/exceptions/index.html index 70c51cac..f184e9ba 100644 --- a/api-guide/exceptions/index.html +++ b/api-guide/exceptions/index.html @@ -559,6 +559,7 @@ class ServiceUnavailable(APIException):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/fields/index.html b/api-guide/fields/index.html index 2610e178..eb3fc6f3 100644 --- a/api-guide/fields/index.html +++ b/api-guide/fields/index.html @@ -971,6 +971,7 @@ def to_internal_value(self, data):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/filtering/index.html b/api-guide/filtering/index.html index 654d7b05..a2f9548c 100644 --- a/api-guide/filtering/index.html +++ b/api-guide/filtering/index.html @@ -774,6 +774,7 @@ class ProductFilter(django_filters.FilterSet):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/format-suffixes/index.html b/api-guide/format-suffixes/index.html index 3ebd2d8f..5d0a93fb 100644 --- a/api-guide/format-suffixes/index.html +++ b/api-guide/format-suffixes/index.html @@ -450,6 +450,7 @@ def comment_list(request, format=None):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/generic-views/index.html b/api-guide/generic-views/index.html index c0a6ef8c..100ea700 100644 --- a/api-guide/generic-views/index.html +++ b/api-guide/generic-views/index.html @@ -787,6 +787,7 @@ class BaseRetrieveUpdateDestroyView(MultipleFieldLookupMixin,    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/pagination/index.html b/api-guide/pagination/index.html index 769a0b9a..3d861358 100644 --- a/api-guide/pagination/index.html +++ b/api-guide/pagination/index.html @@ -558,6 +558,7 @@ class CustomPaginationSerializer(pagination.BasePaginationSerializer):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/parsers/index.html b/api-guide/parsers/index.html index b4306579..39b505d7 100644 --- a/api-guide/parsers/index.html +++ b/api-guide/parsers/index.html @@ -598,6 +598,7 @@ def parse(self, stream, media_type=None, parser_context=None):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/permissions/index.html b/api-guide/permissions/index.html index 331a3928..a8a8ecd3 100644 --- a/api-guide/permissions/index.html +++ b/api-guide/permissions/index.html @@ -650,6 +650,7 @@ class BlacklistPermission(permissions.BasePermission):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/relations/index.html b/api-guide/relations/index.html index 0fe39d35..03e88565 100644 --- a/api-guide/relations/index.html +++ b/api-guide/relations/index.html @@ -866,6 +866,7 @@ attributes are not configured to correctly match the URL conf.</p>    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/renderers/index.html b/api-guide/renderers/index.html index 9034cd11..86223be3 100644 --- a/api-guide/renderers/index.html +++ b/api-guide/renderers/index.html @@ -817,6 +817,7 @@ In this case you can underspecify the media types it should respond to, by using    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/requests/index.html b/api-guide/requests/index.html index 11781510..679b036b 100644 --- a/api-guide/requests/index.html +++ b/api-guide/requests/index.html @@ -564,6 +564,7 @@    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/responses/index.html b/api-guide/responses/index.html index 0bd210b7..be8cca9c 100644 --- a/api-guide/responses/index.html +++ b/api-guide/responses/index.html @@ -505,6 +505,7 @@ response['Cache-Control'] = 'no-cache'    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/reverse/index.html b/api-guide/reverse/index.html index 3e9cbb5d..08399151 100644 --- a/api-guide/reverse/index.html +++ b/api-guide/reverse/index.html @@ -438,6 +438,7 @@ class APIRootView(APIView):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/routers/index.html b/api-guide/routers/index.html index 9ce6f5d2..892e9df4 100644 --- a/api-guide/routers/index.html +++ b/api-guide/routers/index.html @@ -653,6 +653,7 @@ app.router.register_model(MyModel)    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/serializers/index.html b/api-guide/serializers/index.html index e147cbc3..71da4a99 100644 --- a/api-guide/serializers/index.html +++ b/api-guide/serializers/index.html @@ -1322,6 +1322,7 @@ def all_high_scores(request):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/settings/index.html b/api-guide/settings/index.html index ae315e89..654807d8 100644 --- a/api-guide/settings/index.html +++ b/api-guide/settings/index.html @@ -695,6 +695,7 @@ If set to <code>None</code> then generic filtering is disabled.</p>    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/status-codes/index.html b/api-guide/status-codes/index.html index 7c2eef5b..d9ff28cb 100644 --- a/api-guide/status-codes/index.html +++ b/api-guide/status-codes/index.html @@ -510,6 +510,7 @@ is_server_error()   # 5xx    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/testing/index.html b/api-guide/testing/index.html index a3faf26d..f456ac21 100644 --- a/api-guide/testing/index.html +++ b/api-guide/testing/index.html @@ -672,6 +672,7 @@ self.assertEqual(response.content, '{"username": "lauren", "id": 4}')    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/throttling/index.html b/api-guide/throttling/index.html index 7edc719a..f8a66679 100644 --- a/api-guide/throttling/index.html +++ b/api-guide/throttling/index.html @@ -581,6 +581,7 @@ class UploadView(APIView):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/validators/index.html b/api-guide/validators/index.html index 0466a4a8..70b680c1 100644 --- a/api-guide/validators/index.html +++ b/api-guide/validators/index.html @@ -620,6 +620,7 @@ It has two required arguments, and a single optional <code>messages</code> argum    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/views/index.html b/api-guide/views/index.html index eac4c5c8..1b832edb 100644 --- a/api-guide/views/index.html +++ b/api-guide/views/index.html @@ -549,6 +549,7 @@ def view(request):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/api-guide/viewsets/index.html b/api-guide/viewsets/index.html index 85dbe299..0ecde797 100644 --- a/api-guide/viewsets/index.html +++ b/api-guide/viewsets/index.html @@ -634,6 +634,7 @@ class UserViewSet(viewsets.ModelViewSet):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() @@ -688,6 +688,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.</p>    <script src="./js/jquery-1.8.1-min.js"></script>    <script src="./js/prettify-1.0.js"></script>    <script src="./js/bootstrap-2.1.1-min.js"></script> +  <script src="./js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/js/theme.js b/js/theme.js new file mode 100644 index 00000000..73607be5 --- /dev/null +++ b/js/theme.js @@ -0,0 +1,5 @@ +$(function(){ + +    $('pre code').parent().addClass('prettyprint well'); + +}); diff --git a/topics/2.2-announcement/index.html b/topics/2.2-announcement/index.html index 4ac750a0..eaa1db10 100644 --- a/topics/2.2-announcement/index.html +++ b/topics/2.2-announcement/index.html @@ -510,6 +510,7 @@ serializer.data    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/2.3-announcement/index.html b/topics/2.3-announcement/index.html index b6a49472..881ffff6 100644 --- a/topics/2.3-announcement/index.html +++ b/topics/2.3-announcement/index.html @@ -647,6 +647,7 @@ urlpatterns = [    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/2.4-announcement/index.html b/topics/2.4-announcement/index.html index 56c3d0ab..c811dc5c 100644 --- a/topics/2.4-announcement/index.html +++ b/topics/2.4-announcement/index.html @@ -533,6 +533,7 @@ The lowest supported version of Django is now 1.4.2.</p>    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/3.0-announcement/index.html b/topics/3.0-announcement/index.html index 111ca522..addb47cb 100644 --- a/topics/3.0-announcement/index.html +++ b/topics/3.0-announcement/index.html @@ -426,7 +426,7 @@  <hr />  <h4 id="rest-framework-under-the-hood">REST framework: Under the hood.</h4>  <p>This talk from the <a href="http://www.djangounderthehood.com/">Django: Under the Hood</a> event in Amsterdam, Nov 2014, gives some good background context on the design decisions behind 3.0.</p> -<iframe width="560" height="315" src="//www.youtube.com/embed/3cSsbe-tA0E" frameborder="0" allowfullscreen></iframe> +<iframe style="display: block; margin: 0 auto 0 auto" width="560" height="315" src="//www.youtube.com/embed/3cSsbe-tA0E" frameborder="0" allowfullscreen></iframe>  <hr />  <p><em>Below is an in-depth guide to the API changes and migration notes for 3.0.</em></p> @@ -1165,6 +1165,7 @@ amount = serializers.DecimalField(    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/ajax-csrf-cors/index.html b/topics/ajax-csrf-cors/index.html index d49dfa82..f9bb6392 100644 --- a/topics/ajax-csrf-cors/index.html +++ b/topics/ajax-csrf-cors/index.html @@ -420,6 +420,7 @@    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/browsable-api/index.html b/topics/browsable-api/index.html index d1cc6d30..2b3ed258 100644 --- a/topics/browsable-api/index.html +++ b/topics/browsable-api/index.html @@ -505,6 +505,7 @@    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/browser-enhancements/index.html b/topics/browser-enhancements/index.html index 63178484..5f6e1ba7 100644 --- a/topics/browser-enhancements/index.html +++ b/topics/browser-enhancements/index.html @@ -463,6 +463,7 @@ as well as how to support content types other than form-encoded data.</p>    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/contributing/index.html b/topics/contributing/index.html index 1f556d23..8f259f52 100644 --- a/topics/contributing/index.html +++ b/topics/contributing/index.html @@ -582,6 +582,7 @@ More text...    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/credits/index.html b/topics/credits/index.html index 1dc44a1b..40c3ee52 100644 --- a/topics/credits/index.html +++ b/topics/credits/index.html @@ -590,6 +590,7 @@    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/documenting-your-api/index.html b/topics/documenting-your-api/index.html index db43a2ea..ae50add0 100644 --- a/topics/documenting-your-api/index.html +++ b/topics/documenting-your-api/index.html @@ -459,6 +459,7 @@    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/kickstarter-announcement/index.html b/topics/kickstarter-announcement/index.html index 3ff599c5..109fa946 100644 --- a/topics/kickstarter-announcement/index.html +++ b/topics/kickstarter-announcement/index.html @@ -372,7 +372,7 @@              <h1 id="kickstarting-django-rest-framework-3">Kickstarting Django REST framework 3</h1>  <hr /> -<iframe width="480" height="360" src="https://www.kickstarter.com/projects/tomchristie/django-rest-framework-3/widget/video.html" frameborder="0" scrolling="no"> </iframe> +<iframe style="display: block; margin: 0 auto 0 auto" width="480" height="360" src="https://www.kickstarter.com/projects/tomchristie/django-rest-framework-3/widget/video.html" frameborder="0" scrolling="no"> </iframe>  <hr />  <p>In order to continue to drive the project forward, I'm launching a Kickstarter campaign to help fund the development of a major new release - Django REST framework 3.</p> @@ -399,20 +399,20 @@  <h3 id="platinum-sponsors">Platinum sponsors</h3>  <p>Our platinum sponsors have each made a hugely substantial contribution to the future development of Django REST framework, and I simply can't thank them enough.</p>  <ul class="sponsor diamond"> -<li><a href="https://www.eventbrite.com/" rel="nofollow" style="background-image:url(../../img/sponsors//0-eventbrite.png);">Eventbrite</a></li> +<li><a href="https://www.eventbrite.com/" rel="nofollow" style="background-image:url(../../img/sponsors/0-eventbrite.png);">Eventbrite</a></li>  </ul>  <ul class="sponsor platinum"> -<li><a href="https://www.divio.ch/" rel="nofollow" style="background-image:url(../../img/sponsors//1-divio.png);">Divio</a></li> -<li><a href="http://company.onlulu.com/en/" rel="nofollow" style="background-image:url(../../img/sponsors//1-lulu.png);">Lulu</a></li> -<li><a href="https://p.ota.to/" rel="nofollow" style="background-image:url(../../img/sponsors//1-potato.png);">Potato</a></li> -<li><a href="http://www.wiredrive.com/" rel="nofollow" style="background-image:url(../../img/sponsors//1-wiredrive.png);">Wiredrive</a></li> -<li><a href="http://www.cyaninc.com/" rel="nofollow" style="background-image:url(../../img/sponsors//1-cyan.png);">Cyan</a></li> -<li><a href="https://www.runscope.com/" rel="nofollow" style="background-image:url(../../img/sponsors//1-runscope.png);">Runscope</a></li> -<li><a href="http://simpleenergy.com/" rel="nofollow" style="background-image:url(../../img/sponsors//1-simple-energy.png);">Simple Energy</a></li> -<li><a href="http://vokalinteractive.com/" rel="nofollow" style="background-image:url(../../img/sponsors//1-vokal_interactive.png);">VOKAL Interactive</a></li> -<li><a href="http://www.purplebit.com/" rel="nofollow" style="background-image:url(../../img/sponsors//1-purplebit.png);">Purple Bit</a></li> -<li><a href="http://www.kuwaitnet.net/" rel="nofollow" style="background-image:url(../../img/sponsors//1-kuwaitnet.png);">KuwaitNET</a></li> +<li><a href="https://www.divio.ch/" rel="nofollow" style="background-image:url(../../img/sponsors/1-divio.png);">Divio</a></li> +<li><a href="http://company.onlulu.com/en/" rel="nofollow" style="background-image:url(../../img/sponsors/1-lulu.png);">Lulu</a></li> +<li><a href="https://p.ota.to/" rel="nofollow" style="background-image:url(../../img/sponsors/1-potato.png);">Potato</a></li> +<li><a href="http://www.wiredrive.com/" rel="nofollow" style="background-image:url(../../img/sponsors/1-wiredrive.png);">Wiredrive</a></li> +<li><a href="http://www.cyaninc.com/" rel="nofollow" style="background-image:url(../../img/sponsors/1-cyan.png);">Cyan</a></li> +<li><a href="https://www.runscope.com/" rel="nofollow" style="background-image:url(../../img/sponsors/1-runscope.png);">Runscope</a></li> +<li><a href="http://simpleenergy.com/" rel="nofollow" style="background-image:url(../../img/sponsors/1-simple-energy.png);">Simple Energy</a></li> +<li><a href="http://vokalinteractive.com/" rel="nofollow" style="background-image:url(../../img/sponsors/1-vokal_interactive.png);">VOKAL Interactive</a></li> +<li><a href="http://www.purplebit.com/" rel="nofollow" style="background-image:url(../../img/sponsors/1-purplebit.png);">Purple Bit</a></li> +<li><a href="http://www.kuwaitnet.net/" rel="nofollow" style="background-image:url(../../img/sponsors/1-kuwaitnet.png);">KuwaitNET</a></li>  </ul>  <div style="clear: both"></div> @@ -421,31 +421,31 @@  <h3 id="gold-sponsors">Gold sponsors</h3>  <p>Our gold sponsors include companies large and small. Many thanks for their significant funding of the project and their commitment to sustainable open-source development.</p>  <ul class="sponsor gold"> -<li><a href="https://laterpay.net/" rel="nofollow" style="background-image:url(../../img/sponsors//2-laterpay.png);">LaterPay</a></li> -<li><a href="https://www.schubergphilis.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-schuberg_philis.png);">Schuberg Philis</a></li> -<li><a href="http://prorenata.se/" rel="nofollow" style="background-image:url(../../img/sponsors//2-prorenata.png);">ProReNata AB</a></li> -<li><a href="https://www.sgawebsites.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-sga.png);">SGA Websites</a></li> -<li><a href="http://www.sirono.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-sirono.png);">Sirono</a></li> -<li><a href="http://www.vinta.com.br/" rel="nofollow" style="background-image:url(../../img/sponsors//2-vinta.png);">Vinta Software Studio</a></li> -<li><a href="http://www.rapasso.nl/index.php/en" rel="nofollow" style="background-image:url(../../img/sponsors//2-rapasso.png);">Rapasso</a></li> -<li><a href="https://mirusresearch.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-mirus_research.png);">Mirus Research</a></li> -<li><a href="http://hipolabs.com" rel="nofollow" style="background-image:url(../../img/sponsors//2-hipo.png);">Hipo</a></li> -<li><a href="http://www.byte.nl" rel="nofollow" style="background-image:url(../../img/sponsors//2-byte.png);">Byte</a></li> -<li><a href="http://lightningkite.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-lightning_kite.png);">Lightning Kite</a></li> -<li><a href="https://opbeat.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-opbeat.png);">Opbeat</a></li> -<li><a href="https://koordinates.com" rel="nofollow" style="background-image:url(../../img/sponsors//2-koordinates.png);">Koordinates</a></li> -<li><a href="http://pulsecode.ca" rel="nofollow" style="background-image:url(../../img/sponsors//2-pulsecode.png);">Pulsecode Inc.</a></li> -<li><a href="http://singinghorsestudio.com" rel="nofollow" style="background-image:url(../../img/sponsors//2-singing-horse.png);">Singing Horse Studio Ltd.</a></li> -<li><a href="https://www.heroku.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-heroku.png);">Heroku</a></li> -<li><a href="https://www.galileo-press.de/" rel="nofollow" style="background-image:url(../../img/sponsors//2-galileo_press.png);">Galileo Press</a></li> -<li><a href="http://www.securitycompass.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-security_compass.png);">Security Compass</a></li> -<li><a href="https://www.djangoproject.com/foundation/" rel="nofollow" style="background-image:url(../../img/sponsors//2-django.png);">Django Software Foundation</a></li> -<li><a href="http://www.hipflaskapp.com" rel="nofollow" style="background-image:url(../../img/sponsors//2-hipflask.png);">Hipflask</a></li> -<li><a href="http://www.crate.io/" rel="nofollow" style="background-image:url(../../img/sponsors//2-crate.png);">Crate</a></li> -<li><a href="http://crypticocorp.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-cryptico.png);">Cryptico Corp</a></li> -<li><a href="http://www.nexthub.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-nexthub.png);">NextHub</a></li> -<li><a href="https://www.compile.com/" rel="nofollow" style="background-image:url(../../img/sponsors//2-compile.png);">Compile</a></li> -<li><a href="http://wusawork.org" rel="nofollow" style="background-image:url(../../img/sponsors//2-wusawork.png);">WusaWork</a></li> +<li><a href="https://laterpay.net/" rel="nofollow" style="background-image:url(../../img/sponsors/2-laterpay.png);">LaterPay</a></li> +<li><a href="https://www.schubergphilis.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-schuberg_philis.png);">Schuberg Philis</a></li> +<li><a href="http://prorenata.se/" rel="nofollow" style="background-image:url(../../img/sponsors/2-prorenata.png);">ProReNata AB</a></li> +<li><a href="https://www.sgawebsites.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-sga.png);">SGA Websites</a></li> +<li><a href="http://www.sirono.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-sirono.png);">Sirono</a></li> +<li><a href="http://www.vinta.com.br/" rel="nofollow" style="background-image:url(../../img/sponsors/2-vinta.png);">Vinta Software Studio</a></li> +<li><a href="http://www.rapasso.nl/index.php/en" rel="nofollow" style="background-image:url(../../img/sponsors/2-rapasso.png);">Rapasso</a></li> +<li><a href="https://mirusresearch.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-mirus_research.png);">Mirus Research</a></li> +<li><a href="http://hipolabs.com" rel="nofollow" style="background-image:url(../../img/sponsors/2-hipo.png);">Hipo</a></li> +<li><a href="http://www.byte.nl" rel="nofollow" style="background-image:url(../../img/sponsors/2-byte.png);">Byte</a></li> +<li><a href="http://lightningkite.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-lightning_kite.png);">Lightning Kite</a></li> +<li><a href="https://opbeat.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-opbeat.png);">Opbeat</a></li> +<li><a href="https://koordinates.com" rel="nofollow" style="background-image:url(../../img/sponsors/2-koordinates.png);">Koordinates</a></li> +<li><a href="http://pulsecode.ca" rel="nofollow" style="background-image:url(../../img/sponsors/2-pulsecode.png);">Pulsecode Inc.</a></li> +<li><a href="http://singinghorsestudio.com" rel="nofollow" style="background-image:url(../../img/sponsors/2-singing-horse.png);">Singing Horse Studio Ltd.</a></li> +<li><a href="https://www.heroku.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-heroku.png);">Heroku</a></li> +<li><a href="https://www.galileo-press.de/" rel="nofollow" style="background-image:url(../../img/sponsors/2-galileo_press.png);">Galileo Press</a></li> +<li><a href="http://www.securitycompass.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-security_compass.png);">Security Compass</a></li> +<li><a href="https://www.djangoproject.com/foundation/" rel="nofollow" style="background-image:url(../../img/sponsors/2-django.png);">Django Software Foundation</a></li> +<li><a href="http://www.hipflaskapp.com" rel="nofollow" style="background-image:url(../../img/sponsors/2-hipflask.png);">Hipflask</a></li> +<li><a href="http://www.crate.io/" rel="nofollow" style="background-image:url(../../img/sponsors/2-crate.png);">Crate</a></li> +<li><a href="http://crypticocorp.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-cryptico.png);">Cryptico Corp</a></li> +<li><a href="http://www.nexthub.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-nexthub.png);">NextHub</a></li> +<li><a href="https://www.compile.com/" rel="nofollow" style="background-image:url(../../img/sponsors/2-compile.png);">Compile</a></li> +<li><a href="http://wusawork.org" rel="nofollow" style="background-image:url(../../img/sponsors/2-wusawork.png);">WusaWork</a></li>  <li><a href="http://envisionlinux.org/blog" rel="nofollow">Envision Linux</a></li>  </ul> @@ -455,41 +455,41 @@  <h3 id="silver-sponsors">Silver sponsors</h3>  <p>The serious financial contribution that our silver sponsors have made is very much appreciated. I'd like to say a particular thank you to individuals who have choosen to privately support the project at this level.</p>  <ul class="sponsor silver"> -<li><a href="http://www.imtapps.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-imt_computer_services.png);">IMT Computer Services</a></li> -<li><a href="http://wildfish.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-wildfish.png);">Wildfish</a></li> -<li><a href="http://www.thermondo.de/" rel="nofollow" style="background-image:url(../../img/sponsors//3-thermondo-gmbh.png);">Thermondo GmbH</a></li> -<li><a href="http://providenz.fr/" rel="nofollow" style="background-image:url(../../img/sponsors//3-providenz.png);">Providenz</a></li> -<li><a href="https://www.alwaysdata.com" rel="nofollow" style="background-image:url(../../img/sponsors//3-alwaysdata.png);">alwaysdata.com</a></li> -<li><a href="http://www.triggeredmessaging.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-triggered_messaging.png);">Triggered Messaging</a></li> -<li><a href="https://www.ipushpull.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-ipushpull.png);">PushPull Technology Ltd</a></li> -<li><a href="http://www.transcode.de/" rel="nofollow" style="background-image:url(../../img/sponsors//3-transcode.png);">Transcode</a></li> -<li><a href="https://garfo.io/" rel="nofollow" style="background-image:url(../../img/sponsors//3-garfo.png);">Garfo</a></li> -<li><a href="https://goshippo.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-shippo.png);">Shippo</a></li> -<li><a href="http://www.gizmag.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-gizmag.png);">Gizmag</a></li> -<li><a href="http://www.tivix.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-tivix.png);">Tivix</a></li> -<li><a href="http://www.safaribooksonline.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-safari.png);">Safari</a></li> -<li><a href="http://brightloop.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-brightloop.png);">Bright Loop</a></li> -<li><a href="http://www.aba-systems.com.au/" rel="nofollow" style="background-image:url(../../img/sponsors//3-aba.png);">ABA Systems</a></li> -<li><a href="http://beefarm.ru/" rel="nofollow" style="background-image:url(../../img/sponsors//3-beefarm.png);">beefarm.ru</a></li> -<li><a href="http://www.vzzual.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-vzzual.png);">Vzzual.com</a></li> -<li><a href="http://infinite-code.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-infinite_code.png);">Infinite Code</a></li> -<li><a href="http://crosswordtracker.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-crosswordtracker.png);">Crossword Tracker</a></li> -<li><a href="https://www.pkgfarm.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-pkgfarm.png);">PkgFarm</a></li> -<li><a href="http://life.tl/" rel="nofollow" style="background-image:url(../../img/sponsors//3-life_the_game.png);">Life. The Game.</a></li> -<li><a href="http://blimp.io/" rel="nofollow" style="background-image:url(../../img/sponsors//3-blimp.png);">Blimp</a></li> -<li><a href="http://pathwright.com" rel="nofollow" style="background-image:url(../../img/sponsors//3-pathwright.png);">Pathwright</a></li> -<li><a href="http://fluxility.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-fluxility.png);">Fluxility</a></li> -<li><a href="http://teonite.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-teonite.png);">Teonite</a></li> -<li><a href="http://trackmaven.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-trackmaven.png);">TrackMaven</a></li> -<li><a href="http://www.phurba.net/" rel="nofollow" style="background-image:url(../../img/sponsors//3-phurba.png);">Phurba</a></li> -<li><a href="http://www.nephila.co.uk/" rel="nofollow" style="background-image:url(../../img/sponsors//3-nephila.png);">Nephila</a></li> -<li><a href="http://www.aditium.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-aditium.png);">Aditium</a></li> -<li><a href="http://www.eyesopen.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-openeye.png);">OpenEye Scientific Software</a></li> -<li><a href="https://holvi.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-holvi.png);">Holvi</a></li> -<li><a href="http://cantemo.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-cantemo.gif);">Cantemo</a></li> -<li><a href="https://www.makespace.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-makespace.png);">MakeSpace</a></li> -<li><a href="https://www.ax-semantics.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-ax_semantics.png);">AX Semantics</a></li> -<li><a href="http://istrategylabs.com/" rel="nofollow" style="background-image:url(../../img/sponsors//3-isl.png);">ISL</a></li> +<li><a href="http://www.imtapps.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-imt_computer_services.png);">IMT Computer Services</a></li> +<li><a href="http://wildfish.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-wildfish.png);">Wildfish</a></li> +<li><a href="http://www.thermondo.de/" rel="nofollow" style="background-image:url(../../img/sponsors/3-thermondo-gmbh.png);">Thermondo GmbH</a></li> +<li><a href="http://providenz.fr/" rel="nofollow" style="background-image:url(../../img/sponsors/3-providenz.png);">Providenz</a></li> +<li><a href="https://www.alwaysdata.com" rel="nofollow" style="background-image:url(../../img/sponsors/3-alwaysdata.png);">alwaysdata.com</a></li> +<li><a href="http://www.triggeredmessaging.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-triggered_messaging.png);">Triggered Messaging</a></li> +<li><a href="https://www.ipushpull.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-ipushpull.png);">PushPull Technology Ltd</a></li> +<li><a href="http://www.transcode.de/" rel="nofollow" style="background-image:url(../../img/sponsors/3-transcode.png);">Transcode</a></li> +<li><a href="https://garfo.io/" rel="nofollow" style="background-image:url(../../img/sponsors/3-garfo.png);">Garfo</a></li> +<li><a href="https://goshippo.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-shippo.png);">Shippo</a></li> +<li><a href="http://www.gizmag.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-gizmag.png);">Gizmag</a></li> +<li><a href="http://www.tivix.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-tivix.png);">Tivix</a></li> +<li><a href="http://www.safaribooksonline.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-safari.png);">Safari</a></li> +<li><a href="http://brightloop.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-brightloop.png);">Bright Loop</a></li> +<li><a href="http://www.aba-systems.com.au/" rel="nofollow" style="background-image:url(../../img/sponsors/3-aba.png);">ABA Systems</a></li> +<li><a href="http://beefarm.ru/" rel="nofollow" style="background-image:url(../../img/sponsors/3-beefarm.png);">beefarm.ru</a></li> +<li><a href="http://www.vzzual.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-vzzual.png);">Vzzual.com</a></li> +<li><a href="http://infinite-code.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-infinite_code.png);">Infinite Code</a></li> +<li><a href="http://crosswordtracker.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-crosswordtracker.png);">Crossword Tracker</a></li> +<li><a href="https://www.pkgfarm.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-pkgfarm.png);">PkgFarm</a></li> +<li><a href="http://life.tl/" rel="nofollow" style="background-image:url(../../img/sponsors/3-life_the_game.png);">Life. The Game.</a></li> +<li><a href="http://blimp.io/" rel="nofollow" style="background-image:url(../../img/sponsors/3-blimp.png);">Blimp</a></li> +<li><a href="http://pathwright.com" rel="nofollow" style="background-image:url(../../img/sponsors/3-pathwright.png);">Pathwright</a></li> +<li><a href="http://fluxility.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-fluxility.png);">Fluxility</a></li> +<li><a href="http://teonite.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-teonite.png);">Teonite</a></li> +<li><a href="http://trackmaven.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-trackmaven.png);">TrackMaven</a></li> +<li><a href="http://www.phurba.net/" rel="nofollow" style="background-image:url(../../img/sponsors/3-phurba.png);">Phurba</a></li> +<li><a href="http://www.nephila.co.uk/" rel="nofollow" style="background-image:url(../../img/sponsors/3-nephila.png);">Nephila</a></li> +<li><a href="http://www.aditium.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-aditium.png);">Aditium</a></li> +<li><a href="http://www.eyesopen.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-openeye.png);">OpenEye Scientific Software</a></li> +<li><a href="https://holvi.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-holvi.png);">Holvi</a></li> +<li><a href="http://cantemo.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-cantemo.gif);">Cantemo</a></li> +<li><a href="https://www.makespace.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-makespace.png);">MakeSpace</a></li> +<li><a href="https://www.ax-semantics.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-ax_semantics.png);">AX Semantics</a></li> +<li><a href="http://istrategylabs.com/" rel="nofollow" style="background-image:url(../../img/sponsors/3-isl.png);">ISL</a></li>  </ul>  <div style="clear: both; padding-bottom: 40px;"></div> @@ -527,6 +527,7 @@    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/release-notes/index.html b/topics/release-notes/index.html index 64188deb..68b836ba 100644 --- a/topics/release-notes/index.html +++ b/topics/release-notes/index.html @@ -962,6 +962,7 @@    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/rest-framework-2-announcement/index.html b/topics/rest-framework-2-announcement/index.html index 3471aae4..f849c7cc 100644 --- a/topics/rest-framework-2-announcement/index.html +++ b/topics/rest-framework-2-announcement/index.html @@ -469,6 +469,7 @@    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/rest-hypermedia-hateoas/index.html b/topics/rest-hypermedia-hateoas/index.html index ce8ea833..6dd2343a 100644 --- a/topics/rest-hypermedia-hateoas/index.html +++ b/topics/rest-hypermedia-hateoas/index.html @@ -423,6 +423,7 @@ the Design of Network-based Software Architectures</a>.</li>    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/topics/third-party-resources/index.html b/topics/third-party-resources/index.html index f2a7a12a..c2d6186e 100644 --- a/topics/third-party-resources/index.html +++ b/topics/third-party-resources/index.html @@ -603,6 +603,7 @@ You probably want to also tag the version now:    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/tutorial/1-serialization/index.html b/tutorial/1-serialization/index.html index 7d2d3a4d..435d47e6 100644 --- a/tutorial/1-serialization/index.html +++ b/tutorial/1-serialization/index.html @@ -747,6 +747,7 @@ HTTP/1.1 200 OK    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/tutorial/2-requests-and-responses/index.html b/tutorial/2-requests-and-responses/index.html index d7048cac..9fa4b092 100644 --- a/tutorial/2-requests-and-responses/index.html +++ b/tutorial/2-requests-and-responses/index.html @@ -583,6 +583,7 @@ http --json POST http://127.0.0.1:8000/snippets/ code="print 456"    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/tutorial/3-class-based-views/index.html b/tutorial/3-class-based-views/index.html index eac633aa..cf7be3ae 100644 --- a/tutorial/3-class-based-views/index.html +++ b/tutorial/3-class-based-views/index.html @@ -527,6 +527,7 @@ class SnippetDetail(generics.RetrieveUpdateDestroyAPIView):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/tutorial/4-authentication-and-permissions/index.html b/tutorial/4-authentication-and-permissions/index.html index 07900eaa..7585afff 100644 --- a/tutorial/4-authentication-and-permissions/index.html +++ b/tutorial/4-authentication-and-permissions/index.html @@ -594,6 +594,7 @@ class IsOwnerOrReadOnly(permissions.BasePermission):    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/tutorial/5-relationships-and-hyperlinked-apis/index.html b/tutorial/5-relationships-and-hyperlinked-apis/index.html index 4c126bbb..52ecf307 100644 --- a/tutorial/5-relationships-and-hyperlinked-apis/index.html +++ b/tutorial/5-relationships-and-hyperlinked-apis/index.html @@ -537,6 +537,7 @@ urlpatterns += [    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/tutorial/6-viewsets-and-routers/index.html b/tutorial/6-viewsets-and-routers/index.html index 39d53591..04071f9e 100644 --- a/tutorial/6-viewsets-and-routers/index.html +++ b/tutorial/6-viewsets-and-routers/index.html @@ -527,6 +527,7 @@ urlpatterns = [    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() diff --git a/tutorial/quickstart/index.html b/tutorial/quickstart/index.html index 204942b0..64243dc0 100644 --- a/tutorial/quickstart/index.html +++ b/tutorial/quickstart/index.html @@ -573,6 +573,7 @@ HTTP/1.1 200 OK    <script src="../../js/jquery-1.8.1-min.js"></script>    <script src="../../js/prettify-1.0.js"></script>    <script src="../../js/bootstrap-2.1.1-min.js"></script> +  <script src="../../js/theme.js"></script>    <script>      //$('.side-nav').scrollspy() | 
