3a3e7f9931622d8837bf08c3de5dfb328c384203
tdreszer
  Fri Jun 22 15:59:56 2012 -0700
Third batch 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/hgText/hgText.c src/hg/hgText/hgText.c
index be43f56..14ec6a7 100644
--- src/hg/hgText/hgText.c
+++ src/hg/hgText/hgText.c
@@ -616,103 +616,91 @@
     }
 return FALSE;
 }
 
 void doGateway()
 /* Table Browser gateway page: select organism, db */
 {
 webStart(cart, "Table Browser: Choose Organism and Assembly");
 
 if (! hDbIsActive(database))
     {
     database = hDefaultDb();
     organism = hGenome(database);
     }
 
-puts(
-"<CENTER>"
+puts("<CENTER>"
 "<TABLE CELLPADDING=1 style='background-color:#FFFEF3; border-style:none;'>\n"
 "<TR><TD style='font-size:small; text-align:center;'>\n"
 "The UCSC Table Browser was created by the \n"
 "<A HREF=\"/staff.html\">Genome Bioinformatics Group of UC Santa Cruz</A>. \n"
 "<BR>\n"
 "Software Copyright (c) The Regents of the University of California.\n"
 "All rights reserved.\n"
-"</TD></TR></TABLE></CENTER><P>\n"
-);
+     "</TD></TR></TABLE></CENTER><P>\n");
 
 puts("<P>This tool allows you to download portions of the Genome Browser \n"
      "database in several output formats. \n"
      "Choose a genome and assembly, \n"
      "then press the Submit button.\n");
 puts("See the <A HREF=\"/goldenPath/help/hgTextHelp.html\">Table Browser "
      "User Guide</A> for more information.<P>\n"
      "<B style='color:#FF0000;'>NOTE: This software has been replaced by a "
      "<A HREF=\"hgTables\">newer version</A> of the Table Browser. "
      "This version of the tool is no longer "
      "maintained or updated by UCSC; therefore, we can make no guarantees "
      "about the completeness or correctness of the data returned. "
      "We are happy to assist you in the transition to the new Table "
      "Browser, which has many more features. Please "
      "email our public <A HREF=\"mailto:genome@soe.ucsc.edu\">mailing "
      "list</A> with questions or comments.</B> "
      "<P> ");
 
 puts("<CENTER>");
 printf("<FORM ACTION=\"%s\" NAME=\"mainForm\" METHOD=\"%s\">\n",
        hgTextName(), httpFormMethod);
-puts(
-"<table bgcolor='#CCCC99' border=0 CELLPADDING=1 CELLSPACING=0>\n"
+puts("<table bgcolor='#CCCC99' border=0 CELLPADDING=1 CELLSPACING=0>\n"
 "<tr><td>\n"
 "<table CELLPADDING=0 CELLSPACING=0 style='background-color:#FEFDEF; border-style:none;'>\n"
-"<tr><td>\n"
-);
+     "<tr><td>\n");
 
-puts(
-"<table bgcolor='#FFFEF3' border=0>\n"
+puts("<table bgcolor='#FFFEF3' border=0>\n"
 "<tr>\n"
-"<td>\n"
-);
+     "<td>\n");
 cartSaveSession(cart);
-puts(
-"<input TYPE=\"IMAGE\" BORDER=\"0\" NAME=\"tbDummyEnterButton\" src=\"/images/DOT.gif\">\n"
+puts("<input TYPE=\"IMAGE\" BORDER=\"0\" NAME=\"tbDummyEnterButton\" src=\"/images/DOT.gif\">\n"
 "<table><tr>\n"
 "<td align=center valign=baseline>genome</td>\n"
 "<td align=center valign=baseline>assembly</td>\n"
-"</tr>"
-);
+     "</tr>");
 
 puts("<tr><td align=center>\n");
 printGenomeListHtml(database, onChangeOrg);
 puts("</td>\n");
 
 puts("<td align=center>\n");
 printAssemblyListHtml(database, "");
 puts("</td><td>");
 cgiMakeButton("submit", "Submit");
-puts(
-"</td></tr></table>\n"
+puts("</td></tr></table>\n"
 "</td></tr>\n"
 "</table>\n"
 "</td></tr></table>\n"
-"</td></tr></table>\n"
-);
+     "</td></tr></table>\n");
 cgiMakeHiddenVar("phase", chooseTablePhase);
-puts(
-"</FORM>"
-"</CENTER>\n"
-);
+puts("</FORM>"
+    "</CENTER>\n");
 
 printf("To reset <B>all</B> user cart settings (including custom tracks), \n"
        "<A HREF=\"/cgi-bin/cartReset?destination=%s\">click here</A>.\n",
        hgTextName());
 
 printf("<FORM ACTION=\"%s\" METHOD=\"%s\" NAME=\"orgForm\">\n", hgTextName(),
        httpFormMethod);
 cgiMakeHiddenVar("org", organism);
 cgiMakeHiddenVar("db", database);
 cartSetString(cart, "db",database);
 cartSetString(cart, "org", organism);
 cartSaveSession(cart);
 puts("</FORM>");
 
 hgPositionsHelpHtml(organism, database);