Xavier Ordoquy 
							
						 
					 
					
						
						
						
						
							
						
						
							4ad8c17371 
							
						 
					 
					
						
						
							
							Add a warning about totally custom login views.  
						
						 
						
						
						
					 
					
						2015-06-01 18:13:40 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								lowid 
							
						 
					 
					
						
						
						
						
							
						
						
							5c3c4802d3 
							
						 
					 
					
						
						
							
							Delete imported but not used method  
						
						 
						
						... 
						
						
						
						In 'Generating Tokens' section, the example code imported get_user_model but not used. 
						
					 
					
						2015-05-04 18:15:49 +08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								José Padilla 
							
						 
					 
					
						
						
						
						
							
						
						
							2ddb6bfa70 
							
						 
					 
					
						
						
							
							Fix permissions on markdown files  
						
						 
						
						
						
					 
					
						2015-03-07 10:19:25 -04:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Mateusz Sikora 
							
						 
					 
					
						
						
						
						
							
						
						
							e51dc1855c 
							
						 
					 
					
						
						
							
							Update authentication.md  
						
						 
						
						
						
					 
					
						2015-02-25 18:51:20 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							39f26c9eca 
							
						 
					 
					
						
						
							
							Merge master  
						
						 
						
						
						
					 
					
						2015-01-23 14:28:59 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Duncan Maitland 
							
						 
					 
					
						
						
						
						
							
						
						
							6e471ad8f4 
							
						 
					 
					
						
						
							
							fix link to Django CSRF docs  
						
						 
						
						
						
					 
					
						2015-01-22 18:29:20 +11:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6065cdbd93 
							
						 
					 
					
						
						
							
							Merge master  
						
						 
						
						
						
					 
					
						2015-01-19 15:16:57 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								JocelynDelalande 
							
						 
					 
					
						
						
						
						
							
						
						
							fe92a2cfee 
							
						 
					 
					
						
						
							
							fixed doc : DEFAULT_AUTHENTICATION_CLASSES -> DEFAULT_AUTHENTICATION  
						
						 
						
						... 
						
						
						
						+ It is consistent with docs about DEFAULT_PERMISSION_CLASSES 
						
					 
					
						2015-01-07 10:42:11 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							17665aa52a 
							
						 
					 
					
						
						
							
							Add docs for OAuth, XML, YAML, JSONP packages.  Closes   #2179 .  
						
						 
						
						
						
					 
					
						2015-01-05 12:26:15 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								José Padilla 
							
						 
					 
					
						
						
						
						
							
						
						
							0cc990792c 
							
						 
					 
					
						
						
							
							Merge branch 'version-3.1' into oauth_as_package  
						
						 
						
						... 
						
						
						
						Conflicts:
	requirements-test.txt
	rest_framework/compat.py
	tests/settings.py
	tox.ini 
						
					 
					
						2014-11-28 12:14:40 -04:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								José Padilla 
							
						 
					 
					
						
						
						
						
							
						
						
							16d442dda3 
							
						 
					 
					
						
						
							
							Use MkDocs meta.source to render source code links  
						
						 
						
						
						
					 
					
						2014-11-25 12:44:11 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Brett Koonce 
							
						 
					 
					
						
						
						
						
							
						
						
							b44def4650 
							
						 
					 
					
						
						
							
							minor spelling tweaks  
						
						 
						
						
						
					 
					
						2014-11-06 23:19:26 -08:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Andrew Conti 
							
						 
					 
					
						
						
						
						
							
						
						
							f25f05dde5 
							
						 
					 
					
						
						
							
							Update authentication.md  
						
						 
						
						... 
						
						
						
						Based on the [new documentation](https://docs.djangoproject.com/en/dev/topics/auth/customizing/#django.contrib.auth.get_user_model ) for Django 1.7 we should now use:
```python
@receiver(post_save, sender=settings.AUTH_USER_MODEL)
```
instead of:
```python 
@receiver(post_save, sender=get_user_model())
```
because `get_user_model()` only works once Django has imported all models. Otherwise you'll get: 
```python
django.core.exceptions.AppRegistryNotReady: Models aren't loaded yet.
```
When trying to start your sever after adding token authentication.
From the Docs, ( linked above as well ) :
>New in Django 1.7:
>When connecting to signals sent by the User model, you should specify the custom model using the AUTH_USER_MODEL setting. 
						
					 
					
						2014-10-29 16:31:36 -04:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								konradhalas 
							
						 
					 
					
						
						
						
						
							
						
						
							113a28ed8a 
							
						 
					 
					
						
						
							
							Add djoser to authentication docs.  
						
						 
						
						
						
					 
					
						2014-10-16 13:48:18 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Collin Anderson 
							
						 
					 
					
						
						
						
						
							
						
						
							da385c9c1f 
							
						 
					 
					
						
						
							
							remove patterns and strings from urls  #1898  
						
						 
						
						
						
					 
					
						2014-09-23 17:10:02 -04:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Jharrod LaFon 
							
						 
					 
					
						
						
						
						
							
						
						
							baa518cd89 
							
						 
					 
					
						
						
							
							Moved OAuth support out of DRF and into a separate package, per  #1767  
						
						 
						
						
						
					 
					
						2014-09-05 15:30:01 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlton Gibson 
							
						 
					 
					
						
						
						
						
							
						
						
							556948661a 
							
						 
					 
					
						
						
							
							Improve wording.  
						
						 
						
						
						
					 
					
						2014-08-18 13:54:46 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlton Gibson 
							
						 
					 
					
						
						
						
						
							
						
						
							db4426fc35 
							
						 
					 
					
						
						
							
							Alter other reference to migrations.  
						
						 
						
						
						
					 
					
						2014-08-18 13:52:57 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlton Gibson 
							
						 
					 
					
						
						
						
						
							
						
						
							ae2ab496c2 
							
						 
					 
					
						
						
							
							Updated docs for South v1.0  
						
						 
						
						
						
					 
					
						2014-08-18 13:48:46 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlton Gibson 
							
						 
					 
					
						
						
						
						
							
						
						
							d98245ac22 
							
						 
					 
					
						
						
							
							Merge branch '2.4.0' of github.com:tomchristie/django-rest-framework into  #1559  
						
						 
						
						... 
						
						
						
						Conflicts:
	docs/topics/release-notes.md 
						
					 
					
						2014-06-24 10:30:08 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Carlton Gibson 
							
						 
					 
					
						
						
						
						
							
						
						
							3f727ce738 
							
						 
					 
					
						
						
							
							Added (first pass) notes to docs & release notes. Backed out SOUTH_MIGRATION_MODULES setting from rest_framework.settings  
						
						 
						
						
						
					 
					
						2014-06-24 09:02:44 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a7ff51118f 
							
						 
					 
					
						
						
							
							Note on configuring TokenAuthentication  
						
						 
						
						
						
					 
					
						2014-05-29 14:33:16 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Kumar McMillan 
							
						 
					 
					
						
						
						
						
							
						
						
							c2cd610b15 
							
						 
					 
					
						
						
							
							Adds HawkREST to 3rd party auth docs  
						
						 
						
						
						
					 
					
						2014-02-28 16:52:47 -06:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Kumar McMillan 
							
						 
					 
					
						
						
						
						
							
						
						
							a4470c4276 
							
						 
					 
					
						
						
							
							Fix trailing whitespace  
						
						 
						
						... 
						
						
						
						Sorry, my editor does this automatically 
						
					 
					
						2014-02-28 16:51:32 -06:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Elvio Toccalino 
							
						 
					 
					
						
						
						
						
							
						
						
							1a4c6f075b 
							
						 
					 
					
						
						
							
							include djangorestframework-httpsignature in the docs  
						
						 
						
						
						
					 
					
						2014-02-20 01:07:39 -03:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								José Padilla 
							
						 
					 
					
						
						
						
						
							
						
						
							1c34051f5e 
							
						 
					 
					
						
						
							
							Include the djangorestframework-jwt package  
						
						 
						
						
						
					 
					
						2014-01-18 23:51:18 -05:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								OddBloke 
							
						 
					 
					
						
						
						
						
							
						
						
							4f473f0b9e 
							
						 
					 
					
						
						
							
							Use get_user_model instead of User in Generating Tokens example  
						
						 
						
						... 
						
						
						
						Because that's a better way of doing it. 
						
					 
					
						2013-12-11 13:56:56 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								OddBloke 
							
						 
					 
					
						
						
						
						
							
						
						
							5acefd3b17 
							
						 
					 
					
						
						
							
							Add full required imports to Generating Tokens example  
						
						 
						
						... 
						
						
						
						Previously we were missing User and post_save. 
						
					 
					
						2013-12-11 13:55:54 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								erkarl 
							
						 
					 
					
						
						
						
						
							
						
						
							f72488d609 
							
						 
					 
					
						
						
							
							Updated OAuth2 authentication docs.  
						
						 
						
						
						
					 
					
						2013-10-31 03:47:23 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Kevin Brown 
							
						 
					 
					
						
						
						
						
							
						
						
							d0123a1385 
							
						 
					 
					
						
						
							
							Changed DOAC documentation link  
						
						 
						
						
						
					 
					
						2013-09-02 10:23:54 -04:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5e40e50f2b 
							
						 
					 
					
						
						
							
							Include import paths throughout docs.  
						
						 
						
						... 
						
						
						
						Closes  #1051 .  Thanks to @pydanny for the report. 
						
					 
					
						2013-08-21 19:46:09 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								James Rutherford 
							
						 
					 
					
						
						
						
						
							
						
						
							195b1af7ba 
							
						 
					 
					
						
						
							
							Minor typo fix  
						
						 
						
						
						
					 
					
						2013-07-29 10:16:51 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								James Rutherford 
							
						 
					 
					
						
						
						
						
							
						
						
							1a4ff1567e 
							
						 
					 
					
						
						
							
							Updated authtoken docs to mention south migrations  
						
						 
						
						
						
					 
					
						2013-07-29 10:16:15 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							5c4bf5309d 
							
						 
					 
					
						
						
							
							Docs about migrations and post_save.  
						
						 
						
						... 
						
						
						
						Documentation detailing requirement to migrate prior to running `createsuperuser` if using an authtoken `post_save` signal.
Closes  #987 .  Thanks to @yprez. 
						
					 
					
						2013-07-29 09:08:35 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e7529b4072 
							
						 
					 
					
						
						
							
							Fix broken link by hacking around md->html translating  
						
						 
						
						
						
					 
					
						2013-07-02 16:22:22 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							8d410c4671 
							
						 
					 
					
						
						
							
							Tweak text  
						
						 
						
						
						
					 
					
						2013-07-01 17:32:06 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							8274ff7d9c 
							
						 
					 
					
						
						
							
							Capitalization on OAuth  
						
						 
						
						
						
					 
					
						2013-07-01 17:27:23 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							53dc98eefb 
							
						 
					 
					
						
						
							
							Added Django OAuth2 Consumer package  
						
						 
						
						
						
					 
					
						2013-07-01 17:22:42 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							aa706f581c 
							
						 
					 
					
						
						
							
							Add Django OAuth Toolkit to docs  
						
						 
						
						
						
					 
					
						2013-06-17 09:27:12 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							6e0567c271 
							
						 
					 
					
						
						
							
							request.user should be still be accessible in renderer context if authentication fails  
						
						 
						
						
						
					 
					
						2013-06-03 12:32:57 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Stephan Groß 
							
						 
					 
					
						
						
						
						
							
						
						
							7a570e16e9 
							
						 
					 
					
						
						
							
							Fix md formatting and typos  
						
						 
						
						
						
					 
					
						2013-05-28 17:13:12 +02:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e301e2d974 
							
						 
					 
					
						
						
							
							Adding 'view or viewset' to docs appropriate.  
						
						 
						
						
						
					 
					
						2013-04-26 14:03:26 +01:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Victor Shih 
							
						 
					 
					
						
						
						
						
							
						
						
							b73dfb9cc1 
							
						 
					 
					
						
						
							
							Remove redundant text.  
						
						 
						
						
						
					 
					
						2013-04-11 01:48:25 -07:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							399ac70b83 
							
						 
					 
					
						
						
							
							Merge branch 'master' of  https://github.com/tomchristie/django-rest-framework  
						
						 
						
						
						
					 
					
						2013-03-30 15:40:11 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d243538547 
							
						 
					 
					
						
						
							
							Note on using curl with token auth  
						
						 
						
						
						
					 
					
						2013-03-28 14:54:42 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Fernando Rocha 
							
						 
					 
					
						
						
						
						
							
						
						
							b2cea84fae 
							
						 
					 
					
						
						
							
							Complete remove of client checks from oauth2  
						
						 
						
						... 
						
						
						
						Signed-off-by: Fernando Rocha <fernandogrd@gmail.com> 
						
					 
					
						2013-03-27 19:00:36 -03:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a34f45b06e 
							
						 
					 
					
						
						
							
							Docs polishing.  
						
						 
						
						
						
					 
					
						2013-03-09 00:31:19 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							e42e49852d 
							
						 
					 
					
						
						
							
							Tweak docs  
						
						 
						
						
						
					 
					
						2013-03-07 19:49:36 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							a4b33992a5 
							
						 
					 
					
						
						
							
							Merge OAuth2 work.  
						
						 
						
						
						
					 
					
						2013-03-07 17:43:13 +00:00  
					
					
						 
						
							
							
							 
						
					 
				 
			
				
					
						
							
							
								 
								Tom Christie 
							
						 
					 
					
						
						
						
						
							
						
						
							d4e3610e71 
							
						 
					 
					
						
						
							
							Merge & clean OAuth support  
						
						 
						
						
						
					 
					
						2013-03-07 09:01:53 +00:00