cb8c0b5aec5b78aa6693d1df261752fd3f1a6ca5
galt
  Fri Sep 15 12:21:42 2023 -0700
Fixing hgTables for redirect-to-https. Galaxy will now work correctly since we give it our URL in a vaiable of that name, now updated in galaxy.c and mainPage.c. Fixed a few minor URLs to documentation too.

diff --git src/hg/hgTables/schema.c src/hg/hgTables/schema.c
index aada220..5b91f31 100644
--- src/hg/hgTables/schema.c
+++ src/hg/hgTables/schema.c
@@ -184,31 +184,31 @@
     puts("</TR>");
     if (example != NULL)
 	example = example->next;
     }
 hTableEnd();
 sqlFreeResult(&sr);
 }
 
 static void explainCoordSystem()
 /* Our coord system is counter-intuitive to users.  Warn them in advance to
  * reduce the frequency with which they find this "bug" on their own and
  * we have to explain it on the genome list. */
 {
 puts("<BR><I>Note: all start coordinates in our database are 0-based, not \n"
  "1-based.  See explanation \n"
- "<A HREF=\"http://genome.ucsc.edu/FAQ/FAQtracks#tracks1\">"
+ "<A HREF=\"https://genome.ucsc.edu/FAQ/FAQtracks#tracks1\">"
      "here</A>.</I>");
 }
 
 
 static void printSampleRows(int sampleCount, struct sqlConnection *conn, char *table)
 /* Put up sample values. */
 {
 char query[256];
 struct sqlResult *sr;
 char **row;
 int i, columnCount = 0;
 int itemRgbCol = -1;
 boolean showItemRgb = FALSE;
 
 showItemRgb=bedItemRgb(findTdbForTable(database, curTrack, table, ctLookupName));