aboutsummaryrefslogtreecommitdiffstats
path: root/topics/release-notes.html
diff options
context:
space:
mode:
Diffstat (limited to 'topics/release-notes.html')
-rw-r--r--topics/release-notes.html23
1 files changed, 2 insertions, 21 deletions
diff --git a/topics/release-notes.html b/topics/release-notes.html
index 36cc5752..657eec2f 100644
--- a/topics/release-notes.html
+++ b/topics/release-notes.html
@@ -182,31 +182,12 @@
<li><a href="#01x-series">0.1.x series</a></li>
<div>
- <hr>
-<p><strong>The team behind REST framework is launching a new API service.</strong></p>
-<p>If you want to be first in line when we start issuing invitations, please sign up here:</p>
-<!-- Begin MailChimp Signup Form -->
-<link href="//cdn-images.mailchimp.com/embedcode/slim-081711.css" rel="stylesheet" type="text/css">
-<style type="text/css">
- #mc_embed_signup{background:#fff; clear:left; font:14px Helvetica,Arial,sans-serif; }
- /* Add your own MailChimp form style overrides in your site stylesheet or in this style block.
- We recommend moving this block and the preceding CSS link to the HEAD of your HTML file. */
-</style>
-<div id="mc_embed_signup" style="background: rgb(245, 245, 245)">
-<form action="http://dabapps.us1.list-manage1.com/subscribe/post?u=cf73a9994eb5b8d8d461b5dfb&amp;id=cb6af8e8bd" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
-<!-- <label for="mce-EMAIL">Keep me posted!</label>
- --> <input style="width: 90%" type="email" value="" name="EMAIL" class="email" id="mce-EMAIL" placeholder="email address" required>
- <div class="clear"><input class="btn btn-success" type="submit" value="Yes, keep me posted!" name="subscribe" id="mc-embedded-subscribe" class="button"></div>
-</form>
</div>
-</style></div>
- </ul>
-
+</ul>
-<!--End mc_embed_signup-->
</div>
</div>
@@ -297,7 +278,7 @@
<p>[*] Note that the change in <code>page=0</code> behaviour fixes what is considered to be a bug in how clients can effect the pagination size. However if you were relying on this behavior you will need to add the following mixin to your list views in order to preserve the existing behavior.</p>
<pre class="prettyprint lang-py"><code>class DisablePaginationMixin(object):
def get_paginate_by(self, queryset=None):
- if self.request.QUERY_PARAMS['self.paginate_by_param'] == '0':
+ if self.request.QUERY_PARAMS[self.paginate_by_param] == '0':
return None
return super(DisablePaginationMixin, self).get_paginate_by(queryset)
</code></pre>