exlibris-primo 0.1.5 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +1 -1
- data/README.md +111 -0
- data/Rakefile +2 -1
- data/lib/exlibris-primo.rb +4 -14
- data/lib/exlibris/primo.rb +13 -0
- data/lib/exlibris/primo/abstract.rb +28 -0
- data/lib/exlibris/primo/chain_gang/README.md +9 -0
- data/lib/exlibris/primo/chain_gang/base.rb +121 -0
- data/lib/exlibris/primo/chain_gang/record.rb +18 -0
- data/lib/exlibris/primo/chain_gang/search.rb +319 -0
- data/lib/exlibris/primo/chain_gang/user.rb +18 -0
- data/lib/exlibris/primo/config.rb +69 -0
- data/lib/exlibris/primo/eshelf.rb +115 -62
- data/lib/exlibris/primo/facet.rb +40 -0
- data/lib/exlibris/primo/facet_value.rb +40 -0
- data/lib/exlibris/primo/holding.rb +81 -152
- data/lib/exlibris/primo/link.rb +32 -0
- data/lib/exlibris/primo/namespaces.rb +44 -0
- data/lib/exlibris/primo/pnx/dedup_mgr.rb +91 -0
- data/lib/exlibris/primo/pnx/elements.rb +79 -0
- data/lib/exlibris/primo/pnx/frbr.rb +24 -0
- data/lib/exlibris/primo/pnx/holdings.rb +36 -0
- data/lib/exlibris/primo/pnx/links.rb +54 -0
- data/lib/exlibris/primo/pnx/openurl.rb +24 -0
- data/lib/exlibris/primo/pnx/subfields.rb +18 -0
- data/lib/exlibris/primo/record.rb +20 -106
- data/lib/exlibris/primo/request_attributes.rb +28 -0
- data/lib/exlibris/primo/review.rb +46 -0
- data/lib/exlibris/primo/reviews.rb +81 -0
- data/lib/exlibris/primo/search.rb +82 -0
- data/lib/exlibris/primo/source/aleph.rb +77 -31
- data/lib/exlibris/primo/tag.rb +34 -0
- data/lib/exlibris/primo/tags.rb +103 -0
- data/lib/exlibris/primo/version.rb +1 -1
- data/lib/exlibris/primo/web_service/client/base.rb +30 -0
- data/lib/exlibris/primo/web_service/client/base/endpoint.rb +29 -0
- data/lib/exlibris/primo/web_service/client/base/savon_client.rb +24 -0
- data/lib/exlibris/primo/web_service/client/base/savon_config.rb +19 -0
- data/lib/exlibris/primo/web_service/client/base/soap_actions.rb +55 -0
- data/lib/exlibris/primo/web_service/client/base/wsdl.rb +14 -0
- data/lib/exlibris/primo/web_service/client/eshelf.rb +22 -0
- data/lib/exlibris/primo/web_service/client/reviews.rb +15 -0
- data/lib/exlibris/primo/web_service/client/search.rb +15 -0
- data/lib/exlibris/primo/web_service/client/tags.rb +14 -0
- data/lib/exlibris/primo/web_service/request/base.rb +77 -0
- data/lib/exlibris/primo/web_service/request/base/base_elements.rb +71 -0
- data/lib/exlibris/primo/web_service/request/base/call.rb +19 -0
- data/lib/exlibris/primo/web_service/request/base/client.rb +45 -0
- data/lib/exlibris/primo/web_service/request/base/soap_action.rb +29 -0
- data/lib/exlibris/primo/web_service/request/eshelf.rb +71 -0
- data/lib/exlibris/primo/web_service/request/reviews.rb +57 -0
- data/lib/exlibris/primo/web_service/request/search.rb +49 -0
- data/lib/exlibris/primo/web_service/request/search/display_fields.rb +30 -0
- data/lib/exlibris/primo/web_service/request/search/languages.rb +32 -0
- data/lib/exlibris/primo/web_service/request/search/location.rb +15 -0
- data/lib/exlibris/primo/web_service/request/search/locations.rb +33 -0
- data/lib/exlibris/primo/web_service/request/search/query_term.rb +43 -0
- data/lib/exlibris/primo/web_service/request/search/query_terms.rb +40 -0
- data/lib/exlibris/primo/web_service/request/search/search_elements.rb +97 -0
- data/lib/exlibris/primo/web_service/request/search/sort_bys.rb +32 -0
- data/lib/exlibris/primo/web_service/request/tags.rb +56 -0
- data/lib/exlibris/primo/web_service/response/base.rb +28 -0
- data/lib/exlibris/primo/web_service/response/base/error.rb +25 -0
- data/lib/exlibris/primo/web_service/response/base/util.rb +19 -0
- data/lib/exlibris/primo/web_service/response/did_u_mean.rb +17 -0
- data/lib/exlibris/primo/web_service/response/eshelf.rb +68 -0
- data/lib/exlibris/primo/web_service/response/facets.rb +21 -0
- data/lib/exlibris/primo/web_service/response/records.rb +17 -0
- data/lib/exlibris/primo/web_service/response/reviews.rb +49 -0
- data/lib/exlibris/primo/web_service/response/search.rb +36 -0
- data/lib/exlibris/primo/web_service/response/search_stats.rb +48 -0
- data/lib/exlibris/primo/web_service/response/tags.rb +54 -0
- data/lib/exlibris/primo/write_attributes.rb +38 -0
- data/lib/exlibris/primo/xml_util.rb +63 -0
- data/test/{unit/eshelf_test.rb → bak/eshelf_test.rb.bak} +0 -0
- data/test/{unit/record_test.rb → bak/record_test.rb.bak} +0 -0
- data/test/{unit/searcher_test.rb → bak/searcher_test.rb.bak} +0 -0
- data/test/{unit/web_service_test.rb → bak/web_service_test.rb.bak} +0 -0
- data/test/config_test.rb +72 -0
- data/test/eshelf_test.rb +66 -0
- data/test/exlibris-primo_test.rb +0 -1
- data/test/facet_test.rb +27 -0
- data/test/facet_value_test.rb +62 -0
- data/test/holding_test.rb +26 -0
- data/test/link_test.rb +42 -0
- data/test/pnx/dedup_mgr_test.rb +16 -0
- data/test/pnx/elements_test.rb +16 -0
- data/test/pnx/frbr_test.rb +12 -0
- data/test/pnx/holdings_test.rb +53 -0
- data/test/pnx/links_test.rb +44 -0
- data/test/pnx/openurl_test.rb +10 -0
- data/test/record_test.rb +11 -0
- data/test/review_test.rb +15 -0
- data/test/reviews_test.rb +50 -0
- data/test/search_test.rb +328 -0
- data/test/source/aleph_test.rb +52 -0
- data/test/support/config.yml +35 -0
- data/test/tag_test.rb +12 -0
- data/test/tags_test.rb +65 -0
- data/test/test_helper.rb +536 -4
- data/test/vcr_cassettes/client_action_no_arguments.yml +38 -0
- data/test/vcr_cassettes/client_get_all_my_reviews.yml +49 -0
- data/test/vcr_cassettes/client_get_all_my_tags.yml +49 -0
- data/test/vcr_cassettes/client_get_eshelf.yml +13812 -0
- data/test/vcr_cassettes/client_get_record.yml +222 -0
- data/test/vcr_cassettes/client_get_reviews.yml +39 -0
- data/test/vcr_cassettes/client_get_tags.yml +42 -0
- data/test/vcr_cassettes/client_search_brief_isbn.yml +288 -0
- data/test/vcr_cassettes/client_search_brief_issn.yml +282 -0
- data/test/vcr_cassettes/client_too_many_arguments.yml +38 -0
- data/test/vcr_cassettes/eshelf.yml +13845 -0
- data/test/vcr_cassettes/eshelf_add_folder.yml +109 -0
- data/test/vcr_cassettes/eshelf_add_record.yml +14237 -0
- data/test/vcr_cassettes/eshelf_add_records.yml +14156 -0
- data/test/vcr_cassettes/eshelf_basket_id.yml +36 -0
- data/test/vcr_cassettes/eshelf_records.yml +13460 -0
- data/test/vcr_cassettes/eshelf_remove_folder.yml +76 -0
- data/test/vcr_cassettes/eshelf_remove_record.yml +13500 -0
- data/test/vcr_cassettes/eshelf_remove_records.yml +13741 -0
- data/test/vcr_cassettes/{web_service_single_document.yml → remote_record_call.yml} +12 -23
- data/test/vcr_cassettes/{searcher_dedupmrg_by_id.yml → remote_record_dedupmgr.yml} +19 -31
- data/test/vcr_cassettes/request_add_folder_to_eshelf.yml +43 -0
- data/test/vcr_cassettes/request_add_to_eshelf.yml +43 -0
- data/test/vcr_cassettes/request_did_u_mean_enabled.yml +48 -0
- data/test/vcr_cassettes/request_full_view.yml +222 -0
- data/test/vcr_cassettes/request_get_eshelf.yml +13812 -0
- data/test/vcr_cassettes/request_get_eshelf_structure.yml +36 -0
- data/test/vcr_cassettes/request_get_reviews.yml +39 -0
- data/test/vcr_cassettes/request_get_tags.yml +42 -0
- data/test/vcr_cassettes/request_remove_folder_from_eshelf.yml +43 -0
- data/test/vcr_cassettes/request_remove_from_eshelf.yml +43 -0
- data/test/vcr_cassettes/request_search_author.yml +1258 -0
- data/test/vcr_cassettes/request_search_did_u_mean.yml +48 -0
- data/test/vcr_cassettes/request_search_genre.yml +1321 -0
- data/test/vcr_cassettes/request_search_isbn.yml +288 -0
- data/test/vcr_cassettes/request_search_issn.yml +282 -0
- data/test/vcr_cassettes/request_search_locations.yml +288 -0
- data/test/vcr_cassettes/request_search_title.yml +1024 -0
- data/test/vcr_cassettes/request_search_title_author_genre.yml +708 -0
- data/test/vcr_cassettes/response_add_folder_to_eshelf.yml +43 -0
- data/test/vcr_cassettes/response_add_review.yml +39 -0
- data/test/vcr_cassettes/response_add_tag.yml +39 -0
- data/test/vcr_cassettes/response_add_to_eshelf.yml +43 -0
- data/test/vcr_cassettes/response_did_u_mean_disabled.yml +46 -0
- data/test/vcr_cassettes/response_did_u_mean_enabled.yml +48 -0
- data/test/vcr_cassettes/response_full_view.yml +222 -0
- data/test/vcr_cassettes/response_get_all_my_reviews.yml +49 -0
- data/test/vcr_cassettes/response_get_all_my_tags.yml +49 -0
- data/test/vcr_cassettes/response_get_eshelf.yml +13633 -0
- data/test/vcr_cassettes/response_get_eshelf_structure.yml +36 -0
- data/test/vcr_cassettes/response_get_reviews.yml +39 -0
- data/test/vcr_cassettes/response_get_reviews_by_rating.yml +49 -0
- data/test/vcr_cassettes/response_get_reviews_for_record.yml +39 -0
- data/test/vcr_cassettes/response_get_tags.yml +42 -0
- data/test/vcr_cassettes/response_get_tags_for_record.yml +42 -0
- data/test/vcr_cassettes/response_remove_folder_from_eshelf.yml +43 -0
- data/test/vcr_cassettes/response_remove_from_eshelf.yml +43 -0
- data/test/vcr_cassettes/response_remove_review.yml +39 -0
- data/test/vcr_cassettes/response_remove_tag.yml +39 -0
- data/test/vcr_cassettes/response_remove_user_tags.yml +39 -0
- data/test/vcr_cassettes/response_search.yml +288 -0
- data/test/vcr_cassettes/response_search_did_u_mean.yml +48 -0
- data/test/vcr_cassettes/reviews.yml +49 -0
- data/test/vcr_cassettes/reviews_add_review.yml +39 -0
- data/test/vcr_cassettes/reviews_check_empty_reviews_first.yml +39 -0
- data/test/vcr_cassettes/reviews_check_empty_reviews_last.yml +39 -0
- data/test/vcr_cassettes/reviews_rating.yml +168 -0
- data/test/vcr_cassettes/reviews_record.yml +49 -0
- data/test/vcr_cassettes/reviews_remove_review.yml +39 -0
- data/test/vcr_cassettes/reviews_reviews.yml +49 -0
- data/test/vcr_cassettes/reviews_user.yml +58 -0
- data/test/vcr_cassettes/search_chaining_author_title.yml +938 -0
- data/test/vcr_cassettes/search_chaining_contains_any.yml +1453 -0
- data/test/vcr_cassettes/search_chaining_contains_author_starts_with_title.yml +1055 -0
- data/test/vcr_cassettes/search_chaining_isbn.yml +288 -0
- data/test/vcr_cassettes/search_chaining_page_size_author.yml +5933 -0
- data/test/vcr_cassettes/search_did_u_mean.yml +48 -0
- data/test/vcr_cassettes/search_enable_highlighting.yml +1337 -0
- data/test/vcr_cassettes/search_isbn.yml +288 -0
- data/test/vcr_cassettes/search_languages.yml +1332 -0
- data/test/vcr_cassettes/search_locations.yml +1440 -0
- data/test/vcr_cassettes/search_record_id.yml +222 -0
- data/test/vcr_cassettes/search_record_id_chaining.yml +222 -0
- data/test/vcr_cassettes/search_sort_by.yml +1289 -0
- data/test/vcr_cassettes/search_sort_by_locations.yml +1387 -0
- data/test/vcr_cassettes/tags.yml +56 -0
- data/test/vcr_cassettes/tags_add_extra_tag.yml +39 -0
- data/test/vcr_cassettes/tags_add_tag.yml +39 -0
- data/test/vcr_cassettes/tags_add_tags.yml +111 -0
- data/test/vcr_cassettes/tags_check_1_tags.yml +56 -0
- data/test/vcr_cassettes/tags_check_2_tags.yml +68 -0
- data/test/vcr_cassettes/tags_check_empty_tags_first.yml +42 -0
- data/test/vcr_cassettes/tags_check_empty_tags_last.yml +42 -0
- data/test/vcr_cassettes/tags_remove_tag.yml +39 -0
- data/test/vcr_cassettes/tags_remove_tags.yml +111 -0
- data/test/vcr_cassettes/tags_remove_user_tags.yml +39 -0
- data/test/vcr_cassettes/tags_tags.yml +104 -0
- data/test/vcr_cassettes/tags_user.yml +73 -0
- data/test/web_service/client/abstract_test.rb +29 -0
- data/test/web_service/client/eshelf_test.rb +22 -0
- data/test/web_service/client/reviews_test.rb +31 -0
- data/test/web_service/client/savon_client_test.rb +17 -0
- data/test/web_service/client/search_benchmarks.rb +29 -0
- data/test/web_service/client/search_test.rb +44 -0
- data/test/web_service/client/soap_actions_test.rb +45 -0
- data/test/web_service/client/tags_test.rb +31 -0
- data/test/web_service/request/abstract_test.rb +68 -0
- data/test/web_service/request/base_elements_test.rb +231 -0
- data/test/web_service/request/build_xml_test.rb +23 -0
- data/test/web_service/request/client_test.rb +53 -0
- data/test/web_service/request/eshelf_test.rb +26 -0
- data/test/web_service/request/location_test.rb +25 -0
- data/test/web_service/request/query_term_test.rb +29 -0
- data/test/web_service/request/reviews_test.rb +27 -0
- data/test/web_service/request/search_test.rb +234 -0
- data/test/web_service/request/soap_action_test.rb +120 -0
- data/test/web_service/request/tags_test.rb +27 -0
- data/test/web_service/response/abstract_test.rb +200 -0
- data/test/web_service/response/did_u_mean_test.rb +44 -0
- data/test/web_service/response/error_test.rb +31 -0
- data/test/web_service/response/eshelf_test.rb +28 -0
- data/test/web_service/response/facets_test.rb +42 -0
- data/test/web_service/response/records_test.rb +56 -0
- data/test/web_service/response/reviews_test.rb +28 -0
- data/test/web_service/response/search_stats_test.rb +75 -0
- data/test/web_service/response/search_test.rb +40 -0
- data/test/web_service/response/tags_test.rb +28 -0
- data/test/xml_util_test.rb +23 -0
- metadata +456 -114
- data/README.rdoc +0 -68
- data/lib/exlibris/primo/related_link.rb +0 -20
- data/lib/exlibris/primo/rsrc.rb +0 -20
- data/lib/exlibris/primo/searcher.rb +0 -277
- data/lib/exlibris/primo/toc.rb +0 -20
- data/lib/exlibris/primo/web_service.rb +0 -203
- data/test/unit/searcher_benchmarks.rb +0 -74
- data/test/unit/web_service_benchmarks.rb +0 -58
- data/test/vcr_cassettes/eshelf_add_invalid_records.yml +0 -107
- data/test/vcr_cassettes/eshelf_add_same_record_twice.yml +0 -159
- data/test/vcr_cassettes/eshelf_add_to_empty_basket.yml +0 -107
- data/test/vcr_cassettes/eshelf_add_to_invalid_basket.yml +0 -55
- data/test/vcr_cassettes/eshelf_invalid_eshelf.yml +0 -55
- data/test/vcr_cassettes/eshelf_invalid_institution.yml +0 -55
- data/test/vcr_cassettes/eshelf_valid_eshelf.yml +0 -2553
- data/test/vcr_cassettes/eshelf_valid_eshelf_structure.yml +0 -47
- data/test/vcr_cassettes/record.yml +0 -212
- data/test/vcr_cassettes/record_invalid_record.yml +0 -55
- data/test/vcr_cassettes/record_sub_record.yml +0 -212
- data/test/vcr_cassettes/record_valid_record.yml +0 -212
- data/test/vcr_cassettes/searcher_base_holdings_by_id.yml +0 -212
- data/test/vcr_cassettes/searcher_diacritics1_by_id.yml +0 -207
- data/test/vcr_cassettes/searcher_diacritics2_by_id.yml +0 -232
- data/test/vcr_cassettes/searcher_holdings_by_id.yml +0 -212
- data/test/vcr_cassettes/searcher_invalid_id.yml +0 -55
- data/test/vcr_cassettes/searcher_rsrcs_by_id.yml +0 -270
- data/test/vcr_cassettes/searcher_search_by_isbn.yml +0 -278
- data/test/vcr_cassettes/searcher_search_by_issn.yml +0 -297
- data/test/vcr_cassettes/searcher_search_by_title_author_genre.yml +0 -671
- data/test/vcr_cassettes/searcher_test_bug_1361.yml +0 -224
- data/test/vcr_cassettes/searcher_test_problem_by_id.yml +0 -194
- data/test/vcr_cassettes/searcher_tocs_by_id.yml +0 -217
- data/test/vcr_cassettes/web_service_author_search.yml +0 -1269
- data/test/vcr_cassettes/web_service_bogus_200.yml +0 -392
- data/test/vcr_cassettes/web_service_brief_search.yml +0 -299
- data/test/vcr_cassettes/web_service_get_eshelf.yml +0 -11823
- data/test/vcr_cassettes/web_service_get_eshelf_structure_search.yml +0 -47
- data/test/vcr_cassettes/web_service_invalid_document.yml +0 -54
- data/test/vcr_cassettes/web_service_isbn_search.yml +0 -299
- data/test/vcr_cassettes/web_service_issn_search.yml +0 -293
- data/test/vcr_cassettes/web_service_problem_document.yml +0 -193
- data/test/vcr_cassettes/web_service_title_author_genre_search.yml +0 -719
- data/test/vcr_cassettes/web_service_title_search.yml +0 -1035
@@ -0,0 +1,288 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher
|
6
|
+
body:
|
7
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><searchBrief><request><![CDATA[<searchRequest xmlns="http://www.exlibris.com/primo/xsd/wsRequest" xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents"><PrimoSearchRequest xmlns="http://www.exlibris.com/primo/xsd/search/request"><QueryTerms><BoolOpeator>AND</BoolOpeator><QueryTerm><IndexField>isbn</IndexField><PrecisionOperator>exact</PrecisionOperator><Value>0143039008</Value></QueryTerm></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled></PrimoSearchRequest><institution>NYU</institution></searchRequest>]]></request></searchBrief></env:Body></env:Envelope>
|
8
|
+
headers:
|
9
|
+
Accept:
|
10
|
+
- "*/*"
|
11
|
+
Content-Type:
|
12
|
+
- text/xml;charset=UTF-8
|
13
|
+
Content-Length:
|
14
|
+
- "924"
|
15
|
+
Soapaction:
|
16
|
+
- "\"searchBrief\""
|
17
|
+
response:
|
18
|
+
status:
|
19
|
+
code: 200
|
20
|
+
message: OK
|
21
|
+
headers:
|
22
|
+
Date:
|
23
|
+
- Thu, 10 Jan 2013 17:31:45 GMT
|
24
|
+
Transfer-Encoding:
|
25
|
+
- chunked
|
26
|
+
X-Powered-By:
|
27
|
+
- Servlet 2.5; JBoss-5.0/JBossWeb-2.1
|
28
|
+
Content-Type:
|
29
|
+
- text/xml;charset=utf-8
|
30
|
+
Server:
|
31
|
+
- Apache-Coyote/1.1
|
32
|
+
body:
|
33
|
+
string: |-
|
34
|
+
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><searchBriefResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><searchBriefReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><SEGMENTS xmlns="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
35
|
+
<JAGROOT>
|
36
|
+
<RESULT>
|
37
|
+
<QUERYTRANSFORMS/>
|
38
|
+
<FACETLIST ACCURATE_COUNTERS="true">
|
39
|
+
<FACET NAME="creator" COUNT="1">
|
40
|
+
<FACET_VALUES KEY="Greene, G" VALUE="1"/>
|
41
|
+
</FACET>
|
42
|
+
<FACET NAME="lcc" COUNT="1">
|
43
|
+
<FACET_VALUES KEY="P - Language and literature." VALUE="1"/>
|
44
|
+
</FACET>
|
45
|
+
<FACET NAME="lang" COUNT="1">
|
46
|
+
<FACET_VALUES KEY="eng" VALUE="1"/>
|
47
|
+
</FACET>
|
48
|
+
<FACET NAME="rtype" COUNT="1">
|
49
|
+
<FACET_VALUES KEY="books" VALUE="1"/>
|
50
|
+
</FACET>
|
51
|
+
<FACET NAME="topic" COUNT="6">
|
52
|
+
<FACET_VALUES KEY="Travelers" VALUE="1"/>
|
53
|
+
<FACET_VALUES KEY="Retirees" VALUE="1"/>
|
54
|
+
<FACET_VALUES KEY="Aunts" VALUE="1"/>
|
55
|
+
<FACET_VALUES KEY="British" VALUE="1"/>
|
56
|
+
<FACET_VALUES KEY="Older women" VALUE="1"/>
|
57
|
+
<FACET_VALUES KEY="Women travelers" VALUE="1"/>
|
58
|
+
</FACET>
|
59
|
+
<FACET NAME="pfilter" COUNT="1">
|
60
|
+
<FACET_VALUES KEY="books" VALUE="1"/>
|
61
|
+
</FACET>
|
62
|
+
<FACET NAME="creationdate" COUNT="1">
|
63
|
+
<FACET_VALUES KEY="2004" VALUE="1"/>
|
64
|
+
</FACET>
|
65
|
+
<FACET NAME="domain" COUNT="1">
|
66
|
+
<FACET_VALUES KEY="BOBST" VALUE="1"/>
|
67
|
+
</FACET>
|
68
|
+
<FACET NAME="genre" COUNT="2">
|
69
|
+
<FACET_VALUES KEY="Fiction" VALUE="1"/>
|
70
|
+
<FACET_VALUES KEY="Humorous stories" VALUE="1"/>
|
71
|
+
</FACET>
|
72
|
+
<FACET NAME="library" COUNT="1">
|
73
|
+
<FACET_VALUES KEY="BOBST" VALUE="1"/>
|
74
|
+
</FACET>
|
75
|
+
<FACET NAME="local1" COUNT="1">
|
76
|
+
<FACET_VALUES KEY="Main Collection" VALUE="1"/>
|
77
|
+
</FACET>
|
78
|
+
</FACETLIST>
|
79
|
+
<DOCSET HIT_TIME="94" TOTALHITS="1" FIRSTHIT="1" LASTHIT="1" TOTAL_TIME="218" IS_LOCAL="true">
|
80
|
+
<DOC ID="3712785" RANK="1.0" NO="1" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
81
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
82
|
+
<record>
|
83
|
+
<control>
|
84
|
+
<sourcerecordid>000062856</sourcerecordid>
|
85
|
+
<sourceid>nyu_aleph</sourceid>
|
86
|
+
<recordid>nyu_aleph000062856</recordid>
|
87
|
+
<originalsourceid>NYU01</originalsourceid>
|
88
|
+
<ilsapiid>NYU01000062856</ilsapiid>
|
89
|
+
<sourceformat>MARC21</sourceformat>
|
90
|
+
<sourcesystem>Aleph</sourcesystem>
|
91
|
+
</control>
|
92
|
+
<display>
|
93
|
+
<type>book</type>
|
94
|
+
<title>Travels with my aunt</title>
|
95
|
+
<creator>Graham Greene 1904-1991.</creator>
|
96
|
+
<edition>Deluxe ed.</edition>
|
97
|
+
<publisher>New York : Penguin Books</publisher>
|
98
|
+
<creationdate>2004</creationdate>
|
99
|
+
<format>xvi, 254 p. ; 22 cm.</format>
|
100
|
+
<identifier>$$Cisbn$$V0143039008; $$Cisbn$$V9780143039006</identifier>
|
101
|
+
<subject>British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories</subject>
|
102
|
+
<language>eng</language>
|
103
|
+
<relation>$$Cseries $$VPenguin classics</relation>
|
104
|
+
<source>nyu_aleph</source>
|
105
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 2004 )$$Sunavailable$$31$$41$$5N$$61$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
106
|
+
<lds02>nyu_aleph000062856</lds02>
|
107
|
+
<lds01>NYU</lds01>
|
108
|
+
<availinstitution>$$INYU$$Sunavailable</availinstitution>
|
109
|
+
<availpnx>unavailable</availpnx>
|
110
|
+
<version>2</version>
|
111
|
+
</display>
|
112
|
+
<links>
|
113
|
+
<openurl>$$Topenurl_journal</openurl>
|
114
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
115
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
116
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
117
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
118
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
119
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
120
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
121
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
122
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
123
|
+
</links>
|
124
|
+
<search>
|
125
|
+
<creatorcontrib>Graham, Greene 1904-1991.</creatorcontrib>
|
126
|
+
<creatorcontrib>Greene, Graham, 1904-1991.</creatorcontrib>
|
127
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
128
|
+
<creatorcontrib>Graham Greene ; introduction by Gloria Emerson.</creatorcontrib>
|
129
|
+
<creatorcontrib>Greene, Henry Graham, 1904-1991</creatorcontrib>
|
130
|
+
<creatorcontrib>Gŭrin, Gŭreŏm, 1904-1991</creatorcontrib>
|
131
|
+
<creatorcontrib>Grin, Greham, 1904-1991</creatorcontrib>
|
132
|
+
<creatorcontrib>Grīna, Grāhama, 1904-1991</creatorcontrib>
|
133
|
+
<creatorcontrib>Grin, Grėm, 1904-1991</creatorcontrib>
|
134
|
+
<creatorcontrib>格拉姆・葛林, 1904-1991</creatorcontrib>
|
135
|
+
<creatorcontrib>Grīns, Greiems, 1904-1991</creatorcontrib>
|
136
|
+
<creatorcontrib>Grīns, G. (Greiems), 1904-1991</creatorcontrib>
|
137
|
+
<title>Travels with my aunt /</title>
|
138
|
+
<subject>British Foreign countries Fiction</subject>
|
139
|
+
<subject>Women travelers Fiction</subject>
|
140
|
+
<subject>Older women Fiction</subject>
|
141
|
+
<subject>Travelers Fiction</subject>
|
142
|
+
<subject>Retirees Fiction</subject>
|
143
|
+
<subject>Aunts Fiction</subject>
|
144
|
+
<subject>Humorous stories</subject>
|
145
|
+
<subject>People, Retired</subject>
|
146
|
+
<subject>Retired persons</subject>
|
147
|
+
<subject>Retired people</subject>
|
148
|
+
<subject>Travelers, Women</subject>
|
149
|
+
<subject>Britishers</subject>
|
150
|
+
<subject>British people</subject>
|
151
|
+
<subject>Britons (British)</subject>
|
152
|
+
<subject>Brits</subject>
|
153
|
+
<subject>Aged women</subject>
|
154
|
+
<general>Penguin Books,</general>
|
155
|
+
<general>"Graham Greene centennial, 1904-2004"--Cover.</general>
|
156
|
+
<sourceid>nyu_aleph</sourceid>
|
157
|
+
<recordid>nyu_aleph000062856</recordid>
|
158
|
+
<isbn>0143039008</isbn>
|
159
|
+
<isbn>9780143039006</isbn>
|
160
|
+
<rsrctype>book</rsrctype>
|
161
|
+
<creationdate>2004</creationdate>
|
162
|
+
<creationdate>1969</creationdate>
|
163
|
+
<addtitle>Penguin classics</addtitle>
|
164
|
+
<searchscope>BOBST</searchscope>
|
165
|
+
<searchscope>BOBST Main Collection</searchscope>
|
166
|
+
<searchscope>nyu_aleph</searchscope>
|
167
|
+
<searchscope>NYU</searchscope>
|
168
|
+
<scope>BOBST</scope>
|
169
|
+
<scope>BOBST Main Collection</scope>
|
170
|
+
<scope>nyu_aleph</scope>
|
171
|
+
<scope>NYU</scope>
|
172
|
+
<lsr01>PR6013.R44 T7 2004</lsr01>
|
173
|
+
<lsr01>PR6013 .R44 T7 2004</lsr01>
|
174
|
+
<lsr02>Penguin Books,</lsr02>
|
175
|
+
</search>
|
176
|
+
<sort>
|
177
|
+
<title>Travels with my aunt /</title>
|
178
|
+
<creationdate>2004</creationdate>
|
179
|
+
<author>Greene, Graham, 1904-1991.</author>
|
180
|
+
<lso01>2004</lso01>
|
181
|
+
</sort>
|
182
|
+
<facets>
|
183
|
+
<language>eng</language>
|
184
|
+
<creationdate>2004</creationdate>
|
185
|
+
<topic>British–Foreign countries–Fiction</topic>
|
186
|
+
<topic>Women travelers–Fiction</topic>
|
187
|
+
<topic>Older women–Fiction</topic>
|
188
|
+
<topic>Travelers–Fiction</topic>
|
189
|
+
<topic>Retirees–Fiction</topic>
|
190
|
+
<topic>Aunts–Fiction</topic>
|
191
|
+
<collection>BOBST</collection>
|
192
|
+
<prefilter>books</prefilter>
|
193
|
+
<rsrctype>books</rsrctype>
|
194
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
195
|
+
<genre>Fiction</genre>
|
196
|
+
<genre>Humorous stories</genre>
|
197
|
+
<library>BOBST</library>
|
198
|
+
<lfc01>Main Collection</lfc01>
|
199
|
+
<classificationlcc>P - Language and literature.–English literature</classificationlcc>
|
200
|
+
<frbrgroupid>49340863</frbrgroupid>
|
201
|
+
<frbrtype>5</frbrtype>
|
202
|
+
</facets>
|
203
|
+
<dedup>
|
204
|
+
<t>1</t>
|
205
|
+
<c1>2004559272</c1>
|
206
|
+
<c2>0143039008;9780143039006</c2>
|
207
|
+
<c3>travelswithmyaunt</c3>
|
208
|
+
<c4>2004</c4>
|
209
|
+
<f1>2004559272</f1>
|
210
|
+
<f3>0143039008;9780143039006</f3>
|
211
|
+
<f5>travelswithmyaunt</f5>
|
212
|
+
<f6>2004</f6>
|
213
|
+
<f7>travels with my aunt</f7>
|
214
|
+
<f8>nyu</f8>
|
215
|
+
<f9>xvi, 254 p. ;</f9>
|
216
|
+
<f10>penguin books</f10>
|
217
|
+
<f11>greene graham 1904 1991</f11>
|
218
|
+
</dedup>
|
219
|
+
<frbr>
|
220
|
+
<t>1</t>
|
221
|
+
<k1>$$Kgreene graham 1904 1991$$AA</k1>
|
222
|
+
<k3>$$Kbooktravels with my aunt$$AT</k3>
|
223
|
+
</frbr>
|
224
|
+
<delivery>
|
225
|
+
<institution>NYU</institution>
|
226
|
+
<delcategory>Physical Item</delcategory>
|
227
|
+
</delivery>
|
228
|
+
<enrichment>
|
229
|
+
<classificationlcc>PR6013.R44</classificationlcc>
|
230
|
+
</enrichment>
|
231
|
+
<ranking>
|
232
|
+
<booster1>1</booster1>
|
233
|
+
<booster2>1</booster2>
|
234
|
+
</ranking>
|
235
|
+
<addata>
|
236
|
+
<aulast>Greene</aulast>
|
237
|
+
<aufirst>Graham,</aufirst>
|
238
|
+
<au>Greene, Graham, 1904-1991</au>
|
239
|
+
<btitle>Travels with my aunt</btitle>
|
240
|
+
<seriestitle>Penguin classics</seriestitle>
|
241
|
+
<date>2004</date>
|
242
|
+
<risdate>2004.</risdate>
|
243
|
+
<isbn>0143039008</isbn>
|
244
|
+
<isbn>9780143039006</isbn>
|
245
|
+
<format>book</format>
|
246
|
+
<genre>book</genre>
|
247
|
+
<ristype>BOOK</ristype>
|
248
|
+
<notes>Includes bibliographical references (p. xv-xvi).</notes>
|
249
|
+
<cop>New York</cop>
|
250
|
+
<pub>Penguin Books</pub>
|
251
|
+
<oclcid>56781200</oclcid>
|
252
|
+
<lccn>2004559272</lccn>
|
253
|
+
<lad01>BOBST</lad01>
|
254
|
+
<lad01>Physical Item</lad01>
|
255
|
+
</addata>
|
256
|
+
</record>
|
257
|
+
</PrimoNMBib>
|
258
|
+
<GETIT deliveryCategory="Physical Item" GetIt1="http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000062856" GetIt2="https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-01-10T12%3A31%3A46IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt&amp;rft.aulast=Greene&amp;rft.aufirst=Graham%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Greene%2C%20Graham%2C%201904-1991&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Penguin%20Books&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0143039008&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000062856&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000062856&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
259
|
+
<LIBRARIES>
|
260
|
+
<LIBRARY>
|
261
|
+
<institution>NYU</institution>
|
262
|
+
<library>BOBST</library>
|
263
|
+
<status>unavailable</status>
|
264
|
+
<collection>Main Collection</collection>
|
265
|
+
<callNumber>(PR6013.R44 T7 2004 )</callNumber>
|
266
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000062856</url>
|
267
|
+
</LIBRARY>
|
268
|
+
</LIBRARIES>
|
269
|
+
<LINKS>
|
270
|
+
<openurl><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A46IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Penguin%20Books&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=0143039008&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph000062856&rft.eisbn=&rft_dat=<nyu_aleph>000062856</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
271
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=000062856</backlink>
|
272
|
+
<thumbnail>http://images.amazon.com/images/P/0143039008.01._SSTHUM_.jpg</thumbnail>
|
273
|
+
<linktotoc>http://www.amazon.com/gp/reader/0143039008</linktotoc>
|
274
|
+
<openurlfulltext><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A46IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Penguin%20Books&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=0143039008&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>000062856</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
275
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000062856</linktoholdings>
|
276
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph000062856?institution=NYU&amp;persistent</linktoreview>
|
277
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=0143039008</linktouc>
|
278
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A0143039008</linktouc>
|
279
|
+
</LINKS>
|
280
|
+
</DOC>
|
281
|
+
</DOCSET>
|
282
|
+
</RESULT>
|
283
|
+
<searchToken>0</searchToken>
|
284
|
+
</JAGROOT>
|
285
|
+
</SEGMENTS></searchBriefReturn></searchBriefResponse></soapenv:Body></soapenv:Envelope>
|
286
|
+
http_version:
|
287
|
+
recorded_at: Thu, 10 Jan 2013 17:31:46 GMT
|
288
|
+
recorded_with: VCR 2.3.0
|
@@ -0,0 +1,1332 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher
|
6
|
+
body:
|
7
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsdl="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><searchBrief><request><![CDATA[<searchRequest xmlns="http://www.exlibris.com/primo/xsd/wsRequest" xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents"><PrimoSearchRequest xmlns="http://www.exlibris.com/primo/xsd/search/request"><QueryTerms><BoolOpeator>AND</BoolOpeator><QueryTerm><IndexField>title</IndexField><PrecisionOperator>contains</PrecisionOperator><Value>digital divide</Value></QueryTerm></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled><Languages><Language>en</Language></Languages></PrimoSearchRequest><institution>NYU</institution></searchRequest>]]></request></searchBrief></env:Body></env:Envelope>
|
8
|
+
headers:
|
9
|
+
Accept:
|
10
|
+
- "*/*"
|
11
|
+
Content-Type:
|
12
|
+
- text/xml;charset=UTF-8
|
13
|
+
Content-Length:
|
14
|
+
- "978"
|
15
|
+
Soapaction:
|
16
|
+
- "\"searchBrief\""
|
17
|
+
response:
|
18
|
+
status:
|
19
|
+
code: 200
|
20
|
+
message: OK
|
21
|
+
headers:
|
22
|
+
Date:
|
23
|
+
- Thu, 10 Jan 2013 17:31:47 GMT
|
24
|
+
Transfer-Encoding:
|
25
|
+
- chunked
|
26
|
+
X-Powered-By:
|
27
|
+
- Servlet 2.5; JBoss-5.0/JBossWeb-2.1
|
28
|
+
Content-Type:
|
29
|
+
- text/xml;charset=utf-8
|
30
|
+
Server:
|
31
|
+
- Apache-Coyote/1.1
|
32
|
+
body:
|
33
|
+
string: |-
|
34
|
+
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><searchBriefResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><searchBriefReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><SEGMENTS xmlns="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
35
|
+
<JAGROOT>
|
36
|
+
<RESULT>
|
37
|
+
<QUERYTRANSFORMS/>
|
38
|
+
<FACETLIST ACCURATE_COUNTERS="true">
|
39
|
+
<FACET NAME="creator" COUNT="88">
|
40
|
+
<FACET_VALUES KEY="Leigh, P" VALUE="1"/>
|
41
|
+
<FACET_VALUES KEY="Maurrasse, D" VALUE="1"/>
|
42
|
+
<FACET_VALUES KEY="Monroe, B" VALUE="1"/>
|
43
|
+
<FACET_VALUES KEY="Disher, T" VALUE="1"/>
|
44
|
+
<FACET_VALUES KEY="Zhang, T" VALUE="1"/>
|
45
|
+
<FACET_VALUES KEY="Samuels, H" VALUE="1"/>
|
46
|
+
<FACET_VALUES KEY="Latham, R" VALUE="1"/>
|
47
|
+
<FACET_VALUES KEY="Sassen, S" VALUE="1"/>
|
48
|
+
<FACET_VALUES KEY="American Ceramic Society" VALUE="1"/>
|
49
|
+
<FACET_VALUES KEY="Overseas Private Investment Corporation" VALUE="1"/>
|
50
|
+
<FACET_VALUES KEY="St. Amant" VALUE="1"/>
|
51
|
+
<FACET_VALUES KEY="Wilson, C" VALUE="1"/>
|
52
|
+
<FACET_VALUES KEY="Cammaerts, B" VALUE="1"/>
|
53
|
+
<FACET_VALUES KEY="Solomon, G" VALUE="1"/>
|
54
|
+
<FACET_VALUES KEY="Steyn, J" VALUE="1"/>
|
55
|
+
<FACET_VALUES KEY="Latifah" VALUE="1"/>
|
56
|
+
<FACET_VALUES KEY="William Davidson Institute" VALUE="1"/>
|
57
|
+
<FACET_VALUES KEY="Studio Miramar" VALUE="2"/>
|
58
|
+
<FACET_VALUES KEY="Nulens, G" VALUE="1"/>
|
59
|
+
<FACET_VALUES KEY="Peters, L" VALUE="1"/>
|
60
|
+
<FACET_VALUES KEY="Allen, N" VALUE="1"/>
|
61
|
+
<FACET_VALUES KEY="Crawford, R" VALUE="1"/>
|
62
|
+
<FACET_VALUES KEY="Jussawalla, M" VALUE="1"/>
|
63
|
+
<FACET_VALUES KEY="Olaniran, B" VALUE="1"/>
|
64
|
+
<FACET_VALUES KEY="Sweeney, Michael" VALUE="1"/>
|
65
|
+
<FACET_VALUES KEY="Bolt, D" VALUE="3"/>
|
66
|
+
<FACET_VALUES KEY="Garibaldi, P" VALUE="1"/>
|
67
|
+
<FACET_VALUES KEY="Independent Television Service" VALUE="2"/>
|
68
|
+
<FACET_VALUES KEY="Kagami, M" VALUE="1"/>
|
69
|
+
<FACET_VALUES KEY="International M-Libraries Conference" VALUE="1"/>
|
70
|
+
<FACET_VALUES KEY="Compaine, B" VALUE="1"/>
|
71
|
+
<FACET_VALUES KEY="Cohen, D" VALUE="1"/>
|
72
|
+
<FACET_VALUES KEY="Jaeger, P" VALUE="1"/>
|
73
|
+
<FACET_VALUES KEY="International Conference on Mechanical Engineering and Technology" VALUE="1"/>
|
74
|
+
<FACET_VALUES KEY="Mossberger, K" VALUE="1"/>
|
75
|
+
<FACET_VALUES KEY="SMIT (Organization)" VALUE="1"/>
|
76
|
+
<FACET_VALUES KEY="Weaver, K" VALUE="1"/>
|
77
|
+
<FACET_VALUES KEY="Newell, A" VALUE="1"/>
|
78
|
+
<FACET_VALUES KEY="Films for the Humanities (Firm)" VALUE="2"/>
|
79
|
+
<FACET_VALUES KEY="Rogers, E" VALUE="1"/>
|
80
|
+
<FACET_VALUES KEY="Pearson, C" VALUE="2"/>
|
81
|
+
<FACET_VALUES KEY="Stevens, D" VALUE="1"/>
|
82
|
+
<FACET_VALUES KEY="Yartey, C" VALUE="1"/>
|
83
|
+
<FACET_VALUES KEY="Levinson, P" VALUE="1"/>
|
84
|
+
<FACET_VALUES KEY="Ally, M" VALUE="1"/>
|
85
|
+
<FACET_VALUES KEY="Stansbury, M" VALUE="1"/>
|
86
|
+
<FACET_VALUES KEY="Resta, P" VALUE="1"/>
|
87
|
+
<FACET_VALUES KEY="Sarles, B" VALUE="1"/>
|
88
|
+
<FACET_VALUES KEY="Norris, P" VALUE="1"/>
|
89
|
+
<FACET_VALUES KEY="Martin, L" VALUE="1"/>
|
90
|
+
<FACET_VALUES KEY="Cook, T" VALUE="1"/>
|
91
|
+
<FACET_VALUES KEY="Fondazione Rodolfo Debenedetti" VALUE="1"/>
|
92
|
+
<FACET_VALUES KEY="Society of American Archivists" VALUE="1"/>
|
93
|
+
<FACET_VALUES KEY="Cooper, J" VALUE="1"/>
|
94
|
+
<FACET_VALUES KEY="Needham, G" VALUE="1"/>
|
95
|
+
<FACET_VALUES KEY="Servon, L" VALUE="1"/>
|
96
|
+
<FACET_VALUES KEY="Scarpetta, S" VALUE="1"/>
|
97
|
+
<FACET_VALUES KEY="Segev, E" VALUE="1"/>
|
98
|
+
<FACET_VALUES KEY="National Center on Adult Literacy" VALUE="1"/>
|
99
|
+
<FACET_VALUES KEY="Hick, S" VALUE="1"/>
|
100
|
+
<FACET_VALUES KEY="Centre for Educational Research and Innovation" VALUE="1"/>
|
101
|
+
<FACET_VALUES KEY="Frank, J" VALUE="1"/>
|
102
|
+
<FACET_VALUES KEY="United Nations. Economic Commission for Africa" VALUE="1"/>
|
103
|
+
<FACET_VALUES KEY="Taylor, R" VALUE="2"/>
|
104
|
+
<FACET_VALUES KEY="Breck, J" VALUE="1"/>
|
105
|
+
<FACET_VALUES KEY="McNutt, J" VALUE="1"/>
|
106
|
+
<FACET_VALUES KEY="United States. Congress. Senate. Committee on Commerce, Science, and Transportation. Subcommittee on Science, Technology, and Space" VALUE="1"/>
|
107
|
+
<FACET_VALUES KEY="Tsuji, M" VALUE="1"/>
|
108
|
+
<FACET_VALUES KEY="Zerdick, A" VALUE="1"/>
|
109
|
+
<FACET_VALUES KEY="Straubhaar, J" VALUE="1"/>
|
110
|
+
<FACET_VALUES KEY="Kumar, D" VALUE="1"/>
|
111
|
+
<FACET_VALUES KEY="Keniston, K" VALUE="1"/>
|
112
|
+
<FACET_VALUES KEY="Tolbert, C" VALUE="1"/>
|
113
|
+
<FACET_VALUES KEY="Giovannetti, E" VALUE="1"/>
|
114
|
+
<FACET_VALUES KEY="Organisation for Economic Co-operation and Development" VALUE="1"/>
|
115
|
+
<FACET_VALUES KEY="Warschauer, M" VALUE="1"/>
|
116
|
+
<FACET_VALUES KEY="United States. National Telecommunications and Information Administration" VALUE="1"/>
|
117
|
+
<FACET_VALUES KEY="Johanson, G" VALUE="1"/>
|
118
|
+
<FACET_VALUES KEY="Mack, R" VALUE="1"/>
|
119
|
+
<FACET_VALUES KEY="McGlothlin, E" VALUE="1"/>
|
120
|
+
<FACET_VALUES KEY="Kuttan, A" VALUE="1"/>
|
121
|
+
<FACET_VALUES KEY="Project Muse" VALUE="1"/>
|
122
|
+
<FACET_VALUES KEY="Finn, J" VALUE="1"/>
|
123
|
+
<FACET_VALUES KEY="Hunt, B" VALUE="1"/>
|
124
|
+
<FACET_VALUES KEY="ebrary, Inc" VALUE="1"/>
|
125
|
+
<FACET_VALUES KEY="European Communication Council" VALUE="1"/>
|
126
|
+
<FACET_VALUES KEY="Koepnick, L" VALUE="1"/>
|
127
|
+
<FACET_VALUES KEY="O'Hara" VALUE="1"/>
|
128
|
+
</FACET>
|
129
|
+
<FACET NAME="lcc" COUNT="7">
|
130
|
+
<FACET_VALUES KEY="P - Language and literature." VALUE="2"/>
|
131
|
+
<FACET_VALUES KEY="Z - Bibliography. Library science. Information resources (general)." VALUE="2"/>
|
132
|
+
<FACET_VALUES KEY="H - Social sciences." VALUE="23"/>
|
133
|
+
<FACET_VALUES KEY="L - Education." VALUE="3"/>
|
134
|
+
<FACET_VALUES KEY="T - Technology ." VALUE="5"/>
|
135
|
+
<FACET_VALUES KEY="Q - Science." VALUE="2"/>
|
136
|
+
<FACET_VALUES KEY="C - Auxiliary sciences of history" VALUE="1"/>
|
137
|
+
</FACET>
|
138
|
+
<FACET NAME="local3" COUNT="2">
|
139
|
+
<FACET_VALUES KEY="Sachs, Lynne" VALUE="1"/>
|
140
|
+
<FACET_VALUES KEY="INSTRUCTOR" VALUE="2"/>
|
141
|
+
</FACET>
|
142
|
+
<FACET NAME="lang" COUNT="1">
|
143
|
+
<FACET_VALUES KEY="eng" VALUE="46"/>
|
144
|
+
</FACET>
|
145
|
+
<FACET NAME="rtype" COUNT="3">
|
146
|
+
<FACET_VALUES KEY="books" VALUE="45"/>
|
147
|
+
<FACET_VALUES KEY="other" VALUE="1"/>
|
148
|
+
<FACET_VALUES KEY="video" VALUE="2"/>
|
149
|
+
</FACET>
|
150
|
+
<FACET NAME="topic" COUNT="98">
|
151
|
+
<FACET_VALUES KEY="Communication in economic development" VALUE="1"/>
|
152
|
+
<FACET_VALUES KEY="Computers and children" VALUE="3"/>
|
153
|
+
<FACET_VALUES KEY="African Americans" VALUE="1"/>
|
154
|
+
<FACET_VALUES KEY="Multimedia systems" VALUE="1"/>
|
155
|
+
<FACET_VALUES KEY="Technological innovations" VALUE="2"/>
|
156
|
+
<FACET_VALUES KEY="Engineering" VALUE="1"/>
|
157
|
+
<FACET_VALUES KEY="Assistive computer technology" VALUE="1"/>
|
158
|
+
<FACET_VALUES KEY="African American universities and colleges" VALUE="1"/>
|
159
|
+
<FACET_VALUES KEY="Wireless communication systems" VALUE="2"/>
|
160
|
+
<FACET_VALUES KEY="Report writing" VALUE="1"/>
|
161
|
+
<FACET_VALUES KEY="Capital market" VALUE="1"/>
|
162
|
+
<FACET_VALUES KEY="Computers and people with disabilities" VALUE="2"/>
|
163
|
+
<FACET_VALUES KEY="Ceramics" VALUE="1"/>
|
164
|
+
<FACET_VALUES KEY="Indian universities and colleges" VALUE="1"/>
|
165
|
+
<FACET_VALUES KEY="Computer networks" VALUE="2"/>
|
166
|
+
<FACET_VALUES KEY="Information superhighway" VALUE="1"/>
|
167
|
+
<FACET_VALUES KEY="Visual perception" VALUE="1"/>
|
168
|
+
<FACET_VALUES KEY="older and disabled people" VALUE="1"/>
|
169
|
+
<FACET_VALUES KEY="awareness raising" VALUE="1"/>
|
170
|
+
<FACET_VALUES KEY="Communication, International" VALUE="1"/>
|
171
|
+
<FACET_VALUES KEY="HCI design" VALUE="1"/>
|
172
|
+
<FACET_VALUES KEY="Internet" VALUE="5"/>
|
173
|
+
<FACET_VALUES KEY="Equality" VALUE="1"/>
|
174
|
+
<FACET_VALUES KEY="United States" VALUE="1"/>
|
175
|
+
<FACET_VALUES KEY="augmentative and alternative communication" VALUE="1"/>
|
176
|
+
<FACET_VALUES KEY="Telephone" VALUE="1"/>
|
177
|
+
<FACET_VALUES KEY="archives" VALUE="1"/>
|
178
|
+
<FACET_VALUES KEY="Economic development" VALUE="1"/>
|
179
|
+
<FACET_VALUES KEY="Aesthetics, German" VALUE="1"/>
|
180
|
+
<FACET_VALUES KEY="Economic development projects" VALUE="1"/>
|
181
|
+
<FACET_VALUES KEY="Social responsibility of business" VALUE="1"/>
|
182
|
+
<FACET_VALUES KEY="World Wide Web" VALUE="1"/>
|
183
|
+
<FACET_VALUES KEY="Digital divide" VALUE="21"/>
|
184
|
+
<FACET_VALUES KEY="Word processing in education" VALUE="1"/>
|
185
|
+
<FACET_VALUES KEY="user sensitive inclusive design" VALUE="1"/>
|
186
|
+
<FACET_VALUES KEY="Teaching" VALUE="1"/>
|
187
|
+
<FACET_VALUES KEY="Technology Access" VALUE="1"/>
|
188
|
+
<FACET_VALUES KEY="Telecommunication policy" VALUE="1"/>
|
189
|
+
<FACET_VALUES KEY="research methodology" VALUE="1"/>
|
190
|
+
<FACET_VALUES KEY="Sex differences in education" VALUE="1"/>
|
191
|
+
<FACET_VALUES KEY="Computer-assisted instruction" VALUE="4"/>
|
192
|
+
<FACET_VALUES KEY="Archivists" VALUE="1"/>
|
193
|
+
<FACET_VALUES KEY="Digital communications" VALUE="1"/>
|
194
|
+
<FACET_VALUES KEY="Internet service providers" VALUE="1"/>
|
195
|
+
<FACET_VALUES KEY="Multimedia communications" VALUE="1"/>
|
196
|
+
<FACET_VALUES KEY="Cellular telephones" VALUE="1"/>
|
197
|
+
<FACET_VALUES KEY="Potters" VALUE="1"/>
|
198
|
+
<FACET_VALUES KEY="Bedrijfsleven" VALUE="1"/>
|
199
|
+
<FACET_VALUES KEY="Search engines" VALUE="1"/>
|
200
|
+
<FACET_VALUES KEY="Electronic information resource searching" VALUE="1"/>
|
201
|
+
<FACET_VALUES KEY="Digital art" VALUE="1"/>
|
202
|
+
<FACET_VALUES KEY="Computer-aided engineering" VALUE="1"/>
|
203
|
+
<FACET_VALUES KEY="ordinary and extra-ordinary HCI" VALUE="1"/>
|
204
|
+
<FACET_VALUES KEY="Overseas Private Investment Corporation" VALUE="1"/>
|
205
|
+
<FACET_VALUES KEY="CAD/CAM systems" VALUE="1"/>
|
206
|
+
<FACET_VALUES KEY="Marginality, Social" VALUE="1"/>
|
207
|
+
<FACET_VALUES KEY="Political participation" VALUE="1"/>
|
208
|
+
<FACET_VALUES KEY="requirements gathering" VALUE="1"/>
|
209
|
+
<FACET_VALUES KEY="Computers and older people" VALUE="1"/>
|
210
|
+
<FACET_VALUES KEY="English language" VALUE="1"/>
|
211
|
+
<FACET_VALUES KEY="Community development" VALUE="1"/>
|
212
|
+
<FACET_VALUES KEY="Human Computer Interaction" VALUE="1"/>
|
213
|
+
<FACET_VALUES KEY="Educational technology" VALUE="2"/>
|
214
|
+
<FACET_VALUES KEY="Minorities" VALUE="1"/>
|
215
|
+
<FACET_VALUES KEY="Mobile communication systems" VALUE="1"/>
|
216
|
+
<FACET_VALUES KEY="Information services industry" VALUE="1"/>
|
217
|
+
<FACET_VALUES KEY="Online information services" VALUE="1"/>
|
218
|
+
<FACET_VALUES KEY="Educational equalization" VALUE="4"/>
|
219
|
+
<FACET_VALUES KEY="Investments, American" VALUE="1"/>
|
220
|
+
<FACET_VALUES KEY="Social advocacy" VALUE="1"/>
|
221
|
+
<FACET_VALUES KEY="Education, Urban" VALUE="1"/>
|
222
|
+
<FACET_VALUES KEY="Maatschappij" VALUE="1"/>
|
223
|
+
<FACET_VALUES KEY="Telecommunication" VALUE="4"/>
|
224
|
+
<FACET_VALUES KEY="Computational Intelligence" VALUE="1"/>
|
225
|
+
<FACET_VALUES KEY="Adult education" VALUE="1"/>
|
226
|
+
<FACET_VALUES KEY="Computer managed instruction" VALUE="1"/>
|
227
|
+
<FACET_VALUES KEY="Globalization" VALUE="1"/>
|
228
|
+
<FACET_VALUES KEY="Mechanical engineering" VALUE="1"/>
|
229
|
+
<FACET_VALUES KEY="Information technology" VALUE="17"/>
|
230
|
+
<FACET_VALUES KEY="High technology industries" VALUE="1"/>
|
231
|
+
<FACET_VALUES KEY="Digital media" VALUE="1"/>
|
232
|
+
<FACET_VALUES KEY="Information technology parks" VALUE="1"/>
|
233
|
+
<FACET_VALUES KEY="digital inclusion" VALUE="1"/>
|
234
|
+
<FACET_VALUES KEY="Mass media and technology" VALUE="1"/>
|
235
|
+
<FACET_VALUES KEY="E-commerce" VALUE="1"/>
|
236
|
+
<FACET_VALUES KEY="Google (Firm)" VALUE="1"/>
|
237
|
+
<FACET_VALUES KEY="Austin (Tex.)" VALUE="1"/>
|
238
|
+
<FACET_VALUES KEY="Computers and women" VALUE="1"/>
|
239
|
+
<FACET_VALUES KEY="Cellular telephone systems" VALUE="1"/>
|
240
|
+
<FACET_VALUES KEY="Computers" VALUE="2"/>
|
241
|
+
<FACET_VALUES KEY="Internet in education" VALUE="2"/>
|
242
|
+
<FACET_VALUES KEY="Massamediaindustrie" VALUE="1"/>
|
243
|
+
<FACET_VALUES KEY="Education" VALUE="5"/>
|
244
|
+
<FACET_VALUES KEY="Social service" VALUE="1"/>
|
245
|
+
<FACET_VALUES KEY="Internet searching" VALUE="1"/>
|
246
|
+
<FACET_VALUES KEY="historical" VALUE="1"/>
|
247
|
+
<FACET_VALUES KEY="Mass media" VALUE="1"/>
|
248
|
+
<FACET_VALUES KEY="Information society" VALUE="3"/>
|
249
|
+
</FACET>
|
250
|
+
<FACET NAME="tlevel" COUNT="2">
|
251
|
+
<FACET_VALUES KEY="online_resources" VALUE="15"/>
|
252
|
+
<FACET_VALUES KEY="available" VALUE="35"/>
|
253
|
+
</FACET>
|
254
|
+
<FACET NAME="pfilter" COUNT="2">
|
255
|
+
<FACET_VALUES KEY="books" VALUE="45"/>
|
256
|
+
<FACET_VALUES KEY="video" VALUE="2"/>
|
257
|
+
</FACET>
|
258
|
+
<FACET NAME="creationdate" COUNT="13">
|
259
|
+
<FACET_VALUES KEY="2009" VALUE="1"/>
|
260
|
+
<FACET_VALUES KEY="2006" VALUE="3"/>
|
261
|
+
<FACET_VALUES KEY="2007" VALUE="1"/>
|
262
|
+
<FACET_VALUES KEY="2004" VALUE="8"/>
|
263
|
+
<FACET_VALUES KEY="2005" VALUE="2"/>
|
264
|
+
<FACET_VALUES KEY="2002" VALUE="2"/>
|
265
|
+
<FACET_VALUES KEY="2003" VALUE="9"/>
|
266
|
+
<FACET_VALUES KEY="2012" VALUE="3"/>
|
267
|
+
<FACET_VALUES KEY="2011" VALUE="4"/>
|
268
|
+
<FACET_VALUES KEY="2010" VALUE="3"/>
|
269
|
+
<FACET_VALUES KEY="1999" VALUE="1"/>
|
270
|
+
<FACET_VALUES KEY="2001" VALUE="4"/>
|
271
|
+
<FACET_VALUES KEY="2000" VALUE="5"/>
|
272
|
+
</FACET>
|
273
|
+
<FACET NAME="domain" COUNT="8">
|
274
|
+
<FACET_VALUES KEY="CU" VALUE="1"/>
|
275
|
+
<FACET_VALUES KEY="BAFC" VALUE="3"/>
|
276
|
+
<FACET_VALUES KEY="BOBST" VALUE="33"/>
|
277
|
+
<FACET_VALUES KEY="BRES" VALUE="1"/>
|
278
|
+
<FACET_VALUES KEY="NSFO" VALUE="4"/>
|
279
|
+
<FACET_VALUES KEY="BREF6" VALUE="2"/>
|
280
|
+
<FACET_VALUES KEY="WEB" VALUE="7"/>
|
281
|
+
<FACET_VALUES KEY="TWEB" VALUE="6"/>
|
282
|
+
</FACET>
|
283
|
+
<FACET NAME="genre" COUNT="3">
|
284
|
+
<FACET_VALUES KEY="Congresses" VALUE="4"/>
|
285
|
+
<FACET_VALUES KEY="Electronic books" VALUE="11"/>
|
286
|
+
<FACET_VALUES KEY="Popular works" VALUE="1"/>
|
287
|
+
</FACET>
|
288
|
+
<FACET NAME="library" COUNT="14">
|
289
|
+
<FACET_VALUES KEY="NSKE" VALUE="6"/>
|
290
|
+
<FACET_VALUES KEY="BOBST" VALUE="44"/>
|
291
|
+
<FACET_VALUES KEY="NYUAD" VALUE="1"/>
|
292
|
+
<FACET_VALUES KEY="BREF" VALUE="2"/>
|
293
|
+
<FACET_VALUES KEY="WEB" VALUE="3"/>
|
294
|
+
<FACET_VALUES KEY="IFA" VALUE="11"/>
|
295
|
+
<FACET_VALUES KEY="ISAW" VALUE="11"/>
|
296
|
+
<FACET_VALUES KEY="NSGI" VALUE="6"/>
|
297
|
+
<FACET_VALUES KEY="CGEN" VALUE="1"/>
|
298
|
+
<FACET_VALUES KEY="NSFO" VALUE="9"/>
|
299
|
+
<FACET_VALUES KEY="REI" VALUE="11"/>
|
300
|
+
<FACET_VALUES KEY="NSSC" VALUE="6"/>
|
301
|
+
<FACET_VALUES KEY="IFAC" VALUE="11"/>
|
302
|
+
<FACET_VALUES KEY="COUR" VALUE="11"/>
|
303
|
+
</FACET>
|
304
|
+
<FACET NAME="local1" COUNT="8">
|
305
|
+
<FACET_VALUES KEY="Reserve" VALUE="1"/>
|
306
|
+
<FACET_VALUES KEY="Main Collection" VALUE="35"/>
|
307
|
+
<FACET_VALUES KEY="International Documents" VALUE="1"/>
|
308
|
+
<FACET_VALUES KEY="Reserve Collection" VALUE="1"/>
|
309
|
+
<FACET_VALUES KEY="United States Documents" VALUE="1"/>
|
310
|
+
<FACET_VALUES KEY="Internet Resources" VALUE="9"/>
|
311
|
+
<FACET_VALUES KEY="Annex Collection" VALUE="1"/>
|
312
|
+
<FACET_VALUES KEY="Internet Resources - US Documents" VALUE="3"/>
|
313
|
+
</FACET>
|
314
|
+
<FACET NAME="local2" COUNT="3">
|
315
|
+
<FACET_VALUES KEY="H56.1002" VALUE="1"/>
|
316
|
+
<FACET_VALUES KEY="MSWAC-GS2008" VALUE="1"/>
|
317
|
+
<FACET_VALUES KEY="S99.2127" VALUE="1"/>
|
318
|
+
</FACET>
|
319
|
+
<FACET NAME="local5" COUNT="2">
|
320
|
+
<FACET_VALUES KEY="Sachs, Lynne" VALUE="1"/>
|
321
|
+
<FACET_VALUES KEY="INSTRUCTOR" VALUE="2"/>
|
322
|
+
</FACET>
|
323
|
+
<FACET NAME="local6" COUNT="3">
|
324
|
+
<FACET_VALUES KEY="Social Work Research II" VALUE="1"/>
|
325
|
+
<FACET_VALUES KEY="Community Organization" VALUE="1"/>
|
326
|
+
<FACET_VALUES KEY="Media Mavericks" VALUE="1"/>
|
327
|
+
</FACET>
|
328
|
+
</FACETLIST>
|
329
|
+
<DOCSET HIT_TIME="38" TOTALHITS="48" FIRSTHIT="1" LASTHIT="5" TOTAL_TIME="185" IS_LOCAL="true">
|
330
|
+
<DOC ID="3424915" RANK="0.018059742" NO="1" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
331
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
332
|
+
<record>
|
333
|
+
<control>
|
334
|
+
<sourcerecordid>003531438</sourcerecordid>
|
335
|
+
<sourceid>nyu_aleph</sourceid>
|
336
|
+
<recordid>nyu_aleph003531438</recordid>
|
337
|
+
<originalsourceid>NYU01</originalsourceid>
|
338
|
+
<ilsapiid>NYU01003531438</ilsapiid>
|
339
|
+
<sourceformat>MARC21</sourceformat>
|
340
|
+
<sourcesystem>Aleph</sourcesystem>
|
341
|
+
</control>
|
342
|
+
<display>
|
343
|
+
<type>book</type>
|
344
|
+
<title>Globalization and the digital divide</title>
|
345
|
+
<contributor>Kirk St. Amant 1970-; Bolanle Olaniran 1964-</contributor>
|
346
|
+
<publisher>Amherst, N.Y. : Cambria Press</publisher>
|
347
|
+
<creationdate>c2011</creationdate>
|
348
|
+
<format>xii, 270 p. : ill. ; 24 cm.</format>
|
349
|
+
<identifier>$$Cisbn$$V9781604977707; $$Cisbn$$V1604977701</identifier>
|
350
|
+
<subject>Digital divide -- Developing countries; Information technology -- Developing countries; Economic development -- Developing countries; Globalization -- Social aspects</subject>
|
351
|
+
<language>eng</language>
|
352
|
+
<source>nyu_aleph</source>
|
353
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(HN981.I56 G56 2011 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
354
|
+
<lds02>nyu_aleph003531438</lds02>
|
355
|
+
<lds01>NYU</lds01>
|
356
|
+
<availinstitution>$$INYU$$Savailable</availinstitution>
|
357
|
+
<availpnx>available</availpnx>
|
358
|
+
</display>
|
359
|
+
<links>
|
360
|
+
<openurl>$$Topenurl_journal</openurl>
|
361
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
362
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
363
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
364
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
365
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
366
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
367
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
368
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
369
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
370
|
+
</links>
|
371
|
+
<search>
|
372
|
+
<creatorcontrib>edited by Kirk St. Amant and Bolanle A. Olaniran.</creatorcontrib>
|
373
|
+
<creatorcontrib>Kirk, St. Amant 1970-</creatorcontrib>
|
374
|
+
<creatorcontrib>Bolanle, Olaniran 1964-</creatorcontrib>
|
375
|
+
<creatorcontrib>St. Amant</creatorcontrib>
|
376
|
+
<creatorcontrib>Olaniran, B</creatorcontrib>
|
377
|
+
<creatorcontrib>Saint Amant, Kirk, 1970-</creatorcontrib>
|
378
|
+
<creatorcontrib>Amant, Kirk St., 1970-</creatorcontrib>
|
379
|
+
<title>Globalization and the digital divide /</title>
|
380
|
+
<subject>Digital divide Developing countries</subject>
|
381
|
+
<subject>Information technology Developing countries</subject>
|
382
|
+
<subject>Economic development Developing countries</subject>
|
383
|
+
<subject>Globalization Social aspects</subject>
|
384
|
+
<subject>Divide, Digital</subject>
|
385
|
+
<subject>Global digital divide</subject>
|
386
|
+
<subject>IT (Information technology)</subject>
|
387
|
+
<subject>Economic growth</subject>
|
388
|
+
<subject>Growth, Economic</subject>
|
389
|
+
<subject>Development, Economic</subject>
|
390
|
+
<subject>GDD (Global digital divide)</subject>
|
391
|
+
<general>Cambria Press,</general>
|
392
|
+
<sourceid>nyu_aleph</sourceid>
|
393
|
+
<recordid>nyu_aleph003531438</recordid>
|
394
|
+
<isbn>9781604977707</isbn>
|
395
|
+
<isbn>1604977701</isbn>
|
396
|
+
<rsrctype>book</rsrctype>
|
397
|
+
<creationdate>2011</creationdate>
|
398
|
+
<searchscope>BOBST</searchscope>
|
399
|
+
<searchscope>BOBST Main Collection</searchscope>
|
400
|
+
<searchscope>nyu_aleph</searchscope>
|
401
|
+
<searchscope>NYU</searchscope>
|
402
|
+
<scope>BOBST</scope>
|
403
|
+
<scope>BOBST Main Collection</scope>
|
404
|
+
<scope>nyu_aleph</scope>
|
405
|
+
<scope>NYU</scope>
|
406
|
+
<lsr01>HN981.I56 G56 2011</lsr01>
|
407
|
+
<lsr01>HN981 .I56 G56 2011</lsr01>
|
408
|
+
<lsr02>Cambria Press,</lsr02>
|
409
|
+
</search>
|
410
|
+
<sort>
|
411
|
+
<title>Globalization and the digital divide /</title>
|
412
|
+
<creationdate>2011</creationdate>
|
413
|
+
<author>St. Amant, Kirk, 1970-</author>
|
414
|
+
<lso01>2011</lso01>
|
415
|
+
</sort>
|
416
|
+
<facets>
|
417
|
+
<language>eng</language>
|
418
|
+
<creationdate>2011</creationdate>
|
419
|
+
<topic>Digital divide–Developing countries</topic>
|
420
|
+
<topic>Information technology–Developing countries</topic>
|
421
|
+
<topic>Economic development–Developing countries</topic>
|
422
|
+
<topic>Globalization–Social aspects</topic>
|
423
|
+
<collection>BOBST</collection>
|
424
|
+
<toplevel>available</toplevel>
|
425
|
+
<prefilter>books</prefilter>
|
426
|
+
<rsrctype>books</rsrctype>
|
427
|
+
<creatorcontrib>St. Amant</creatorcontrib>
|
428
|
+
<creatorcontrib>Olaniran, B</creatorcontrib>
|
429
|
+
<library>BOBST</library>
|
430
|
+
<lfc01>Main Collection</lfc01>
|
431
|
+
<classificationlcc>H - Social sciences.–Social history and conditions. Social problems. Social reform–By region or country</classificationlcc>
|
432
|
+
<frbrgroupid>52522658</frbrgroupid>
|
433
|
+
<frbrtype>6</frbrtype>
|
434
|
+
</facets>
|
435
|
+
<dedup>
|
436
|
+
<t>1</t>
|
437
|
+
<c1>2011038447</c1>
|
438
|
+
<c2>9781604977707;1604977701</c2>
|
439
|
+
<c3>globalizationandtheditaldivide</c3>
|
440
|
+
<c4>2011</c4>
|
441
|
+
<f1>2011038447</f1>
|
442
|
+
<f3>9781604977707;1604977701</f3>
|
443
|
+
<f5>globalizationandthedigitaldivide</f5>
|
444
|
+
<f6>2011</f6>
|
445
|
+
<f7>globalization and the digital divide</f7>
|
446
|
+
<f8>nyu</f8>
|
447
|
+
<f9>xii, 270 p. :</f9>
|
448
|
+
<f10>cambria press</f10>
|
449
|
+
</dedup>
|
450
|
+
<frbr>
|
451
|
+
<t>1</t>
|
452
|
+
<k1>$$Kst amant kirk 1970$$AA</k1>
|
453
|
+
<k1>$$Kolaniran bolanle 1964$$AA</k1>
|
454
|
+
<k3>$$Kbookglobalization and the digital divide$$AT</k3>
|
455
|
+
</frbr>
|
456
|
+
<delivery>
|
457
|
+
<institution>NYU</institution>
|
458
|
+
<delcategory>Physical Item</delcategory>
|
459
|
+
</delivery>
|
460
|
+
<enrichment>
|
461
|
+
<classificationlcc>HN981.I56</classificationlcc>
|
462
|
+
</enrichment>
|
463
|
+
<ranking>
|
464
|
+
<booster1>1</booster1>
|
465
|
+
<booster2>1</booster2>
|
466
|
+
</ranking>
|
467
|
+
<addata>
|
468
|
+
<aulast>St. Amant</aulast>
|
469
|
+
<aufirst>Kirk,</aufirst>
|
470
|
+
<addau>St. Amant, Kirk, 1970-</addau>
|
471
|
+
<addau>Olaniran, Bolanle, 1964-</addau>
|
472
|
+
<btitle>Globalization and the digital divide</btitle>
|
473
|
+
<date>2011</date>
|
474
|
+
<risdate>c2011.</risdate>
|
475
|
+
<isbn>9781604977707</isbn>
|
476
|
+
<isbn>1604977701</isbn>
|
477
|
+
<format>book</format>
|
478
|
+
<genre>book</genre>
|
479
|
+
<ristype>BOOK</ristype>
|
480
|
+
<notes>Includes bibliographical references and index.</notes>
|
481
|
+
<cop>Amherst, N.Y.</cop>
|
482
|
+
<pub>Cambria Press</pub>
|
483
|
+
<lccn>2011038447</lccn>
|
484
|
+
<lad01>BOBST</lad01>
|
485
|
+
<lad01>Physical Item</lad01>
|
486
|
+
</addata>
|
487
|
+
</record>
|
488
|
+
</PrimoNMBib>
|
489
|
+
<GETIT deliveryCategory="Physical Item" GetIt1="http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438" GetIt2="https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-01-10T12%3A31%3A47IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003531438&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Globalization%20and%20the%20digital%20divide&amp;rft.aulast=St.%20Amant&amp;rft.aufirst=Kirk%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Cambria%20Press&amp;rft.place=Amherst%2C%20N.Y.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=9781604977707&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph003531438&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>003531438&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
490
|
+
<LIBRARIES>
|
491
|
+
<LIBRARY>
|
492
|
+
<institution>NYU</institution>
|
493
|
+
<library>BOBST</library>
|
494
|
+
<status>available</status>
|
495
|
+
<collection>Main Collection</collection>
|
496
|
+
<callNumber>(HN981.I56 G56 2011 )</callNumber>
|
497
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438</url>
|
498
|
+
</LIBRARY>
|
499
|
+
</LIBRARIES>
|
500
|
+
<LINKS>
|
501
|
+
<openurl><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003531438&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Globalization%20and%20the%20digital%20divide&rft.aulast=St.%20Amant&rft.aufirst=Kirk%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Cambria%20Press&rft.place=Amherst%2C%20N.Y.&rft.issn=&rft.eissn=&rft.isbn=9781604977707&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph003531438&rft.eisbn=&rft_dat=<nyu_aleph>003531438</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
502
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438</backlink>
|
503
|
+
<thumbnail>http://images.amazon.com/images/P/9781604977707.01._SSTHUM_.jpg</thumbnail>
|
504
|
+
<linktotoc>http://www.amazon.com/gp/reader/9781604977707</linktotoc>
|
505
|
+
<openurlfulltext><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003531438&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Globalization%20and%20the%20digital%20divide&rft.aulast=St.%20Amant&rft.aufirst=Kirk%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Cambria%20Press&rft.place=Amherst%2C%20N.Y.&rft.issn=&rft.eissn=&rft.isbn=9781604977707&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>003531438</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
506
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438</linktoholdings>
|
507
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph003531438?institution=NYU&amp;persistent</linktoreview>
|
508
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=9781604977707</linktouc>
|
509
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A9781604977707</linktouc>
|
510
|
+
</LINKS>
|
511
|
+
</DOC>
|
512
|
+
<DOC ID="2141388" RANK="0.015719885" NO="2" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
513
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
514
|
+
<record>
|
515
|
+
<control>
|
516
|
+
<sourcerecordid>000864162</sourcerecordid>
|
517
|
+
<sourceid>nyu_aleph</sourceid>
|
518
|
+
<recordid>nyu_aleph000864162</recordid>
|
519
|
+
<originalsourceid>NYU01</originalsourceid>
|
520
|
+
<ilsapiid>NYU01000864162</ilsapiid>
|
521
|
+
<sourceformat>MARC21</sourceformat>
|
522
|
+
<sourcesystem>Aleph</sourcesystem>
|
523
|
+
</control>
|
524
|
+
<display>
|
525
|
+
<type>book</type>
|
526
|
+
<title>From digital divide to digital opportunity</title>
|
527
|
+
<creator>Appu Kuttan 1941-</creator>
|
528
|
+
<contributor>Laurence Peters 1952-</contributor>
|
529
|
+
<publisher>Lanham, Md. : Scarecrow Press</publisher>
|
530
|
+
<creationdate>2003</creationdate>
|
531
|
+
<format>x, 190 p. : ill. ; 24 cm + 1 computer optical disc (4 3/4 in.).</format>
|
532
|
+
<identifier>$$Cisbn$$V0810844915 (alk. paper); $$Cisbn$$V0810844923 (pbk. : alk. paper); $$Cisbn$$V9780810844919; $$Cisbn$$V9780810844926</identifier>
|
533
|
+
<subject>Digital divide -- United States; Digital divide; Information technology -- Social aspects -- United States</subject>
|
534
|
+
<language>eng</language>
|
535
|
+
<source>nyu_aleph</source>
|
536
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(HN90.I56 K888 2003 )$$Savailable$$31$$40$$5N$$61$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
537
|
+
<availlibrary>$$ICU$$LCU$$1Main Collection$$2(HN90.I56 K888 2003 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YCU$$ZMAIN</availlibrary>
|
538
|
+
<lds02>nyu_aleph000864162</lds02>
|
539
|
+
<lds01>NYU</lds01>
|
540
|
+
<lds01>CU</lds01>
|
541
|
+
<availinstitution>$$ICU$$Savailable</availinstitution>
|
542
|
+
<availinstitution>$$INYU$$Savailable</availinstitution>
|
543
|
+
<availpnx>available</availpnx>
|
544
|
+
</display>
|
545
|
+
<links>
|
546
|
+
<openurl>$$Topenurl_journal</openurl>
|
547
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
548
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
549
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
550
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
551
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
552
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
553
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
554
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
555
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
556
|
+
</links>
|
557
|
+
<search>
|
558
|
+
<creatorcontrib>Appu, Kuttan 1941-</creatorcontrib>
|
559
|
+
<creatorcontrib>Kuttan, Appu, 1941-</creatorcontrib>
|
560
|
+
<creatorcontrib>Kuttan, A</creatorcontrib>
|
561
|
+
<creatorcontrib>Appu Kuttan and Laurence Peters.</creatorcontrib>
|
562
|
+
<creatorcontrib>Laurence, Peters 1952-</creatorcontrib>
|
563
|
+
<creatorcontrib>Peters, L</creatorcontrib>
|
564
|
+
<title>From digital divide to digital opportunity /</title>
|
565
|
+
<subject>Digital divide United States</subject>
|
566
|
+
<subject>Digital divide</subject>
|
567
|
+
<subject>Information technology Social aspects United States</subject>
|
568
|
+
<subject>Global digital divide</subject>
|
569
|
+
<subject>GDD (Global digital divide)</subject>
|
570
|
+
<subject>Divide, Digital</subject>
|
571
|
+
<subject>IT (Information technology)</subject>
|
572
|
+
<general>Scarecrow Press,</general>
|
573
|
+
<general>CD-ROM in pocket.</general>
|
574
|
+
<sourceid>nyu_aleph</sourceid>
|
575
|
+
<recordid>nyu_aleph000864162</recordid>
|
576
|
+
<isbn>0810844915</isbn>
|
577
|
+
<isbn>0810844923</isbn>
|
578
|
+
<isbn>9780810844919</isbn>
|
579
|
+
<isbn>9780810844926</isbn>
|
580
|
+
<rsrctype>book</rsrctype>
|
581
|
+
<creationdate>2003</creationdate>
|
582
|
+
<searchscope>BOBST</searchscope>
|
583
|
+
<searchscope>BOBST Main Collection</searchscope>
|
584
|
+
<searchscope>CU</searchscope>
|
585
|
+
<searchscope>CU Main Collection</searchscope>
|
586
|
+
<searchscope>nyu_aleph</searchscope>
|
587
|
+
<searchscope>NYU</searchscope>
|
588
|
+
<searchscope>CGEN</searchscope>
|
589
|
+
<scope>BOBST</scope>
|
590
|
+
<scope>BOBST Main Collection</scope>
|
591
|
+
<scope>CU</scope>
|
592
|
+
<scope>CU Main Collection</scope>
|
593
|
+
<scope>nyu_aleph</scope>
|
594
|
+
<scope>NYU</scope>
|
595
|
+
<scope>CGEN</scope>
|
596
|
+
<lsr01>HN90.I56 K888 2003</lsr01>
|
597
|
+
<lsr01>HN90 .I56 K888 2003</lsr01>
|
598
|
+
<lsr02>Scarecrow Press,</lsr02>
|
599
|
+
</search>
|
600
|
+
<sort>
|
601
|
+
<title>From digital divide to digital opportunity /</title>
|
602
|
+
<creationdate>2003</creationdate>
|
603
|
+
<author>Kuttan, Appu, 1941-</author>
|
604
|
+
<lso01>2003</lso01>
|
605
|
+
</sort>
|
606
|
+
<facets>
|
607
|
+
<language>eng</language>
|
608
|
+
<creationdate>2003</creationdate>
|
609
|
+
<topic>Digital divide–United States</topic>
|
610
|
+
<topic>Digital divide</topic>
|
611
|
+
<topic>Information technology–Social aspects–United States</topic>
|
612
|
+
<collection>BOBST</collection>
|
613
|
+
<collection>CU</collection>
|
614
|
+
<toplevel>available</toplevel>
|
615
|
+
<prefilter>books</prefilter>
|
616
|
+
<rsrctype>books</rsrctype>
|
617
|
+
<creatorcontrib>Kuttan, A</creatorcontrib>
|
618
|
+
<creatorcontrib>Peters, L</creatorcontrib>
|
619
|
+
<library>BOBST</library>
|
620
|
+
<library>CGEN</library>
|
621
|
+
<lfc01>Main Collection</lfc01>
|
622
|
+
<classificationlcc>H - Social sciences.–Social history and conditions. Social problems. Social reform–By region or country</classificationlcc>
|
623
|
+
<frbrgroupid>49988018</frbrgroupid>
|
624
|
+
<frbrtype>6</frbrtype>
|
625
|
+
</facets>
|
626
|
+
<dedup>
|
627
|
+
<t>1</t>
|
628
|
+
<c1>2002030296</c1>
|
629
|
+
<c2>0810844915;0810844923;9780810844919;9780810844926</c2>
|
630
|
+
<c3>fromdigitaldividetodpportunity</c3>
|
631
|
+
<c4>2003</c4>
|
632
|
+
<f1>2002030296</f1>
|
633
|
+
<f3>0810844915;0810844923;9780810844919;9780810844926</f3>
|
634
|
+
<f5>fromdigitaldividetodpportunity</f5>
|
635
|
+
<f6>2003</f6>
|
636
|
+
<f7>from digital divide to digital opportunity</f7>
|
637
|
+
<f8>mdu</f8>
|
638
|
+
<f9>x, 190 p. :</f9>
|
639
|
+
<f10>scarecrow press</f10>
|
640
|
+
<f11>kuttan appu 1941</f11>
|
641
|
+
</dedup>
|
642
|
+
<frbr>
|
643
|
+
<t>1</t>
|
644
|
+
<k1>$$Kkuttan appu 1941$$AA</k1>
|
645
|
+
<k3>$$Kbookfrom digital divide to digital opportunity$$AT</k3>
|
646
|
+
</frbr>
|
647
|
+
<delivery>
|
648
|
+
<institution>NYU</institution>
|
649
|
+
<institution>CU</institution>
|
650
|
+
<delcategory>Physical Item</delcategory>
|
651
|
+
</delivery>
|
652
|
+
<enrichment>
|
653
|
+
<classificationlcc>HN90.I56</classificationlcc>
|
654
|
+
</enrichment>
|
655
|
+
<ranking>
|
656
|
+
<booster1>1</booster1>
|
657
|
+
<booster2>1</booster2>
|
658
|
+
</ranking>
|
659
|
+
<addata>
|
660
|
+
<aulast>Kuttan</aulast>
|
661
|
+
<aufirst>Appu,</aufirst>
|
662
|
+
<au>Kuttan, Appu, 1941-</au>
|
663
|
+
<addau>Peters, Laurence, 1952-</addau>
|
664
|
+
<btitle>From digital divide to digital opportunity</btitle>
|
665
|
+
<date>2003</date>
|
666
|
+
<risdate>2003.</risdate>
|
667
|
+
<isbn>0810844915</isbn>
|
668
|
+
<isbn>0810844923</isbn>
|
669
|
+
<isbn>9780810844919</isbn>
|
670
|
+
<isbn>9780810844926</isbn>
|
671
|
+
<format>book</format>
|
672
|
+
<genre>book</genre>
|
673
|
+
<ristype>BOOK</ristype>
|
674
|
+
<notes>Includes bibliographical references and index.</notes>
|
675
|
+
<cop>Lanham, Md.</cop>
|
676
|
+
<pub>Scarecrow Press</pub>
|
677
|
+
<lccn>2002030296</lccn>
|
678
|
+
<lad01>BOBSTCU</lad01>
|
679
|
+
<lad01>Physical Item</lad01>
|
680
|
+
</addata>
|
681
|
+
</record>
|
682
|
+
</PrimoNMBib>
|
683
|
+
<GETIT deliveryCategory="Physical Item" GetIt1="http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438" GetIt2="https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-01-10T12%3A31%3A47IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003531438&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Globalization%20and%20the%20digital%20divide&amp;rft.aulast=St.%20Amant&amp;rft.aufirst=Kirk%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Cambria%20Press&amp;rft.place=Amherst%2C%20N.Y.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=9781604977707&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph003531438&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>003531438&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
684
|
+
<LIBRARIES>
|
685
|
+
<LIBRARY>
|
686
|
+
<institution>NYU</institution>
|
687
|
+
<library>BOBST</library>
|
688
|
+
<status>available</status>
|
689
|
+
<collection>Main Collection</collection>
|
690
|
+
<callNumber>(HN90.I56 K888 2003 )</callNumber>
|
691
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000864162</url>
|
692
|
+
</LIBRARY>
|
693
|
+
<LIBRARY>
|
694
|
+
<institution>CU</institution>
|
695
|
+
<library>CU</library>
|
696
|
+
<status>available</status>
|
697
|
+
<collection>Main Collection</collection>
|
698
|
+
<callNumber>(HN90.I56 K888 2003 )</callNumber>
|
699
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000864162</url>
|
700
|
+
</LIBRARY>
|
701
|
+
</LIBRARIES>
|
702
|
+
<LINKS>
|
703
|
+
<openurl><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?umlaut.institution=CU&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000864162&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=From%20digital%20divide%20to%20digital%20opportunity&rft.aulast=Kuttan&rft.aufirst=Appu%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Kuttan%2C%20Appu%2C%201941-&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Scarecrow%20Press&rft.place=Lanham%2C%20Md.&rft.issn=&rft.eissn=&rft.isbn=0810844915&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph000864162&rft.eisbn=&rft_dat=<nyu_aleph>000864162</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
704
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=000864162</backlink>
|
705
|
+
<thumbnail>http://images.amazon.com/images/P/0810844915.01._SSTHUM_.jpg</thumbnail>
|
706
|
+
<linktotoc>http://www.amazon.com/gp/reader/0810844915</linktotoc>
|
707
|
+
<openurlfulltext><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?umlaut.institution=CU&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000864162&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=From%20digital%20divide%20to%20digital%20opportunity&rft.aulast=Kuttan&rft.aufirst=Appu%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Kuttan%2C%20Appu%2C%201941-&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Scarecrow%20Press&rft.place=Lanham%2C%20Md.&rft.issn=&rft.eissn=&rft.isbn=0810844915&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>000864162</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
708
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000864162</linktoholdings>
|
709
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph000864162?institution=NYU&amp;persistent</linktoreview>
|
710
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=0810844915</linktouc>
|
711
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A0810844915</linktouc>
|
712
|
+
</LINKS>
|
713
|
+
</DOC>
|
714
|
+
<DOC ID="2549457" RANK="0.0153914" NO="3" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
715
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
716
|
+
<record>
|
717
|
+
<control>
|
718
|
+
<sourcerecordid>001586277</sourcerecordid>
|
719
|
+
<sourceid>nyu_aleph</sourceid>
|
720
|
+
<recordid>nyu_aleph001586277</recordid>
|
721
|
+
<originalsourceid>NYU01</originalsourceid>
|
722
|
+
<ilsapiid>NYU01001586277</ilsapiid>
|
723
|
+
<sourceformat>MARC21</sourceformat>
|
724
|
+
<sourcesystem>Aleph</sourcesystem>
|
725
|
+
</control>
|
726
|
+
<display>
|
727
|
+
<type>book</type>
|
728
|
+
<title>Falling through the net defining the digital divide.</title>
|
729
|
+
<contributor>United States. National Telecommunications and Information Administration.</contributor>
|
730
|
+
<edition>[Rev. 11/99].</edition>
|
731
|
+
<publisher>Washington, D.C. : U.S. Dept. of Commerce, National Telecommunications and Information Administration : Supt. of Docs., U.S. G.P.O., distributor</publisher>
|
732
|
+
<creationdate>1999</creationdate>
|
733
|
+
<identifier>$$Cgpo$$V0126-E-04; $$Csudoc$$VC 60.2:N 38/3/999</identifier>
|
734
|
+
<subject>Telephone -- United States; Computer networks -- United States; Telecommunication policy -- United States; Online information services -- United States; Internet service providers -- United States</subject>
|
735
|
+
<language>eng</language>
|
736
|
+
<source>nyu_aleph</source>
|
737
|
+
<lds02>nyu_aleph001586277</lds02>
|
738
|
+
<lds01>GEN</lds01>
|
739
|
+
</display>
|
740
|
+
<links>
|
741
|
+
<openurl>$$Topenurl_journal</openurl>
|
742
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
743
|
+
<linktorsrc>$$Uhttp://purl.access.gpo.gov/GPO/LPS3064$$DOnline Version</linktorsrc>
|
744
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
745
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
746
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
747
|
+
<linktouc>$$Tworldcat_oclc$$DCheck other libraries (WorldCat®)</linktouc>
|
748
|
+
</links>
|
749
|
+
<search>
|
750
|
+
<creatorcontrib>United States. National Telecommunications and Information Administration.</creatorcontrib>
|
751
|
+
<creatorcontrib>NTIA</creatorcontrib>
|
752
|
+
<creatorcontrib>United States. Dept. of Commerce. National Telecommunications and Information Administration</creatorcontrib>
|
753
|
+
<creatorcontrib>United States. National Telecommunications &amp; Information Administration</creatorcontrib>
|
754
|
+
<title>Falling through the net defining the digital divide.</title>
|
755
|
+
<subject>Telephone United States</subject>
|
756
|
+
<subject>Computer networks United States</subject>
|
757
|
+
<subject>Telecommunication policy United States</subject>
|
758
|
+
<subject>Online information services United States</subject>
|
759
|
+
<subject>Internet service providers United States</subject>
|
760
|
+
<subject>Telephone service</subject>
|
761
|
+
<subject>Telephones</subject>
|
762
|
+
<subject>Telecommunication Government policy</subject>
|
763
|
+
<subject>Telecommunication and state</subject>
|
764
|
+
<subject>Electronic communication networks</subject>
|
765
|
+
<subject>Communication systems, Computer</subject>
|
766
|
+
<subject>ECNs (Electronic communication networks)</subject>
|
767
|
+
<subject>Teleprocessing networks</subject>
|
768
|
+
<subject>Computer communication systems</subject>
|
769
|
+
<subject>Networks, Computer</subject>
|
770
|
+
<subject>Data networks, Computer</subject>
|
771
|
+
<subject>Electronic information services</subject>
|
772
|
+
<subject>On-line information services</subject>
|
773
|
+
<subject>Online services (Information services)</subject>
|
774
|
+
<subject>Internet access providers</subject>
|
775
|
+
<subject>Internet service industry</subject>
|
776
|
+
<subject>IAPs (Internet service providers)</subject>
|
777
|
+
<subject>ISPs (Internet service providers)</subject>
|
778
|
+
<general>U.S. Dept. of Commerce, National Telecommunications and Information Administration : [Supt. of Docs., U.S. G.P.O., distributor,</general>
|
779
|
+
<general>Title from title screen.</general>
|
780
|
+
<general>Distributed to depository libraries in paper (xviii, 108 p. : ill. ; 28 cm.), shipping list no. 2000-0085-P.</general>
|
781
|
+
<general>[electronic resource] :</general>
|
782
|
+
<sourceid>nyu_aleph</sourceid>
|
783
|
+
<recordid>nyu_aleph001586277</recordid>
|
784
|
+
<rsrctype>book</rsrctype>
|
785
|
+
<creationdate>1999</creationdate>
|
786
|
+
<searchscope>WEB</searchscope>
|
787
|
+
<searchscope>WEB Internet Resources - US Documents</searchscope>
|
788
|
+
<searchscope>nyu_aleph</searchscope>
|
789
|
+
<searchscope>GEN</searchscope>
|
790
|
+
<scope>WEB</scope>
|
791
|
+
<scope>WEB Internet Resources - US Documents</scope>
|
792
|
+
<scope>nyu_aleph</scope>
|
793
|
+
<scope>GEN</scope>
|
794
|
+
<alttitle>Defining the digital divide</alttitle>
|
795
|
+
<lsr01>C 60.2:N 38/3/999</lsr01>
|
796
|
+
<lsr02>U.S. Dept. of Commerce, National Telecommunications and Information Administration : [Supt. of Docs., U.S. G.P.O., distributor,</lsr02>
|
797
|
+
</search>
|
798
|
+
<sort>
|
799
|
+
<title>Falling through the net defining the digital divide.</title>
|
800
|
+
<creationdate>1999</creationdate>
|
801
|
+
<author>United States. National Telecommunications and Information Administration.</author>
|
802
|
+
<lso01>1999</lso01>
|
803
|
+
</sort>
|
804
|
+
<facets>
|
805
|
+
<language>eng</language>
|
806
|
+
<creationdate>1999</creationdate>
|
807
|
+
<topic>Telephone–United States</topic>
|
808
|
+
<topic>Computer networks–United States</topic>
|
809
|
+
<topic>Telecommunication policy–United States</topic>
|
810
|
+
<topic>Online information services–United States</topic>
|
811
|
+
<topic>Internet service providers–United States</topic>
|
812
|
+
<collection>WEB</collection>
|
813
|
+
<toplevel>available</toplevel>
|
814
|
+
<toplevel>online_resources</toplevel>
|
815
|
+
<prefilter>books</prefilter>
|
816
|
+
<rsrctype>books</rsrctype>
|
817
|
+
<creatorcontrib>United States. National Telecommunications and Information Administration</creatorcontrib>
|
818
|
+
<library>WEB</library>
|
819
|
+
<lfc01>Internet Resources - US Documents</lfc01>
|
820
|
+
<frbrgroupid>50654662</frbrgroupid>
|
821
|
+
<frbrtype>6</frbrtype>
|
822
|
+
</facets>
|
823
|
+
<dedup>
|
824
|
+
<t>1</t>
|
825
|
+
<c3>fallingthroughthenetitaldivide</c3>
|
826
|
+
<c4>1999</c4>
|
827
|
+
<f5>fallingthroughthenetitaldivide</f5>
|
828
|
+
<f6>1999</f6>
|
829
|
+
<f7>falling through the net defining the digital divide</f7>
|
830
|
+
<f8>dcu</f8>
|
831
|
+
<f10>u s dept of commerce national telecommunications and information administration</f10>
|
832
|
+
</dedup>
|
833
|
+
<frbr>
|
834
|
+
<t>1</t>
|
835
|
+
<k1>$$Kunited states national telecommunications and information administration$$AA</k1>
|
836
|
+
<k3>$$Kbookfalling through the net defining the digital divide$$AT</k3>
|
837
|
+
</frbr>
|
838
|
+
<delivery>
|
839
|
+
<institution>GEN</institution>
|
840
|
+
<delcategory>Online Resource</delcategory>
|
841
|
+
</delivery>
|
842
|
+
<ranking>
|
843
|
+
<booster1>1</booster1>
|
844
|
+
<booster2>1</booster2>
|
845
|
+
</ranking>
|
846
|
+
<addata>
|
847
|
+
<addau>United States. National Telecommunications and Information Administration</addau>
|
848
|
+
<btitle>Falling through the net defining the digital divide.</btitle>
|
849
|
+
<addtitle>Defining the digital divide</addtitle>
|
850
|
+
<date>1999</date>
|
851
|
+
<risdate>1999]</risdate>
|
852
|
+
<format>book</format>
|
853
|
+
<genre>book</genre>
|
854
|
+
<ristype>BOOK</ristype>
|
855
|
+
<notes>Includes bibliographical references.</notes>
|
856
|
+
<cop>Washington, D.C.</cop>
|
857
|
+
<pub>U.S. Dept. of Commerce, National Telecommunications and Information Administration : [Supt. of Docs., U.S. G.P.O., distributor</pub>
|
858
|
+
<oclcid>41869935</oclcid>
|
859
|
+
<lad01>WEB</lad01>
|
860
|
+
<lad01>Online Resource</lad01>
|
861
|
+
</addata>
|
862
|
+
</record>
|
863
|
+
</PrimoNMBib>
|
864
|
+
<GETIT deliveryCategory="Online Resource" GetIt1="http://purl.access.gpo.gov/GPO/LPS3064" GetIt2="https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-01-10T12%3A31%3A47IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph001586277&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Falling%20through%20the%20net%20defining%20the%20digital%20divide.&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=U.S.%20Dept.%20of%20Commerce%2C%20National%20Telecommunications%20and%20Information%20Administration%20:%20[Supt.%20of%20Docs.%2C%20U.S.%20G.P.O.%2C%20distributor&amp;rft.place=Washington%2C%20D.C.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph001586277&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>001586277&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
865
|
+
<LINKS>
|
866
|
+
<openurl><![CDATA[http://10.1.235.53:3210/lr_3&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph001586277&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Falling%20through%20the%20net%20defining%20the%20digital%20divide.&rft.aulast=&rft.aufirst=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=U.S.%20Dept.%20of%20Commerce%2C%20National%20Telecommunications%20and%20Information%20Administration%20:%20[Supt.%20of%20Docs.%2C%20U.S.%20G.P.O.%2C%20distributor&rft.place=Washington%2C%20D.C.&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph001586277&rft.eisbn=&rft_dat=<nyu_aleph>001586277</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
867
|
+
<backlink>http://aleph.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=001586277</backlink>
|
868
|
+
<linktorsrc>http://purl.access.gpo.gov/GPO/LPS3064</linktorsrc>
|
869
|
+
<thumbnail/>
|
870
|
+
<openurlfulltext><![CDATA[http://10.1.235.53:3210/lr_3&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph001586277&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Falling%20through%20the%20net%20defining%20the%20digital%20divide.&rft.aulast=&rft.aufirst=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=U.S.%20Dept.%20of%20Commerce%2C%20National%20Telecommunications%20and%20Information%20Administration%20:%20[Supt.%20of%20Docs.%2C%20U.S.%20G.P.O.%2C%20distributor&rft.place=Washington%2C%20D.C.&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>001586277</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
871
|
+
<linktoholdings>http://aleph.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=001586277</linktoholdings>
|
872
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph001586277?institution=NYU&amp;persistent</linktoreview>
|
873
|
+
<linktouc>http://www.worldcat.org/search?q=no%3A41869935</linktouc>
|
874
|
+
</LINKS>
|
875
|
+
</DOC>
|
876
|
+
<DOC ID="2729433" RANK="0.015341408" NO="4" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
877
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
878
|
+
<record>
|
879
|
+
<control>
|
880
|
+
<sourcerecordid>000827012</sourcerecordid>
|
881
|
+
<sourceid>nyu_aleph</sourceid>
|
882
|
+
<recordid>nyu_aleph000827012</recordid>
|
883
|
+
<originalsourceid>NYU01</originalsourceid>
|
884
|
+
<ilsapiid>NYU01000827012</ilsapiid>
|
885
|
+
<sourceformat>MARC21</sourceformat>
|
886
|
+
<sourcesystem>Aleph</sourcesystem>
|
887
|
+
</control>
|
888
|
+
<display>
|
889
|
+
<type>book</type>
|
890
|
+
<title>Learning to bridge the digital divide.</title>
|
891
|
+
<contributor>Centre for Educational Research and Innovation.; National Center on Adult Literacy.; Organisation for Economic Co-operation and Development.</contributor>
|
892
|
+
<publisher>Paris : Organisation for Economic Co-operation and Development</publisher>
|
893
|
+
<creationdate>c2000</creationdate>
|
894
|
+
<format>137 p. : ill. ; 23 cm.</format>
|
895
|
+
<identifier>$$Cisbn$$V9264182888; $$Cisbn$$V9789264182882</identifier>
|
896
|
+
<subject>Education -- Data processing -- Social aspects; Computer-assisted instruction -- Social aspects; Information technology -- Social aspects; Computers -- Social aspects; Information superhighway -- Social aspects; World Wide Web -- Social aspects; Internet -- Social aspects; Educational equalization; Digital divide; Technology Access</subject>
|
897
|
+
<description>$$Ccontents$$VThe emerging policy agenda / by Stephen McNair -- Different educational inequalities : ICT an option to close the gaps / by Guillermo Kelley-Salinas -- The digital divide : making knowledge available in a global context / by Nolan A. Bowie -- Emerging trends and issues : the nature of the digital divide in learning / synthesis by the OECD Secretariat -- The digital divide within formal school education : causes and consequences / by Richard L. Venezky -- Basic skills in adult education and the digital divide / by Lynda Ginsburg, John Sabatini and Daniel A. Wagner -- Towards bridging learning's digital divide / synthesis by the OECD Secretariat -- ICT, equity, and the challenge of lifelong learning : the Swedish approach / by Sten Ljungdahl -- Other national approaches : Portugal, the United Kingdom, Japan, the United States, Finland / by João Santos, Robin Ritzema, Takashi Sakamoto, Robert Muller, Jouni Kangasniemi -- Bibliography.</description>
|
898
|
+
<language>eng</language>
|
899
|
+
<relation>$$Cseries $$VEducation and skills</relation>
|
900
|
+
<source>nyu_aleph</source>
|
901
|
+
<availlibrary>$$INYU$$LBREF6$$1International Documents$$2(HC79.I55 L43 2000 Non-circulating )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBREF6$$ZRF6IN</availlibrary>
|
902
|
+
<lds02>nyu_aleph000827012</lds02>
|
903
|
+
<lds01>NYU</lds01>
|
904
|
+
<availinstitution>$$INYU$$Savailable</availinstitution>
|
905
|
+
<availpnx>available</availpnx>
|
906
|
+
</display>
|
907
|
+
<links>
|
908
|
+
<openurl>$$Topenurl_journal</openurl>
|
909
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
910
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
911
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
912
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
913
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
914
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
915
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
916
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
917
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
918
|
+
</links>
|
919
|
+
<search>
|
920
|
+
<creatorcontrib>Centre for Educational Research and Innovation.</creatorcontrib>
|
921
|
+
<creatorcontrib>National Center on Adult Literacy.</creatorcontrib>
|
922
|
+
<creatorcontrib>Organisation for Economic Co-operation and Development.</creatorcontrib>
|
923
|
+
<title>Learning to bridge the digital divide.</title>
|
924
|
+
<subject>Education Data processing Social aspects</subject>
|
925
|
+
<subject>Computer-assisted instruction Social aspects</subject>
|
926
|
+
<subject>Information technology Social aspects</subject>
|
927
|
+
<subject>Computers Social aspects</subject>
|
928
|
+
<subject>Information superhighway Social aspects</subject>
|
929
|
+
<subject>World Wide Web Social aspects</subject>
|
930
|
+
<subject>Internet Social aspects</subject>
|
931
|
+
<subject>Educational equalization</subject>
|
932
|
+
<subject>Digital divide</subject>
|
933
|
+
<subject>Technology Access</subject>
|
934
|
+
<subject>Divide, Digital</subject>
|
935
|
+
<subject>Global digital divide</subject>
|
936
|
+
<subject>GDD (Global digital divide)</subject>
|
937
|
+
<subject>Educational inequality</subject>
|
938
|
+
<subject>Equal education</subject>
|
939
|
+
<subject>Equal educational opportunity</subject>
|
940
|
+
<subject>Equalization, Educational</subject>
|
941
|
+
<subject>IT (Information technology)</subject>
|
942
|
+
<subject>Microcomputer-assisted instruction</subject>
|
943
|
+
<subject>CAI (Computer-assisted instruction)</subject>
|
944
|
+
<subject>Microcomputer-assisted learning</subject>
|
945
|
+
<subject>Microcomputer-based instruction</subject>
|
946
|
+
<subject>Microcomputer-aided instruction</subject>
|
947
|
+
<subject>Computer based instruction</subject>
|
948
|
+
<subject>Computer-aided instruction</subject>
|
949
|
+
<subject>Computer-assisted learning</subject>
|
950
|
+
<subject>Computer-enhanced learning</subject>
|
951
|
+
<subject>Data superhighway</subject>
|
952
|
+
<subject>Electronic superhighway</subject>
|
953
|
+
<subject>Infobahn</subject>
|
954
|
+
<subject>Infopike</subject>
|
955
|
+
<subject>Information infrastructure</subject>
|
956
|
+
<subject>Digital highway</subject>
|
957
|
+
<subject>Superhighway, Information</subject>
|
958
|
+
<subject>Information highway</subject>
|
959
|
+
<subject>Data highway</subject>
|
960
|
+
<subject>I-way (Information superhighway)</subject>
|
961
|
+
<subject>Global information infrastructure</subject>
|
962
|
+
<subject>Infrastructure, Information</subject>
|
963
|
+
<subject>National information infrastructure</subject>
|
964
|
+
<subject>Internet (Computer network)</subject>
|
965
|
+
<subject>DARPA Internet</subject>
|
966
|
+
<subject>W3 (World Wide Web)</subject>
|
967
|
+
<subject>World Wide Web (Information retrieval system)</subject>
|
968
|
+
<subject>Web (World Wide Web)</subject>
|
969
|
+
<subject>WWW (World Wide Web)</subject>
|
970
|
+
<subject>Electronic data processing in programmed instruction</subject>
|
971
|
+
<general>Organisation for Economic Co-operation and Development,</general>
|
972
|
+
<general>At head of title: Centre for Educational Research and Innovation, National Center on Adult Literacy (NCAL).</general>
|
973
|
+
<general>"This publication builds on the papers and discussions of the Fifth NCAL/OECD Roundtable organised at the U.S. National Center on Adult Literacy (NCAL), University of Pennsylvania, 8-10 December 1999. The Roundtable [was] entitled The Lifelong Learning and New Technologies Gap: Reaching the Disadvantaged"--P. 5.</general>
|
974
|
+
<sourceid>nyu_aleph</sourceid>
|
975
|
+
<recordid>nyu_aleph000827012</recordid>
|
976
|
+
<isbn>9264182888</isbn>
|
977
|
+
<isbn>9789264182882</isbn>
|
978
|
+
<toc>The emerging policy agenda / by Stephen McNair -- Different educational inequalities : ICT an option to close the gaps / by Guillermo Kelley-Salinas -- The digital divide : making knowledge available in a global context / by Nolan A. Bowie -- Emerging trends and issues : the nature of the digital divide in learning / synthesis by the OECD Secretariat -- The digital divide within formal school education : causes and consequences / by Richard L. Venezky -- Basic skills in adult education and the digital divide / by Lynda Ginsburg, John Sabatini and Daniel A. Wagner -- Towards bridging learning's digital divide / synthesis by the OECD Secretariat -- ICT, equity, and the challenge of lifelong learning : the Swedish approach / by Sten Ljungdahl -- Other national approaches : Portugal, the United Kingdom, Japan, the United States, Finland / by João Santos, Robin Ritzema, Takashi Sakamoto, Robert Muller, Jouni Kangasniemi -- Bibliography.</toc>
|
979
|
+
<rsrctype>book</rsrctype>
|
980
|
+
<creationdate>2000</creationdate>
|
981
|
+
<addtitle>Education and skills</addtitle>
|
982
|
+
<searchscope>BREF6</searchscope>
|
983
|
+
<searchscope>BREF6 International Documents</searchscope>
|
984
|
+
<searchscope>nyu_aleph</searchscope>
|
985
|
+
<searchscope>NYU</searchscope>
|
986
|
+
<searchscope>BREF</searchscope>
|
987
|
+
<searchscope>BOBST</searchscope>
|
988
|
+
<scope>BREF6</scope>
|
989
|
+
<scope>BREF6 International Documents</scope>
|
990
|
+
<scope>nyu_aleph</scope>
|
991
|
+
<scope>NYU</scope>
|
992
|
+
<scope>BREF</scope>
|
993
|
+
<scope>BOBST</scope>
|
994
|
+
<alttitle>Schooling for tomorrow, learning to bridge the digital divide</alttitle>
|
995
|
+
<lsr01>HC79.I55 L43 2000</lsr01>
|
996
|
+
<lsr01>HC79 .I55 L43 2000</lsr01>
|
997
|
+
<lsr02>Organisation for Economic Co-operation and Development,</lsr02>
|
998
|
+
</search>
|
999
|
+
<sort>
|
1000
|
+
<title>Learning to bridge the digital divide.</title>
|
1001
|
+
<creationdate>2000</creationdate>
|
1002
|
+
<author>Centre for Educational Research and Innovation.</author>
|
1003
|
+
<lso01>2000</lso01>
|
1004
|
+
</sort>
|
1005
|
+
<facets>
|
1006
|
+
<language>eng</language>
|
1007
|
+
<creationdate>2000</creationdate>
|
1008
|
+
<topic>Education–Data processing–Social aspects</topic>
|
1009
|
+
<topic>Computer-assisted instruction–Social aspects</topic>
|
1010
|
+
<topic>Information technology–Social aspects</topic>
|
1011
|
+
<topic>Computers–Social aspects</topic>
|
1012
|
+
<topic>Information superhighway–Social aspects</topic>
|
1013
|
+
<topic>World Wide Web–Social aspects</topic>
|
1014
|
+
<topic>Internet–Social aspects</topic>
|
1015
|
+
<topic>Educational equalization</topic>
|
1016
|
+
<topic>Digital divide</topic>
|
1017
|
+
<topic>Technology Access</topic>
|
1018
|
+
<collection>BREF6</collection>
|
1019
|
+
<toplevel>available</toplevel>
|
1020
|
+
<prefilter>books</prefilter>
|
1021
|
+
<rsrctype>books</rsrctype>
|
1022
|
+
<creatorcontrib>Centre for Educational Research and Innovation</creatorcontrib>
|
1023
|
+
<creatorcontrib>National Center on Adult Literacy</creatorcontrib>
|
1024
|
+
<creatorcontrib>Organisation for Economic Co-operation and Development</creatorcontrib>
|
1025
|
+
<library>BREF</library>
|
1026
|
+
<library>BOBST</library>
|
1027
|
+
<lfc01>International Documents</lfc01>
|
1028
|
+
<classificationlcc>H - Social sciences.–Economic history and conditions–Special topics Including air pollution, automation, consumer demand, famines, flow of funds, etc.</classificationlcc>
|
1029
|
+
<frbrgroupid>49949905</frbrgroupid>
|
1030
|
+
<frbrtype>6</frbrtype>
|
1031
|
+
</facets>
|
1032
|
+
<dedup>
|
1033
|
+
<t>1</t>
|
1034
|
+
<c2>9264182888;9789264182882</c2>
|
1035
|
+
<c3>learningtobridgetheditaldivide</c3>
|
1036
|
+
<c4>2000</c4>
|
1037
|
+
<f3>9264182888;9789264182882</f3>
|
1038
|
+
<f5>learningtobridgetheditaldivide</f5>
|
1039
|
+
<f6>2000</f6>
|
1040
|
+
<f7>learning to bridge the digital divide</f7>
|
1041
|
+
<f8>fr</f8>
|
1042
|
+
<f9>137 p. :</f9>
|
1043
|
+
<f10>organisation for economic co operation and development</f10>
|
1044
|
+
</dedup>
|
1045
|
+
<frbr>
|
1046
|
+
<t>1</t>
|
1047
|
+
<k1>$$Kcentre for educational research and innovation$$AA</k1>
|
1048
|
+
<k1>$$Knational center on adult literacy$$AA</k1>
|
1049
|
+
<k1>$$Korganisation for economic co operation and development$$AA</k1>
|
1050
|
+
<k3>$$Kbooklearning to bridge the digital divide$$AT</k3>
|
1051
|
+
</frbr>
|
1052
|
+
<delivery>
|
1053
|
+
<institution>NYU</institution>
|
1054
|
+
<delcategory>Physical Item</delcategory>
|
1055
|
+
</delivery>
|
1056
|
+
<enrichment>
|
1057
|
+
<classificationlcc>HC79.I55</classificationlcc>
|
1058
|
+
</enrichment>
|
1059
|
+
<ranking>
|
1060
|
+
<booster1>1</booster1>
|
1061
|
+
<booster2>1</booster2>
|
1062
|
+
</ranking>
|
1063
|
+
<addata>
|
1064
|
+
<addau>Centre for Educational Research and Innovation</addau>
|
1065
|
+
<addau>National Center on Adult Literacy</addau>
|
1066
|
+
<addau>Organisation for Economic Co-operation and Development</addau>
|
1067
|
+
<btitle>Learning to bridge the digital divide.</btitle>
|
1068
|
+
<addtitle>Schooling for tomorrow, learning to bridge the digital divide</addtitle>
|
1069
|
+
<seriestitle>Education and skills</seriestitle>
|
1070
|
+
<date>2000</date>
|
1071
|
+
<risdate>c2000.</risdate>
|
1072
|
+
<isbn>9264182888</isbn>
|
1073
|
+
<isbn>9789264182882</isbn>
|
1074
|
+
<format>book</format>
|
1075
|
+
<genre>book</genre>
|
1076
|
+
<ristype>BOOK</ristype>
|
1077
|
+
<notes>Includes bibliographical references (p. 131-137).</notes>
|
1078
|
+
<cop>Paris</cop>
|
1079
|
+
<pub>Organisation for Economic Co-operation and Development</pub>
|
1080
|
+
<oclcid>45208351</oclcid>
|
1081
|
+
<lad01>BREF6</lad01>
|
1082
|
+
<lad01>Physical Item</lad01>
|
1083
|
+
</addata>
|
1084
|
+
</record>
|
1085
|
+
</PrimoNMBib>
|
1086
|
+
<GETIT deliveryCategory="Physical Item" GetIt1="http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438" GetIt2="https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-01-10T12%3A31%3A47IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003531438&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Globalization%20and%20the%20digital%20divide&amp;rft.aulast=St.%20Amant&amp;rft.aufirst=Kirk%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Cambria%20Press&amp;rft.place=Amherst%2C%20N.Y.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=9781604977707&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph003531438&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>003531438&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
1087
|
+
<LIBRARIES>
|
1088
|
+
<LIBRARY>
|
1089
|
+
<institution>NYU</institution>
|
1090
|
+
<library>BREF6</library>
|
1091
|
+
<status>available</status>
|
1092
|
+
<collection>International Documents</collection>
|
1093
|
+
<callNumber>(HC79.I55 L43 2000 Non-circulating )</callNumber>
|
1094
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000827012</url>
|
1095
|
+
</LIBRARY>
|
1096
|
+
</LIBRARIES>
|
1097
|
+
<LINKS>
|
1098
|
+
<openurl><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000827012&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Learning%20to%20bridge%20the%20digital%20divide.&rft.aulast=&rft.aufirst=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Organisation%20for%20Economic%20Co-operation%20and%20Development&rft.place=Paris&rft.issn=&rft.eissn=&rft.isbn=9264182888&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph000827012&rft.eisbn=&rft_dat=<nyu_aleph>000827012</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
1099
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=000827012</backlink>
|
1100
|
+
<thumbnail>http://images.amazon.com/images/P/9264182888.01._SSTHUM_.jpg</thumbnail>
|
1101
|
+
<linktotoc>http://www.amazon.com/gp/reader/9264182888</linktotoc>
|
1102
|
+
<openurlfulltext><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000827012&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Learning%20to%20bridge%20the%20digital%20divide.&rft.aulast=&rft.aufirst=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Organisation%20for%20Economic%20Co-operation%20and%20Development&rft.place=Paris&rft.issn=&rft.eissn=&rft.isbn=9264182888&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>000827012</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
1103
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000827012</linktoholdings>
|
1104
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph000827012?institution=NYU&amp;persistent</linktoreview>
|
1105
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=9264182888</linktouc>
|
1106
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A9264182888</linktouc>
|
1107
|
+
</LINKS>
|
1108
|
+
</DOC>
|
1109
|
+
<DOC ID="2558381" RANK="0.015258503" NO="5" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
1110
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
1111
|
+
<record>
|
1112
|
+
<control>
|
1113
|
+
<sourcerecordid>001596756</sourcerecordid>
|
1114
|
+
<sourceid>nyu_aleph</sourceid>
|
1115
|
+
<recordid>nyu_aleph001596756</recordid>
|
1116
|
+
<originalsourceid>NYU01</originalsourceid>
|
1117
|
+
<ilsapiid>NYU01001596756</ilsapiid>
|
1118
|
+
<sourceformat>MARC21</sourceformat>
|
1119
|
+
<sourcesystem>Aleph</sourcesystem>
|
1120
|
+
</control>
|
1121
|
+
<display>
|
1122
|
+
<type>video</type>
|
1123
|
+
<title>Digital divide [videorecording] : [teachers, technology, and the classroom]</title>
|
1124
|
+
<contributor>David B. Bolt 1954-; Tom Disher; Regina Taylor; Charlie Pearson; Independent Television Service.; Studio Miramar.; Films for the Humanities (Firm)</contributor>
|
1125
|
+
<publisher>Princeton, NJ : Films for the Humanities &amp; Sciences</publisher>
|
1126
|
+
<creationdate>c1999</creationdate>
|
1127
|
+
<format>4 videocassettes (57 min. each) : sd., col. ; 1/2 in.</format>
|
1128
|
+
<identifier>$$Cmuspub$$VFFH 9328-FFH9331 Films for the Humanities &amp; Sciences</identifier>
|
1129
|
+
<subject>Education -- United States -- Data processing; Computer-assisted instruction -- Social aspects -- United States; Educational equalization -- United States; Computers and children</subject>
|
1130
|
+
<description>$$Ccontents$$V[Pt. 1.] Wired for what? [: the dividends of universal access.] -- [pt. 2.] Fair play [: achieving gender equity in the digital age.] -- [pt. 3.] Virtual equality [: the information revolution and the inner city.] -- [pt. 4.] Crossing the divide [: creating a high-tech work force.]</description>
|
1131
|
+
<description>$$Csummary$$VFour-part series examines the effects of technology in the classroom; how that technology is used; who has access to it, and who does not; and the price for being on the wrong side of the digital divide. Each program analyzes the issues and initiatives surrounding the nation's drive to provide all students with a high-tech education, from the viewpoint of teachers, government officials, industry executives, leaders in the fight for techno-equality, and the students themselves.</description>
|
1132
|
+
<description>$$Ccredits$$VExecutive producer, David Bolt ; original music and series theme, Tom Disher ; series writer, Charlie Pearson.</description>
|
1133
|
+
<description>$$Ccredits$$VNarrated by Regina Taylor.</description>
|
1134
|
+
<language>eng</language>
|
1135
|
+
<source>nyu_aleph</source>
|
1136
|
+
<availlibrary>$$INYU$$LBAFC$$1Main Collection$$2(VCA 9442 )$$Savailable$$34$$40$$5Y$$60$$XNYU50$$YBAFC$$ZAFC</availlibrary>
|
1137
|
+
<lds02>nyu_aleph001596756</lds02>
|
1138
|
+
<lds01>NYU</lds01>
|
1139
|
+
<availinstitution>$$INYU$$Savailable</availinstitution>
|
1140
|
+
<availpnx>available</availpnx>
|
1141
|
+
</display>
|
1142
|
+
<links>
|
1143
|
+
<openurl>$$Topenurl_journal</openurl>
|
1144
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
1145
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
1146
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
1147
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
1148
|
+
<linktouc>$$Tworldcat_oclc$$DCheck other libraries (WorldCat®)</linktouc>
|
1149
|
+
</links>
|
1150
|
+
<search>
|
1151
|
+
<creatorcontrib>produced by Studio Miramar ...in association with the Independent Television Service. Series created by David Bolt.</creatorcontrib>
|
1152
|
+
<creatorcontrib>Executive producer, David Bolt ; original music and series theme, Tom Disher ; series writer, Charlie Pearson.</creatorcontrib>
|
1153
|
+
<creatorcontrib>Narrated by Regina Taylor.</creatorcontrib>
|
1154
|
+
<creatorcontrib>David B., Bolt 1954-</creatorcontrib>
|
1155
|
+
<creatorcontrib>Tom Disher</creatorcontrib>
|
1156
|
+
<creatorcontrib>Regina Taylor</creatorcontrib>
|
1157
|
+
<creatorcontrib>Charlie Pearson</creatorcontrib>
|
1158
|
+
<creatorcontrib>Bolt, D</creatorcontrib>
|
1159
|
+
<creatorcontrib>Disher, T</creatorcontrib>
|
1160
|
+
<creatorcontrib>Taylor, R</creatorcontrib>
|
1161
|
+
<creatorcontrib>Pearson, C</creatorcontrib>
|
1162
|
+
<creatorcontrib>Independent Television Service.</creatorcontrib>
|
1163
|
+
<creatorcontrib>Studio Miramar.</creatorcontrib>
|
1164
|
+
<creatorcontrib>Films for the Humanities (Firm)</creatorcontrib>
|
1165
|
+
<creatorcontrib>ITVS International</creatorcontrib>
|
1166
|
+
<creatorcontrib>ITVS</creatorcontrib>
|
1167
|
+
<title>Digital divide [teachers, technology, and the classroom] /</title>
|
1168
|
+
<description>Four-part series examines the effects of technology in the classroom; how that technology is used; who has access to it, and who does not; and the price for being on the wrong side of the digital divide. Each program analyzes the issues and initiatives surrounding the nation's drive to provide all students with a high-tech education, from the viewpoint of teachers, government officials, industry executives, leaders in the fight for techno-equality, and the students themselves.</description>
|
1169
|
+
<subject>Education United States Data processing</subject>
|
1170
|
+
<subject>Computer-assisted instruction Social aspects United States</subject>
|
1171
|
+
<subject>Educational equalization United States</subject>
|
1172
|
+
<subject>Computers and children</subject>
|
1173
|
+
<subject>Children and computers</subject>
|
1174
|
+
<subject>Equal educational opportunity</subject>
|
1175
|
+
<subject>Equalization, Educational</subject>
|
1176
|
+
<subject>Educational inequality</subject>
|
1177
|
+
<subject>Equal education</subject>
|
1178
|
+
<subject>Microcomputer-assisted instruction</subject>
|
1179
|
+
<subject>CAI (Computer-assisted instruction)</subject>
|
1180
|
+
<subject>Microcomputer-assisted learning</subject>
|
1181
|
+
<subject>Microcomputer-based instruction</subject>
|
1182
|
+
<subject>Microcomputer-aided instruction</subject>
|
1183
|
+
<subject>Electronic data processing in programmed instruction</subject>
|
1184
|
+
<subject>Computer based instruction</subject>
|
1185
|
+
<subject>Computer-aided instruction</subject>
|
1186
|
+
<subject>Computer-assisted learning</subject>
|
1187
|
+
<subject>Computer-enhanced learning</subject>
|
1188
|
+
<general>Films for the Humanities &amp; Sciences,</general>
|
1189
|
+
<general>Subtitles from cassette labels.</general>
|
1190
|
+
<general>Originally produced for television in 1999.</general>
|
1191
|
+
<general>Executive producer, David Bolt ; original music and series theme, Tom Disher ; series writer, Charlie Pearson.</general>
|
1192
|
+
<general>FFH 9328-FFH9331</general>
|
1193
|
+
<general>[videorecording] :</general>
|
1194
|
+
<sourceid>nyu_aleph</sourceid>
|
1195
|
+
<recordid>nyu_aleph001596756</recordid>
|
1196
|
+
<toc>[Pt. 1.] Wired for what? [: the dividends of universal access.] -- [pt. 2.] Fair play [: achieving gender equity in the digital age.] -- [pt. 3.] Virtual equality [: the information revolution and the inner city.] -- [pt. 4.] Crossing the divide [: creating a high-tech work force.]</toc>
|
1197
|
+
<rsrctype>video</rsrctype>
|
1198
|
+
<creationdate>2000</creationdate>
|
1199
|
+
<creationdate>1999</creationdate>
|
1200
|
+
<addtitle>Wired for what? The dividends of universal access.</addtitle>
|
1201
|
+
<addtitle>Fair play: achieving gender equity in the digital age.</addtitle>
|
1202
|
+
<addtitle>Virtual equality: the information revolution and the inner city.</addtitle>
|
1203
|
+
<addtitle>Crossing the divide: creating a high-tech work force.</addtitle>
|
1204
|
+
<searchscope>BAFC</searchscope>
|
1205
|
+
<searchscope>BAFC Main Collection</searchscope>
|
1206
|
+
<searchscope>nyu_aleph</searchscope>
|
1207
|
+
<searchscope>NYU</searchscope>
|
1208
|
+
<searchscope>BOBST</searchscope>
|
1209
|
+
<scope>BAFC</scope>
|
1210
|
+
<scope>BAFC Main Collection</scope>
|
1211
|
+
<scope>nyu_aleph</scope>
|
1212
|
+
<scope>NYU</scope>
|
1213
|
+
<scope>BOBST</scope>
|
1214
|
+
<alttitle>Teachers, technology and the classroom</alttitle>
|
1215
|
+
<lsr01>VCA 9442</lsr01>
|
1216
|
+
<lsr02>Films for the Humanities &amp; Sciences,</lsr02>
|
1217
|
+
</search>
|
1218
|
+
<sort>
|
1219
|
+
<title>Digital divide [teachers, technology, and the classroom] /</title>
|
1220
|
+
<creationdate>2000</creationdate>
|
1221
|
+
<author>Bolt, David B., 1954-</author>
|
1222
|
+
<lso01>2000</lso01>
|
1223
|
+
</sort>
|
1224
|
+
<facets>
|
1225
|
+
<language>eng</language>
|
1226
|
+
<creationdate>2000</creationdate>
|
1227
|
+
<topic>Education–United States–Data processing</topic>
|
1228
|
+
<topic>Computer-assisted instruction–Social aspects–United States</topic>
|
1229
|
+
<topic>Educational equalization–United States</topic>
|
1230
|
+
<topic>Computers and children</topic>
|
1231
|
+
<collection>BAFC</collection>
|
1232
|
+
<toplevel>available</toplevel>
|
1233
|
+
<prefilter>video</prefilter>
|
1234
|
+
<rsrctype>video</rsrctype>
|
1235
|
+
<creatorcontrib>Bolt, D</creatorcontrib>
|
1236
|
+
<creatorcontrib>Disher, T</creatorcontrib>
|
1237
|
+
<creatorcontrib>Taylor, R</creatorcontrib>
|
1238
|
+
<creatorcontrib>Pearson, C</creatorcontrib>
|
1239
|
+
<creatorcontrib>Independent Television Service</creatorcontrib>
|
1240
|
+
<creatorcontrib>Studio Miramar</creatorcontrib>
|
1241
|
+
<creatorcontrib>Films for the Humanities (Firm)</creatorcontrib>
|
1242
|
+
<library>BOBST</library>
|
1243
|
+
<lfc01>Main Collection</lfc01>
|
1244
|
+
<frbrgroupid>50667612</frbrgroupid>
|
1245
|
+
<frbrtype>6</frbrtype>
|
1246
|
+
</facets>
|
1247
|
+
<dedup>
|
1248
|
+
<t>1</t>
|
1249
|
+
<c3>digitaldivideteachereclassroom</c3>
|
1250
|
+
<c4>2000</c4>
|
1251
|
+
<f5>digitaldivideteacherstechnologyandtheclassroom</f5>
|
1252
|
+
<f6>2000</f6>
|
1253
|
+
<f7>digital divide teachers technology and the classroom</f7>
|
1254
|
+
<f8>nju</f8>
|
1255
|
+
<f9>4 videocassettes (57 min. each) :</f9>
|
1256
|
+
<f10>films for the humanities sciences</f10>
|
1257
|
+
</dedup>
|
1258
|
+
<frbr>
|
1259
|
+
<t>1</t>
|
1260
|
+
<k1>$$Kbolt david b 1954$$AA</k1>
|
1261
|
+
<k1>$$Kdisher tom$$AA</k1>
|
1262
|
+
<k1>$$Ktaylor regina$$AA</k1>
|
1263
|
+
<k1>$$Kpearson charlie$$AA</k1>
|
1264
|
+
<k1>$$Kindependent television service$$AA</k1>
|
1265
|
+
<k1>$$Kstudio miramar$$AA</k1>
|
1266
|
+
<k1>$$Kfilms for the humanities firm$$AA</k1>
|
1267
|
+
<k3>$$Kvideodigital divide teachers technology and the classroom$$AT</k3>
|
1268
|
+
</frbr>
|
1269
|
+
<delivery>
|
1270
|
+
<institution>NYU</institution>
|
1271
|
+
<delcategory>Physical Item</delcategory>
|
1272
|
+
</delivery>
|
1273
|
+
<ranking>
|
1274
|
+
<booster1>1</booster1>
|
1275
|
+
<booster2>1</booster2>
|
1276
|
+
</ranking>
|
1277
|
+
<addata>
|
1278
|
+
<aulast>Bolt</aulast>
|
1279
|
+
<aufirst>David B.,</aufirst>
|
1280
|
+
<addau>Bolt, David B., 1954-</addau>
|
1281
|
+
<addau>Disher, Tom</addau>
|
1282
|
+
<addau>Taylor, Regina</addau>
|
1283
|
+
<addau>Pearson, Charlie</addau>
|
1284
|
+
<addau>Independent Television Service</addau>
|
1285
|
+
<addau>Studio Miramar</addau>
|
1286
|
+
<addau>Films for the Humanities (Firm)</addau>
|
1287
|
+
<btitle>Digital divide [videorecording] : [teachers, technology, and the classroom]</btitle>
|
1288
|
+
<addtitle>Teachers, technology and the classroom</addtitle>
|
1289
|
+
<date>2000</date>
|
1290
|
+
<date>1999</date>
|
1291
|
+
<risdate>c1999.</risdate>
|
1292
|
+
<format>video</format>
|
1293
|
+
<genre>video</genre>
|
1294
|
+
<ristype>VIDEO</ristype>
|
1295
|
+
<abstract>Four-part series examines the effects of technology in the classroom; how that technology is used; who has access to it, and who does not; and the price for being on the wrong side of the digital divide. Each program analyzes the issues and initiatives surrounding the nation's drive to provide all students with a high-tech education, from the viewpoint of teachers, government officials, industry executives, leaders in the fight for techno-equality, and the students themselves.</abstract>
|
1296
|
+
<cop>Princeton, NJ</cop>
|
1297
|
+
<pub>Films for the Humanities &amp; Sciences</pub>
|
1298
|
+
<oclcid>43497545</oclcid>
|
1299
|
+
<lad01>BAFC</lad01>
|
1300
|
+
<lad01>Physical Item</lad01>
|
1301
|
+
</addata>
|
1302
|
+
</record>
|
1303
|
+
</PrimoNMBib>
|
1304
|
+
<GETIT deliveryCategory="Physical Item" GetIt1="http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438" GetIt2="https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-01-10T12%3A31%3A47IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003531438&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Globalization%20and%20the%20digital%20divide&amp;rft.aulast=St.%20Amant&amp;rft.aufirst=Kirk%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Cambria%20Press&amp;rft.place=Amherst%2C%20N.Y.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=9781604977707&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph003531438&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>003531438&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
1305
|
+
<LIBRARIES>
|
1306
|
+
<LIBRARY>
|
1307
|
+
<institution>NYU</institution>
|
1308
|
+
<library>BAFC</library>
|
1309
|
+
<status>available</status>
|
1310
|
+
<collection>Main Collection</collection>
|
1311
|
+
<callNumber>(VCA 9442 )</callNumber>
|
1312
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=001596756</url>
|
1313
|
+
</LIBRARY>
|
1314
|
+
</LIBRARIES>
|
1315
|
+
<LINKS>
|
1316
|
+
<openurl><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph001596756&rft_val_fmt=info:ofi/fmt:kev:mtx:video&rft.genre=video&rft.jtitle=&rft.btitle=Digital%20divide%20[videorecording]%20:%20[teachers%2C%20technology%2C%20and%20the%20classroom]&rft.aulast=Bolt&rft.aufirst=David%20B.%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Films%20for%20the%20Humanities%20%26%20Sciences&rft.place=Princeton%2C%20NJ&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph001596756&rft.eisbn=&rft_dat=<nyu_aleph>001596756</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
1317
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=001596756</backlink>
|
1318
|
+
<thumbnail/>
|
1319
|
+
<openurlfulltext><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A31%3A47IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph001596756&rft_val_fmt=info:ofi/fmt:kev:mtx:video&rft.genre=video&rft.jtitle=&rft.btitle=Digital%20divide%20[videorecording]%20:%20[teachers%2C%20technology%2C%20and%20the%20classroom]&rft.aulast=Bolt&rft.aufirst=David%20B.%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Films%20for%20the%20Humanities%20%26%20Sciences&rft.place=Princeton%2C%20NJ&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>001596756</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
1320
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=001596756</linktoholdings>
|
1321
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph001596756?institution=NYU&amp;persistent</linktoreview>
|
1322
|
+
<linktouc>http://www.worldcat.org/search?q=no%3A43497545</linktouc>
|
1323
|
+
</LINKS>
|
1324
|
+
</DOC>
|
1325
|
+
</DOCSET>
|
1326
|
+
</RESULT>
|
1327
|
+
<searchToken>0</searchToken>
|
1328
|
+
</JAGROOT>
|
1329
|
+
</SEGMENTS></searchBriefReturn></searchBriefResponse></soapenv:Body></soapenv:Envelope>
|
1330
|
+
http_version:
|
1331
|
+
recorded_at: Thu, 10 Jan 2013 17:31:47 GMT
|
1332
|
+
recorded_with: VCR 2.3.0
|