Would like to use sphinx_view in a dedicated app, but struggle with including the url patterns... #21
-
When trying to reorganize a project structure, I did not manage to include the urlpatterns needed by/for WorksIncluding the urlpattern (with the string path(
'docs<path:path>',
DocumentationView.as_view(
json_build_dir=Path('docs/_build/json/'),
base_template_name="sphinx_view/base.html",
),
name="documentation",
), Does not workI tried something like: # project/urls.py
urlpatterns = [
path('admin/', admin.site.urls),
...
path('docs/', include('myapp.urls')),
...
] # myapp/urls.py
urlpatterns = [
path(
'<path:path>',
DocumentationView.as_view(
json_build_dir=Path('docs/_build/json/'),
base_template_name="sphinx_view/base.html",
),
name="documentation",
),
] ...but with this setup, it's not possible to match the
Any tips on how I can improve this? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
The path converter swallows the trailing Does |
Beta Was this translation helpful? Give feedback.
-
Good catch - yes, omitting the trailing slash in project.urls.py does the trick! But in many documentaries I have stumbled across [1] the include-pattern includes the trailing slash. Perhaps sphinx_view would profit from a setup which could handle the trailing slash? [1] https://docs.djangoproject.com/en/4.0/topics/http/urls/#including-other-urlconfs |
Beta Was this translation helpful? Give feedback.
The path converter swallows the trailing
/
so you'll need to match something likedocs
(without it) when doing theinclude
...Does
docs//
match? 🤔 (or does the double slash get swallowed?)