-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DOAJ search #287
DOAJ search #287
Conversation
6552efe
to
9b392b1
Compare
<body> | ||
<h1>Fetching entries from DOAJ</h1> | ||
|
||
<p><a href="http://www.diva-portal.org/">DOAJ (Directory of Open Access Journals)</a> is a database |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong link? 😯
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bah! Copy-paste-programming should be more automated. ;-)
I think I'm done there. :-) |
String[] singleFieldStrings = new String[] {"year", "title", "abstract", "month"}; | ||
|
||
// Fields that are accessible in the journal part of the BibJson object | ||
String[] journalSingleFieldStrings = new String[] {"publisher", "number", "volume"}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can just write
String[] journalSingleFieldStrings = {"publisher", "number", "volume"};
instead of
String[] journalSingleFieldStrings = new String[] {"publisher", "number", "volume"};
Looks good to me. |
There is no such property like text-overflow in SWING, is it? 🌟 |
I think Java actually does snip too long texts - if the component has a fixed size. So this does not help here. I'll merge the current state, but a potential improvement would be to define tooltips for the combobox to show some hints what the various abbreviations actually mean... |
8bbac89b21 Update locales-ca-AD.xml (#287) git-subtree-dir: buildres/csl/csl-locales git-subtree-split: 8bbac89b216f551ca3d4f77860818938d678badd
Search for Directory of Open Access Journals. Quite functional, but the remaining things should (probably) be done
Help pageISSN?Better/more error checkingHandle search results with more than 100 entries properlyFill empty methods in DOAJFetcherUpdate status barEnable stopping searchImplements what is discussed in #208