5781247080c97e4aba9aba2afb39686b5f9419a2
max
  Wed Jan 22 07:50:46 2014 -0800
fixing .as files, refs #12212
diff --git src/hg/lib/pubsBingArticle.as src/hg/lib/pubsBingArticle.as
index 1655f0a..05b0b1e 100644
--- src/hg/lib/pubsBingArticle.as
+++ src/hg/lib/pubsBingArticle.as
@@ -1,17 +1,23 @@
-table pubsBingArticle
-" information about a website, some fields are always empty (like pmid) to stay compatible with pubsArticle, fields like authors and title are extracted from meta tags of the html (Dublin core, etc)"
+table pubsArticle
+"publications track article metadata table"
     (
     bigint articleId;     "internal article ID, created during download"
-    string extId;         "publisher ID e.g. PMCxxxx or doi or sciencedirect ID"
+    string extId;         "publisher ID e.g. PMCxxxx or doi or sciencedirect ID or the URL in case of Bing/MSR"
     bigint pmid;          "PubmedID if available"
     string doi;           "DOI if available"
-    string source;        "data source, e.g. elsevier or pmcftp"
+    string source;        "data source, e.g. elsevier, pmcftp or crawler"
+    string publisher;     "publisher, e.g. npg or wiley"
     string citation;      "source journal citation"
+    string journal;       "name of journal"
+    string eIssn;         "electronic issn of journal"
+    string vol;           "volume of journal"
+    string issue;         "issue of journal"
+    string page;          "page or pagerange within issue"
     int year;             "year of publication or 0 if not defined"
     string title;         "article title"
     string authors;       "author list for this article"
     string firstAuthor;   "first author family name"
     string abstract;      "article abstract"
     string url;           "url to fulltext of article"
     string dbs;           "list of DBs with matches to this article"
     )