mirror of
https://github.com/django/django.git
synced 2025-08-03 18:38:50 +00:00
Fixed #28593 -- Added a simplified URL routing syntax per DEP 0201.
Thanks Aymeric Augustin for shepherding the DEP and patch review. Thanks Marten Kenbeek and Tim Graham for contributing to the code. Thanks Tom Christie, Shai Berger, and Tim Graham for the docs.
This commit is contained in:
parent
c4c128d67c
commit
df41b5a05d
77 changed files with 1663 additions and 1105 deletions
38
tests/urlpatterns/converters.py
Normal file
38
tests/urlpatterns/converters.py
Normal file
|
@ -0,0 +1,38 @@
|
|||
import base64
|
||||
|
||||
|
||||
class Base64Converter:
|
||||
regex = r'[a-zA-Z0-9+/]*={0,2}'
|
||||
|
||||
def to_python(self, value):
|
||||
return base64.b64decode(value)
|
||||
|
||||
def to_url(self, value):
|
||||
return base64.b64encode(value).decode('ascii')
|
||||
|
||||
|
||||
class DynamicConverter:
|
||||
_dynamic_to_python = None
|
||||
_dynamic_to_url = None
|
||||
|
||||
@property
|
||||
def regex(self):
|
||||
return r'[0-9a-zA-Z]+'
|
||||
|
||||
@regex.setter
|
||||
def regex(self):
|
||||
raise Exception("You can't modify the regular expression.")
|
||||
|
||||
def to_python(self, value):
|
||||
return type(self)._dynamic_to_python(value)
|
||||
|
||||
def to_url(self, value):
|
||||
return type(self)._dynamic_to_url(value)
|
||||
|
||||
@classmethod
|
||||
def register_to_python(cls, value):
|
||||
cls._dynamic_to_python = value
|
||||
|
||||
@classmethod
|
||||
def register_to_url(cls, value):
|
||||
cls._dynamic_to_url = value
|
Loading…
Add table
Add a link
Reference in a new issue