aboutsummaryrefslogtreecommitdiffstats
path: root/mkdocs.py
diff options
context:
space:
mode:
authorTom Christie2013-05-07 05:08:28 -0700
committerTom Christie2013-05-07 05:08:28 -0700
commit5356af8651fccacf5524add33569dd84d9e78646 (patch)
tree8f7145c0a4cfeab61e1e523409b82091f44dfdbb /mkdocs.py
parent287ff43cdd85a5c2275205bf37e19dea3f69ad01 (diff)
parent0f00da848d9a8d25a0049231e9794da71a96662b (diff)
downloaddjango-rest-framework-5356af8651fccacf5524add33569dd84d9e78646.tar.bz2
Merge pull request #808 from tomchristie/2.3
2.3
Diffstat (limited to 'mkdocs.py')
-rwxr-xr-xmkdocs.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/mkdocs.py b/mkdocs.py
index eb672d77..c4da7aea 100755
--- a/mkdocs.py
+++ b/mkdocs.py
@@ -47,10 +47,13 @@ path_list = [
'tutorial/3-class-based-views.md',
'tutorial/4-authentication-and-permissions.md',
'tutorial/5-relationships-and-hyperlinked-apis.md',
+ 'tutorial/6-viewsets-and-routers.md',
'api-guide/requests.md',
'api-guide/responses.md',
'api-guide/views.md',
'api-guide/generic-views.md',
+ 'api-guide/viewsets.md',
+ 'api-guide/routers.md',
'api-guide/parsers.md',
'api-guide/renderers.md',
'api-guide/serializers.md',
@@ -74,6 +77,7 @@ path_list = [
'topics/contributing.md',
'topics/rest-framework-2-announcement.md',
'topics/2.2-announcement.md',
+ 'topics/2.3-announcement.md',
'topics/release-notes.md',
'topics/credits.md',
]
@@ -133,7 +137,7 @@ for (dirpath, dirnames, filenames) in os.walk(docs_dir):
toc += template + '\n'
if filename == 'index.md':
- main_title = 'Django REST framework - Web Browsable APIs'
+ main_title = 'Django REST framework - APIs made easy'
else:
main_title = 'Django REST framework - ' + main_title