[Python-checkins] r42063 - python/trunk/Misc/build.sh

neal.norwitz python-checkins at python.org
Mon Jan 16 05:37:22 CET 2006


Author: neal.norwitz
Date: Mon Jan 16 05:37:22 2006
New Revision: 42063

Modified:
   python/trunk/Misc/build.sh
Log:
refresh every 12 hours for crazy people like me that keep the page up

Modified: python/trunk/Misc/build.sh
==============================================================================
--- python/trunk/Misc/build.sh	(original)
+++ python/trunk/Misc/build.sh	Mon Jan 16 05:37:22 2006
@@ -82,7 +82,11 @@
 
 ## create results file
 TITLE="Automated Python Build Results"
-echo "<html><head><title>$TITLE</title></head>" >> $RESULT_FILE
+echo "<html>" >> $RESULT_FILE
+echo "  <head>" >> $RESULT_FILE
+echo "    <title>$TITLE</title>" >> $RESULT_FILE
+echo "    <meta http-equiv=\"refresh\" content=\"43200\">" >> $RESULT_FILE
+echo "  </head>" >> $RESULT_FILE
 echo "<body>" >> $RESULT_FILE
 echo "<h2>Automated Python Build Results</h2>" >> $RESULT_FILE
 echo "<table>" >> $RESULT_FILE


More information about the Python-checkins mailing list