Exclude beta version docs from sitemap.xml
authorMagnus Hagander <magnus@hagander.net>
Wed, 16 May 2012 17:35:35 +0000 (13:35 -0400)
committerMagnus Hagander <magnus@hagander.net>
Wed, 16 May 2012 17:35:35 +0000 (13:35 -0400)
Currently showed up as the highest priority - oops....

Spotted by Stefan

pgweb/docs/struct.py

index 3728b6ae5a93fdacb4ae1342e68f4462f5a7c184..28271f05250a9b359c17bc518e3a660cda43d1a0 100644 (file)
@@ -9,7 +9,7 @@ def get_struct():
        # Can't use a model here, because we don't (for some reason) have a
        # hard link to the versions table here
        curs = connection.cursor()
-       curs.execute("SELECT d.version, d.file, v.docsloaded FROM docs d INNER JOIN core_version v ON v.tree=d.version WHERE d.version > 0 ORDER BY d.version DESC")
+       curs.execute("SELECT d.version, d.file, v.docsloaded FROM docs d INNER JOIN core_version v ON v.tree=d.version WHERE d.version > 0 AND v.latestminor >= 0 ORDER BY d.version DESC")
 
        # Start priority is higher than average but lower than what we assign
        # to the current version of the docs.