Skip to content
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

Pod local #30

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
9997c73
schema refactor changes; change field type for full_text_link field
magibney Oct 21, 2019
2910e8d
add hooks for indexing other institutions records; and actual indexer…
magibney Dec 6, 2019
9966077
was using wrong oclc function for duke cluster_id
magibney Dec 10, 2019
8757c01
added brown indexer, patterned after duke
magibney Dec 10, 2019
114d4cf
add top-level indexing script for brown
magibney Dec 10, 2019
653f6bb
add stanford indexer and top-level script
magibney Dec 10, 2019
717852e
add cornell indexer and top-level script
magibney Dec 10, 2019
9238412
add columbia indexer and top-level script
magibney Dec 10, 2019
f9c28f8
initial facet UI adaptation for 7 record sources
magibney Dec 10, 2019
972081d
TEMPORARY: query faceting (not field) for multi-source format_f
magibney Dec 11, 2019
e9ed6e9
add princeton indexer, facets, and top-level script
magibney Dec 11, 2019
1478c0d
properly namespace Stanford's ids
magibney Dec 11, 2019
90dc3f4
add better label for link to source context
magibney Dec 11, 2019
fb26988
dynamic record source preferences, etc.
magibney Dec 12, 2019
36e3631
change join filter queries to match solr warming
magibney Dec 17, 2019
e2336db
add tiered dedupe respecting asserted encoding level
magibney Dec 18, 2019
cb777b0
temporary(?) disable/reorder some facets for public demo
magibney Dec 19, 2019
ab64f6f
change catalog landing page Franklin text for POD explanation
magibney Dec 20, 2019
b433349
add Harvard
magibney Dec 20, 2019
2779d91
Add Ivies+ Request button to items without an alma_mms_id
Feb 19, 2020
4ed48d2
add Chicago
magibney Feb 12, 2020
f471622
prevent bloated requests by more carefully deduping dedupe params
magibney Feb 12, 2020
96e832c
modified facet options for local deployment
magibney Feb 19, 2020
7cf6ed0
Updated BD+ to Ivies+ Request for demo
Feb 19, 2020
706aac9
adjustments to facets and link display, per egmowens
magibney Feb 24, 2020
a11e1f3
Added methods to interact with BD API
Mar 6, 2020
f6604fb
Added controller, views, and routes for BD requesting
Mar 6, 2020
86de85b
Set URL for Ivies+ requesting
Mar 6, 2020
b977b9d
Added link to Ivies+ Requests page and changed button handling for un…
Mar 6, 2020
71c9a88
Added additional env vars to nginx conf
Mar 6, 2020
606606a
Temp fix for broken auth
Mar 9, 2020
ac25dd2
Replaced references to Ivies+ with BorrowDirect+
Mar 9, 2020
753fa74
use new tieredDomainDedupe QParser
magibney Sep 9, 2020
b263a29
remove vestigial @@record_sources
magibney Sep 10, 2020
a9a34cb
Merge remote-tracking branch 'origin/master' into pod-local
magibney Sep 21, 2020
4fd2e1a
Merge remote-tracking branch 'origin/master' into pod-local
magibney Sep 21, 2020
ec0a4d0
Merge remote-tracking branch 'origin/master' into pod-local
magibney Sep 22, 2020
7ab485b
Squashed commit of the following:
magibney Sep 22, 2020
68e1154
add faraday (previously transitive dependency); alphabetical
magibney Sep 22, 2020
a0a5ce8
remove RangeLimit references from SearchHistoryController
magibney Sep 22, 2020
bc1f93f
Merge commit '68e47c50b88ec1e9eb08641c3dd847e51fcdc8a4' into pod-local
magibney Oct 22, 2020
4d1c0c5
Merge remote-tracking branch 'origin/master' into pod-local
magibney Oct 22, 2020
e2551da
Merge remote-tracking branch 'origin/master' into pod-local
magibney Mar 2, 2021
bb2ba66
fixup nocirc field for compatibility with new (simplified) schema
magibney Mar 2, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated BD+ to Ivies+ Request for demo
  • Loading branch information
Chris Clement committed Feb 19, 2020
commit 7cf6ed03efa88cafeebe5b9d4212054c765dc737
10 changes: 10 additions & 0 deletions app/assets/javascripts/availability.js.erb
Original file line number Diff line number Diff line change
@@ -223,6 +223,16 @@ $(document).ready(function() {
}
}

// Replace BD+ w/Ivies+ Request for demo purposes; correct when fully implemented
if(globaldata[mmsid]["inventory_type"] == "physical") {
for(i = 0; i < data.length; i++) {
if(data[i]['option_name'] == 'BorrowDirect+') {
data[i]['option_name'] = 'Ivies+ Request';
break;
}
}
}

data.forEach(function(element) {
var containingdiv = $('<div class="request-option-wrapper"></div>');
var highlightable = element['highlightable'] ? ' highlightable' : ''