Changes between Version 3 and Version 4 of qPloneGoogleSitemaps/why
- Timestamp:
- Jan 12, 2010 3:10:24 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
qPloneGoogleSitemaps/why
v3 v4 4 4 5 5 [[Image(content-sitemap.png, nolink)]] 6 7 6 8 7 {{{ … … 21 20 A News Sitemap must contain a '''publication date''' for each article, which refers to the date that the article first appears on your site. 22 21 23 Example News Sitemap looks like this: 22 == Old News Sitemaps vs New News Sitemaps == 23 24 Example of Old News Sitemap (generated by qPloneGoogleSitemaps 0.8.5) looks like this: 24 25 25 26 [[Image(news-sitemap.png, nolink)]] 26 27 27 It consists of number of URL blocks with certain tags within <url> </ulr>: 28 It consists of number of URL blocks (within <url> </ulr> tags) each including: 29 30 * '''<loc>...</loc>''' - location info 31 * '''<news:news>...</news:news>''' - news item tags: 32 * '''<news:publication_date>...</news:publication_date>''' 33 * '''<news:keywords/>''' 28 34 29 35 {{{ 36 <urlset> 30 37 <url> 31 38 <loc>http://localhost:33100/www/news-items/test-page</loc> … … 36 43 </news:news> 37 44 </url> 45 <url> 46 ... 47 </url> 48 </urlset> 38 49 }}} 39 50 51 52 {{{ 53 <?xml version="1.0" encoding="UTF-8"?> 54 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" 55 xmlns:n="http://www.google.com/schemas/sitemap-news/0.9"> 56 <url> 57 <loc>http://www.example.org/business/article55.html</loc> 58 <n:news> 59 <n:publication> 60 <n:name>The Example Times</n:name> 61 <n:language>en</n:language> 62 </n:publication> 63 <n:access>subscription</n:access> 64 <n:genres>pressrelease, blog</n:genres> 65 <n:publication_date>2008-12-23</n:publication_date> 66 <n:title>Companies A, B in Merger Talks</n:title> 67 <n:keywords>business, merger, acquisition, A, B</n:keywords> 68 <n:stock_tickers>NASDAQ:A, NASDAQ:B</n:stock_tickers> 69 </n:news> 70 </url> 71 </urlset> 72 }}}