Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
roomlist
Commits
ef4cd46c
Commit
ef4cd46c
authored
Oct 23, 2016
by
Eyad Hasan
Browse files
Spacing
parent
91a23d91
Changes
1
Hide whitespace changes
Inline
Side-by-side
roomlist/api/urls.py
View file @
ef4cd46c
...
...
@@ -14,24 +14,30 @@ from .views import BuildingList, BuildingRetrieve, FloorRetrieve, RoomRetrieve,\
# separate out major and building patterns
building_urls
=
patterns
(
''
,
url
(
r
'^$'
,
cache_page
(
60
*
60
)(
BuildingList
.
as_view
()),
name
=
'api_list_buildings'
),
url
(
r
'^(?P<building_name>[\w-]+)/$'
,
cache_page
(
60
*
60
)(
BuildingRetrieve
.
as_view
()),
name
=
'api_detail_building'
),
url
(
r
'^(?P<building_name>[\w-]+)/$'
,
cache_page
(
60
*
60
)(
BuildingRetrieve
.
as_view
()),
name
=
'api_detail_building'
),
# the naming here and for floors is a little obnoxious
url
(
r
'^(?P<building__building_name>[\w-]+)/(?P<floor_num>\d+)/$'
,
cache_page
(
60
*
60
)(
FloorRetrieve
.
as_view
()),
name
=
'api_detail_floor'
),
url
(
r
'^(?P<building__building_name>[\w-]+)/(?P<floor_num>\d+)/$'
,
cache_page
(
60
*
60
)(
FloorRetrieve
.
as_view
()),
name
=
'api_detail_floor'
),
# list all the floors still?
url
(
r
'^(?P<floor__building__building_name>[\w-]+)/(?P<floor__floor_num>\d+)/(?P<room_num>\d+)/$'
,
cache_page
(
60
*
60
)(
RoomRetrieve
.
as_view
()),
name
=
'api_detail_room'
),
url
(
r
'^(?P<floor__building__building_name>[\w-]+)/(?P<floor__floor_num>\d+)/(?P<room_num>\d+)/$'
,
cache_page
(
60
*
60
)(
RoomRetrieve
.
as_view
()),
name
=
'api_detail_room'
),
# list all the rooms still?
)
major_urls
=
patterns
(
''
,
url
(
r
'^$'
,
cache_page
(
60
*
60
)(
MajorList
.
as_view
()),
name
=
'api_list_majors'
),
url
(
r
'^(?P<slug>[\w-]+)/$'
,
cache_page
(
60
*
60
)(
MajorRetrieve
.
as_view
()),
name
=
'api_detail_major'
),
url
(
r
'^$'
,
cache_page
(
60
*
60
)(
MajorList
.
as_view
()),
name
=
'api_list_majors'
),
url
(
r
'^(?P<slug>[\w-]+)/$'
,
cache_page
(
60
*
60
)(
MajorRetrieve
.
as_view
()),
name
=
'api_detail_major'
),
)
# Added API Caching
urlpatterns
=
patterns
(
''
,
url
(
r
'^v1/housing/'
,
include
(
building_urls
)),
url
(
r
'^v1/majors/'
,
include
(
major_urls
)),
url
(
r
'^v1/$'
,
cache_page
(
60
*
60
)(
APIRoot
.
as_view
()),
name
=
'api_root'
),
url
(
r
'^v1/$'
,
cache_page
(
60
*
60
)(
APIRoot
.
as_view
()),
name
=
'api_root'
),
url
(
r
'^$'
,
RedirectView
.
as_view
(
pattern_name
=
'api_root'
)),
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment