110f5e12a634db49ea9aa1ea23ff4965f1c2befe
galt
  Tue Aug 14 13:48:57 2018 -0700
changing cse to soe in domains, sometimes gi. ref #21876

diff --git src/hg/sageVisCGI/sageVisCGI.c src/hg/sageVisCGI/sageVisCGI.c
index a5a4551..62608cb 100644
--- src/hg/sageVisCGI/sageVisCGI.c
+++ src/hg/sageVisCGI/sageVisCGI.c
@@ -3,31 +3,31 @@
 
 /**
 
 \page sageVisCGI.doxp sageVisCGI cgi program for viewing graphs of sage data
 used standalone or called by the hgc.c program in ~kent/src/hg/hgc/.
 
 <p>sageVisCGI creates graphs on the fly for the sage data of different
 uniGene clusters. The clusters to be graphed are passed via cgi (or command
 line) in the form u=<uniGene number>. There is also an optional 'md' parameter
 which specifies a maximum tag count to go up to, default is 50.
 
 <p>Example
 <br><pre><code>
 sageVisCGI md=20 u=202 u=122566 > out.html
 </code></pre>
-or http://genome-test.cse.ucsc.edu/cgi-bin/sageVisCGI?md=20&u=202&u=122566 .
+or http://genome-test.soe.ucsc.edu/cgi-bin/sageVisCGI?md=20&u=202&u=122566 .
 
 \sa sageVisCGI.c
 
 */
 #include "common.h"
 #include "hCommon.h"
 #include "dystring.h"
 #include "sage.h"
 #include "sageExp.h"
 #include "gnuPlot2D.h"
 #include "portable.h"
 #include "jksql.h"
 #include "dnautil.h"
 #include "cheapcgi.h"
 #include "htmshell.h"
@@ -123,31 +123,31 @@
     count++;
     }
 dynamicStrncat(&ret, ")\n");
 return ret;
 }
 
 /* Prints the header appropriate for the title
  * passed in. Links html to chucks stylesheet for
  * easier maintaince
  */
 void chuckHtmlStart(char *title)
 {
 printf("<html><head>\n%s", getCspMetaHeader());
 //FIXME blueStyle should not be absolute to genome-test and should bae called by:
 // webIncludeResourceFile("blueStyle.css");
-printf("<LINK REL=STYLESHEET TYPE=\"text/css\" href=\"http://genome-test.cse.ucsc.edu/style/blueStyle.css\" title=\"Chuck Style\">\n");
+printf("<LINK REL=STYLESHEET TYPE=\"text/css\" href=\"http://genome-test.soe.ucsc.edu/style/blueStyle.css\" title=\"Chuck Style\">\n");
 printf("<title>%s</title>\n</head><body bgcolor=\"#f3f3ff\">",title);
 }
 
 /**
 Generates the data plot and associated html
 */
 void doCountsPage(struct sageExp *seList, struct sage *sgList)
 {
 struct gnuPlot2D *gp = needMem(sizeof(struct gnuPlot2D*));
 
 char *cmd = NULL;
 double xSize;
 double ySize;
 char *title = NULL;
 char *xTics = NULL;