c20579fc7c537c1736650125c5d264357d2cfa78
angie
Mon Sep 18 13:15:16 2017 -0700
Big search & replace: use https instead of http for NCBI URLs. refs #17793
diff --git src/hg/hgGene/gad.c src/hg/hgGene/gad.c
index 8913892..93550d9 100644
--- src/hg/hgGene/gad.c
+++ src/hg/hgGene/gad.c
@@ -111,31 +111,31 @@
"select broadPhen,reference,title,journal, pubMed, conclusion from gadAll where geneSymbol='%s' and association = 'Y' order by broadPhen",
itemName);
sr = sqlMustGetResult(conn, query);
row = sqlNextRow(sr);
if (row != NULL) printf("
Related Studies:
");
while (row != NULL)
{
printf("- %s ", row[0]);
printf("
%s, %s, %s.\n", row[1], row[2], row[3]);
if (!sameWord(row[4], ""))
{
printf(" [PubMed ");
printf("",
- "http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=pubmed&cmd=Retrieve&dopt=Abstract&list_uids=",
+ "https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=pubmed&cmd=Retrieve&dopt=Abstract&list_uids=",
row[4],"&query_hl=1&itool=genome.ucsc.edu");
printf("%s]\n", row[4]);
}
printf("
%s\n", row[5]);
printf(" \n");
refPrinted++;
if ((!showCompleteGadList) && (refPrinted >= 3)) break;
row = sqlNextRow(sr);
}
sqlFreeResult(&sr);
printf("
");
if ((!showCompleteGadList) && (row != NULL))
{