ed5e5f64aa184852647d79e66d73c285ff007d47
max
  Mon Jun 25 02:51:36 2018 -0700
Revert "Attempt to allow net.c code to process cdwGetFiles url by passing through the basic auth from the browser. However, even with this change, because cdwGetFiles does not support byte ranges, bigDataUrl customTracks in cirm that use cdwGetFiles will not work."

This reverts commit eb2d2d726825942e7438acabf7db1c6d0e071382.

diff --git src/hg/inc/wikiLink.h src/hg/inc/wikiLink.h
index 8077aab..678aea4 100644
--- src/hg/inc/wikiLink.h
+++ src/hg/inc/wikiLink.h
@@ -25,41 +25,30 @@
 #define CFG_CENTRAL_DOMAIN "central.domain"
 #define CFG_CENTRAL_COOKIE "central.cookie"
 
 char *loginSystemName();
 /* Return the wiki host specified in hg.conf, or NULL.  Allocd here. */
 
 boolean loginSystemEnabled();
 /* Return TRUE if login.systemName  parameter is defined in hg.conf . */
 
 boolean loginUseHttps();
 /* Return TRUE unless https is disabled in hg.conf. */
 
 boolean loginUseBasicAuth();
 /* Return TRUE if login.basicAuth is on in hg.conf . */
 
-char* getHttpBasicToken();
-/* Return HTTP Basic Auth Token or NULL. Result has to be freed. */
-
-void basicAuthUserPassword(char *token, char **pUser, char **pPassword);
-/* get the HTTP Header 'Authorization', which is just the b64 encoded username:password,
- * and return the username and password. Results should be freed. */
-
-char *basicAuthUser(char *token);
-/* get the HTTP Header 'Authorization', which is just the b64 encoded username:password,
- * and return the username. Result should be freed. */
-
 struct slName *loginLoginUser(char *userName, uint idx);
 /* Return cookie strings to set for user so we'll recognize that user is logged in.
  * Call this after validating userName's password. */
 
 struct slName *loginLogoutUser();
 /* Return cookie strings to set (deleting the login cookies). */
 
 struct slName *loginValidateCookies();
 /* Return possibly empty list of cookie strings for the caller to set.
  * If login cookies are obsolete but (formerly) valid, the results sets updated cookies.
  * If login cookies are present but invalid, the result deletes/expires the cookies.
  * Otherwise returns NULL (no change to cookies). */
 
 char *wikiLinkHost();
 /* Return the wiki host specified in hg.conf, or NULL.  Allocd here. */