e1b3625f3a40bfee5c483284fa7f6b23bf6bd47d
max
  Tue Aug 21 13:18:40 2018 +0200
moving all config files in GBIB to the new .gi.ucsc.edu domain names
from the old .soe.ucsc.edu domain names. refs #21876
This commit only changes the versions of these files in the repo,
not the ones in the actual browserbox, as they still need to get
pushed into the browserbox, either by the pusing procedure from
hgdownload or by the build meister when he builds the GBIB VM image.
See
http://genomewiki.ucsc.edu/genecats/index.php/Gbib_release#Release_config_changes_to_GbIb
and the related pages in the genecats genomewiki.

diff --git src/browserbox/root/urlIsNotNewerThanFile src/browserbox/root/urlIsNotNewerThanFile
index f71d9ec..c54a30e 100755
--- src/browserbox/root/urlIsNotNewerThanFile
+++ src/browserbox/root/urlIsNotNewerThanFile
@@ -1,21 +1,21 @@
 #!/usr/bin/env python
 import urllib2, time, os, datetime, optparse, sys
 
 parser = optparse.OptionParser("""usage: %prog [options] URL filename - compare modification time of file on http server against mtime of file on disk, return exit 0 if it is newer, exit with 1 if not newer.
 example:
-if [ ! %prog http://hgdownload.soe.ucsc.edu/admin/hgcentral.sql lastUpdateTime.flag ]; then
+if [ ! %prog http://hgdownload.gi.ucsc.edu/admin/hgcentral.sql lastUpdateTime.flag ]; then
     echo skip update
     exit
 fi
 """)
 
 (options, args) = parser.parse_args()
 
 if len(args)==0:
     parser.print_help()
     sys.exit(1)
 
 URL, flagFname = args
 
 # little helper class to download only the http HEAD
 class HeadRequest(urllib2.Request):