Googlebot doesn't seem to like these relative urls.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@7463 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Tim Schaub
2008-07-03 20:48:46 +00:00
parent 8329df7c46
commit 0d2b2dd893

View File

@@ -100,7 +100,7 @@ def createFeed(examples):
entry.appendChild(title) entry.appendChild(title)
link = doc.createElementNS("http://www.w3.org/2005/Atom", "link") link = doc.createElementNS("http://www.w3.org/2005/Atom", "link")
link.setAttribute("href", "/dev/examples/%s" % example["example"]) link.setAttribute("href", "http://openlayers.org/dev/examples/%s" % example["example"])
entry.appendChild(link) entry.appendChild(link)
summary = doc.createElementNS("http://www.w3.org/2005/Atom", "summary") summary = doc.createElementNS("http://www.w3.org/2005/Atom", "summary")