5adcf6bc2904690de7b7b30a83ec8a7a0996abe9
galt
  Tue Aug 21 00:01:25 2018 -0700
changing cse subdomain to soe

diff --git src/utils/qa/doRLUpdate.csh src/utils/qa/doRLUpdate.csh
index f462154..0af3a09 100755
--- src/utils/qa/doRLUpdate.csh
+++ src/utils/qa/doRLUpdate.csh
@@ -3,56 +3,56 @@
 if ( "$HOST" != "hgwdev" ) then
  echo "Error: this script must be run from hgwdev."
  exit 1
 endif
 
 cd ~
 
 #update sandbox 
 cd ~/cron-sandbox/RL/
 cvs update -dP releaseLog.html
 
 #fetch releaseLog
 #set output = "/usr/local/apache/htdocs/goldenPath/releaseLog.html"
 set output = "~/cron-sandbox/RL/releaseLog.html"
 echo "Fetching releaseLog.html from hgwbeta:qaPushQ"
-wget 'http://hgwbeta.cse.ucsc.edu/cgi-bin/qaPushQ?action=releaseLog' -q -O $output
+wget 'http://hgwbeta.soe.ucsc.edu/cgi-bin/qaPushQ?action=releaseLog' -q -O $output
 if ( $status ) then
  echo "wget failed for releaseLog.html on $HOST"
  exit 1
 endif
 
 #commit to cvs (old, replicates donnak's manual methods, probably could drop now)
 set temp = '"'"Release log update"'"'
 cvs commit -m "$temp" releaseLog.html
 if ( $status ) then
  echo "cvs commit failed for releaseLog.html on $HOST"
  exit 1
 endif
 echo "cvs commit done for releaseLog.html on $HOST"
 
 # ---
 
 #update sandbox 
 cd ~/cron-sandbox/RLencode/
 cvs update -dP releaseLog.html
 
 #fetch ENCODE releaseLog
 #set output = "/usr/local/apache/htdocs/encode/releaseLog.html"
 set output = "~/cron-sandbox/RLencode/releaseLog.html"
 echo "Fetching encode releaseLog.html from hgwbeta:qaPushQ"
-wget 'http://hgwbeta.cse.ucsc.edu/cgi-bin/qaPushQ?action=encodeReleaseLog' -q -O $output
+wget 'http://hgwbeta.soe.ucsc.edu/cgi-bin/qaPushQ?action=encodeReleaseLog' -q -O $output
 if ( $status ) then
  echo "wget failed for encode releaseLog.html on $HOST"
  exit 1
 endif
 
 #commit to cvs (old, imitates donnak's manual methods, probably could drop now)
 set temp = '"'"Encode release log update"'"'
 cvs commit -m "$temp" releaseLog.html
 if ( $status ) then
  echo "cvs commit failed for encode releaseLog.html on $HOST"
  exit 1
 endif
 echo "cvs commit done for encode releaseLog.html on $HOST"
 
 # ---