diff --git a/doc/download_all.php b/doc/download_all.php index 9c558a7b73..5c1e778f03 100644 --- a/doc/download_all.php +++ b/doc/download_all.php @@ -136,7 +136,10 @@ function show_platform($short_name, $p, $dev) { function show_platform_xml($short_name, $p, $dev) { foreach ($p["versions"] as $i=>$v) { if (!$dev && is_dev($v)) continue; - //if (!$dev && ((time() - strtodate($v["date"])) >= 86400*30) continue; + // show only those builds that have been around for over + // two weeks. Gives us time to address any showstoppers + // found by the early adopters + if (!$dev && ((time() - strtodate($v["date"])) >= 86400*14)) continue; show_version_xml($v, $p); } } @@ -210,4 +213,4 @@ if ($xml) { page_tail(); } -?> +//?>