981ef07d25e4560559dae28d3e316913569944d7 tdreszer Fri Jul 6 17:51:06 2012 -0700 Next batch of many checkins as dictated by Jim. Formatting space after if and limiting lines to 100 chars. Changes limited to lines last touched by tdreszer (git blame) so as not to ruin history. None of these changes should affect executables in any way. diff --git src/hg/inc/web.h src/hg/inc/web.h index e236dfc..3ddc7f3 100644 --- src/hg/inc/web.h +++ src/hg/inc/web.h @@ -255,31 +255,31 @@ void webFinishPartialLinkTable(int rowIx, int itemPos, int maxPerRow); /* Fill out partially empty last row. */ void webFinishPartialLinkOutTable(int rowIx, int itemPos, int maxPerRow); /* Fill out partially empty last row. */ boolean validateGisaidUser(struct cart *cart); /* validate if the web user is an authenticated GISAID user */ char *webTimeStampedLinkToResource(char *fileName, boolean wrapInHtml); // Returns full path of timestamped link to the requested resource file (js, or css). // If wrapInHtml, then returns link embedded in style or script html. Free after use. // NOTE: png, jpg and gif should also be supported but are untested. char *webTimeStampedLinkToResourceOnFirstCall(char *fileName, boolean wrapInHtml); -// If this is the first call, will -// Return full path of timestamped link to the requested resource file (js, or css). Free after use. +// If this is the first call, will Return full path of timestamped link to the + // requested resource file (js, or css). Free after use. // else returns NULL. Useful to ensure multiple references to the same resource file are not made // NOTE: png, jpg and gif should also be supported but are untested. boolean webIncludeResourcePrintToFile(FILE * toFile, char *fileName); // Converts fileName to web Resource link and prints the html reference // This only prints and returns TRUE on first call for this resource. // Passing in NULL as the file pointer results in hPrintf call // The reference will be to a link with timestamp. #define webIncludeResourceFile(fileName) webIncludeResourcePrintToFile(NULL,fileName) void lazarusLives(unsigned long newExpireSeconds); /* Long running process requests more time */ #endif /* WEB_H */