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,1453 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.3.0
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: post
|
6
|
+
uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher
|
7
|
+
body:
|
8
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:wsdl="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><env:Body><searchBrief><request><![CDATA[<searchRequest xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents" xmlns="http://www.exlibris.com/primo/xsd/wsRequest"><PrimoSearchRequest xmlns="http://www.exlibris.com/primo/xsd/search/request"><QueryTerms><BoolOpeator>AND</BoolOpeator><QueryTerm><IndexField>any</IndexField><PrecisionOperator>contains</PrecisionOperator><Value>digital divide</Value></QueryTerm></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled></PrimoSearchRequest><institution>NYU</institution></searchRequest>]]></request></searchBrief></env:Body></env:Envelope>
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- text/xml;charset=UTF-8
|
12
|
+
Content-Length:
|
13
|
+
- "930"
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
Soapaction:
|
17
|
+
- "\"searchBrief\""
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Content-Type:
|
24
|
+
- text/xml;charset=utf-8
|
25
|
+
Date:
|
26
|
+
- Thu, 10 Jan 2013 17:47:52 GMT
|
27
|
+
X-Powered-By:
|
28
|
+
- Servlet 2.5; JBoss-5.0/JBossWeb-2.1
|
29
|
+
Transfer-Encoding:
|
30
|
+
- chunked
|
31
|
+
Server:
|
32
|
+
- Apache-Coyote/1.1
|
33
|
+
body:
|
34
|
+
string: |-
|
35
|
+
<?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">
|
36
|
+
<JAGROOT>
|
37
|
+
<RESULT>
|
38
|
+
<QUERYTRANSFORMS/>
|
39
|
+
<FACETLIST ACCURATE_COUNTERS="true">
|
40
|
+
<FACET NAME="creator" COUNT="100">
|
41
|
+
<FACET_VALUES KEY="Moriset, B" VALUE="1"/>
|
42
|
+
<FACET_VALUES KEY="Juntunen, N" VALUE="1"/>
|
43
|
+
<FACET_VALUES KEY="Maurrasse, D" VALUE="1"/>
|
44
|
+
<FACET_VALUES KEY="Monroe, B" VALUE="1"/>
|
45
|
+
<FACET_VALUES KEY="DeHart, M" VALUE="1"/>
|
46
|
+
<FACET_VALUES KEY="Galliers, R" VALUE="1"/>
|
47
|
+
<FACET_VALUES KEY="Damodaran, L" VALUE="1"/>
|
48
|
+
<FACET_VALUES KEY="Roland Berger Strategy Consultants" VALUE="1"/>
|
49
|
+
<FACET_VALUES KEY="Comunicación, Internet y sociedad en América Latina" VALUE="1"/>
|
50
|
+
<FACET_VALUES KEY="WNET (Television station : New York, N.Y.)" VALUE="1"/>
|
51
|
+
<FACET_VALUES KEY="Shrum, W" VALUE="1"/>
|
52
|
+
<FACET_VALUES KEY="Studio Miramar" VALUE="2"/>
|
53
|
+
<FACET_VALUES KEY="International Development Research Centre (Canada)" VALUE="3"/>
|
54
|
+
<FACET_VALUES KEY="Chen, I" VALUE="1"/>
|
55
|
+
<FACET_VALUES KEY="Wee, V" VALUE="1"/>
|
56
|
+
<FACET_VALUES KEY="Sorj, B" VALUE="1"/>
|
57
|
+
<FACET_VALUES KEY="Sweeney, Michael" VALUE="1"/>
|
58
|
+
<FACET_VALUES KEY="Newell, S" VALUE="1"/>
|
59
|
+
<FACET_VALUES KEY="Hemispheric Institute Encuentro" VALUE="1"/>
|
60
|
+
<FACET_VALUES KEY="Chen, J" VALUE="1"/>
|
61
|
+
<FACET_VALUES KEY="Olphert, W" VALUE="1"/>
|
62
|
+
<FACET_VALUES KEY="Nayman, I" VALUE="1"/>
|
63
|
+
<FACET_VALUES KEY="Newell, A" VALUE="1"/>
|
64
|
+
<FACET_VALUES KEY="Garvin, P" VALUE="1"/>
|
65
|
+
<FACET_VALUES KEY="Johnson, D" VALUE="1"/>
|
66
|
+
<FACET_VALUES KEY="Pearson, C" VALUE="2"/>
|
67
|
+
<FACET_VALUES KEY="Vidal, G" VALUE="1"/>
|
68
|
+
<FACET_VALUES KEY="Yartey, C" VALUE="1"/>
|
69
|
+
<FACET_VALUES KEY="Lee, S" VALUE="1"/>
|
70
|
+
<FACET_VALUES KEY="Ally, M" VALUE="1"/>
|
71
|
+
<FACET_VALUES KEY="Jones, S" VALUE="2"/>
|
72
|
+
<FACET_VALUES KEY="Fitzgibbon, A" VALUE="1"/>
|
73
|
+
<FACET_VALUES KEY="Bonilla, M" VALUE="1"/>
|
74
|
+
<FACET_VALUES KEY="Fondazione Rodolfo Debenedetti" VALUE="1"/>
|
75
|
+
<FACET_VALUES KEY="Society of American Archivists" VALUE="1"/>
|
76
|
+
<FACET_VALUES KEY="Marshall, S" VALUE="1"/>
|
77
|
+
<FACET_VALUES KEY="Jeffrey, L" VALUE="1"/>
|
78
|
+
<FACET_VALUES KEY="Howard, P" VALUE="2"/>
|
79
|
+
<FACET_VALUES KEY="Katz, J" VALUE="1"/>
|
80
|
+
<FACET_VALUES KEY="Katz, D" VALUE="1"/>
|
81
|
+
<FACET_VALUES KEY="Scarpetta, S" VALUE="1"/>
|
82
|
+
<FACET_VALUES KEY="Brady, K" VALUE="1"/>
|
83
|
+
<FACET_VALUES KEY="Centre for Educational Research and Innovation" VALUE="2"/>
|
84
|
+
<FACET_VALUES KEY="Oxford scholarship online" VALUE="1"/>
|
85
|
+
<FACET_VALUES KEY="Guedes, L" VALUE="1"/>
|
86
|
+
<FACET_VALUES KEY="Tolbert, C" VALUE="2"/>
|
87
|
+
<FACET_VALUES KEY="Organisation for Economic Co-operation and Development" VALUE="3"/>
|
88
|
+
<FACET_VALUES KEY="ScienceDirect (Online service)" VALUE="2"/>
|
89
|
+
<FACET_VALUES KEY="Mack, R" VALUE="1"/>
|
90
|
+
<FACET_VALUES KEY="Project Muse" VALUE="4"/>
|
91
|
+
<FACET_VALUES KEY="Gauntlett, D" VALUE="1"/>
|
92
|
+
<FACET_VALUES KEY="Mariscal, J" VALUE="2"/>
|
93
|
+
<FACET_VALUES KEY="Zhang, T" VALUE="1"/>
|
94
|
+
<FACET_VALUES KEY="Paran, D" VALUE="1"/>
|
95
|
+
<FACET_VALUES KEY="Sofka, C" VALUE="1"/>
|
96
|
+
<FACET_VALUES KEY="Wilson, C" VALUE="1"/>
|
97
|
+
<FACET_VALUES KEY="Huang, Y" VALUE="1"/>
|
98
|
+
<FACET_VALUES KEY="McCain, J" VALUE="1"/>
|
99
|
+
<FACET_VALUES KEY="Solomon, G" VALUE="1"/>
|
100
|
+
<FACET_VALUES KEY="Sharma, J" VALUE="1"/>
|
101
|
+
<FACET_VALUES KEY="William Davidson Institute" VALUE="1"/>
|
102
|
+
<FACET_VALUES KEY="Patrikakis, C" VALUE="1"/>
|
103
|
+
<FACET_VALUES KEY="Sharkawy, M" VALUE="1"/>
|
104
|
+
<FACET_VALUES KEY="Allen, N" VALUE="1"/>
|
105
|
+
<FACET_VALUES KEY="Benesty, J" VALUE="1"/>
|
106
|
+
<FACET_VALUES KEY="Bolt, D" VALUE="3"/>
|
107
|
+
<FACET_VALUES KEY="Independent Television Service" VALUE="2"/>
|
108
|
+
<FACET_VALUES KEY="Dijk, J" VALUE="1"/>
|
109
|
+
<FACET_VALUES KEY="Jaeger, P" VALUE="1"/>
|
110
|
+
<FACET_VALUES KEY="Kloby, K" VALUE="1"/>
|
111
|
+
<FACET_VALUES KEY="Mossberger, K" VALUE="2"/>
|
112
|
+
<FACET_VALUES KEY="SMIT (Organization)" VALUE="1"/>
|
113
|
+
<FACET_VALUES KEY="Films for the Humanities (Firm)" VALUE="2"/>
|
114
|
+
<FACET_VALUES KEY="Suomi, R" VALUE="1"/>
|
115
|
+
<FACET_VALUES KEY="Elsherbeni, A" VALUE="1"/>
|
116
|
+
<FACET_VALUES KEY="Adéchoubou, N" VALUE="1"/>
|
117
|
+
<FACET_VALUES KEY="Sarles, B" VALUE="1"/>
|
118
|
+
<FACET_VALUES KEY="Martin, L" VALUE="1"/>
|
119
|
+
<FACET_VALUES KEY="Schell, B" VALUE="1"/>
|
120
|
+
<FACET_VALUES KEY="Chayko, M" VALUE="1"/>
|
121
|
+
<FACET_VALUES KEY="World Bank" VALUE="3"/>
|
122
|
+
<FACET_VALUES KEY="King, W" VALUE="1"/>
|
123
|
+
<FACET_VALUES KEY="Issa, N" VALUE="1"/>
|
124
|
+
<FACET_VALUES KEY="Servon, L" VALUE="1"/>
|
125
|
+
<FACET_VALUES KEY="Margolis, J" VALUE="1"/>
|
126
|
+
<FACET_VALUES KEY="Galperin, H" VALUE="2"/>
|
127
|
+
<FACET_VALUES KEY="Credo Reference (Firm)" VALUE="2"/>
|
128
|
+
<FACET_VALUES KEY="Taylor, R" VALUE="2"/>
|
129
|
+
<FACET_VALUES KEY="Stough, R" VALUE="1"/>
|
130
|
+
<FACET_VALUES KEY="United States. Congress. Senate. Committee on Commerce, Science, and Transportation. Subcommittee on Science, Technology, and Space" VALUE="1"/>
|
131
|
+
<FACET_VALUES KEY="Johansson, B" VALUE="1"/>
|
132
|
+
<FACET_VALUES KEY="Fischman, D" VALUE="1"/>
|
133
|
+
<FACET_VALUES KEY="Hazard, J" VALUE="1"/>
|
134
|
+
<FACET_VALUES KEY="PBS Home Video" VALUE="1"/>
|
135
|
+
<FACET_VALUES KEY="Martin, R" VALUE="1"/>
|
136
|
+
<FACET_VALUES KEY="Obermeier, B" VALUE="1"/>
|
137
|
+
<FACET_VALUES KEY="ebrary, Inc" VALUE="15"/>
|
138
|
+
<FACET_VALUES KEY="O'Hara" VALUE="1"/>
|
139
|
+
<FACET_VALUES KEY="Rice, R" VALUE="1"/>
|
140
|
+
<FACET_VALUES KEY="Perrons, D" VALUE="1"/>
|
141
|
+
</FACET>
|
142
|
+
<FACET NAME="lcc" COUNT="17">
|
143
|
+
<FACET_VALUES KEY="K - Law." VALUE="1"/>
|
144
|
+
<FACET_VALUES KEY="E - History: America" VALUE="2"/>
|
145
|
+
<FACET_VALUES KEY="H - Social sciences." VALUE="85"/>
|
146
|
+
<FACET_VALUES KEY="F - History: America" VALUE="2"/>
|
147
|
+
<FACET_VALUES KEY="L - Education." VALUE="12"/>
|
148
|
+
<FACET_VALUES KEY="Q - Science." VALUE="10"/>
|
149
|
+
<FACET_VALUES KEY="T - Technology ." VALUE="12"/>
|
150
|
+
<FACET_VALUES KEY="M - Music." VALUE="1"/>
|
151
|
+
<FACET_VALUES KEY="C - Auxiliary sciences of history" VALUE="1"/>
|
152
|
+
<FACET_VALUES KEY="P - Language and literature." VALUE="7"/>
|
153
|
+
<FACET_VALUES KEY="B - Philosophy. Psychology. Religion" VALUE="2"/>
|
154
|
+
<FACET_VALUES KEY="J - Political science." VALUE="4"/>
|
155
|
+
<FACET_VALUES KEY="Z - Bibliography. Library science. Information resources (general)." VALUE="8"/>
|
156
|
+
<FACET_VALUES KEY="R - Medicine." VALUE="3"/>
|
157
|
+
<FACET_VALUES KEY="A - General works." VALUE="1"/>
|
158
|
+
<FACET_VALUES KEY="D - History (general) and history of europe." VALUE="1"/>
|
159
|
+
<FACET_VALUES KEY="G - Geography. Anthropology. Recreation." VALUE="1"/>
|
160
|
+
</FACET>
|
161
|
+
<FACET NAME="local3" COUNT="4">
|
162
|
+
<FACET_VALUES KEY="Yapijakis, Constantine" VALUE="1"/>
|
163
|
+
<FACET_VALUES KEY="Sachs, Lynne" VALUE="1"/>
|
164
|
+
<FACET_VALUES KEY="None" VALUE="1"/>
|
165
|
+
<FACET_VALUES KEY="INSTRUCTOR" VALUE="2"/>
|
166
|
+
</FACET>
|
167
|
+
<FACET NAME="lang" COUNT="12">
|
168
|
+
<FACET_VALUES KEY="und" VALUE="1"/>
|
169
|
+
<FACET_VALUES KEY="ita" VALUE="1"/>
|
170
|
+
<FACET_VALUES KEY="chi" VALUE="1"/>
|
171
|
+
<FACET_VALUES KEY="ger" VALUE="1"/>
|
172
|
+
<FACET_VALUES KEY="ara" VALUE="1"/>
|
173
|
+
<FACET_VALUES KEY="por" VALUE="3"/>
|
174
|
+
<FACET_VALUES KEY="yor" VALUE="1"/>
|
175
|
+
<FACET_VALUES KEY="eng" VALUE="164"/>
|
176
|
+
<FACET_VALUES KEY="fre" VALUE="3"/>
|
177
|
+
<FACET_VALUES KEY="heb" VALUE="1"/>
|
178
|
+
<FACET_VALUES KEY="dyu" VALUE="1"/>
|
179
|
+
<FACET_VALUES KEY="spa" VALUE="4"/>
|
180
|
+
</FACET>
|
181
|
+
<FACET NAME="rtype" COUNT="4">
|
182
|
+
<FACET_VALUES KEY="books" VALUE="166"/>
|
183
|
+
<FACET_VALUES KEY="other" VALUE="1"/>
|
184
|
+
<FACET_VALUES KEY="audio" VALUE="1"/>
|
185
|
+
<FACET_VALUES KEY="video" VALUE="9"/>
|
186
|
+
</FACET>
|
187
|
+
<FACET NAME="topic" COUNT="100">
|
188
|
+
<FACET_VALUES KEY="Communication in economic development" VALUE="1"/>
|
189
|
+
<FACET_VALUES KEY="Computers and children" VALUE="3"/>
|
190
|
+
<FACET_VALUES KEY="Feminism and mass media" VALUE="1"/>
|
191
|
+
<FACET_VALUES KEY="African Americans" VALUE="3"/>
|
192
|
+
<FACET_VALUES KEY="Multimedia systems" VALUE="2"/>
|
193
|
+
<FACET_VALUES KEY="Mobile agents (Computer software)" VALUE="1"/>
|
194
|
+
<FACET_VALUES KEY="Technological innovations" VALUE="4"/>
|
195
|
+
<FACET_VALUES KEY="Communication in medicine" VALUE="1"/>
|
196
|
+
<FACET_VALUES KEY="Libraries" VALUE="3"/>
|
197
|
+
<FACET_VALUES KEY="Wireless communication systems" VALUE="2"/>
|
198
|
+
<FACET_VALUES KEY="Southeast Asia" VALUE="1"/>
|
199
|
+
<FACET_VALUES KEY="Human-computer interaction" VALUE="1"/>
|
200
|
+
<FACET_VALUES KEY="Technology Industry" VALUE="2"/>
|
201
|
+
<FACET_VALUES KEY="Communication policy" VALUE="1"/>
|
202
|
+
<FACET_VALUES KEY="Computers and people with disabilities" VALUE="2"/>
|
203
|
+
<FACET_VALUES KEY="Computer networks" VALUE="2"/>
|
204
|
+
<FACET_VALUES KEY="Information superhighway" VALUE="2"/>
|
205
|
+
<FACET_VALUES KEY="Communities" VALUE="2"/>
|
206
|
+
<FACET_VALUES KEY="Private Sector Development" VALUE="3"/>
|
207
|
+
<FACET_VALUES KEY="E-Business" VALUE="4"/>
|
208
|
+
<FACET_VALUES KEY="Internet" VALUE="24"/>
|
209
|
+
<FACET_VALUES KEY="Equality" VALUE="2"/>
|
210
|
+
<FACET_VALUES KEY="United States" VALUE="4"/>
|
211
|
+
<FACET_VALUES KEY="Telecommunications Infrastructure" VALUE="2"/>
|
212
|
+
<FACET_VALUES KEY="Mass media and culture" VALUE="2"/>
|
213
|
+
<FACET_VALUES KEY="Telephone" VALUE="2"/>
|
214
|
+
<FACET_VALUES KEY="Economic development" VALUE="3"/>
|
215
|
+
<FACET_VALUES KEY="Social change" VALUE="2"/>
|
216
|
+
<FACET_VALUES KEY="Library materials" VALUE="1"/>
|
217
|
+
<FACET_VALUES KEY="Social responsibility of business" VALUE="3"/>
|
218
|
+
<FACET_VALUES KEY="Computer science" VALUE="3"/>
|
219
|
+
<FACET_VALUES KEY="Teenagers" VALUE="2"/>
|
220
|
+
<FACET_VALUES KEY="World Wide Web" VALUE="3"/>
|
221
|
+
<FACET_VALUES KEY="Digital divide" VALUE="68"/>
|
222
|
+
<FACET_VALUES KEY="Human rights" VALUE="2"/>
|
223
|
+
<FACET_VALUES KEY="Computers and civilization" VALUE="3"/>
|
224
|
+
<FACET_VALUES KEY="Technology Access" VALUE="1"/>
|
225
|
+
<FACET_VALUES KEY="Telecommunication policy" VALUE="4"/>
|
226
|
+
<FACET_VALUES KEY="Technology and civilization" VALUE="2"/>
|
227
|
+
<FACET_VALUES KEY="Web 2.0" VALUE="2"/>
|
228
|
+
<FACET_VALUES KEY="Advertising" VALUE="1"/>
|
229
|
+
<FACET_VALUES KEY="Computer-assisted instruction" VALUE="6"/>
|
230
|
+
<FACET_VALUES KEY="Internet users" VALUE="2"/>
|
231
|
+
<FACET_VALUES KEY="Decision making" VALUE="1"/>
|
232
|
+
<FACET_VALUES KEY="Role playing" VALUE="1"/>
|
233
|
+
<FACET_VALUES KEY="Digital preservation" VALUE="2"/>
|
234
|
+
<FACET_VALUES KEY="Computer vision" VALUE="1"/>
|
235
|
+
<FACET_VALUES KEY="Instrumental ensembles" VALUE="1"/>
|
236
|
+
<FACET_VALUES KEY="Computer-aided engineering" VALUE="1"/>
|
237
|
+
<FACET_VALUES KEY="Communication and technology" VALUE="1"/>
|
238
|
+
<FACET_VALUES KEY="Social participation" VALUE="2"/>
|
239
|
+
<FACET_VALUES KEY="Electronic music" VALUE="1"/>
|
240
|
+
<FACET_VALUES KEY="Electronic commerce" VALUE="2"/>
|
241
|
+
<FACET_VALUES KEY="Political participation" VALUE="4"/>
|
242
|
+
<FACET_VALUES KEY="Academic libraries" VALUE="2"/>
|
243
|
+
<FACET_VALUES KEY="Internet in public administration" VALUE="2"/>
|
244
|
+
<FACET_VALUES KEY="Signal processing" VALUE="2"/>
|
245
|
+
<FACET_VALUES KEY="Image processing software" VALUE="1"/>
|
246
|
+
<FACET_VALUES KEY="Regional economics" VALUE="2"/>
|
247
|
+
<FACET_VALUES KEY="Legislators" VALUE="1"/>
|
248
|
+
<FACET_VALUES KEY="Image processing" VALUE="2"/>
|
249
|
+
<FACET_VALUES KEY="Democracy" VALUE="2"/>
|
250
|
+
<FACET_VALUES KEY="Community development" VALUE="2"/>
|
251
|
+
<FACET_VALUES KEY="Blount, Roy" VALUE="1"/>
|
252
|
+
<FACET_VALUES KEY="Educational technology" VALUE="6"/>
|
253
|
+
<FACET_VALUES KEY="Mobile communication systems" VALUE="2"/>
|
254
|
+
<FACET_VALUES KEY="Online information services" VALUE="2"/>
|
255
|
+
<FACET_VALUES KEY="Programme for International Student Assessment" VALUE="1"/>
|
256
|
+
<FACET_VALUES KEY="Educational equalization" VALUE="6"/>
|
257
|
+
<FACET_VALUES KEY="Other (Philosophy)" VALUE="1"/>
|
258
|
+
<FACET_VALUES KEY="Industry" VALUE="2"/>
|
259
|
+
<FACET_VALUES KEY="Technology" VALUE="5"/>
|
260
|
+
<FACET_VALUES KEY="Telecommunication" VALUE="17"/>
|
261
|
+
<FACET_VALUES KEY="East Asia" VALUE="2"/>
|
262
|
+
<FACET_VALUES KEY="Social Science" VALUE="2"/>
|
263
|
+
<FACET_VALUES KEY="Globalization" VALUE="4"/>
|
264
|
+
<FACET_VALUES KEY="Information technology" VALUE="54"/>
|
265
|
+
<FACET_VALUES KEY="High technology industries" VALUE="2"/>
|
266
|
+
<FACET_VALUES KEY="Digital media" VALUE="8"/>
|
267
|
+
<FACET_VALUES KEY="Race relations" VALUE="2"/>
|
268
|
+
<FACET_VALUES KEY="Knowledge management" VALUE="3"/>
|
269
|
+
<FACET_VALUES KEY="User-generated content" VALUE="1"/>
|
270
|
+
<FACET_VALUES KEY="BUSINESS &amp; ECONOMICS" VALUE="2"/>
|
271
|
+
<FACET_VALUES KEY="Communication in politics" VALUE="3"/>
|
272
|
+
<FACET_VALUES KEY="Information science" VALUE="1"/>
|
273
|
+
<FACET_VALUES KEY="E-commerce" VALUE="2"/>
|
274
|
+
<FACET_VALUES KEY="Technology and women" VALUE="2"/>
|
275
|
+
<FACET_VALUES KEY="Ethnicity" VALUE="1"/>
|
276
|
+
<FACET_VALUES KEY="Computers" VALUE="5"/>
|
277
|
+
<FACET_VALUES KEY="Internet in education" VALUE="2"/>
|
278
|
+
<FACET_VALUES KEY="Computer graphics" VALUE="2"/>
|
279
|
+
<FACET_VALUES KEY="Massamediaindustrie" VALUE="1"/>
|
280
|
+
<FACET_VALUES KEY="Online social networks" VALUE="4"/>
|
281
|
+
<FACET_VALUES KEY="Education" VALUE="7"/>
|
282
|
+
<FACET_VALUES KEY="Information and Communication Technologies" VALUE="2"/>
|
283
|
+
<FACET_VALUES KEY="Business enterprises" VALUE="2"/>
|
284
|
+
<FACET_VALUES KEY="Internet and teenagers" VALUE="4"/>
|
285
|
+
<FACET_VALUES KEY="Global warming" VALUE="1"/>
|
286
|
+
<FACET_VALUES KEY="Mass media" VALUE="5"/>
|
287
|
+
<FACET_VALUES KEY="Information society" VALUE="23"/>
|
288
|
+
</FACET>
|
289
|
+
<FACET NAME="tlevel" COUNT="2">
|
290
|
+
<FACET_VALUES KEY="online_resources" VALUE="78"/>
|
291
|
+
<FACET_VALUES KEY="available" VALUE="129"/>
|
292
|
+
</FACET>
|
293
|
+
<FACET NAME="pfilter" COUNT="3">
|
294
|
+
<FACET_VALUES KEY="books" VALUE="166"/>
|
295
|
+
<FACET_VALUES KEY="audio" VALUE="1"/>
|
296
|
+
<FACET_VALUES KEY="video" VALUE="9"/>
|
297
|
+
</FACET>
|
298
|
+
<FACET NAME="creationdate" COUNT="14">
|
299
|
+
<FACET_VALUES KEY="2008" VALUE="14"/>
|
300
|
+
<FACET_VALUES KEY="2009" VALUE="12"/>
|
301
|
+
<FACET_VALUES KEY="2006" VALUE="18"/>
|
302
|
+
<FACET_VALUES KEY="2007" VALUE="11"/>
|
303
|
+
<FACET_VALUES KEY="2004" VALUE="20"/>
|
304
|
+
<FACET_VALUES KEY="2005" VALUE="12"/>
|
305
|
+
<FACET_VALUES KEY="2002" VALUE="9"/>
|
306
|
+
<FACET_VALUES KEY="2003" VALUE="15"/>
|
307
|
+
<FACET_VALUES KEY="2012" VALUE="12"/>
|
308
|
+
<FACET_VALUES KEY="2011" VALUE="18"/>
|
309
|
+
<FACET_VALUES KEY="2010" VALUE="18"/>
|
310
|
+
<FACET_VALUES KEY="1999" VALUE="2"/>
|
311
|
+
<FACET_VALUES KEY="2001" VALUE="10"/>
|
312
|
+
<FACET_VALUES KEY="2000" VALUE="6"/>
|
313
|
+
</FACET>
|
314
|
+
<FACET NAME="domain" COUNT="10">
|
315
|
+
<FACET_VALUES KEY="CU" VALUE="3"/>
|
316
|
+
<FACET_VALUES KEY="BAFC" VALUE="11"/>
|
317
|
+
<FACET_VALUES KEY="BOBST" VALUE="117"/>
|
318
|
+
<FACET_VALUES KEY="BRES" VALUE="1"/>
|
319
|
+
<FACET_VALUES KEY="NIFA" VALUE="2"/>
|
320
|
+
<FACET_VALUES KEY="NSFO" VALUE="10"/>
|
321
|
+
<FACET_VALUES KEY="BREF6" VALUE="6"/>
|
322
|
+
<FACET_VALUES KEY="WEB" VALUE="32"/>
|
323
|
+
<FACET_VALUES KEY="TWEB" VALUE="25"/>
|
324
|
+
<FACET_VALUES KEY="REF" VALUE="2"/>
|
325
|
+
</FACET>
|
326
|
+
<FACET NAME="genre" COUNT="27">
|
327
|
+
<FACET_VALUES KEY="Television programs" VALUE="2"/>
|
328
|
+
<FACET_VALUES KEY="Statistics" VALUE="3"/>
|
329
|
+
<FACET_VALUES KEY="Guide (Descripteur de forme)" VALUE="1"/>
|
330
|
+
<FACET_VALUES KEY="Keynote address" VALUE="1"/>
|
331
|
+
<FACET_VALUES KEY="Biography" VALUE="1"/>
|
332
|
+
<FACET_VALUES KEY="War films" VALUE="1"/>
|
333
|
+
<FACET_VALUES KEY="Television comedies" VALUE="1"/>
|
334
|
+
<FACET_VALUES KEY="Case studies" VALUE="5"/>
|
335
|
+
<FACET_VALUES KEY="Foreign language television programs" VALUE="1"/>
|
336
|
+
<FACET_VALUES KEY="Popular works" VALUE="3"/>
|
337
|
+
<FACET_VALUES KEY="Documentary films" VALUE="2"/>
|
338
|
+
<FACET_VALUES KEY="Situation comedies (Television programs)" VALUE="1"/>
|
339
|
+
<FACET_VALUES KEY="Congresses" VALUE="13"/>
|
340
|
+
<FACET_VALUES KEY="Filmed speeches" VALUE="1"/>
|
341
|
+
<FACET_VALUES KEY="Encyclopedias" VALUE="1"/>
|
342
|
+
<FACET_VALUES KEY="Educational videos" VALUE="1"/>
|
343
|
+
<FACET_VALUES KEY="Electronic books" VALUE="68"/>
|
344
|
+
<FACET_VALUES KEY="Computer-assisted instruction" VALUE="1"/>
|
345
|
+
<FACET_VALUES KEY="Video recordings for the hearing impaired" VALUE="2"/>
|
346
|
+
<FACET_VALUES KEY="Dissertations, Academic" VALUE="2"/>
|
347
|
+
<FACET_VALUES KEY="Documentary videos" VALUE="1"/>
|
348
|
+
<FACET_VALUES KEY="Nonfiction television programs" VALUE="1"/>
|
349
|
+
<FACET_VALUES KEY="Use studies" VALUE="1"/>
|
350
|
+
<FACET_VALUES KEY="Documentary television programs" VALUE="1"/>
|
351
|
+
<FACET_VALUES KEY="Drama" VALUE="1"/>
|
352
|
+
<FACET_VALUES KEY="Fiction television programs" VALUE="1"/>
|
353
|
+
<FACET_VALUES KEY="Case Reports" VALUE="1"/>
|
354
|
+
</FACET>
|
355
|
+
<FACET NAME="library" COUNT="16">
|
356
|
+
<FACET_VALUES KEY="NSKE" VALUE="25"/>
|
357
|
+
<FACET_VALUES KEY="CREF" VALUE="1"/>
|
358
|
+
<FACET_VALUES KEY="BOBST" VALUE="166"/>
|
359
|
+
<FACET_VALUES KEY="BREF" VALUE="8"/>
|
360
|
+
<FACET_VALUES KEY="NYUAD" VALUE="8"/>
|
361
|
+
<FACET_VALUES KEY="WEB" VALUE="7"/>
|
362
|
+
<FACET_VALUES KEY="IFA" VALUE="71"/>
|
363
|
+
<FACET_VALUES KEY="BTAM" VALUE="1"/>
|
364
|
+
<FACET_VALUES KEY="ISAW" VALUE="69"/>
|
365
|
+
<FACET_VALUES KEY="NSGI" VALUE="25"/>
|
366
|
+
<FACET_VALUES KEY="CGEN" VALUE="2"/>
|
367
|
+
<FACET_VALUES KEY="NSFO" VALUE="32"/>
|
368
|
+
<FACET_VALUES KEY="REI" VALUE="69"/>
|
369
|
+
<FACET_VALUES KEY="NSSC" VALUE="25"/>
|
370
|
+
<FACET_VALUES KEY="IFAC" VALUE="69"/>
|
371
|
+
<FACET_VALUES KEY="COUR" VALUE="69"/>
|
372
|
+
</FACET>
|
373
|
+
<FACET NAME="local1" COUNT="13">
|
374
|
+
<FACET_VALUES KEY="Media Center" VALUE="2"/>
|
375
|
+
<FACET_VALUES KEY="Reserve" VALUE="2"/>
|
376
|
+
<FACET_VALUES KEY="Main Collection" VALUE="128"/>
|
377
|
+
<FACET_VALUES KEY="East Asian" VALUE="1"/>
|
378
|
+
<FACET_VALUES KEY="Internet Resources" VALUE="55"/>
|
379
|
+
<FACET_VALUES KEY="Internet Resources - US Documents" VALUE="3"/>
|
380
|
+
<FACET_VALUES KEY="1st Floor Reference" VALUE="1"/>
|
381
|
+
<FACET_VALUES KEY="International Documents" VALUE="5"/>
|
382
|
+
<FACET_VALUES KEY="Reserve Collection" VALUE="2"/>
|
383
|
+
<FACET_VALUES KEY="Restricted Electronic Resources" VALUE="2"/>
|
384
|
+
<FACET_VALUES KEY="United States Documents" VALUE="1"/>
|
385
|
+
<FACET_VALUES KEY="Reference" VALUE="1"/>
|
386
|
+
<FACET_VALUES KEY="Annex Collection" VALUE="4"/>
|
387
|
+
</FACET>
|
388
|
+
<FACET NAME="local2" COUNT="5">
|
389
|
+
<FACET_VALUES KEY="CE361" VALUE="1"/>
|
390
|
+
<FACET_VALUES KEY="AFC RESERVES." VALUE="1"/>
|
391
|
+
<FACET_VALUES KEY="H56.1002" VALUE="1"/>
|
392
|
+
<FACET_VALUES KEY="MSWAC-GS2008" VALUE="1"/>
|
393
|
+
<FACET_VALUES KEY="S99.2127" VALUE="1"/>
|
394
|
+
</FACET>
|
395
|
+
<FACET NAME="local5" COUNT="4">
|
396
|
+
<FACET_VALUES KEY="Yapijakis, Constantine" VALUE="1"/>
|
397
|
+
<FACET_VALUES KEY="Sachs, Lynne" VALUE="1"/>
|
398
|
+
<FACET_VALUES KEY="None" VALUE="1"/>
|
399
|
+
<FACET_VALUES KEY="INSTRUCTOR" VALUE="2"/>
|
400
|
+
</FACET>
|
401
|
+
<FACET NAME="local6" COUNT="5">
|
402
|
+
<FACET_VALUES KEY="Social Work Research II" VALUE="1"/>
|
403
|
+
<FACET_VALUES KEY="Special Reserves" VALUE="1"/>
|
404
|
+
<FACET_VALUES KEY="Civil Engineering Environmental Projects" VALUE="1"/>
|
405
|
+
<FACET_VALUES KEY="Community Organization" VALUE="1"/>
|
406
|
+
<FACET_VALUES KEY="Media Mavericks" VALUE="1"/>
|
407
|
+
</FACET>
|
408
|
+
</FACETLIST>
|
409
|
+
<DOCSET HIT_TIME="103" TOTALHITS="177" FIRSTHIT="1" LASTHIT="5" TOTAL_TIME="348" IS_LOCAL="true">
|
410
|
+
<DOC ID="3712784" RANK="0.010436904" NO="1" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
411
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
412
|
+
<record>
|
413
|
+
<control>
|
414
|
+
<sourcerecordid>000980206</sourcerecordid>
|
415
|
+
<sourceid>nyu_aleph</sourceid>
|
416
|
+
<recordid>nyu_aleph000980206</recordid>
|
417
|
+
<originalsourceid>NYU01</originalsourceid>
|
418
|
+
<ilsapiid>NYU01000980206</ilsapiid>
|
419
|
+
<sourceformat>MARC21</sourceformat>
|
420
|
+
<sourcesystem>Aleph</sourcesystem>
|
421
|
+
</control>
|
422
|
+
<display>
|
423
|
+
<type>book</type>
|
424
|
+
<title>Virtual inequality : beyond the digital divide</title>
|
425
|
+
<creator>Karen Mossberger</creator>
|
426
|
+
<contributor>Caroline J Tolbert; Mary Stansbury 1957-</contributor>
|
427
|
+
<publisher>Washington, D.C. : Georgetown University Press</publisher>
|
428
|
+
<creationdate>c2003</creationdate>
|
429
|
+
<format>xvi, 192 p. ; 22 cm.</format>
|
430
|
+
<identifier>$$Cisbn$$V0878409998 (pbk. : alk. paper); $$Cisbn$$V9780878409990</identifier>
|
431
|
+
<subject>Digital divide</subject>
|
432
|
+
<language>eng</language>
|
433
|
+
<relation>$$Cseries $$VAmerican governance and public policy.</relation>
|
434
|
+
<source>nyu_aleph</source>
|
435
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(HN49.I56 M67 2003 )$$Sunavailable$$31$$41$$5N$$60$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
436
|
+
<availlibrary>$$INS$$LNSFO$$1Main Collection$$2(HN49.I56 M67 2003 )$$Sunavailable$$31$$41$$5N$$60$$XNYU50$$YTNSFO$$ZMAIN</availlibrary>
|
437
|
+
<lds02>nyu_aleph000980206</lds02>
|
438
|
+
<lds01>NYU</lds01>
|
439
|
+
<lds01>NS</lds01>
|
440
|
+
<availinstitution>$$INS$$Sunavailable</availinstitution>
|
441
|
+
<availinstitution>$$INYU$$Sunavailable</availinstitution>
|
442
|
+
<availpnx>unavailable</availpnx>
|
443
|
+
</display>
|
444
|
+
<links>
|
445
|
+
<openurl>$$Topenurl_journal</openurl>
|
446
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
447
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
448
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
449
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
450
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
451
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
452
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
453
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
454
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
455
|
+
</links>
|
456
|
+
<search>
|
457
|
+
<creatorcontrib>Karen Mossberger</creatorcontrib>
|
458
|
+
<creatorcontrib>Mossberger, Karen.</creatorcontrib>
|
459
|
+
<creatorcontrib>Mossberger, K</creatorcontrib>
|
460
|
+
<creatorcontrib>Karen Mossberger, Caroline J. Tolbert, Mary Stansbury.</creatorcontrib>
|
461
|
+
<creatorcontrib>Caroline J. Tolbert</creatorcontrib>
|
462
|
+
<creatorcontrib>Mary, Stansbury 1957-</creatorcontrib>
|
463
|
+
<creatorcontrib>Tolbert, C</creatorcontrib>
|
464
|
+
<creatorcontrib>Stansbury, M</creatorcontrib>
|
465
|
+
<title>Virtual inequality : beyond the digital divide /</title>
|
466
|
+
<subject>Digital divide</subject>
|
467
|
+
<subject>Divide, Digital</subject>
|
468
|
+
<subject>Global digital divide</subject>
|
469
|
+
<subject>GDD (Global digital divide)</subject>
|
470
|
+
<general>Georgetown University Press,</general>
|
471
|
+
<sourceid>nyu_aleph</sourceid>
|
472
|
+
<recordid>nyu_aleph000980206</recordid>
|
473
|
+
<isbn>0878409998</isbn>
|
474
|
+
<isbn>9780878409990</isbn>
|
475
|
+
<rsrctype>book</rsrctype>
|
476
|
+
<creationdate>2003</creationdate>
|
477
|
+
<addtitle>American governance and public policy series</addtitle>
|
478
|
+
<addtitle>American governance and public policy.</addtitle>
|
479
|
+
<searchscope>BOBST</searchscope>
|
480
|
+
<searchscope>BOBST Main Collection</searchscope>
|
481
|
+
<searchscope>TNSFO</searchscope>
|
482
|
+
<searchscope>TNSFO Main Collection</searchscope>
|
483
|
+
<searchscope>nyu_aleph</searchscope>
|
484
|
+
<searchscope>NYU</searchscope>
|
485
|
+
<searchscope>NS</searchscope>
|
486
|
+
<searchscope>NSFO</searchscope>
|
487
|
+
<scope>BOBST</scope>
|
488
|
+
<scope>BOBST Main Collection</scope>
|
489
|
+
<scope>TNSFO</scope>
|
490
|
+
<scope>TNSFO Main Collection</scope>
|
491
|
+
<scope>nyu_aleph</scope>
|
492
|
+
<scope>NYU</scope>
|
493
|
+
<scope>NS</scope>
|
494
|
+
<scope>NSFO</scope>
|
495
|
+
<lsr01>HN49.I56 M67 2003</lsr01>
|
496
|
+
<lsr01>HN49 .I56 M67 2003</lsr01>
|
497
|
+
<lsr02>Georgetown University Press,</lsr02>
|
498
|
+
</search>
|
499
|
+
<sort>
|
500
|
+
<title>Virtual inequality : beyond the digital divide /</title>
|
501
|
+
<creationdate>2003</creationdate>
|
502
|
+
<author>Mossberger, Karen.</author>
|
503
|
+
<lso01>2003</lso01>
|
504
|
+
</sort>
|
505
|
+
<facets>
|
506
|
+
<language>eng</language>
|
507
|
+
<creationdate>2003</creationdate>
|
508
|
+
<topic>Digital divide</topic>
|
509
|
+
<collection>BOBST</collection>
|
510
|
+
<collection>NSFO</collection>
|
511
|
+
<prefilter>books</prefilter>
|
512
|
+
<rsrctype>books</rsrctype>
|
513
|
+
<creatorcontrib>Mossberger, K</creatorcontrib>
|
514
|
+
<creatorcontrib>Tolbert, C</creatorcontrib>
|
515
|
+
<creatorcontrib>Stansbury, M</creatorcontrib>
|
516
|
+
<library>BOBST</library>
|
517
|
+
<library>NSFO</library>
|
518
|
+
<lfc01>Main Collection</lfc01>
|
519
|
+
<classificationlcc>H - Social sciences.–Social history and conditions. Social problems. Social reform</classificationlcc>
|
520
|
+
<frbrgroupid>50102933</frbrgroupid>
|
521
|
+
<frbrtype>6</frbrtype>
|
522
|
+
</facets>
|
523
|
+
<dedup>
|
524
|
+
<t>1</t>
|
525
|
+
<c1>2003004571</c1>
|
526
|
+
<c2>0878409998;9780878409990</c2>
|
527
|
+
<c3>virtualinequalitybeyitaldivide</c3>
|
528
|
+
<c4>2003</c4>
|
529
|
+
<f1>2003004571</f1>
|
530
|
+
<f3>0878409998;9780878409990</f3>
|
531
|
+
<f5>virtualinequalitybeyitaldivide</f5>
|
532
|
+
<f6>2003</f6>
|
533
|
+
<f7>virtual inequality beyond the digital divide</f7>
|
534
|
+
<f8>dcu</f8>
|
535
|
+
<f9>xvi, 192 p. ;</f9>
|
536
|
+
<f10>georgetown university press</f10>
|
537
|
+
<f11>mossberger karen</f11>
|
538
|
+
</dedup>
|
539
|
+
<frbr>
|
540
|
+
<t>1</t>
|
541
|
+
<k1>$$Kmossberger karen$$AA</k1>
|
542
|
+
<k3>$$Kbookvirtual inequality beyond the digital divide$$AT</k3>
|
543
|
+
</frbr>
|
544
|
+
<delivery>
|
545
|
+
<institution>NYU</institution>
|
546
|
+
<institution>NS</institution>
|
547
|
+
<delcategory>Physical Item</delcategory>
|
548
|
+
</delivery>
|
549
|
+
<enrichment>
|
550
|
+
<classificationlcc>HN49.I56</classificationlcc>
|
551
|
+
</enrichment>
|
552
|
+
<ranking>
|
553
|
+
<booster1>1</booster1>
|
554
|
+
<booster2>1</booster2>
|
555
|
+
</ranking>
|
556
|
+
<addata>
|
557
|
+
<aulast>Mossberger</aulast>
|
558
|
+
<aufirst>Karen</aufirst>
|
559
|
+
<au>Mossberger, Karen</au>
|
560
|
+
<addau>Tolbert, Caroline J</addau>
|
561
|
+
<addau>Stansbury, Mary, 1957-</addau>
|
562
|
+
<btitle>Virtual inequality : beyond the digital divide</btitle>
|
563
|
+
<seriestitle>American governance and public policy</seriestitle>
|
564
|
+
<date>2003</date>
|
565
|
+
<risdate>c2003.</risdate>
|
566
|
+
<isbn>0878409998</isbn>
|
567
|
+
<isbn>9780878409990</isbn>
|
568
|
+
<format>book</format>
|
569
|
+
<genre>book</genre>
|
570
|
+
<ristype>BOOK</ristype>
|
571
|
+
<notes>Includes bibliographical references (p. [171]-183) and index.</notes>
|
572
|
+
<cop>Washington, D.C.</cop>
|
573
|
+
<pub>Georgetown University Press</pub>
|
574
|
+
<lccn>2003004571</lccn>
|
575
|
+
<lad01>BOBSTTNSFO</lad01>
|
576
|
+
<lad01>Physical Item</lad01>
|
577
|
+
</addata>
|
578
|
+
</record>
|
579
|
+
</PrimoNMBib>
|
580
|
+
<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=000980206" 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%3A47%3A52IST&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_aleph000980206&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Virtual%20inequality%20:%20beyond%20the%20digital%20divide&amp;rft.aulast=Mossberger&amp;rft.aufirst=Karen&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Mossberger%2C%20Karen&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=Georgetown%20University%20Press&amp;rft.place=Washington%2C%20D.C.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0878409998&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000980206&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000980206&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
581
|
+
<LIBRARIES>
|
582
|
+
<LIBRARY>
|
583
|
+
<institution>NYU</institution>
|
584
|
+
<library>BOBST</library>
|
585
|
+
<status>unavailable</status>
|
586
|
+
<collection>Main Collection</collection>
|
587
|
+
<callNumber>(HN49.I56 M67 2003 )</callNumber>
|
588
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000980206</url>
|
589
|
+
</LIBRARY>
|
590
|
+
<LIBRARY>
|
591
|
+
<institution>NS</institution>
|
592
|
+
<library>NSFO</library>
|
593
|
+
<status>unavailable</status>
|
594
|
+
<collection>Main Collection</collection>
|
595
|
+
<callNumber>(HN49.I56 M67 2003 )</callNumber>
|
596
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000980206</url>
|
597
|
+
</LIBRARY>
|
598
|
+
</LIBRARIES>
|
599
|
+
<LINKS>
|
600
|
+
<openurl><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?umlaut.institution=NS&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A47%3A52IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000980206&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Virtual%20inequality%20:%20beyond%20the%20digital%20divide&rft.aulast=Mossberger&rft.aufirst=Karen&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Mossberger%2C%20Karen&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Georgetown%20University%20Press&rft.place=Washington%2C%20D.C.&rft.issn=&rft.eissn=&rft.isbn=0878409998&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph000980206&rft.eisbn=&rft_dat=<nyu_aleph>000980206</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
601
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=000980206</backlink>
|
602
|
+
<thumbnail>http://images.amazon.com/images/P/0878409998.01._SSTHUM_.jpg</thumbnail>
|
603
|
+
<linktotoc>http://www.amazon.com/gp/reader/0878409998</linktotoc>
|
604
|
+
<openurlfulltext><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?umlaut.institution=NS&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A47%3A52IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000980206&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Virtual%20inequality%20:%20beyond%20the%20digital%20divide&rft.aulast=Mossberger&rft.aufirst=Karen&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Mossberger%2C%20Karen&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Georgetown%20University%20Press&rft.place=Washington%2C%20D.C.&rft.issn=&rft.eissn=&rft.isbn=0878409998&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>000980206</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
605
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000980206</linktoholdings>
|
606
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph000980206?institution=NYU&amp;persistent</linktoreview>
|
607
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=0878409998</linktouc>
|
608
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A0878409998</linktouc>
|
609
|
+
</LINKS>
|
610
|
+
</DOC>
|
611
|
+
<DOC ID="2141388" RANK="0.0099332975" NO="2" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
612
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
613
|
+
<record>
|
614
|
+
<control>
|
615
|
+
<sourcerecordid>000864162</sourcerecordid>
|
616
|
+
<sourceid>nyu_aleph</sourceid>
|
617
|
+
<recordid>nyu_aleph000864162</recordid>
|
618
|
+
<originalsourceid>NYU01</originalsourceid>
|
619
|
+
<ilsapiid>NYU01000864162</ilsapiid>
|
620
|
+
<sourceformat>MARC21</sourceformat>
|
621
|
+
<sourcesystem>Aleph</sourcesystem>
|
622
|
+
</control>
|
623
|
+
<display>
|
624
|
+
<type>book</type>
|
625
|
+
<title>From digital divide to digital opportunity</title>
|
626
|
+
<creator>Appu Kuttan 1941-</creator>
|
627
|
+
<contributor>Laurence Peters 1952-</contributor>
|
628
|
+
<publisher>Lanham, Md. : Scarecrow Press</publisher>
|
629
|
+
<creationdate>2003</creationdate>
|
630
|
+
<format>x, 190 p. : ill. ; 24 cm + 1 computer optical disc (4 3/4 in.).</format>
|
631
|
+
<identifier>$$Cisbn$$V0810844915 (alk. paper); $$Cisbn$$V0810844923 (pbk. : alk. paper); $$Cisbn$$V9780810844919; $$Cisbn$$V9780810844926</identifier>
|
632
|
+
<subject>Digital divide -- United States; Digital divide; Information technology -- Social aspects -- United States</subject>
|
633
|
+
<language>eng</language>
|
634
|
+
<source>nyu_aleph</source>
|
635
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(HN90.I56 K888 2003 )$$Savailable$$31$$40$$5N$$61$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
636
|
+
<availlibrary>$$ICU$$LCU$$1Main Collection$$2(HN90.I56 K888 2003 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YCU$$ZMAIN</availlibrary>
|
637
|
+
<lds02>nyu_aleph000864162</lds02>
|
638
|
+
<lds01>NYU</lds01>
|
639
|
+
<lds01>CU</lds01>
|
640
|
+
<availinstitution>$$ICU$$Savailable</availinstitution>
|
641
|
+
<availinstitution>$$INYU$$Savailable</availinstitution>
|
642
|
+
<availpnx>available</availpnx>
|
643
|
+
</display>
|
644
|
+
<links>
|
645
|
+
<openurl>$$Topenurl_journal</openurl>
|
646
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
647
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
648
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
649
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
650
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
651
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
652
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
653
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
654
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
655
|
+
</links>
|
656
|
+
<search>
|
657
|
+
<creatorcontrib>Appu, Kuttan 1941-</creatorcontrib>
|
658
|
+
<creatorcontrib>Kuttan, Appu, 1941-</creatorcontrib>
|
659
|
+
<creatorcontrib>Kuttan, A</creatorcontrib>
|
660
|
+
<creatorcontrib>Appu Kuttan and Laurence Peters.</creatorcontrib>
|
661
|
+
<creatorcontrib>Laurence, Peters 1952-</creatorcontrib>
|
662
|
+
<creatorcontrib>Peters, L</creatorcontrib>
|
663
|
+
<title>From digital divide to digital opportunity /</title>
|
664
|
+
<subject>Digital divide United States</subject>
|
665
|
+
<subject>Digital divide</subject>
|
666
|
+
<subject>Information technology Social aspects United States</subject>
|
667
|
+
<subject>Global digital divide</subject>
|
668
|
+
<subject>GDD (Global digital divide)</subject>
|
669
|
+
<subject>Divide, Digital</subject>
|
670
|
+
<subject>IT (Information technology)</subject>
|
671
|
+
<general>Scarecrow Press,</general>
|
672
|
+
<general>CD-ROM in pocket.</general>
|
673
|
+
<sourceid>nyu_aleph</sourceid>
|
674
|
+
<recordid>nyu_aleph000864162</recordid>
|
675
|
+
<isbn>0810844915</isbn>
|
676
|
+
<isbn>0810844923</isbn>
|
677
|
+
<isbn>9780810844919</isbn>
|
678
|
+
<isbn>9780810844926</isbn>
|
679
|
+
<rsrctype>book</rsrctype>
|
680
|
+
<creationdate>2003</creationdate>
|
681
|
+
<searchscope>BOBST</searchscope>
|
682
|
+
<searchscope>BOBST Main Collection</searchscope>
|
683
|
+
<searchscope>CU</searchscope>
|
684
|
+
<searchscope>CU Main Collection</searchscope>
|
685
|
+
<searchscope>nyu_aleph</searchscope>
|
686
|
+
<searchscope>NYU</searchscope>
|
687
|
+
<searchscope>CGEN</searchscope>
|
688
|
+
<scope>BOBST</scope>
|
689
|
+
<scope>BOBST Main Collection</scope>
|
690
|
+
<scope>CU</scope>
|
691
|
+
<scope>CU Main Collection</scope>
|
692
|
+
<scope>nyu_aleph</scope>
|
693
|
+
<scope>NYU</scope>
|
694
|
+
<scope>CGEN</scope>
|
695
|
+
<lsr01>HN90.I56 K888 2003</lsr01>
|
696
|
+
<lsr01>HN90 .I56 K888 2003</lsr01>
|
697
|
+
<lsr02>Scarecrow Press,</lsr02>
|
698
|
+
</search>
|
699
|
+
<sort>
|
700
|
+
<title>From digital divide to digital opportunity /</title>
|
701
|
+
<creationdate>2003</creationdate>
|
702
|
+
<author>Kuttan, Appu, 1941-</author>
|
703
|
+
<lso01>2003</lso01>
|
704
|
+
</sort>
|
705
|
+
<facets>
|
706
|
+
<language>eng</language>
|
707
|
+
<creationdate>2003</creationdate>
|
708
|
+
<topic>Digital divide–United States</topic>
|
709
|
+
<topic>Digital divide</topic>
|
710
|
+
<topic>Information technology–Social aspects–United States</topic>
|
711
|
+
<collection>BOBST</collection>
|
712
|
+
<collection>CU</collection>
|
713
|
+
<toplevel>available</toplevel>
|
714
|
+
<prefilter>books</prefilter>
|
715
|
+
<rsrctype>books</rsrctype>
|
716
|
+
<creatorcontrib>Kuttan, A</creatorcontrib>
|
717
|
+
<creatorcontrib>Peters, L</creatorcontrib>
|
718
|
+
<library>BOBST</library>
|
719
|
+
<library>CGEN</library>
|
720
|
+
<lfc01>Main Collection</lfc01>
|
721
|
+
<classificationlcc>H - Social sciences.–Social history and conditions. Social problems. Social reform–By region or country</classificationlcc>
|
722
|
+
<frbrgroupid>49988018</frbrgroupid>
|
723
|
+
<frbrtype>6</frbrtype>
|
724
|
+
</facets>
|
725
|
+
<dedup>
|
726
|
+
<t>1</t>
|
727
|
+
<c1>2002030296</c1>
|
728
|
+
<c2>0810844915;0810844923;9780810844919;9780810844926</c2>
|
729
|
+
<c3>fromdigitaldividetodpportunity</c3>
|
730
|
+
<c4>2003</c4>
|
731
|
+
<f1>2002030296</f1>
|
732
|
+
<f3>0810844915;0810844923;9780810844919;9780810844926</f3>
|
733
|
+
<f5>fromdigitaldividetodpportunity</f5>
|
734
|
+
<f6>2003</f6>
|
735
|
+
<f7>from digital divide to digital opportunity</f7>
|
736
|
+
<f8>mdu</f8>
|
737
|
+
<f9>x, 190 p. :</f9>
|
738
|
+
<f10>scarecrow press</f10>
|
739
|
+
<f11>kuttan appu 1941</f11>
|
740
|
+
</dedup>
|
741
|
+
<frbr>
|
742
|
+
<t>1</t>
|
743
|
+
<k1>$$Kkuttan appu 1941$$AA</k1>
|
744
|
+
<k3>$$Kbookfrom digital divide to digital opportunity$$AT</k3>
|
745
|
+
</frbr>
|
746
|
+
<delivery>
|
747
|
+
<institution>NYU</institution>
|
748
|
+
<institution>CU</institution>
|
749
|
+
<delcategory>Physical Item</delcategory>
|
750
|
+
</delivery>
|
751
|
+
<enrichment>
|
752
|
+
<classificationlcc>HN90.I56</classificationlcc>
|
753
|
+
</enrichment>
|
754
|
+
<ranking>
|
755
|
+
<booster1>1</booster1>
|
756
|
+
<booster2>1</booster2>
|
757
|
+
</ranking>
|
758
|
+
<addata>
|
759
|
+
<aulast>Kuttan</aulast>
|
760
|
+
<aufirst>Appu,</aufirst>
|
761
|
+
<au>Kuttan, Appu, 1941-</au>
|
762
|
+
<addau>Peters, Laurence, 1952-</addau>
|
763
|
+
<btitle>From digital divide to digital opportunity</btitle>
|
764
|
+
<date>2003</date>
|
765
|
+
<risdate>2003.</risdate>
|
766
|
+
<isbn>0810844915</isbn>
|
767
|
+
<isbn>0810844923</isbn>
|
768
|
+
<isbn>9780810844919</isbn>
|
769
|
+
<isbn>9780810844926</isbn>
|
770
|
+
<format>book</format>
|
771
|
+
<genre>book</genre>
|
772
|
+
<ristype>BOOK</ristype>
|
773
|
+
<notes>Includes bibliographical references and index.</notes>
|
774
|
+
<cop>Lanham, Md.</cop>
|
775
|
+
<pub>Scarecrow Press</pub>
|
776
|
+
<lccn>2002030296</lccn>
|
777
|
+
<lad01>BOBSTCU</lad01>
|
778
|
+
<lad01>Physical Item</lad01>
|
779
|
+
</addata>
|
780
|
+
</record>
|
781
|
+
</PrimoNMBib>
|
782
|
+
<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=000980206" 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%3A47%3A52IST&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_aleph000980206&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Virtual%20inequality%20:%20beyond%20the%20digital%20divide&amp;rft.aulast=Mossberger&amp;rft.aufirst=Karen&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Mossberger%2C%20Karen&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=Georgetown%20University%20Press&amp;rft.place=Washington%2C%20D.C.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0878409998&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000980206&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000980206&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
783
|
+
<LIBRARIES>
|
784
|
+
<LIBRARY>
|
785
|
+
<institution>NYU</institution>
|
786
|
+
<library>BOBST</library>
|
787
|
+
<status>available</status>
|
788
|
+
<collection>Main Collection</collection>
|
789
|
+
<callNumber>(HN90.I56 K888 2003 )</callNumber>
|
790
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000864162</url>
|
791
|
+
</LIBRARY>
|
792
|
+
<LIBRARY>
|
793
|
+
<institution>CU</institution>
|
794
|
+
<library>CU</library>
|
795
|
+
<status>available</status>
|
796
|
+
<collection>Main Collection</collection>
|
797
|
+
<callNumber>(HN90.I56 K888 2003 )</callNumber>
|
798
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000864162</url>
|
799
|
+
</LIBRARY>
|
800
|
+
</LIBRARIES>
|
801
|
+
<LINKS>
|
802
|
+
<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%3A47%3A52IST&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>
|
803
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=000864162</backlink>
|
804
|
+
<thumbnail>http://images.amazon.com/images/P/0810844915.01._SSTHUM_.jpg</thumbnail>
|
805
|
+
<linktotoc>http://www.amazon.com/gp/reader/0810844915</linktotoc>
|
806
|
+
<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%3A47%3A52IST&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>
|
807
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000864162</linktoholdings>
|
808
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph000864162?institution=NYU&amp;persistent</linktoreview>
|
809
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=0810844915</linktouc>
|
810
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A0810844915</linktouc>
|
811
|
+
</LINKS>
|
812
|
+
</DOC>
|
813
|
+
<DOC ID="3315422" RANK="0.0096615935" NO="3" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
814
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
815
|
+
<record>
|
816
|
+
<control>
|
817
|
+
<sourcerecordid>$$V003347784$$Onyu_aleph003347784</sourcerecordid>
|
818
|
+
<sourcerecordid>$$V000842938$$Onyu_aleph000842938</sourcerecordid>
|
819
|
+
<sourceid>$$Vnyu_aleph$$Onyu_aleph003347784</sourceid>
|
820
|
+
<sourceid>$$Vnyu_aleph$$Onyu_aleph000842938</sourceid>
|
821
|
+
<recordid>dedupmrg35761381</recordid>
|
822
|
+
<originalsourceid>$$VNYU01$$Onyu_aleph003347784</originalsourceid>
|
823
|
+
<originalsourceid>$$VNYU01$$Onyu_aleph000842938</originalsourceid>
|
824
|
+
<sourceformat>$$VMARC21$$Onyu_aleph003347784</sourceformat>
|
825
|
+
<sourceformat>$$VMARC21$$Onyu_aleph000842938</sourceformat>
|
826
|
+
<sourcesystem>$$VAleph$$Onyu_aleph003347784</sourcesystem>
|
827
|
+
<sourcesystem>$$VAleph$$Onyu_aleph000842938</sourcesystem>
|
828
|
+
<ilsapiid>$$VNYU01003347784$$Onyu_aleph003347784</ilsapiid>
|
829
|
+
<ilsapiid>$$VNYU01000842938$$Onyu_aleph000842938</ilsapiid>
|
830
|
+
</control>
|
831
|
+
<display>
|
832
|
+
<type>book</type>
|
833
|
+
<title>Technology and social inclusion rethinking the digital divide</title>
|
834
|
+
<creator>Mark Warschauer</creator>
|
835
|
+
<publisher>Cambridge, Mass. : MIT Press</publisher>
|
836
|
+
<creationdate>c2003</creationdate>
|
837
|
+
<format>xii, 260 p. ; 24 cm.</format>
|
838
|
+
<identifier>$$Cisbn$$V9780262232241</identifier>
|
839
|
+
<subject>Digital divide; Marginality, Social; Electronic books</subject>
|
840
|
+
<language>eng</language>
|
841
|
+
<rights>Access is restricted to users affiliated with licensed institutions.</rights>
|
842
|
+
<source>$$Vnyu_aleph$$Onyu_aleph003347784</source>
|
843
|
+
<source>$$Vnyu_aleph$$Onyu_aleph000842938</source>
|
844
|
+
<availlibrary>$$INYU$$LBWEB$$1Internet Resources$$2(HN49.I56 W37 2003eb Electronic access )$$Scheck_holdings$$XNYU50$$YBWEB$$ZBNYUI$$Onyu_aleph003347784</availlibrary>
|
845
|
+
<availlibrary>$$INS$$LTWEB$$1Internet Resources$$2(HN49.I56 W37 2003eb Electronic access )$$Scheck_holdings$$XNYU50$$YTWEB$$ZTNSI$$Onyu_aleph003347784</availlibrary>
|
846
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(HN49.I56 W37 2003 )$$Savailable$$31$$40$$5N$$64$$XNYU50$$YBOBST$$ZMAIN$$Onyu_aleph000842938</availlibrary>
|
847
|
+
<availinstitution>$$INYU$$Scheck_holdings</availinstitution>
|
848
|
+
<availinstitution>$$INS$$Scheck_holdings</availinstitution>
|
849
|
+
<availpnx>available</availpnx>
|
850
|
+
<lds01>NYU</lds01>
|
851
|
+
<lds01>NS</lds01>
|
852
|
+
<lds01>NYUAD</lds01>
|
853
|
+
<lds01>NYU</lds01>
|
854
|
+
<lds02>nyu_aleph003347784</lds02>
|
855
|
+
<lds02>nyu_aleph000842938</lds02>
|
856
|
+
</display>
|
857
|
+
<links>
|
858
|
+
<linktoholdings>$$V$$Taleph_holdings$$Onyu_aleph003347784</linktoholdings>
|
859
|
+
<linktoholdings>$$V$$Taleph_holdings$$Onyu_aleph000842938</linktoholdings>
|
860
|
+
<backlink>$$V$$Taleph_backlink$$DMore bibliographic information$$Onyu_aleph003347784</backlink>
|
861
|
+
<backlink>$$V$$Taleph_backlink$$DMore bibliographic information$$Onyu_aleph000842938</backlink>
|
862
|
+
<linktorsrc>$$Uhttps://ezproxy.library.nyu.edu/login?url=http://site.ebrary.com/lib/nyulibrary/Doc?id=10225286$$DOnline Version$$INYU</linktorsrc>
|
863
|
+
<linktorsrc>$$Uhttps://ezproxy.library.nyu.edu/login?url=http://site.ebrary.com/lib/nyulibrary/Doc?id=10225286$$DOnline Resource$$INYUAD</linktorsrc>
|
864
|
+
<linktorsrc>$$Uhttps://login.libproxy.newschool.edu/login?url=http://site.ebrary.com/lib/newschool/Doc?id=10225286$$DOnline Version$$INS</linktorsrc>
|
865
|
+
<openurl>$$V$$Topenurl_journal$$Onyu_aleph003347784</openurl>
|
866
|
+
<openurl>$$V$$Topenurl_journal$$Onyu_aleph000842938</openurl>
|
867
|
+
<openurlfulltext>$$V$$Topenurlfull_journal$$Onyu_aleph003347784</openurlfulltext>
|
868
|
+
<openurlfulltext>$$V$$Topenurlfull_journal$$Onyu_aleph000842938</openurlfulltext>
|
869
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
870
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
871
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
872
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
873
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
874
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
875
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
876
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
877
|
+
</links>
|
878
|
+
<search>
|
879
|
+
<creatorcontrib>Mellon Project.</creatorcontrib>
|
880
|
+
<creatorcontrib>ebrary, Inc.</creatorcontrib>
|
881
|
+
<title>Technology and social inclusion rethinking the digital divide /</title>
|
882
|
+
<subject>Electronic books</subject>
|
883
|
+
<general>[electronic resource] :</general>
|
884
|
+
<recordid>nyu_aleph003347784</recordid>
|
885
|
+
<searchscope>BWEB</searchscope>
|
886
|
+
<searchscope>BWEB Internet Resources</searchscope>
|
887
|
+
<searchscope>TWEB</searchscope>
|
888
|
+
<searchscope>TWEB Internet Resources</searchscope>
|
889
|
+
<searchscope>NS</searchscope>
|
890
|
+
<searchscope>NYUAD</searchscope>
|
891
|
+
<searchscope>IFA</searchscope>
|
892
|
+
<searchscope>IFAC</searchscope>
|
893
|
+
<searchscope>ISAW</searchscope>
|
894
|
+
<searchscope>COUR</searchscope>
|
895
|
+
<searchscope>REI</searchscope>
|
896
|
+
<searchscope>NSSC</searchscope>
|
897
|
+
<searchscope>NSFO</searchscope>
|
898
|
+
<searchscope>NSGI</searchscope>
|
899
|
+
<searchscope>NSKE</searchscope>
|
900
|
+
<scope>BWEB</scope>
|
901
|
+
<scope>BWEB Internet Resources</scope>
|
902
|
+
<scope>TWEB</scope>
|
903
|
+
<scope>TWEB Internet Resources</scope>
|
904
|
+
<scope>NS</scope>
|
905
|
+
<scope>NYUAD</scope>
|
906
|
+
<scope>IFA</scope>
|
907
|
+
<scope>IFAC</scope>
|
908
|
+
<scope>ISAW</scope>
|
909
|
+
<scope>COUR</scope>
|
910
|
+
<scope>REI</scope>
|
911
|
+
<scope>NSSC</scope>
|
912
|
+
<scope>NSFO</scope>
|
913
|
+
<scope>NSGI</scope>
|
914
|
+
<scope>NSKE</scope>
|
915
|
+
<lsr01>HN49.I56 W37 2003eb</lsr01>
|
916
|
+
<lsr01>HN49 .I56 W37 2003eb</lsr01>
|
917
|
+
<creatorcontrib>Mark Warschauer</creatorcontrib>
|
918
|
+
<creatorcontrib>Warschauer, Mark.</creatorcontrib>
|
919
|
+
<creatorcontrib>Warschauer, M</creatorcontrib>
|
920
|
+
<creatorcontrib>Mark Warschauer.</creatorcontrib>
|
921
|
+
<title>Technology and social inclusion : rethinking the digital divide /</title>
|
922
|
+
<subject>Digital divide</subject>
|
923
|
+
<subject>Marginality, Social</subject>
|
924
|
+
<subject>Divide, Digital</subject>
|
925
|
+
<subject>Global digital divide</subject>
|
926
|
+
<subject>GDD (Global digital divide)</subject>
|
927
|
+
<subject>Social marginality</subject>
|
928
|
+
<subject>Marginal peoples</subject>
|
929
|
+
<general>MIT Press,</general>
|
930
|
+
<sourceid>nyu_aleph</sourceid>
|
931
|
+
<recordid>nyu_aleph000842938</recordid>
|
932
|
+
<isbn>0262232243</isbn>
|
933
|
+
<isbn>9780262232241</isbn>
|
934
|
+
<rsrctype>book</rsrctype>
|
935
|
+
<creationdate>2003</creationdate>
|
936
|
+
<searchscope>BOBST</searchscope>
|
937
|
+
<searchscope>BOBST Main Collection</searchscope>
|
938
|
+
<searchscope>nyu_aleph</searchscope>
|
939
|
+
<searchscope>NYU</searchscope>
|
940
|
+
<scope>BOBST</scope>
|
941
|
+
<scope>BOBST Main Collection</scope>
|
942
|
+
<scope>nyu_aleph</scope>
|
943
|
+
<scope>NYU</scope>
|
944
|
+
<lsr01>HN49.I56 W37 2003</lsr01>
|
945
|
+
<lsr01>HN49 .I56 W37 2003</lsr01>
|
946
|
+
<lsr02>MIT Press,</lsr02>
|
947
|
+
</search>
|
948
|
+
<sort>
|
949
|
+
<title>Technology and social inclusion rethinking the digital divide /</title>
|
950
|
+
<creationdate>2003</creationdate>
|
951
|
+
<author>Warschauer, Mark.</author>
|
952
|
+
<lso01>2003</lso01>
|
953
|
+
</sort>
|
954
|
+
<facets>
|
955
|
+
<collection>TWEB</collection>
|
956
|
+
<toplevel>online_resources</toplevel>
|
957
|
+
<genre>Electronic books</genre>
|
958
|
+
<library>IFA</library>
|
959
|
+
<library>IFAC</library>
|
960
|
+
<library>ISAW</library>
|
961
|
+
<library>COUR</library>
|
962
|
+
<library>REI</library>
|
963
|
+
<library>NSSC</library>
|
964
|
+
<library>NSFO</library>
|
965
|
+
<library>NSGI</library>
|
966
|
+
<library>NSKE</library>
|
967
|
+
<lfc01>Internet Resources</lfc01>
|
968
|
+
<language>eng</language>
|
969
|
+
<creationdate>2003</creationdate>
|
970
|
+
<topic>Digital divide</topic>
|
971
|
+
<topic>Marginality, Social</topic>
|
972
|
+
<collection>BOBST</collection>
|
973
|
+
<toplevel>available</toplevel>
|
974
|
+
<prefilter>books</prefilter>
|
975
|
+
<rsrctype>books</rsrctype>
|
976
|
+
<creatorcontrib>Warschauer, M</creatorcontrib>
|
977
|
+
<library>BOBST</library>
|
978
|
+
<lfc01>Main Collection</lfc01>
|
979
|
+
<classificationlcc>H - Social sciences.–Social history and conditions. Social problems. Social reform</classificationlcc>
|
980
|
+
<frbrgroupid>47794997</frbrgroupid>
|
981
|
+
<frbrtype>6</frbrtype>
|
982
|
+
</facets>
|
983
|
+
<dedup>
|
984
|
+
<t>1</t>
|
985
|
+
<c2>0262232243;9780262232241</c2>
|
986
|
+
<c3>technologyandsocialiitaldivide</c3>
|
987
|
+
<c4>2003</c4>
|
988
|
+
<f3>9780262232241</f3>
|
989
|
+
<f4>0262232243</f4>
|
990
|
+
<f5>technologyandsocialiitaldivide</f5>
|
991
|
+
<f6>2003</f6>
|
992
|
+
<f7>technology and social inclusion rethinking the digital divide</f7>
|
993
|
+
<f8>mau</f8>
|
994
|
+
<f9>xii, 260 p. ;</f9>
|
995
|
+
<f10>mit press</f10>
|
996
|
+
<f11>warschauer mark</f11>
|
997
|
+
</dedup>
|
998
|
+
<frbr>
|
999
|
+
<t>1</t>
|
1000
|
+
<k1>$$Kwarschauer mark$$AA</k1>
|
1001
|
+
<k3>$$Kbooktechnology and social inclusion rethinking the digital divide$$AT</k3>
|
1002
|
+
</frbr>
|
1003
|
+
<delivery>
|
1004
|
+
<institution>$$VNYU$$Onyu_aleph003347784</institution>
|
1005
|
+
<institution>$$VNS$$Onyu_aleph003347784</institution>
|
1006
|
+
<institution>$$VNYUAD$$Onyu_aleph003347784</institution>
|
1007
|
+
<delcategory>$$VOnline Resource$$Onyu_aleph003347784</delcategory>
|
1008
|
+
<institution>$$VNYU$$Onyu_aleph000842938</institution>
|
1009
|
+
<delcategory>$$VPhysical Item$$Onyu_aleph000842938</delcategory>
|
1010
|
+
</delivery>
|
1011
|
+
<enrichment>
|
1012
|
+
<classificationlcc>HN49.I56</classificationlcc>
|
1013
|
+
</enrichment>
|
1014
|
+
<ranking>
|
1015
|
+
<booster1>1</booster1>
|
1016
|
+
<booster2>1</booster2>
|
1017
|
+
</ranking>
|
1018
|
+
<addata>
|
1019
|
+
<btitle>Technology and social inclusion rethinking the digital divide</btitle>
|
1020
|
+
<lad01>BWEBTWEB</lad01>
|
1021
|
+
<lad01>Online Resource</lad01>
|
1022
|
+
<aulast>Warschauer</aulast>
|
1023
|
+
<aufirst>Mark</aufirst>
|
1024
|
+
<au>Warschauer, Mark</au>
|
1025
|
+
<btitle>Technology and social inclusion : rethinking the digital divide</btitle>
|
1026
|
+
<date>2003</date>
|
1027
|
+
<risdate>c2003.</risdate>
|
1028
|
+
<isbn>0262232243</isbn>
|
1029
|
+
<isbn>9780262232241</isbn>
|
1030
|
+
<format>book</format>
|
1031
|
+
<genre>book</genre>
|
1032
|
+
<ristype>BOOK</ristype>
|
1033
|
+
<notes>Includes bibliographical references (p. [225]-245) and index.</notes>
|
1034
|
+
<cop>Cambridge, Mass.</cop>
|
1035
|
+
<pub>MIT Press</pub>
|
1036
|
+
<lccn>2002075130</lccn>
|
1037
|
+
<lad01>BOBST</lad01>
|
1038
|
+
<lad01>Physical Item</lad01>
|
1039
|
+
</addata>
|
1040
|
+
</record>
|
1041
|
+
</PrimoNMBib>
|
1042
|
+
<GETIT deliveryCategory="Online Resource" GetIt1="https://ezproxy.library.nyu.edu/login?url=http://site.ebrary.com/lib/nyulibrary/Doc?id=10225286" 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%3A47%3A52IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-dedupmrg35761381&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Technology%20and%20social%20inclusion%20rethinking%20the%20digital%20divide&amp;rft.aulast=Warschauer&amp;rft.aufirst=Mark&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Warschauer%2C%20Mark&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=MIT%20Press&amp;rft.place=Cambridge%2C%20Mass.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0262232243&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=dedupmrg35761381&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>003347784&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
1043
|
+
<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=000980206" 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%3A47%3A52IST&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_aleph000980206&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Virtual%20inequality%20:%20beyond%20the%20digital%20divide&amp;rft.aulast=Mossberger&amp;rft.aufirst=Karen&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Mossberger%2C%20Karen&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=Georgetown%20University%20Press&amp;rft.place=Washington%2C%20D.C.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0878409998&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000980206&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000980206&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
1044
|
+
<LIBRARIES>
|
1045
|
+
<LIBRARY>
|
1046
|
+
<institution>NYU</institution>
|
1047
|
+
<library>BWEB</library>
|
1048
|
+
<status>check_holdings</status>
|
1049
|
+
<collection>Internet Resources</collection>
|
1050
|
+
<callNumber>(HN49.I56 W37 2003eb Electronic access )</callNumber>
|
1051
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003347784</url>
|
1052
|
+
</LIBRARY>
|
1053
|
+
<LIBRARY>
|
1054
|
+
<institution>NS</institution>
|
1055
|
+
<library>TWEB</library>
|
1056
|
+
<status>check_holdings</status>
|
1057
|
+
<collection>Internet Resources</collection>
|
1058
|
+
<callNumber>(HN49.I56 W37 2003eb Electronic access )</callNumber>
|
1059
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003347784</url>
|
1060
|
+
</LIBRARY>
|
1061
|
+
</LIBRARIES>
|
1062
|
+
<LIBRARIES>
|
1063
|
+
<LIBRARY>
|
1064
|
+
<institution>NYU</institution>
|
1065
|
+
<library>BOBST</library>
|
1066
|
+
<status>available</status>
|
1067
|
+
<collection>Main Collection</collection>
|
1068
|
+
<callNumber>(HN49.I56 W37 2003 )</callNumber>
|
1069
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000842938</url>
|
1070
|
+
</LIBRARY>
|
1071
|
+
</LIBRARIES>
|
1072
|
+
<LINKS>
|
1073
|
+
<openurl><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?umlaut.institution=NYUAD&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A47%3A52IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-dedupmrg35761381&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Technology%20and%20social%20inclusion%20rethinking%20the%20digital%20divide&rft.aulast=Warschauer&rft.aufirst=Mark&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Warschauer%2C%20Mark&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=MIT%20Press&rft.place=Cambridge%2C%20Mass.&rft.issn=&rft.eissn=&rft.isbn=0262232243&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=dedupmrg35761381&rft.eisbn=&rft_dat=<nyu_aleph>003347784</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
1074
|
+
<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%3A47%3A52IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-dedupmrg35761381&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Technology%20and%20social%20inclusion%20rethinking%20the%20digital%20divide&rft.aulast=Warschauer&rft.aufirst=Mark&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Warschauer%2C%20Mark&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=MIT%20Press&rft.place=Cambridge%2C%20Mass.&rft.issn=&rft.eissn=&rft.isbn=0262232243&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=dedupmrg35761381&rft.eisbn=&rft_dat=<nyu_aleph>000842938</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
1075
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=003347784</backlink>
|
1076
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=000842938</backlink>
|
1077
|
+
<linktorsrc>https://ezproxy.library.nyu.edu/login?url=http://site.ebrary.com/lib/nyulibrary/Doc?id=10225286</linktorsrc>
|
1078
|
+
<thumbnail>http://images.amazon.com/images/P/0262232243.01._SSTHUM_.jpg</thumbnail>
|
1079
|
+
<linktotoc>http://www.amazon.com/gp/reader/0262232243</linktotoc>
|
1080
|
+
<openurlfulltext><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?umlaut.institution=NYUAD&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-10T12%3A47%3A52IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-dedupmrg35761381&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Technology%20and%20social%20inclusion%20rethinking%20the%20digital%20divide&rft.aulast=Warschauer&rft.aufirst=Mark&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Warschauer%2C%20Mark&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=MIT%20Press&rft.place=Cambridge%2C%20Mass.&rft.issn=&rft.eissn=&rft.isbn=0262232243&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>003347784</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
1081
|
+
<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%3A47%3A52IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-dedupmrg35761381&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Technology%20and%20social%20inclusion%20rethinking%20the%20digital%20divide&rft.aulast=Warschauer&rft.aufirst=Mark&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Warschauer%2C%20Mark&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=MIT%20Press&rft.place=Cambridge%2C%20Mass.&rft.issn=&rft.eissn=&rft.isbn=0262232243&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>000842938</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
1082
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003347784</linktoholdings>
|
1083
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000842938</linktoholdings>
|
1084
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/dedupmrg35761381?institution=NYU&amp;persistent</linktoreview>
|
1085
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=0262232243</linktouc>
|
1086
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A0262232243</linktouc>
|
1087
|
+
</LINKS>
|
1088
|
+
</DOC>
|
1089
|
+
<DOC ID="3424915" RANK="0.00917074" NO="4" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
1090
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
1091
|
+
<record>
|
1092
|
+
<control>
|
1093
|
+
<sourcerecordid>003531438</sourcerecordid>
|
1094
|
+
<sourceid>nyu_aleph</sourceid>
|
1095
|
+
<recordid>nyu_aleph003531438</recordid>
|
1096
|
+
<originalsourceid>NYU01</originalsourceid>
|
1097
|
+
<ilsapiid>NYU01003531438</ilsapiid>
|
1098
|
+
<sourceformat>MARC21</sourceformat>
|
1099
|
+
<sourcesystem>Aleph</sourcesystem>
|
1100
|
+
</control>
|
1101
|
+
<display>
|
1102
|
+
<type>book</type>
|
1103
|
+
<title>Globalization and the digital divide</title>
|
1104
|
+
<contributor>Kirk St. Amant 1970-; Bolanle Olaniran 1964-</contributor>
|
1105
|
+
<publisher>Amherst, N.Y. : Cambria Press</publisher>
|
1106
|
+
<creationdate>c2011</creationdate>
|
1107
|
+
<format>xii, 270 p. : ill. ; 24 cm.</format>
|
1108
|
+
<identifier>$$Cisbn$$V9781604977707; $$Cisbn$$V1604977701</identifier>
|
1109
|
+
<subject>Digital divide -- Developing countries; Information technology -- Developing countries; Economic development -- Developing countries; Globalization -- Social aspects</subject>
|
1110
|
+
<language>eng</language>
|
1111
|
+
<source>nyu_aleph</source>
|
1112
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(HN981.I56 G56 2011 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
1113
|
+
<lds02>nyu_aleph003531438</lds02>
|
1114
|
+
<lds01>NYU</lds01>
|
1115
|
+
<availinstitution>$$INYU$$Savailable</availinstitution>
|
1116
|
+
<availpnx>available</availpnx>
|
1117
|
+
</display>
|
1118
|
+
<links>
|
1119
|
+
<openurl>$$Topenurl_journal</openurl>
|
1120
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
1121
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
1122
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
1123
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
1124
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
1125
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
1126
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
1127
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
1128
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
1129
|
+
</links>
|
1130
|
+
<search>
|
1131
|
+
<creatorcontrib>edited by Kirk St. Amant and Bolanle A. Olaniran.</creatorcontrib>
|
1132
|
+
<creatorcontrib>Kirk, St. Amant 1970-</creatorcontrib>
|
1133
|
+
<creatorcontrib>Bolanle, Olaniran 1964-</creatorcontrib>
|
1134
|
+
<creatorcontrib>St. Amant</creatorcontrib>
|
1135
|
+
<creatorcontrib>Olaniran, B</creatorcontrib>
|
1136
|
+
<creatorcontrib>Saint Amant, Kirk, 1970-</creatorcontrib>
|
1137
|
+
<creatorcontrib>Amant, Kirk St., 1970-</creatorcontrib>
|
1138
|
+
<title>Globalization and the digital divide /</title>
|
1139
|
+
<subject>Digital divide Developing countries</subject>
|
1140
|
+
<subject>Information technology Developing countries</subject>
|
1141
|
+
<subject>Economic development Developing countries</subject>
|
1142
|
+
<subject>Globalization Social aspects</subject>
|
1143
|
+
<subject>Divide, Digital</subject>
|
1144
|
+
<subject>Global digital divide</subject>
|
1145
|
+
<subject>IT (Information technology)</subject>
|
1146
|
+
<subject>Economic growth</subject>
|
1147
|
+
<subject>Growth, Economic</subject>
|
1148
|
+
<subject>Development, Economic</subject>
|
1149
|
+
<subject>GDD (Global digital divide)</subject>
|
1150
|
+
<general>Cambria Press,</general>
|
1151
|
+
<sourceid>nyu_aleph</sourceid>
|
1152
|
+
<recordid>nyu_aleph003531438</recordid>
|
1153
|
+
<isbn>9781604977707</isbn>
|
1154
|
+
<isbn>1604977701</isbn>
|
1155
|
+
<rsrctype>book</rsrctype>
|
1156
|
+
<creationdate>2011</creationdate>
|
1157
|
+
<searchscope>BOBST</searchscope>
|
1158
|
+
<searchscope>BOBST Main Collection</searchscope>
|
1159
|
+
<searchscope>nyu_aleph</searchscope>
|
1160
|
+
<searchscope>NYU</searchscope>
|
1161
|
+
<scope>BOBST</scope>
|
1162
|
+
<scope>BOBST Main Collection</scope>
|
1163
|
+
<scope>nyu_aleph</scope>
|
1164
|
+
<scope>NYU</scope>
|
1165
|
+
<lsr01>HN981.I56 G56 2011</lsr01>
|
1166
|
+
<lsr01>HN981 .I56 G56 2011</lsr01>
|
1167
|
+
<lsr02>Cambria Press,</lsr02>
|
1168
|
+
</search>
|
1169
|
+
<sort>
|
1170
|
+
<title>Globalization and the digital divide /</title>
|
1171
|
+
<creationdate>2011</creationdate>
|
1172
|
+
<author>St. Amant, Kirk, 1970-</author>
|
1173
|
+
<lso01>2011</lso01>
|
1174
|
+
</sort>
|
1175
|
+
<facets>
|
1176
|
+
<language>eng</language>
|
1177
|
+
<creationdate>2011</creationdate>
|
1178
|
+
<topic>Digital divide–Developing countries</topic>
|
1179
|
+
<topic>Information technology–Developing countries</topic>
|
1180
|
+
<topic>Economic development–Developing countries</topic>
|
1181
|
+
<topic>Globalization–Social aspects</topic>
|
1182
|
+
<collection>BOBST</collection>
|
1183
|
+
<toplevel>available</toplevel>
|
1184
|
+
<prefilter>books</prefilter>
|
1185
|
+
<rsrctype>books</rsrctype>
|
1186
|
+
<creatorcontrib>St. Amant</creatorcontrib>
|
1187
|
+
<creatorcontrib>Olaniran, B</creatorcontrib>
|
1188
|
+
<library>BOBST</library>
|
1189
|
+
<lfc01>Main Collection</lfc01>
|
1190
|
+
<classificationlcc>H - Social sciences.–Social history and conditions. Social problems. Social reform–By region or country</classificationlcc>
|
1191
|
+
<frbrgroupid>52522658</frbrgroupid>
|
1192
|
+
<frbrtype>6</frbrtype>
|
1193
|
+
</facets>
|
1194
|
+
<dedup>
|
1195
|
+
<t>1</t>
|
1196
|
+
<c1>2011038447</c1>
|
1197
|
+
<c2>9781604977707;1604977701</c2>
|
1198
|
+
<c3>globalizationandtheditaldivide</c3>
|
1199
|
+
<c4>2011</c4>
|
1200
|
+
<f1>2011038447</f1>
|
1201
|
+
<f3>9781604977707;1604977701</f3>
|
1202
|
+
<f5>globalizationandthedigitaldivide</f5>
|
1203
|
+
<f6>2011</f6>
|
1204
|
+
<f7>globalization and the digital divide</f7>
|
1205
|
+
<f8>nyu</f8>
|
1206
|
+
<f9>xii, 270 p. :</f9>
|
1207
|
+
<f10>cambria press</f10>
|
1208
|
+
</dedup>
|
1209
|
+
<frbr>
|
1210
|
+
<t>1</t>
|
1211
|
+
<k1>$$Kst amant kirk 1970$$AA</k1>
|
1212
|
+
<k1>$$Kolaniran bolanle 1964$$AA</k1>
|
1213
|
+
<k3>$$Kbookglobalization and the digital divide$$AT</k3>
|
1214
|
+
</frbr>
|
1215
|
+
<delivery>
|
1216
|
+
<institution>NYU</institution>
|
1217
|
+
<delcategory>Physical Item</delcategory>
|
1218
|
+
</delivery>
|
1219
|
+
<enrichment>
|
1220
|
+
<classificationlcc>HN981.I56</classificationlcc>
|
1221
|
+
</enrichment>
|
1222
|
+
<ranking>
|
1223
|
+
<booster1>1</booster1>
|
1224
|
+
<booster2>1</booster2>
|
1225
|
+
</ranking>
|
1226
|
+
<addata>
|
1227
|
+
<aulast>St. Amant</aulast>
|
1228
|
+
<aufirst>Kirk,</aufirst>
|
1229
|
+
<addau>St. Amant, Kirk, 1970-</addau>
|
1230
|
+
<addau>Olaniran, Bolanle, 1964-</addau>
|
1231
|
+
<btitle>Globalization and the digital divide</btitle>
|
1232
|
+
<date>2011</date>
|
1233
|
+
<risdate>c2011.</risdate>
|
1234
|
+
<isbn>9781604977707</isbn>
|
1235
|
+
<isbn>1604977701</isbn>
|
1236
|
+
<format>book</format>
|
1237
|
+
<genre>book</genre>
|
1238
|
+
<ristype>BOOK</ristype>
|
1239
|
+
<notes>Includes bibliographical references and index.</notes>
|
1240
|
+
<cop>Amherst, N.Y.</cop>
|
1241
|
+
<pub>Cambria Press</pub>
|
1242
|
+
<lccn>2011038447</lccn>
|
1243
|
+
<lad01>BOBST</lad01>
|
1244
|
+
<lad01>Physical Item</lad01>
|
1245
|
+
</addata>
|
1246
|
+
</record>
|
1247
|
+
</PrimoNMBib>
|
1248
|
+
<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=000980206" 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%3A47%3A52IST&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_aleph000980206&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Virtual%20inequality%20:%20beyond%20the%20digital%20divide&amp;rft.aulast=Mossberger&amp;rft.aufirst=Karen&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Mossberger%2C%20Karen&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=Georgetown%20University%20Press&amp;rft.place=Washington%2C%20D.C.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0878409998&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000980206&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000980206&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
1249
|
+
<LIBRARIES>
|
1250
|
+
<LIBRARY>
|
1251
|
+
<institution>NYU</institution>
|
1252
|
+
<library>BOBST</library>
|
1253
|
+
<status>available</status>
|
1254
|
+
<collection>Main Collection</collection>
|
1255
|
+
<callNumber>(HN981.I56 G56 2011 )</callNumber>
|
1256
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438</url>
|
1257
|
+
</LIBRARY>
|
1258
|
+
</LIBRARIES>
|
1259
|
+
<LINKS>
|
1260
|
+
<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%3A47%3A52IST&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>
|
1261
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438</backlink>
|
1262
|
+
<thumbnail>http://images.amazon.com/images/P/9781604977707.01._SSTHUM_.jpg</thumbnail>
|
1263
|
+
<linktotoc>http://www.amazon.com/gp/reader/9781604977707</linktotoc>
|
1264
|
+
<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%3A47%3A52IST&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>
|
1265
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003531438</linktoholdings>
|
1266
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph003531438?institution=NYU&amp;persistent</linktoreview>
|
1267
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=9781604977707</linktouc>
|
1268
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A9781604977707</linktouc>
|
1269
|
+
</LINKS>
|
1270
|
+
</DOC>
|
1271
|
+
<DOC ID="3423193" RANK="0.009058483" NO="5" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
1272
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
1273
|
+
<record>
|
1274
|
+
<control>
|
1275
|
+
<sourcerecordid>003527961</sourcerecordid>
|
1276
|
+
<sourceid>nyu_aleph</sourceid>
|
1277
|
+
<recordid>nyu_aleph003527961</recordid>
|
1278
|
+
<originalsourceid>NYU01</originalsourceid>
|
1279
|
+
<ilsapiid>NYU01003527961</ilsapiid>
|
1280
|
+
<sourceformat>MARC21</sourceformat>
|
1281
|
+
<sourcesystem>Aleph</sourcesystem>
|
1282
|
+
</control>
|
1283
|
+
<display>
|
1284
|
+
<type>book</type>
|
1285
|
+
<title>Disability and the Internet : confronting a digital divide</title>
|
1286
|
+
<creator>Paul T. Jaeger 1974-</creator>
|
1287
|
+
<publisher>Boulder, Colo. : Lynne Rienner Publishers</publisher>
|
1288
|
+
<creationdate>2012</creationdate>
|
1289
|
+
<format>x, 225 p. ; 24 cm.</format>
|
1290
|
+
<identifier>$$Cisbn$$V9781588268280 (hbk. : alk. paper); $$Cisbn$$V1588268284 (hbk. : alk. paper)</identifier>
|
1291
|
+
<subject>Computers and people with disabilities; Digital divide</subject>
|
1292
|
+
<description>$$Ccontents$$VDisability in the Internet age -- The digital disability divide: historical and legal issues -- Barriers to online access: personal, public, and professional spheres -- Improving accessibility: technology evaluation and policy reform -- Identity and advocacy: possibilities and impacts -- Toward an inclusive Internet.</description>
|
1293
|
+
<language>eng</language>
|
1294
|
+
<relation>$$Cseries $$VDisability in society</relation>
|
1295
|
+
<source>nyu_aleph</source>
|
1296
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(HV1569.5 .J34 2012 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
1297
|
+
<lds02>nyu_aleph003527961</lds02>
|
1298
|
+
<lds01>NYU</lds01>
|
1299
|
+
<availinstitution>$$INYU$$Savailable</availinstitution>
|
1300
|
+
<availpnx>available</availpnx>
|
1301
|
+
</display>
|
1302
|
+
<links>
|
1303
|
+
<openurl>$$Topenurl_journal</openurl>
|
1304
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
1305
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
1306
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
1307
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
1308
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
1309
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
1310
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
1311
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
1312
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
1313
|
+
</links>
|
1314
|
+
<search>
|
1315
|
+
<creatorcontrib>Paul T., Jaeger 1974-</creatorcontrib>
|
1316
|
+
<creatorcontrib>Jaeger, Paul T., 1974-</creatorcontrib>
|
1317
|
+
<creatorcontrib>Jaeger, P</creatorcontrib>
|
1318
|
+
<creatorcontrib>Paul T. Jaeger.</creatorcontrib>
|
1319
|
+
<title>Disability and the Internet : confronting a digital divide /</title>
|
1320
|
+
<subject>Computers and people with disabilities</subject>
|
1321
|
+
<subject>Digital divide</subject>
|
1322
|
+
<subject>People with disabilities and computers</subject>
|
1323
|
+
<subject>Computers and the handicapped</subject>
|
1324
|
+
<subject>Divide, Digital</subject>
|
1325
|
+
<subject>Global digital divide</subject>
|
1326
|
+
<subject>GDD (Global digital divide)</subject>
|
1327
|
+
<general>Lynne Rienner Publishers,</general>
|
1328
|
+
<sourceid>nyu_aleph</sourceid>
|
1329
|
+
<recordid>nyu_aleph003527961</recordid>
|
1330
|
+
<isbn>9781588268280</isbn>
|
1331
|
+
<isbn>1588268284</isbn>
|
1332
|
+
<toc>Disability in the Internet age -- The digital disability divide: historical and legal issues -- Barriers to online access: personal, public, and professional spheres -- Improving accessibility: technology evaluation and policy reform -- Identity and advocacy: possibilities and impacts -- Toward an inclusive Internet.</toc>
|
1333
|
+
<rsrctype>book</rsrctype>
|
1334
|
+
<creationdate>2012</creationdate>
|
1335
|
+
<addtitle>Disability in society</addtitle>
|
1336
|
+
<searchscope>BOBST</searchscope>
|
1337
|
+
<searchscope>BOBST Main Collection</searchscope>
|
1338
|
+
<searchscope>nyu_aleph</searchscope>
|
1339
|
+
<searchscope>NYU</searchscope>
|
1340
|
+
<scope>BOBST</scope>
|
1341
|
+
<scope>BOBST Main Collection</scope>
|
1342
|
+
<scope>nyu_aleph</scope>
|
1343
|
+
<scope>NYU</scope>
|
1344
|
+
<lsr01>HV1569.5 .J34 2012</lsr01>
|
1345
|
+
<lsr01>HV1569.5.J34 2012</lsr01>
|
1346
|
+
<lsr02>Lynne Rienner Publishers,</lsr02>
|
1347
|
+
</search>
|
1348
|
+
<sort>
|
1349
|
+
<title>Disability and the Internet : confronting a digital divide /</title>
|
1350
|
+
<creationdate>2012</creationdate>
|
1351
|
+
<author>Jaeger, Paul T., 1974-</author>
|
1352
|
+
<lso01>2012</lso01>
|
1353
|
+
</sort>
|
1354
|
+
<facets>
|
1355
|
+
<language>eng</language>
|
1356
|
+
<creationdate>2012</creationdate>
|
1357
|
+
<topic>Computers and people with disabilities</topic>
|
1358
|
+
<topic>Digital divide</topic>
|
1359
|
+
<collection>BOBST</collection>
|
1360
|
+
<toplevel>available</toplevel>
|
1361
|
+
<prefilter>books</prefilter>
|
1362
|
+
<rsrctype>books</rsrctype>
|
1363
|
+
<creatorcontrib>Jaeger, P</creatorcontrib>
|
1364
|
+
<library>BOBST</library>
|
1365
|
+
<lfc01>Main Collection</lfc01>
|
1366
|
+
<classificationlcc>H - Social sciences.–Social pathology. Social and public welfare. Criminology</classificationlcc>
|
1367
|
+
<frbrgroupid>52520096</frbrgroupid>
|
1368
|
+
<frbrtype>6</frbrtype>
|
1369
|
+
</facets>
|
1370
|
+
<dedup>
|
1371
|
+
<t>1</t>
|
1372
|
+
<c1>2011016941</c1>
|
1373
|
+
<c2>9781588268280;1588268284</c2>
|
1374
|
+
<c3>disabilityandtheinteitaldivide</c3>
|
1375
|
+
<c4>2012</c4>
|
1376
|
+
<f1>2011016941</f1>
|
1377
|
+
<f3>9781588268280;1588268284</f3>
|
1378
|
+
<f5>disabilityandtheinteitaldivide</f5>
|
1379
|
+
<f6>2012</f6>
|
1380
|
+
<f7>disability and the internet confronting a digital divide</f7>
|
1381
|
+
<f8>cou</f8>
|
1382
|
+
<f9>x, 225 p. ;</f9>
|
1383
|
+
<f10>lynne rienner publishers</f10>
|
1384
|
+
<f11>jaeger paul t 1974</f11>
|
1385
|
+
</dedup>
|
1386
|
+
<frbr>
|
1387
|
+
<t>1</t>
|
1388
|
+
<k1>$$Kjaeger paul t 1974$$AA</k1>
|
1389
|
+
<k3>$$Kbookdisability and the internet confronting a digital divide$$AT</k3>
|
1390
|
+
</frbr>
|
1391
|
+
<delivery>
|
1392
|
+
<institution>NYU</institution>
|
1393
|
+
<delcategory>Physical Item</delcategory>
|
1394
|
+
</delivery>
|
1395
|
+
<enrichment>
|
1396
|
+
<classificationlcc>HV1569.5</classificationlcc>
|
1397
|
+
</enrichment>
|
1398
|
+
<ranking>
|
1399
|
+
<booster1>1</booster1>
|
1400
|
+
<booster2>1</booster2>
|
1401
|
+
</ranking>
|
1402
|
+
<addata>
|
1403
|
+
<aulast>Jaeger</aulast>
|
1404
|
+
<aufirst>Paul T.,</aufirst>
|
1405
|
+
<au>Jaeger, Paul T., 1974-</au>
|
1406
|
+
<btitle>Disability and the Internet : confronting a digital divide</btitle>
|
1407
|
+
<seriestitle>Disability in society</seriestitle>
|
1408
|
+
<date>2012</date>
|
1409
|
+
<risdate>2012.</risdate>
|
1410
|
+
<isbn>9781588268280</isbn>
|
1411
|
+
<isbn>1588268284</isbn>
|
1412
|
+
<format>book</format>
|
1413
|
+
<genre>book</genre>
|
1414
|
+
<ristype>BOOK</ristype>
|
1415
|
+
<notes>Includes bibliographical references and index.</notes>
|
1416
|
+
<cop>Boulder, Colo.</cop>
|
1417
|
+
<pub>Lynne Rienner Publishers</pub>
|
1418
|
+
<lccn>2011016941</lccn>
|
1419
|
+
<lad01>BOBST</lad01>
|
1420
|
+
<lad01>Physical Item</lad01>
|
1421
|
+
</addata>
|
1422
|
+
</record>
|
1423
|
+
</PrimoNMBib>
|
1424
|
+
<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=000980206" 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%3A47%3A52IST&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_aleph000980206&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Virtual%20inequality%20:%20beyond%20the%20digital%20divide&amp;rft.aulast=Mossberger&amp;rft.aufirst=Karen&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Mossberger%2C%20Karen&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=Georgetown%20University%20Press&amp;rft.place=Washington%2C%20D.C.&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0878409998&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000980206&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000980206&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
1425
|
+
<LIBRARIES>
|
1426
|
+
<LIBRARY>
|
1427
|
+
<institution>NYU</institution>
|
1428
|
+
<library>BOBST</library>
|
1429
|
+
<status>available</status>
|
1430
|
+
<collection>Main Collection</collection>
|
1431
|
+
<callNumber>(HV1569.5 .J34 2012 )</callNumber>
|
1432
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003527961</url>
|
1433
|
+
</LIBRARY>
|
1434
|
+
</LIBRARIES>
|
1435
|
+
<LINKS>
|
1436
|
+
<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%3A47%3A52IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003527961&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Disability%20and%20the%20Internet%20:%20confronting%20a%20digital%20divide&rft.aulast=Jaeger&rft.aufirst=Paul%20T.%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Jaeger%2C%20Paul%20T.%2C%201974-&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Lynne%20Rienner%20Publishers&rft.place=Boulder%2C%20Colo.&rft.issn=&rft.eissn=&rft.isbn=9781588268280&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph003527961&rft.eisbn=&rft_dat=<nyu_aleph>003527961</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
1437
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=003527961</backlink>
|
1438
|
+
<thumbnail>http://images.amazon.com/images/P/9781588268280.01._SSTHUM_.jpg</thumbnail>
|
1439
|
+
<linktotoc>http://www.amazon.com/gp/reader/9781588268280</linktotoc>
|
1440
|
+
<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%3A47%3A52IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003527961&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Disability%20and%20the%20Internet%20:%20confronting%20a%20digital%20divide&rft.aulast=Jaeger&rft.aufirst=Paul%20T.%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Jaeger%2C%20Paul%20T.%2C%201974-&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Lynne%20Rienner%20Publishers&rft.place=Boulder%2C%20Colo.&rft.issn=&rft.eissn=&rft.isbn=9781588268280&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>003527961</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
1441
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003527961</linktoholdings>
|
1442
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph003527961?institution=NYU&amp;persistent</linktoreview>
|
1443
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=9781588268280</linktouc>
|
1444
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A9781588268280</linktouc>
|
1445
|
+
</LINKS>
|
1446
|
+
</DOC>
|
1447
|
+
</DOCSET>
|
1448
|
+
</RESULT>
|
1449
|
+
<searchToken>0</searchToken>
|
1450
|
+
</JAGROOT>
|
1451
|
+
</SEGMENTS></searchBriefReturn></searchBriefResponse></soapenv:Body></soapenv:Envelope>
|
1452
|
+
http_version:
|
1453
|
+
recorded_at: Thu, 10 Jan 2013 17:47:52 GMT
|