54a82789a7709e5ad9cdc18dcc5691936bc8b516 braney Thu Aug 9 15:36:55 2012 -0700 remove some routines used only by the proteome browser (#5740) diff --git src/hg/inc/cart.h src/hg/inc/cart.h index 8c31e93..833101a 100644 --- src/hg/inc/cart.h +++ src/hg/inc/cart.h @@ -375,46 +375,30 @@ char *cookieName, char **exclude, struct hash *oldVars); /* Load cart from cookie and session cgi variable. Write web-page * preamble including head and title, call doMiddle with cart, and write end of web-page. * Exclude may be NULL. If it exists it's a comma-separated list of * variables that you don't want to save in the cart between * invocations of the cgi-script. */ void cartHtmlShell(char *title, void (*doMiddle)(struct cart *cart), char *cookieName, char **exclude, struct hash *oldVars); /* Load cart from cookie and session cgi variable. Write web-page preamble, call doMiddle * with cart, and write end of web-page. Exclude may be NULL. If it exists it's a * comma-separated list of variables that you don't want to save in the cart between * invocations of the cgi-script. oldVars is an optional hash that will get values * of things in the cart that were overwritten by cgi-variables. */ -void cartHtmlShellPB(char *title, void (*doMiddle)(struct cart *cart), - char *cookieName, char **exclude, struct hash *oldVars); -/* For Proteome Browser, load cart from cookie and session cgi variable. Write web-page - * preamble, call doMiddle with cart, and write end of web-page. - * Exclude may be NULL. If it exists it's a comma-separated list of - * variables that you don't want to save in the cart between - * invocations of the cgi-script. */ - -void cartHtmlShellPbGlobal(char *title, void (*doMiddle)(struct cart *cart), - char *cookieName, char **exclude, struct hash *oldVars); -/* For Proteome Browser, load cart from cookie and session cgi variable. Write web-page - * preamble, call doMiddle with cart, and write end of web-page. - * Exclude may be NULL. If it exists it's a comma-separated list of - * variables that you don't want to save in the cart between - * invocations of the cgi-script. */ - void cartWriteCookie(struct cart *cart, char *cookieName); /* Write out HTTP Set-Cookie statement for cart. */ struct cart *cartAndCookie(char *cookieName, char **exclude, struct hash *oldVars); /* Load cart from cookie and session cgi variable. Write cookie and * content-type part HTTP preamble to web page. Don't write any HTML though. */ struct cart *cartAndCookieNoContent(char *cookieName, char **exclude, struct hash *oldVars); /* Load cart from cookie and session cgi variable. Don't write out * content type or any HTML. */ struct cart *cartAndCookieWithHtml(char *cookieName, char **exclude, struct hash *oldVars, boolean doContentType);