From f7a798d810ddc037d29ed548583a0e3d16dde083 Mon Sep 17 00:00:00 2001 From: Tim Schaub Date: Mon, 23 Jun 2008 18:29:42 +0000 Subject: [PATCH] Looks like google doesn't like the relative link with a nested sitemap. git-svn-id: http://svn.openlayers.org/trunk/openlayers@7434 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- tools/exampleparser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/exampleparser.py b/tools/exampleparser.py index 19bb5038cc..6a6a3a0f37 100755 --- a/tools/exampleparser.py +++ b/tools/exampleparser.py @@ -100,7 +100,7 @@ def createFeed(examples): entry.appendChild(title) link = doc.createElementNS("http://www.w3.org/2005/Atom", "link") - link.setAttribute("href", example["example"]) + link.setAttribute("href", "/dev/examples/" % example["example"]) entry.appendChild(link) summary = doc.createElementNS("http://www.w3.org/2005/Atom", "summary")