6419fc05af66878081e2b7d4d944900ec42d7cb1
tdreszer
  Fri Jun 22 15:29:37 2012 -0700
First of many checkins as dictated by Jim's OCD.  Formatting space after if and limiting lines to 100 chars.  Changes limited to lines last touched by tdreszer (git blame) so as not to ruin history.  None of these changes should affect executables in any way.  Only affect is to my sanity and Jim's.
diff --git src/hg/sageVisCGI/sageVisCGI.c src/hg/sageVisCGI/sageVisCGI.c
index 8e487ba..acffbec 100644
--- src/hg/sageVisCGI/sageVisCGI.c
+++ src/hg/sageVisCGI/sageVisCGI.c
@@ -118,31 +118,32 @@
 	sprintf(buff, " \"%d)%s\" %d, ", count, strstr(se->exp,"SAGE_") ? strstr(se->exp, "_") : se->exp, count);
     dynamicStrncat(&ret, buff);
     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>");
-//FIXME blueStyle should not be absolute to genome-test and should bae called by: webIncludeResourceFile("blueStyle.css");
+//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("<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;