0f4d90c4bce7f1f5eadd53379eb29a9802458d0e
galt
  Wed Apr 17 13:48:45 2019 -0700
oops these changes go with it.

diff --git src/hg/cirm/cdw/inc/cdwLib.h src/hg/cirm/cdw/inc/cdwLib.h
index f5b6b0c..fe3ff80 100644
--- src/hg/cirm/cdw/inc/cdwLib.h
+++ src/hg/cirm/cdw/inc/cdwLib.h
@@ -509,30 +509,34 @@
 /* Find the last symlink and real file in the chain from submitDir/submitFileName.
  * This is useful for when target of symlink in cdw/ gets renamed 
  * (e.g. license plate after passes validation), or removed (e.g. cdwReallyRemove* commands). 
  * Returns 0 for success. /
  * Returns -1 if path does not exist. */
 
 char *findSubmitSymlink(char *submitFileName, char *submitDir, char *oldPath);
 /* Find the last symlink in the chain from submitDir/submitFileName.
  * This is useful for when target of symlink in cdw/ gets renamed 
  * (e.g. license plate after passes validation), or removed (e.g. cdwReallyRemove* commands). */
 
 void cdwReallyRemoveFile(struct sqlConnection *conn, char *submitDir, long long fileId, boolean unSymlinkOnly, boolean really);
 /* Remove all records of file from database and from Unix file system if 
  * the really flag is set.  Otherwise just print some info on the file. */
 
+char *cdwHeadTagDependencies(struct cart *cart, boolean makeAbsolute);
+/* Return page head dependencies string.  This is content that actually appears at the top
+ * of the page, in the head tag.  Optionally make links point to absolute URLs instead of relative. */
+
 char *cdwPageHeader(struct cart *cart, boolean makeAbsolute);
 /* Return page header string. This is content that actually appears at the top
  * of the page, like menu stuff.  Optionally make links point to absolute URLs instead of relative. */
 
 char *cdwPageFooter(struct cart *cart, boolean makeAbsolute);
 /* Return page footer string. This is content that appears in the page footer, like
  * links to other institutions etc.  Optionally make any relative URLs into absolute
  * URLs. */
 
 char *cdwLocalMenuBar(struct cart *cart, boolean makeAbsolute);
 /* Return menu bar string. Optionally make links in menubar to point to absolute URLs, not relative. */
 
 char *fileExtFromFormat(char *format);
 /* return file extension given the cdwFile format as defined in cdwValid.c. Result has to be freed */