cc3d3bdf3f311b210668ee91479a9b0a477d4fd4 larrym Thu Jun 7 12:26:44 2012 -0700 hBackgroundImage diff --git src/hg/lib/hui.c src/hg/lib/hui.c index 19f34e8..bd5a7bf 100644 --- src/hg/lib/hui.c +++ src/hg/lib/hui.c @@ -389,37 +389,30 @@ dir[0] = 0; splitPath(scriptFilename, dir, name, extension); safef(defaultDir, sizeof(defaultDir), "%s", dir); int len = strlen(defaultDir); // Get rid of trailing slash to be consistent with hDocumentRoot if(defaultDir[len-1] == '/') defaultDir[len-1] = 0; } else { defaultDir[0] = 0; } return cfgOptionDefault("browser.cgiRoot", defaultDir); } -char *hBackgroundImage() -/* get the path to the configured background image to use, or the default */ -{ - -return cfgOptionDefault("browser.background", DEFAULT_BACKGROUND); -} - /****** Some stuff for tables of controls ******/ struct controlGrid *startControlGrid(int columns, char *align) /* Start up a control grid. */ { struct controlGrid *cg; AllocVar(cg); cg->columns = columns; cg->align = cloneString(align); cg->rowOpen = FALSE; return cg; } void controlGridEndRow(struct controlGrid *cg) /* Force end of row. */