6585af44ef1b7a1bd1518fab1d504165ca5ebd53 max Wed May 1 14:15:36 2013 -0700 better html layout of publisher logo diff --git src/hg/hgc/pubs.c src/hg/hgc/pubs.c index e53e6df..90c0571 100644 --- src/hg/hgc/pubs.c +++ src/hg/hgc/pubs.c @@ -457,40 +457,41 @@ char *pmid = row[6]; articleSource = row[7]; extId = row[8]; url = mangleUrl(url); if (strlen(abstract)==0) abstract = "(No abstract available for this article. " "Please follow the link to the fulltext above by clicking on the titel or the fulltext image.)"; if (stringIn("sciencedirect.com", url)) { pubsHasSupp = FALSE; pubsIsElsevier = TRUE; } +// authors title +printf("
%s
\n", authors); +printf("%s\n", url, title); + // logo of publisher char *logoUrl = urlToLogoUrl(conn, pubsArticleTable, articleId, url); if (logoUrl) printf("%s
\n", authors); -printf("%s\n", url, title); -printf("\n"); - +printf("%s", cit); if (strlen(pmid)!=0 && strcmp(pmid, "0")) printf(", PMID%s\n", pmid, pmid); printf("
\n"); printf("%s
\n", abstract); if (pubsIsElsevier) printf("Copyright 2012 Elsevier B.V. All rights reserved.
"); sqlFreeResult(&sr); return articleId; } static struct hash *getSeqIdHash(struct sqlConnection *conn, char *trackTable, \