b04a39a028980ea32b2ac62950bdff0a67de16d0 galt Wed Jul 18 14:48:19 2018 -0700 Add missing CSP header to pages not handled automatically by library functions. refs #21729. diff --git src/hg/hgCert/hgCert.c src/hg/hgCert/hgCert.c index a6e42aa..184d720 100644 --- src/hg/hgCert/hgCert.c +++ src/hg/hgCert/hgCert.c @@ -1,21 +1,22 @@ /* hgCert - hgCert parses cerfification data file and generates an html file and a .tab file */ /* Copyright (C) 2011 The Regents of the University of California * See README in this or parent directory for licensing information. */ #include "common.h" #include "hCommon.h" +#include "htmshell.h" void usage() /* Explain usage and exit. */ { errAbort( "hgCert - hgCert parses cerfification data file and generates an html file and a .tab file\n" "usage: hgCert certificate.txt >certificate.html\n"); } char *doLine(char *lineType, char *lineIn) { char *result; char line[1000]; strcpy(line, lineIn); @@ -75,31 +76,31 @@ *comment, *evaluation, *remark; char lineType[100]; //int i,j; if (argc != 2) { usage(); } else { infileName = argv[1]; - fprintf(stdout, "
Accession 1 | \n"); fprintf(stdout, "Accession 2 | \n"); fprintf(stdout, "Spanner | \n"); fprintf(stdout, "Variation | \n"); fprintf(stdout, "Variation Evidence | \n"); fprintf(stdout, "Comment | \n"); fprintf(stdout, "Evaluation | \n"); fprintf(stdout, "Remark | \n"); fprintf(stdout, "Contact | \n");
---|