aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics/rest-hypermedia-hateoas.md
diff options
context:
space:
mode:
authorTom Christie2012-10-08 17:53:18 +0100
committerTom Christie2012-10-08 17:53:18 +0100
commit65f592866c5cd5103e99ed453543807bcbdaa9da (patch)
tree311282a5f372878b225ac183a387db3ba6334042 /docs/topics/rest-hypermedia-hateoas.md
parent4a21b3557edb3b901b86d3a888c44f772e33b922 (diff)
downloaddjango-rest-framework-65f592866c5cd5103e99ed453543807bcbdaa9da.tar.bz2
Fix issue where required fields were not being properly validated. Also make model fields with a default value be not required
Diffstat (limited to 'docs/topics/rest-hypermedia-hateoas.md')
-rw-r--r--docs/topics/rest-hypermedia-hateoas.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/topics/rest-hypermedia-hateoas.md b/docs/topics/rest-hypermedia-hateoas.md
index 3aa1ff5f..0e183a49 100644
--- a/docs/topics/rest-hypermedia-hateoas.md
+++ b/docs/topics/rest-hypermedia-hateoas.md
@@ -32,7 +32,7 @@ REST framework also includes [serialization] and [parser]/[renderer] components
### What REST framework *doesn't* provide.
-What REST framework doesn't do is give you is machine readable hypermedia formats such as [Collection+JSON][collection] by default, or the ability to auto-magically create HATEOAS style APIs. Doing so would involve making opinionated choices about API design that should really remain outside of the framework's scope.
+What REST framework doesn't do is give you is machine readable hypermedia formats such as [Collection+JSON][collection] or HTML [microformats] by default, or the ability to auto-magically create HATEOAS style APIs. Doing so would involve making opinionated choices about API design that should really remain outside of the framework's scope.
[cite]: http://vimeo.com/channels/restfest/page:2
[dissertation]: http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm
@@ -45,6 +45,7 @@ What REST framework doesn't do is give you is machine readable hypermedia format
[maturitymodel]: http://martinfowler.com/articles/richardsonMaturityModel.html
[collection]: http://www.amundsen.com/media-types/collection/
+[microformats]: http://microformats.org/wiki/Main_Page
[serialization]: ../api-guide/serializers.md
[parser]: ../api-guide/parsers.md
[renderer]: ../api-guide/renderers.md