Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
5b2e11e5
Kaydet (Commit)
5b2e11e5
authored
Ock 24, 2016
tarafından
Andrew Kuchev
Kaydeden (comit)
Tim Graham
Ock 28, 2016
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Refs #26015 -- Added regression test for an empty sitemap.
üst
f05722a0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
test_http.py
tests/sitemaps_tests/test_http.py
+8
-0
http.py
tests/sitemaps_tests/urls/http.py
+3
-1
No files found.
tests/sitemaps_tests/test_http.py
Dosyayı görüntüle @
5b2e11e5
...
@@ -232,3 +232,11 @@ class HTTPSitemapTests(SitemapTestsBase):
...
@@ -232,3 +232,11 @@ class HTTPSitemapTests(SitemapTestsBase):
</urlset>
</urlset>
"""
.
format
(
self
.
base_url
,
self
.
i18n_model
.
pk
)
"""
.
format
(
self
.
base_url
,
self
.
i18n_model
.
pk
)
self
.
assertXMLEqual
(
response
.
content
.
decode
(
'utf-8'
),
expected_content
)
self
.
assertXMLEqual
(
response
.
content
.
decode
(
'utf-8'
),
expected_content
)
def
test_sitemap_without_entries
(
self
):
response
=
self
.
client
.
get
(
'/sitemap-without-entries/sitemap.xml'
)
expected_content
=
"""<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
</urlset>"""
self
.
assertXMLEqual
(
response
.
content
.
decode
(
'utf-8'
),
expected_content
)
tests/sitemaps_tests/urls/http.py
Dosyayı görüntüle @
5b2e11e5
...
@@ -168,7 +168,9 @@ urlpatterns = [
...
@@ -168,7 +168,9 @@ urlpatterns = [
url
(
r'^cached/index\.xml$'
,
cache_page
(
1
)(
views
.
index
),
url
(
r'^cached/index\.xml$'
,
cache_page
(
1
)(
views
.
index
),
{
'sitemaps'
:
simple_sitemaps
,
'sitemap_url_name'
:
'cached_sitemap'
}),
{
'sitemaps'
:
simple_sitemaps
,
'sitemap_url_name'
:
'cached_sitemap'
}),
url
(
r'^cached/sitemap-(?P<section>.+)\.xml'
,
cache_page
(
1
)(
views
.
sitemap
),
url
(
r'^cached/sitemap-(?P<section>.+)\.xml'
,
cache_page
(
1
)(
views
.
sitemap
),
{
'sitemaps'
:
simple_sitemaps
},
name
=
'cached_sitemap'
)
{
'sitemaps'
:
simple_sitemaps
},
name
=
'cached_sitemap'
),
url
(
r'^sitemap-without-entries/sitemap\.xml$'
,
views
.
sitemap
,
{
'sitemaps'
:
{}},
name
=
'django.contrib.sitemaps.views.sitemap'
),
]
]
urlpatterns
+=
i18n_patterns
(
urlpatterns
+=
i18n_patterns
(
...
...
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