97b899f21a0804a3f9e025fca3e1a785db9cb6fe braney Wed Oct 19 17:18:31 2022 -0700 get the clade, org, and db dropdowns in hgTables to work with curated hubs diff --git src/inc/cheapcgi.h src/inc/cheapcgi.h index 6b63818..6838fdb 100644 --- src/inc/cheapcgi.h +++ src/inc/cheapcgi.h @@ -650,16 +650,19 @@ struct cgiParsedVars *cgiParsedVarsNew(char *cgiString); /* Build structure containing parsed out cgiString */ void cgiParsedVarsFree(struct cgiParsedVars **pTags); /* Free up memory associated with cgiParsedVars */ void cgiParsedVarsFreeList(struct cgiParsedVars **pList); /* Free up list of cgiParsedVars */ char *cgiScriptDirUrl(); /* Return the cgi-bin directory path on this webserver. * This is not the local directory but the part after the server * in external URLs to this webserver. * e.g. if CGI is called via http://localhost/subdir/cgi-bin/cgiTest * the returned string is /subdir/. Must be free'd. */ + +void cgiChangeVar(char *varName, char *value); +/* An entry point to change the value of a something passed to us on the URL. */ #endif /* CHEAPCGI_H */