exlibris-primo 1.0.10 → 1.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +6 -14
 - data/lib/exlibris/primo/chain_gang/search.rb +2 -2
 - data/lib/exlibris/primo/pnx/elements.rb +8 -8
 - data/lib/exlibris/primo/version.rb +1 -1
 - data/lib/exlibris/primo/web_service/client/base.rb +0 -1
 - data/lib/exlibris/primo/web_service/client/base/savon_client.rb +2 -5
 - data/lib/exlibris/primo/web_service/client/base/soap_actions.rb +1 -1
 - data/lib/exlibris/primo/web_service/response/base.rb +6 -1
 - data/test/search_test.rb +19 -0
 - data/test/vcr_cassettes/search_chaining_author_title.yml.bak +945 -0
 - data/test/vcr_cassettes/search_title_with_ampersand.yml +1020 -0
 - data/test/web_service/client/soap_actions_test.rb +2 -2
 - metadata +43 -26
 - data/lib/exlibris/primo/web_service/client/base/savon_config.rb +0 -19
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,15 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
     | 
    
         
            -
             
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
     | 
    
         
            -
             
     | 
| 
       6 
     | 
    
         
            -
             
     | 
| 
       7 
     | 
    
         
            -
             
     | 
| 
       8 
     | 
    
         
            -
              metadata.gz: !binary |-
         
     | 
| 
       9 
     | 
    
         
            -
                MzUyMTgyYmY0MzExZDMwZWQ4MTYzYjc4ZWNjYThjMzQ5NzU5NTQyYTJmOWI0
         
     | 
| 
       10 
     | 
    
         
            -
                MmNmOTQ1YmVhOWMzODEzOWU3NDllZTU4NzRmNzk0OTM1ZGM3ZTUwZDY1MmZh
         
     | 
| 
       11 
     | 
    
         
            -
                MjRkNWQ5NjY1M2JiMWEyODI0ZTMyMWFhOTAwNzhmMjYwNWE1ZWE=
         
     | 
| 
       12 
     | 
    
         
            -
              data.tar.gz: !binary |-
         
     | 
| 
       13 
     | 
    
         
            -
                M2M3NzJlZmZlY2NkZmM4ZmUwMWQ2NWNkZmE1OGY5YTIyY2QyMmFhZTZkOThk
         
     | 
| 
       14 
     | 
    
         
            -
                YmYwNzljMTAwMTQ2ZTljMThiOWE5ZGE2MWFkMjYyNDU1YzRmZmUzYjllYTcw
         
     | 
| 
       15 
     | 
    
         
            -
                YTU5Yjg3NGQxYjAyOWY2NGRmYTIyYTRkY2E1YmQ3ODgyN2M2NDc=
         
     | 
| 
      
 2 
     | 
    
         
            +
            SHA1:
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 78cf2a708e29c4f7a23210429f5c62e5ac0896e0
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: a0144a1ba8ef9119aac00d239281378a65b4db76
         
     | 
| 
      
 5 
     | 
    
         
            +
            SHA512:
         
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 2287afc497b9bfbb3598e4bd963706c4a7edab47d6248e320ddbf7134fa864fdbe9b31cb1b43d2eeb84b23e0b312ba84e1fac33ee9ee4a650ba3312af5046f81
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 85f58242ed4197adeec8ba64e2d7f1703f2a10135807f5be69ff2dd5854c0643ba38dd44e383025d3ee229b0e4a66b7184142ef3a06b8e925b735ba2bfae8cc6
         
     | 
| 
         @@ -19,11 +19,11 @@ module Exlibris 
     | 
|
| 
       19 
19 
     | 
    
         | 
| 
       20 
20 
     | 
    
         
             
                    module ClassAttributes
         
     | 
| 
       21 
21 
     | 
    
         
             
                      def indexes
         
     | 
| 
       22 
     | 
    
         
            -
                        @indexes ||= [:any, :stitle, :title, :creator, :genre, :author, :isbn]
         
     | 
| 
      
 22 
     | 
    
         
            +
                        @indexes ||= [:any, :stitle, :title, :creator, :genre, :rsrctype, :author, :isbn]
         
     | 
| 
       23 
23 
     | 
    
         
             
                      end
         
     | 
| 
       24 
24 
     | 
    
         | 
| 
       25 
25 
     | 
    
         
             
                      def indexes_map
         
     | 
| 
       26 
     | 
    
         
            -
                        @indexes_map ||= {:author => :creator}
         
     | 
| 
      
 26 
     | 
    
         
            +
                        @indexes_map ||= {:author => :creator, :genre => :rsrctype}
         
     | 
| 
       27 
27 
     | 
    
         
             
                      end
         
     | 
| 
       28 
28 
     | 
    
         | 
| 
       29 
29 
     | 
    
         
             
                      def precisions
         
     | 
| 
         @@ -44,25 +44,25 @@ module Exlibris 
     | 
|
| 
       44 
44 
     | 
    
         | 
| 
       45 
45 
     | 
    
         
             
                    def attr_read method
         
     | 
| 
       46 
46 
     | 
    
         
             
                      if("#{method}".start_with? "all_")
         
     | 
| 
       47 
     | 
    
         
            -
                        ( 
     | 
| 
      
 47 
     | 
    
         
            +
                        (inner_html_all(xpathize(method)) || inner_html_all(controlize(method)))
         
     | 
| 
       48 
48 
     | 
    
         
             
                      else
         
     | 
| 
       49 
     | 
    
         
            -
                        ( 
     | 
| 
      
 49 
     | 
    
         
            +
                        (inner_html_at(xpathize(method)) || inner_html_at(controlize(method)))
         
     | 
| 
       50 
50 
     | 
    
         
             
                      end
         
     | 
| 
       51 
51 
     | 
    
         
             
                    end
         
     | 
| 
       52 
52 
     | 
    
         
             
                    private :attr_read
         
     | 
| 
       53 
53 
     | 
    
         | 
| 
       54 
     | 
    
         
            -
                    def  
     | 
| 
      
 54 
     | 
    
         
            +
                    def inner_html_all xpath
         
     | 
| 
       55 
55 
     | 
    
         
             
                      xml.root.xpath(xpath).collect do |element|
         
     | 
| 
       56 
     | 
    
         
            -
                        element. 
     | 
| 
      
 56 
     | 
    
         
            +
                        element.inner_html
         
     | 
| 
       57 
57 
     | 
    
         
             
                      end
         
     | 
| 
       58 
58 
     | 
    
         
             
                    end
         
     | 
| 
       59 
     | 
    
         
            -
                    private : 
     | 
| 
      
 59 
     | 
    
         
            +
                    private :inner_html_all
         
     | 
| 
       60 
60 
     | 
    
         | 
| 
       61 
     | 
    
         
            -
                    def  
     | 
| 
      
 61 
     | 
    
         
            +
                    def inner_html_at xpath
         
     | 
| 
       62 
62 
     | 
    
         
             
                      xml_at = xml.root.at_xpath(xpath)
         
     | 
| 
       63 
     | 
    
         
            -
                      xml_at. 
     | 
| 
      
 63 
     | 
    
         
            +
                      xml_at.inner_html if xml_at
         
     | 
| 
       64 
64 
     | 
    
         
             
                    end
         
     | 
| 
       65 
     | 
    
         
            -
                    private : 
     | 
| 
      
 65 
     | 
    
         
            +
                    private :inner_html_at
         
     | 
| 
       66 
66 
     | 
    
         | 
| 
       67 
67 
     | 
    
         
             
                    def controlize s
         
     | 
| 
       68 
68 
     | 
    
         
             
                      "control/#{xpathize s.to_s}"
         
     | 
| 
         @@ -10,11 +10,8 @@ module Exlibris 
     | 
|
| 
       10 
10 
     | 
    
         
             
                        # We're not using WSDL at the moment, since
         
     | 
| 
       11 
11 
     | 
    
         
             
                        # we don't want to make an extra HTTP call.
         
     | 
| 
       12 
12 
     | 
    
         
             
                        # 
         
     | 
| 
       13 
     | 
    
         
            -
                        # @client ||= Savon.client(wsdl)
         
     | 
| 
       14 
     | 
    
         
            -
                        @client ||= Savon.client  
     | 
| 
       15 
     | 
    
         
            -
                          wsdl.endpoint = endpoint
         
     | 
| 
       16 
     | 
    
         
            -
                          wsdl.namespace = endpoint
         
     | 
| 
       17 
     | 
    
         
            -
                        end
         
     | 
| 
      
 13 
     | 
    
         
            +
                        # @client ||= Savon.client(wsdl: wsdl)
         
     | 
| 
      
 14 
     | 
    
         
            +
                        @client ||= Savon.client(endpoint: endpoint, namespace: endpoint, log: false, log_level: :warn)
         
     | 
| 
       18 
15 
     | 
    
         
             
                      end
         
     | 
| 
       19 
16 
     | 
    
         
             
                      protected :client
         
     | 
| 
       20 
17 
     | 
    
         
             
                    end
         
     | 
| 
         @@ -34,7 +34,7 @@ module Exlibris 
     | 
|
| 
       34 
34 
     | 
    
         
             
                      def method_missing(method, *args, &block)
         
     | 
| 
       35 
35 
     | 
    
         
             
                        if(soap_actions.include? method)
         
     | 
| 
       36 
36 
     | 
    
         
             
                          self.class.send(:define_method, method) { |request_xml|
         
     | 
| 
       37 
     | 
    
         
            -
                            client. 
     | 
| 
      
 37 
     | 
    
         
            +
                            client.call(method, message: request_xml)
         
     | 
| 
       38 
38 
     | 
    
         
             
                          }
         
     | 
| 
       39 
39 
     | 
    
         
             
                          send method, *args, &block
         
     | 
| 
       40 
40 
     | 
    
         
             
                        else
         
     | 
| 
         @@ -19,7 +19,12 @@ module Exlibris 
     | 
|
| 
       19 
19 
     | 
    
         
             
                        @code = savon_response.http.code
         
     | 
| 
       20 
20 
     | 
    
         
             
                        @body = savon_response.http.body
         
     | 
| 
       21 
21 
     | 
    
         
             
                        @soap_action = soap_action
         
     | 
| 
       22 
     | 
    
         
            -
                         
     | 
| 
      
 22 
     | 
    
         
            +
                        # Since there seem to be a problem parsing strings with unescaped 
         
     | 
| 
      
 23 
     | 
    
         
            +
                        # ampersands in Nokogiri for java/jruby we need to
         
     | 
| 
      
 24 
     | 
    
         
            +
                        # force ' & ' to ' & '; may have to do with
         
     | 
| 
      
 25 
     | 
    
         
            +
                        # https://github.com/sparklemotion/nokogiri/issues/614
         
     | 
| 
      
 26 
     | 
    
         
            +
                        @raw_xml = 
         
     | 
| 
      
 27 
     | 
    
         
            +
                          savon_response.body[response_key][return_key].gsub(' & ', ' & ')
         
     | 
| 
       23 
28 
     | 
    
         
             
                      end
         
     | 
| 
       24 
29 
     | 
    
         
             
                    end
         
     | 
| 
       25 
30 
     | 
    
         
             
                  end
         
     | 
    
        data/test/search_test.rb
    CHANGED
    
    | 
         @@ -31,6 +31,25 @@ class SearchTest < Test::Unit::TestCase 
     | 
|
| 
       31 
31 
     | 
    
         
             
                end
         
     | 
| 
       32 
32 
     | 
    
         
             
              end
         
     | 
| 
       33 
33 
     | 
    
         | 
| 
      
 34 
     | 
    
         
            +
              def test_title_with_ampersand
         
     | 
| 
      
 35 
     | 
    
         
            +
                VCR.use_cassette('search title with ampersand') do
         
     | 
| 
      
 36 
     | 
    
         
            +
                  search = Exlibris::Primo::Search.new.base_url!(@base_url).
         
     | 
| 
      
 37 
     | 
    
         
            +
                    institution!(@institution).title_is("wallace & gromit")
         
     | 
| 
      
 38 
     | 
    
         
            +
                  assert_not_nil search.size
         
     | 
| 
      
 39 
     | 
    
         
            +
                  assert_not_nil search.facets
         
     | 
| 
      
 40 
     | 
    
         
            +
                  assert((not search.facets.empty?))
         
     | 
| 
      
 41 
     | 
    
         
            +
                  assert_not_nil search.records
         
     | 
| 
      
 42 
     | 
    
         
            +
                  assert((not search.records.empty?))
         
     | 
| 
      
 43 
     | 
    
         
            +
                  search.records.each do |record|
         
     | 
| 
      
 44 
     | 
    
         
            +
                    assert_not_nil record.holdings
         
     | 
| 
      
 45 
     | 
    
         
            +
                    assert((not record.holdings.empty?))
         
     | 
| 
      
 46 
     | 
    
         
            +
                    assert_not_nil record.fulltexts
         
     | 
| 
      
 47 
     | 
    
         
            +
                    assert_not_nil record.tables_of_contents
         
     | 
| 
      
 48 
     | 
    
         
            +
                    assert_not_nil record.related_links
         
     | 
| 
      
 49 
     | 
    
         
            +
                  end
         
     | 
| 
      
 50 
     | 
    
         
            +
                end
         
     | 
| 
      
 51 
     | 
    
         
            +
              end
         
     | 
| 
      
 52 
     | 
    
         
            +
             
     | 
| 
       34 
53 
     | 
    
         
             
              def test_chaining_author_title
         
     | 
| 
       35 
54 
     | 
    
         
             
                VCR.use_cassette('search chaining author title') do
         
     | 
| 
       36 
55 
     | 
    
         
             
                  search = Exlibris::Primo::Search.new.base_url!(@base_url).
         
     | 
| 
         @@ -0,0 +1,945 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            http_interactions:
         
     | 
| 
      
 3 
     | 
    
         
            +
            - request:
         
     | 
| 
      
 4 
     | 
    
         
            +
                method: post
         
     | 
| 
      
 5 
     | 
    
         
            +
                uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher
         
     | 
| 
      
 6 
     | 
    
         
            +
                body:
         
     | 
| 
      
 7 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 8 
     | 
    
         
            +
                  string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><wsdl:searchBrief><request><![CDATA[<searchRequest xmlns="http://www.exlibris.com/primo/xsd/wsRequest" xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents"><PrimoSearchRequest xmlns="http://www.exlibris.com/primo/xsd/search/request"><QueryTerms><BoolOpeator>AND</BoolOpeator><QueryTerm><IndexField>creator</IndexField><PrecisionOperator>exact</PrecisionOperator><Value>Graham Greene</Value></QueryTerm><QueryTerm><IndexField>title</IndexField><PrecisionOperator>exact</PrecisionOperator><Value>Travels with My Aunt</Value></QueryTerm></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled></PrimoSearchRequest><institution>NYU</institution></searchRequest>]]></request></wsdl:searchBrief></env:Body></env:Envelope>
         
     | 
| 
      
 9 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 10 
     | 
    
         
            +
                  Soapaction:
         
     | 
| 
      
 11 
     | 
    
         
            +
                  - '"searchBrief"'
         
     | 
| 
      
 12 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 13 
     | 
    
         
            +
                  - text/xml;charset=UTF-8
         
     | 
| 
      
 14 
     | 
    
         
            +
                  Content-Length:
         
     | 
| 
      
 15 
     | 
    
         
            +
                  - '1072'
         
     | 
| 
      
 16 
     | 
    
         
            +
                  Accept:
         
     | 
| 
      
 17 
     | 
    
         
            +
                  - '*/*'
         
     | 
| 
      
 18 
     | 
    
         
            +
                  User-Agent:
         
     | 
| 
      
 19 
     | 
    
         
            +
                  - Ruby
         
     | 
| 
      
 20 
     | 
    
         
            +
              response:
         
     | 
| 
      
 21 
     | 
    
         
            +
                status:
         
     | 
| 
      
 22 
     | 
    
         
            +
                  code: 200
         
     | 
| 
      
 23 
     | 
    
         
            +
                  message: OK
         
     | 
| 
      
 24 
     | 
    
         
            +
                headers:
         
     | 
| 
      
 25 
     | 
    
         
            +
                  Server:
         
     | 
| 
      
 26 
     | 
    
         
            +
                  - Apache-Coyote/1.1
         
     | 
| 
      
 27 
     | 
    
         
            +
                  X-Powered-By:
         
     | 
| 
      
 28 
     | 
    
         
            +
                  - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
         
     | 
| 
      
 29 
     | 
    
         
            +
                  Content-Type:
         
     | 
| 
      
 30 
     | 
    
         
            +
                  - text/xml;charset=utf-8
         
     | 
| 
      
 31 
     | 
    
         
            +
                  Transfer-Encoding:
         
     | 
| 
      
 32 
     | 
    
         
            +
                  - chunked
         
     | 
| 
      
 33 
     | 
    
         
            +
                  Date:
         
     | 
| 
      
 34 
     | 
    
         
            +
                  - Wed, 25 Sep 2013 14:52:07 GMT
         
     | 
| 
      
 35 
     | 
    
         
            +
                body:
         
     | 
| 
      
 36 
     | 
    
         
            +
                  encoding: US-ASCII
         
     | 
| 
      
 37 
     | 
    
         
            +
                  string: |-
         
     | 
| 
      
 38 
     | 
    
         
            +
                    <?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><ns1:searchBriefResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher"><searchBriefReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><SEGMENTS xmlns="http://www.exlibrisgroup.com/xsd/jaguar/search">
         
     | 
| 
      
 39 
     | 
    
         
            +
                      <JAGROOT>
         
     | 
| 
      
 40 
     | 
    
         
            +
                        <RESULT>
         
     | 
| 
      
 41 
     | 
    
         
            +
                          <QUERYTRANSFORMS/>
         
     | 
| 
      
 42 
     | 
    
         
            +
                          <FACETLIST ACCURATE_COUNTERS="true">
         
     | 
| 
      
 43 
     | 
    
         
            +
                            <FACET NAME="creator" COUNT="11">
         
     | 
| 
      
 44 
     | 
    
         
            +
                              <FACET_VALUES KEY="Gossett, L" VALUE="1"/>
         
     | 
| 
      
 45 
     | 
    
         
            +
                              <FACET_VALUES KEY="Allethaire Press" VALUE="1"/>
         
     | 
| 
      
 46 
     | 
    
         
            +
                              <FACET_VALUES KEY="Cukor, G" VALUE="1"/>
         
     | 
| 
      
 47 
     | 
    
         
            +
                              <FACET_VALUES KEY="Grenfell Press" VALUE="1"/>
         
     | 
| 
      
 48 
     | 
    
         
            +
                              <FACET_VALUES KEY="Firsts &amp;amp; Company" VALUE="1"/>
         
     | 
| 
      
 49 
     | 
    
         
            +
                              <FACET_VALUES KEY="Greene, G" VALUE="4"/>
         
     | 
| 
      
 50 
     | 
    
         
            +
                              <FACET_VALUES KEY="McCowen, A" VALUE="1"/>
         
     | 
| 
      
 51 
     | 
    
         
            +
                              <FACET_VALUES KEY="MGM/UA Home Video (Firm)" VALUE="1"/>
         
     | 
| 
      
 52 
     | 
    
         
            +
                              <FACET_VALUES KEY="Smith, M" VALUE="1"/>
         
     | 
| 
      
 53 
     | 
    
         
            +
                              <FACET_VALUES KEY="Cohen, C" VALUE="1"/>
         
     | 
| 
      
 54 
     | 
    
         
            +
                              <FACET_VALUES KEY="Metro-Goldwyn-Mayer" VALUE="1"/>
         
     | 
| 
      
 55 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 56 
     | 
    
         
            +
                            <FACET NAME="lcc" COUNT="1">
         
     | 
| 
      
 57 
     | 
    
         
            +
                              <FACET_VALUES KEY="P - Language and literature." VALUE="3"/>
         
     | 
| 
      
 58 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 59 
     | 
    
         
            +
                            <FACET NAME="lang" COUNT="1">
         
     | 
| 
      
 60 
     | 
    
         
            +
                              <FACET_VALUES KEY="eng" VALUE="4"/>
         
     | 
| 
      
 61 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 62 
     | 
    
         
            +
                            <FACET NAME="rtype" COUNT="2">
         
     | 
| 
      
 63 
     | 
    
         
            +
                              <FACET_VALUES KEY="books" VALUE="3"/>
         
     | 
| 
      
 64 
     | 
    
         
            +
                              <FACET_VALUES KEY="video" VALUE="1"/>
         
     | 
| 
      
 65 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 66 
     | 
    
         
            +
                            <FACET NAME="topic" COUNT="7">
         
     | 
| 
      
 67 
     | 
    
         
            +
                              <FACET_VALUES KEY="Travelers" VALUE="2"/>
         
     | 
| 
      
 68 
     | 
    
         
            +
                              <FACET_VALUES KEY="Retirees" VALUE="2"/>
         
     | 
| 
      
 69 
     | 
    
         
            +
                              <FACET_VALUES KEY="Aunts" VALUE="2"/>
         
     | 
| 
      
 70 
     | 
    
         
            +
                              <FACET_VALUES KEY="British" VALUE="2"/>
         
     | 
| 
      
 71 
     | 
    
         
            +
                              <FACET_VALUES KEY="Greene, Graham, 1904-1991. Travels with my aunt" VALUE="1"/>
         
     | 
| 
      
 72 
     | 
    
         
            +
                              <FACET_VALUES KEY="Older women" VALUE="2"/>
         
     | 
| 
      
 73 
     | 
    
         
            +
                              <FACET_VALUES KEY="Women travelers" VALUE="2"/>
         
     | 
| 
      
 74 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 75 
     | 
    
         
            +
                            <FACET NAME="tlevel" COUNT="1">
         
     | 
| 
      
 76 
     | 
    
         
            +
                              <FACET_VALUES KEY="available" VALUE="3"/>
         
     | 
| 
      
 77 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 78 
     | 
    
         
            +
                            <FACET NAME="pfilter" COUNT="2">
         
     | 
| 
      
 79 
     | 
    
         
            +
                              <FACET_VALUES KEY="books" VALUE="3"/>
         
     | 
| 
      
 80 
     | 
    
         
            +
                              <FACET_VALUES KEY="video" VALUE="1"/>
         
     | 
| 
      
 81 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 82 
     | 
    
         
            +
                            <FACET NAME="creationdate" COUNT="6">
         
     | 
| 
      
 83 
     | 
    
         
            +
                              <FACET_VALUES KEY="1995" VALUE="1"/>
         
     | 
| 
      
 84 
     | 
    
         
            +
                              <FACET_VALUES KEY="1970" VALUE="1"/>
         
     | 
| 
      
 85 
     | 
    
         
            +
                              <FACET_VALUES KEY="1981" VALUE="1"/>
         
     | 
| 
      
 86 
     | 
    
         
            +
                              <FACET_VALUES KEY="2004" VALUE="1"/>
         
     | 
| 
      
 87 
     | 
    
         
            +
                              <FACET_VALUES KEY="1969" VALUE="1"/>
         
     | 
| 
      
 88 
     | 
    
         
            +
                              <FACET_VALUES KEY="1989" VALUE="1"/>
         
     | 
| 
      
 89 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 90 
     | 
    
         
            +
                            <FACET NAME="domain" COUNT="3">
         
     | 
| 
      
 91 
     | 
    
         
            +
                              <FACET_VALUES KEY="CU" VALUE="1"/>
         
     | 
| 
      
 92 
     | 
    
         
            +
                              <FACET_VALUES KEY="BAFC" VALUE="1"/>
         
     | 
| 
      
 93 
     | 
    
         
            +
                              <FACET_VALUES KEY="BOBST" VALUE="2"/>
         
     | 
| 
      
 94 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 95 
     | 
    
         
            +
                            <FACET NAME="genre" COUNT="5">
         
     | 
| 
      
 96 
     | 
    
         
            +
                              <FACET_VALUES KEY="Humorous fiction" VALUE="1"/>
         
     | 
| 
      
 97 
     | 
    
         
            +
                              <FACET_VALUES KEY="Fiction" VALUE="2"/>
         
     | 
| 
      
 98 
     | 
    
         
            +
                              <FACET_VALUES KEY="Humorous stories" VALUE="2"/>
         
     | 
| 
      
 99 
     | 
    
         
            +
                              <FACET_VALUES KEY="Feature films" VALUE="1"/>
         
     | 
| 
      
 100 
     | 
    
         
            +
                              <FACET_VALUES KEY="Films for the hearing impaired" VALUE="1"/>
         
     | 
| 
      
 101 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 102 
     | 
    
         
            +
                            <FACET NAME="library" COUNT="3">
         
     | 
| 
      
 103 
     | 
    
         
            +
                              <FACET_VALUES KEY="BOBST" VALUE="4"/>
         
     | 
| 
      
 104 
     | 
    
         
            +
                              <FACET_VALUES KEY="CGEN" VALUE="1"/>
         
     | 
| 
      
 105 
     | 
    
         
            +
                              <FACET_VALUES KEY="BFALE" VALUE="2"/>
         
     | 
| 
      
 106 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 107 
     | 
    
         
            +
                            <FACET NAME="local1" COUNT="2">
         
     | 
| 
      
 108 
     | 
    
         
            +
                              <FACET_VALUES KEY="Main Collection" VALUE="3"/>
         
     | 
| 
      
 109 
     | 
    
         
            +
                              <FACET_VALUES KEY="Fales" VALUE="2"/>
         
     | 
| 
      
 110 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 111 
     | 
    
         
            +
                            <FACET NAME="local4" COUNT="2">
         
     | 
| 
      
 112 
     | 
    
         
            +
                              <FACET_VALUES KEY="United States" VALUE="1"/>
         
     | 
| 
      
 113 
     | 
    
         
            +
                              <FACET_VALUES KEY="New York" VALUE="2"/>
         
     | 
| 
      
 114 
     | 
    
         
            +
                            </FACET>
         
     | 
| 
      
 115 
     | 
    
         
            +
                          </FACETLIST>
         
     | 
| 
      
 116 
     | 
    
         
            +
                          <DOCSET HIT_TIME="317" TOTALHITS="4" FIRSTHIT="1" LASTHIT="4" TOTAL_TIME="452" IS_LOCAL="true">
         
     | 
| 
      
 117 
     | 
    
         
            +
                            <DOC ID="1672778" RANK="1.0" NO="1" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
         
     | 
| 
      
 118 
     | 
    
         
            +
                              <PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
         
     | 
| 
      
 119 
     | 
    
         
            +
                                <record>
         
     | 
| 
      
 120 
     | 
    
         
            +
                                  <control>
         
     | 
| 
      
 121 
     | 
    
         
            +
                                    <sourcerecordid>000570570</sourcerecordid>
         
     | 
| 
      
 122 
     | 
    
         
            +
                                    <sourceid>nyu_aleph</sourceid>
         
     | 
| 
      
 123 
     | 
    
         
            +
                                    <recordid>nyu_aleph000570570</recordid>
         
     | 
| 
      
 124 
     | 
    
         
            +
                                    <originalsourceid>NYU01</originalsourceid>
         
     | 
| 
      
 125 
     | 
    
         
            +
                                    <ilsapiid>NYU01000570570</ilsapiid>
         
     | 
| 
      
 126 
     | 
    
         
            +
                                    <sourceformat>MARC21</sourceformat>
         
     | 
| 
      
 127 
     | 
    
         
            +
                                    <sourcesystem>Aleph</sourcesystem>
         
     | 
| 
      
 128 
     | 
    
         
            +
                                  </control>
         
     | 
| 
      
 129 
     | 
    
         
            +
                                  <display>
         
     | 
| 
      
 130 
     | 
    
         
            +
                                    <type>video</type>
         
     | 
| 
      
 131 
     | 
    
         
            +
                                    <title>Travels with my aunt [videorecording]</title>
         
     | 
| 
      
 132 
     | 
    
         
            +
                                    <contributor>George Cukor 1899-1983.; Maggie Smith 1934-; Alec McCowen; Louis Gossett 1936-; Graham Greene 1904-1991.; Metro-Goldwyn-Mayer.; MGM/UA Home Video (Firm)</contributor>
         
     | 
| 
      
 133 
     | 
    
         
            +
                                    <edition>Deluxe letter-box ed.</edition>
         
     | 
| 
      
 134 
     | 
    
         
            +
                                    <publisher>Santa Monica, CA : MGM/UA Home Video</publisher>
         
     | 
| 
      
 135 
     | 
    
         
            +
                                    <creationdate>1995</creationdate>
         
     | 
| 
      
 136 
     | 
    
         
            +
                                    <format>1 videocassette (ca. 109 min.) : sd., col. ; 1/2 in.</format>
         
     | 
| 
      
 137 
     | 
    
         
            +
                                    <identifier>$$Cisbn$$V079282783X; $$Cisbn$$V9780792827832; $$Cmuspub$$VM202851 MGM/UA Home Video</identifier>
         
     | 
| 
      
 138 
     | 
    
         
            +
                                    <subject>Feature films; Films for the hearing impaired</subject>
         
     | 
| 
      
 139 
     | 
    
         
            +
                                    <description>$$Csummary$$VAunt Augusta, a spirited woman of indeterminate years, sets off on a series of European adventures with her stodgy, middle-aged nephew Henry. The once shy Henry is transformed into a virile, vibrant man while his aunt shows him the stylish, graceful lifestyle of her swindling, smuggling and hustling schemes.</description>
         
     | 
| 
      
 140 
     | 
    
         
            +
                                    <description>$$Ccredits$$VDirector of photography, Douglas Slocombe ; film editor, John Bloom ; music, Terry Hatch.</description>
         
     | 
| 
      
 141 
     | 
    
         
            +
                                    <description>$$Ccredits$$VMaggie Smith, Alec McCowen, Lou Gossett, Robert Stephens, Cindy Williams, Robert Fleming, José Luis López Vázquez.</description>
         
     | 
| 
      
 142 
     | 
    
         
            +
                                    <language>eng</language>
         
     | 
| 
      
 143 
     | 
    
         
            +
                                    <relation>Greene, Graham, 1904-1991. Travels with my aunt.</relation>
         
     | 
| 
      
 144 
     | 
    
         
            +
                                    <source>nyu_aleph</source>
         
     | 
| 
      
 145 
     | 
    
         
            +
                                    <availlibrary>$$INYU$$LBAFC$$1Main Collection$$Sunavailable$$31$$41$$5N$$60$$XNYU50$$YBAFC$$ZAFC</availlibrary>
         
     | 
| 
      
 146 
     | 
    
         
            +
                                    <lds02>nyu_aleph000570570</lds02>
         
     | 
| 
      
 147 
     | 
    
         
            +
                                    <lds01>NYU</lds01>
         
     | 
| 
      
 148 
     | 
    
         
            +
                                    <availinstitution>$$INYU$$Sunavailable</availinstitution>
         
     | 
| 
      
 149 
     | 
    
         
            +
                                    <availpnx>unavailable</availpnx>
         
     | 
| 
      
 150 
     | 
    
         
            +
                                  </display>
         
     | 
| 
      
 151 
     | 
    
         
            +
                                  <links>
         
     | 
| 
      
 152 
     | 
    
         
            +
                                    <openurl>$$Topenurl_journal</openurl>
         
     | 
| 
      
 153 
     | 
    
         
            +
                                    <backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
         
     | 
| 
      
 154 
     | 
    
         
            +
                                    <thumbnail>$$Tamazon_thumb</thumbnail>
         
     | 
| 
      
 155 
     | 
    
         
            +
                                    <linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
         
     | 
| 
      
 156 
     | 
    
         
            +
                                    <openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
         
     | 
| 
      
 157 
     | 
    
         
            +
                                    <linktoholdings>$$Taleph_holdings</linktoholdings>
         
     | 
| 
      
 158 
     | 
    
         
            +
                                    <linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
         
     | 
| 
      
 159 
     | 
    
         
            +
                                    <linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
         
     | 
| 
      
 160 
     | 
    
         
            +
                                    <linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
         
     | 
| 
      
 161 
     | 
    
         
            +
                                    <linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
         
     | 
| 
      
 162 
     | 
    
         
            +
                                  </links>
         
     | 
| 
      
 163 
     | 
    
         
            +
                                  <search>
         
     | 
| 
      
 164 
     | 
    
         
            +
                                    <creatorcontrib>Metro Goldwyn Mayer ; a George Cukor-Robert Fryer and James Cresson production ; screenplay by Jay Presson Allen and Hugh Wheeler ; produced by Robert Fryer and James Cresson ; directed by George Cukor.</creatorcontrib>
         
     | 
| 
      
 165 
     | 
    
         
            +
                                    <creatorcontrib>Director of photography, Douglas Slocombe ; film editor, John Bloom ; music, Terry Hatch.</creatorcontrib>
         
     | 
| 
      
 166 
     | 
    
         
            +
                                    <creatorcontrib>Maggie Smith, Alec McCowen, Lou Gossett, Robert Stephens, Cindy Williams, Robert Fleming, José Luis López Vázquez.</creatorcontrib>
         
     | 
| 
      
 167 
     | 
    
         
            +
                                    <creatorcontrib>George,  Cukor  1899-1983.</creatorcontrib>
         
     | 
| 
      
 168 
     | 
    
         
            +
                                    <creatorcontrib>Maggie,  Smith  1934-</creatorcontrib>
         
     | 
| 
      
 169 
     | 
    
         
            +
                                    <creatorcontrib>Alec  McCowen</creatorcontrib>
         
     | 
| 
      
 170 
     | 
    
         
            +
                                    <creatorcontrib>Louis,  Gossett  1936-</creatorcontrib>
         
     | 
| 
      
 171 
     | 
    
         
            +
                                    <creatorcontrib>Graham,  Greene  1904-1991.</creatorcontrib>
         
     | 
| 
      
 172 
     | 
    
         
            +
                                    <creatorcontrib>Cukor, G</creatorcontrib>
         
     | 
| 
      
 173 
     | 
    
         
            +
                                    <creatorcontrib>Smith, M</creatorcontrib>
         
     | 
| 
      
 174 
     | 
    
         
            +
                                    <creatorcontrib>McCowen, A</creatorcontrib>
         
     | 
| 
      
 175 
     | 
    
         
            +
                                    <creatorcontrib>Gossett, L</creatorcontrib>
         
     | 
| 
      
 176 
     | 
    
         
            +
                                    <creatorcontrib>Greene, G</creatorcontrib>
         
     | 
| 
      
 177 
     | 
    
         
            +
                                    <creatorcontrib>Metro-Goldwyn-Mayer.</creatorcontrib>
         
     | 
| 
      
 178 
     | 
    
         
            +
                                    <creatorcontrib>MGM/UA Home Video (Firm)</creatorcontrib>
         
     | 
| 
      
 179 
     | 
    
         
            +
                                    <creatorcontrib>格拉姆・葛林, 1904-1991</creatorcontrib>
         
     | 
| 
      
 180 
     | 
    
         
            +
                                    <creatorcontrib>McCowen, Alex</creatorcontrib>
         
     | 
| 
      
 181 
     | 
    
         
            +
                                    <creatorcontrib>Gossett, Lou, 1936-</creatorcontrib>
         
     | 
| 
      
 182 
     | 
    
         
            +
                                    <creatorcontrib>Grin, Grėm, 1904-1991</creatorcontrib>
         
     | 
| 
      
 183 
     | 
    
         
            +
                                    <creatorcontrib>Grīns, G. (Greiems), 1904-1991</creatorcontrib>
         
     | 
| 
      
 184 
     | 
    
         
            +
                                    <creatorcontrib>Grīns, Greiems, 1904-1991</creatorcontrib>
         
     | 
| 
      
 185 
     | 
    
         
            +
                                    <creatorcontrib>Greene, Henry Graham, 1904-1991</creatorcontrib>
         
     | 
| 
      
 186 
     | 
    
         
            +
                                    <creatorcontrib>Gŭrin, Gŭreŏm, 1904-1991</creatorcontrib>
         
     | 
| 
      
 187 
     | 
    
         
            +
                                    <creatorcontrib>Grin, Greham, 1904-1991</creatorcontrib>
         
     | 
| 
      
 188 
     | 
    
         
            +
                                    <creatorcontrib>Grīna, Grāhama, 1904-1991</creatorcontrib>
         
     | 
| 
      
 189 
     | 
    
         
            +
                                    <creatorcontrib>Smith, Margaret Natalie, 1934-</creatorcontrib>
         
     | 
| 
      
 190 
     | 
    
         
            +
                                    <title>Travels with my aunt</title>
         
     | 
| 
      
 191 
     | 
    
         
            +
                                    <description>Aunt Augusta, a spirited woman of indeterminate years, sets off on a series of European adventures with her stodgy, middle-aged nephew Henry. The once shy Henry is transformed into a virile, vibrant man while his aunt shows him the stylish, graceful lifestyle of her swindling, smuggling and hustling schemes.</description>
         
     | 
| 
      
 192 
     | 
    
         
            +
                                    <subject>Feature films</subject>
         
     | 
| 
      
 193 
     | 
    
         
            +
                                    <subject>Films for the hearing impaired</subject>
         
     | 
| 
      
 194 
     | 
    
         
            +
                                    <general>MGM/UA Home Video,</general>
         
     | 
| 
      
 195 
     | 
    
         
            +
                                    <general>Closed captioned for the hearing impaired.</general>
         
     | 
| 
      
 196 
     | 
    
         
            +
                                    <general>Originally produced as a motion picture in 1972.</general>
         
     | 
| 
      
 197 
     | 
    
         
            +
                                    <general>Based upon the novel by Graham Greene.</general>
         
     | 
| 
      
 198 
     | 
    
         
            +
                                    <general>"M202851"--Cassette label.</general>
         
     | 
| 
      
 199 
     | 
    
         
            +
                                    <general>Director of photography, Douglas Slocombe ; film editor, John Bloom ; music, Terry Hatch.</general>
         
     | 
| 
      
 200 
     | 
    
         
            +
                                    <general>Rated PG.</general>
         
     | 
| 
      
 201 
     | 
    
         
            +
                                    <general>M202851</general>
         
     | 
| 
      
 202 
     | 
    
         
            +
                                    <general>[videorecording] /</general>
         
     | 
| 
      
 203 
     | 
    
         
            +
                                    <sourceid>nyu_aleph</sourceid>
         
     | 
| 
      
 204 
     | 
    
         
            +
                                    <recordid>nyu_aleph000570570</recordid>
         
     | 
| 
      
 205 
     | 
    
         
            +
                                    <isbn>079282783X</isbn>
         
     | 
| 
      
 206 
     | 
    
         
            +
                                    <isbn>9780792827832</isbn>
         
     | 
| 
      
 207 
     | 
    
         
            +
                                    <rsrctype>video</rsrctype>
         
     | 
| 
      
 208 
     | 
    
         
            +
                                    <creationdate>1995</creationdate>
         
     | 
| 
      
 209 
     | 
    
         
            +
                                    <creationdate>1972</creationdate>
         
     | 
| 
      
 210 
     | 
    
         
            +
                                    <addtitle>Travels with my aunt.</addtitle>
         
     | 
| 
      
 211 
     | 
    
         
            +
                                    <searchscope>BAFC</searchscope>
         
     | 
| 
      
 212 
     | 
    
         
            +
                                    <searchscope>BAFC Main Collection</searchscope>
         
     | 
| 
      
 213 
     | 
    
         
            +
                                    <searchscope>nyu_aleph</searchscope>
         
     | 
| 
      
 214 
     | 
    
         
            +
                                    <searchscope>NYU</searchscope>
         
     | 
| 
      
 215 
     | 
    
         
            +
                                    <searchscope>BOBST</searchscope>
         
     | 
| 
      
 216 
     | 
    
         
            +
                                    <scope>BAFC</scope>
         
     | 
| 
      
 217 
     | 
    
         
            +
                                    <scope>BAFC Main Collection</scope>
         
     | 
| 
      
 218 
     | 
    
         
            +
                                    <scope>nyu_aleph</scope>
         
     | 
| 
      
 219 
     | 
    
         
            +
                                    <scope>NYU</scope>
         
     | 
| 
      
 220 
     | 
    
         
            +
                                    <scope>BOBST</scope>
         
     | 
| 
      
 221 
     | 
    
         
            +
                                    <lsr02>MGM/UA Home Video,</lsr02>
         
     | 
| 
      
 222 
     | 
    
         
            +
                                  </search>
         
     | 
| 
      
 223 
     | 
    
         
            +
                                  <sort>
         
     | 
| 
      
 224 
     | 
    
         
            +
                                    <title>Travels with my aunt</title>
         
     | 
| 
      
 225 
     | 
    
         
            +
                                    <creationdate>1995</creationdate>
         
     | 
| 
      
 226 
     | 
    
         
            +
                                    <author>Cukor, George, 1899-1983.</author>
         
     | 
| 
      
 227 
     | 
    
         
            +
                                    <lso01>1995</lso01>
         
     | 
| 
      
 228 
     | 
    
         
            +
                                  </sort>
         
     | 
| 
      
 229 
     | 
    
         
            +
                                  <facets>
         
     | 
| 
      
 230 
     | 
    
         
            +
                                    <language>eng</language>
         
     | 
| 
      
 231 
     | 
    
         
            +
                                    <creationdate>1995</creationdate>
         
     | 
| 
      
 232 
     | 
    
         
            +
                                    <collection>BAFC</collection>
         
     | 
| 
      
 233 
     | 
    
         
            +
                                    <prefilter>video</prefilter>
         
     | 
| 
      
 234 
     | 
    
         
            +
                                    <rsrctype>video</rsrctype>
         
     | 
| 
      
 235 
     | 
    
         
            +
                                    <creatorcontrib>Cukor, G</creatorcontrib>
         
     | 
| 
      
 236 
     | 
    
         
            +
                                    <creatorcontrib>Smith, M</creatorcontrib>
         
     | 
| 
      
 237 
     | 
    
         
            +
                                    <creatorcontrib>McCowen, A</creatorcontrib>
         
     | 
| 
      
 238 
     | 
    
         
            +
                                    <creatorcontrib>Gossett, L</creatorcontrib>
         
     | 
| 
      
 239 
     | 
    
         
            +
                                    <creatorcontrib>Greene, G</creatorcontrib>
         
     | 
| 
      
 240 
     | 
    
         
            +
                                    <creatorcontrib>Metro-Goldwyn-Mayer</creatorcontrib>
         
     | 
| 
      
 241 
     | 
    
         
            +
                                    <creatorcontrib>MGM/UA Home Video (Firm)</creatorcontrib>
         
     | 
| 
      
 242 
     | 
    
         
            +
                                    <genre>Feature films</genre>
         
     | 
| 
      
 243 
     | 
    
         
            +
                                    <genre>Films for the hearing impaired</genre>
         
     | 
| 
      
 244 
     | 
    
         
            +
                                    <library>BOBST</library>
         
     | 
| 
      
 245 
     | 
    
         
            +
                                    <lfc01>Main Collection</lfc01>
         
     | 
| 
      
 246 
     | 
    
         
            +
                                    <classificationlcc>P - Language and literature.–English literature</classificationlcc>
         
     | 
| 
      
 247 
     | 
    
         
            +
                                    <frbrgroupid>49548430</frbrgroupid>
         
     | 
| 
      
 248 
     | 
    
         
            +
                                    <frbrtype>6</frbrtype>
         
     | 
| 
      
 249 
     | 
    
         
            +
                                  </facets>
         
     | 
| 
      
 250 
     | 
    
         
            +
                                  <dedup>
         
     | 
| 
      
 251 
     | 
    
         
            +
                                    <t>1</t>
         
     | 
| 
      
 252 
     | 
    
         
            +
                                    <c2>079282783X;9780792827832</c2>
         
     | 
| 
      
 253 
     | 
    
         
            +
                                    <c3>travelswithmyaunt</c3>
         
     | 
| 
      
 254 
     | 
    
         
            +
                                    <c4>1995</c4>
         
     | 
| 
      
 255 
     | 
    
         
            +
                                    <f1>M202851</f1>
         
     | 
| 
      
 256 
     | 
    
         
            +
                                    <f3>079282783X;9780792827832</f3>
         
     | 
| 
      
 257 
     | 
    
         
            +
                                    <f5>travelswithmyaunt</f5>
         
     | 
| 
      
 258 
     | 
    
         
            +
                                    <f6>1995</f6>
         
     | 
| 
      
 259 
     | 
    
         
            +
                                    <f7>travels with my aunt</f7>
         
     | 
| 
      
 260 
     | 
    
         
            +
                                    <f8>cau</f8>
         
     | 
| 
      
 261 
     | 
    
         
            +
                                    <f9>1 videocassette (ca. 109 min.) :</f9>
         
     | 
| 
      
 262 
     | 
    
         
            +
                                    <f10>mgm ua home video</f10>
         
     | 
| 
      
 263 
     | 
    
         
            +
                                  </dedup>
         
     | 
| 
      
 264 
     | 
    
         
            +
                                  <frbr>
         
     | 
| 
      
 265 
     | 
    
         
            +
                                    <t>1</t>
         
     | 
| 
      
 266 
     | 
    
         
            +
                                    <k1>$$Kcukor george 1899 1983$$AA</k1>
         
     | 
| 
      
 267 
     | 
    
         
            +
                                    <k1>$$Ksmith maggie 1934$$AA</k1>
         
     | 
| 
      
 268 
     | 
    
         
            +
                                    <k1>$$Kmccowen alec$$AA</k1>
         
     | 
| 
      
 269 
     | 
    
         
            +
                                    <k1>$$Kgossett louis 1936$$AA</k1>
         
     | 
| 
      
 270 
     | 
    
         
            +
                                    <k1>$$Kgreene graham 1904 1991$$AA</k1>
         
     | 
| 
      
 271 
     | 
    
         
            +
                                    <k1>$$Kmetro goldwyn mayer$$AA</k1>
         
     | 
| 
      
 272 
     | 
    
         
            +
                                    <k1>$$Kmgm ua home video firm$$AA</k1>
         
     | 
| 
      
 273 
     | 
    
         
            +
                                    <k3>$$Kvideotravels with my aunt$$AT</k3>
         
     | 
| 
      
 274 
     | 
    
         
            +
                                  </frbr>
         
     | 
| 
      
 275 
     | 
    
         
            +
                                  <delivery>
         
     | 
| 
      
 276 
     | 
    
         
            +
                                    <institution>NYU</institution>
         
     | 
| 
      
 277 
     | 
    
         
            +
                                    <delcategory>Physical Item</delcategory>
         
     | 
| 
      
 278 
     | 
    
         
            +
                                  </delivery>
         
     | 
| 
      
 279 
     | 
    
         
            +
                                  <enrichment>
         
     | 
| 
      
 280 
     | 
    
         
            +
                                    <classificationlcc>PR6013.R44</classificationlcc>
         
     | 
| 
      
 281 
     | 
    
         
            +
                                  </enrichment>
         
     | 
| 
      
 282 
     | 
    
         
            +
                                  <ranking>
         
     | 
| 
      
 283 
     | 
    
         
            +
                                    <booster1>1</booster1>
         
     | 
| 
      
 284 
     | 
    
         
            +
                                    <booster2>1</booster2>
         
     | 
| 
      
 285 
     | 
    
         
            +
                                  </ranking>
         
     | 
| 
      
 286 
     | 
    
         
            +
                                  <addata>
         
     | 
| 
      
 287 
     | 
    
         
            +
                                    <aulast>Cukor</aulast>
         
     | 
| 
      
 288 
     | 
    
         
            +
                                    <aufirst>George,</aufirst>
         
     | 
| 
      
 289 
     | 
    
         
            +
                                    <addau>Cukor, George, 1899-1983</addau>
         
     | 
| 
      
 290 
     | 
    
         
            +
                                    <addau>Smith, Maggie, 1934-</addau>
         
     | 
| 
      
 291 
     | 
    
         
            +
                                    <addau>McCowen, Alec</addau>
         
     | 
| 
      
 292 
     | 
    
         
            +
                                    <addau>Gossett, Louis, 1936-</addau>
         
     | 
| 
      
 293 
     | 
    
         
            +
                                    <addau>Greene, Graham, 1904-1991</addau>
         
     | 
| 
      
 294 
     | 
    
         
            +
                                    <addau>Metro-Goldwyn-Mayer</addau>
         
     | 
| 
      
 295 
     | 
    
         
            +
                                    <addau>MGM/UA Home Video (Firm)</addau>
         
     | 
| 
      
 296 
     | 
    
         
            +
                                    <btitle>Travels with my aunt [videorecording]</btitle>
         
     | 
| 
      
 297 
     | 
    
         
            +
                                    <date>1995</date>
         
     | 
| 
      
 298 
     | 
    
         
            +
                                    <risdate>[1995]</risdate>
         
     | 
| 
      
 299 
     | 
    
         
            +
                                    <isbn>079282783X</isbn>
         
     | 
| 
      
 300 
     | 
    
         
            +
                                    <isbn>9780792827832</isbn>
         
     | 
| 
      
 301 
     | 
    
         
            +
                                    <format>video</format>
         
     | 
| 
      
 302 
     | 
    
         
            +
                                    <genre>video</genre>
         
     | 
| 
      
 303 
     | 
    
         
            +
                                    <ristype>VIDEO</ristype>
         
     | 
| 
      
 304 
     | 
    
         
            +
                                    <abstract>Aunt Augusta, a spirited woman of indeterminate years, sets off on a series of European adventures with her stodgy, middle-aged nephew Henry. The once shy Henry is transformed into a virile, vibrant man while his aunt shows him the stylish, graceful lifestyle of her swindling, smuggling and hustling schemes.</abstract>
         
     | 
| 
      
 305 
     | 
    
         
            +
                                    <cop>Santa Monica, CA</cop>
         
     | 
| 
      
 306 
     | 
    
         
            +
                                    <pub>MGM/UA Home Video</pub>
         
     | 
| 
      
 307 
     | 
    
         
            +
                                    <oclcid>35619373</oclcid>
         
     | 
| 
      
 308 
     | 
    
         
            +
                                    <lad01>BAFC</lad01>
         
     | 
| 
      
 309 
     | 
    
         
            +
                                    <lad01>Physical Item</lad01>
         
     | 
| 
      
 310 
     | 
    
         
            +
                                  </addata>
         
     | 
| 
      
 311 
     | 
    
         
            +
                                </record>
         
     | 
| 
      
 312 
     | 
    
         
            +
                              </PrimoNMBib>
         
     | 
| 
      
 313 
     | 
    
         
            +
                              <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=000570570" GetIt2="https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph000570570&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;rft.genre=video&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;rft.aulast=Cukor&amp;rft.aufirst=George%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=MGM/UA%20Home%20Video&amp;rft.place=Santa%20Monica%2C%20CA&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=079282783X&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000570570&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000570570&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
         
     | 
| 
      
 314 
     | 
    
         
            +
                              <LIBRARIES>
         
     | 
| 
      
 315 
     | 
    
         
            +
                                <LIBRARY>
         
     | 
| 
      
 316 
     | 
    
         
            +
                                  <institution>NYU</institution>
         
     | 
| 
      
 317 
     | 
    
         
            +
                                  <library>BAFC</library>
         
     | 
| 
      
 318 
     | 
    
         
            +
                                  <status>unavailable</status>
         
     | 
| 
      
 319 
     | 
    
         
            +
                                  <collection>Main Collection</collection>
         
     | 
| 
      
 320 
     | 
    
         
            +
                                  <callNumber/>
         
     | 
| 
      
 321 
     | 
    
         
            +
                                  <url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000570570</url>
         
     | 
| 
      
 322 
     | 
    
         
            +
                                </LIBRARY>
         
     | 
| 
      
 323 
     | 
    
         
            +
                              </LIBRARIES>
         
     | 
| 
      
 324 
     | 
    
         
            +
                              <LINKS>
         
     | 
| 
      
 325 
     | 
    
         
            +
                                <openurl><![CDATA[https://dev.getit.library.nyu.edu/resolve?&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-09-25T10%3A52%3A07IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000570570&rft_val_fmt=info:ofi/fmt:kev:mtx:video&rft.genre=video&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&rft.aulast=Cukor&rft.aufirst=George%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=MGM/UA%20Home%20Video&rft.place=Santa%20Monica%2C%20CA&rft.issn=&rft.eissn=&rft.isbn=079282783X&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph000570570&rft.eisbn=&rft_dat=<nyu_aleph>000570570</nyu_aleph>&rft_id=info:oai/]]></openurl>
         
     | 
| 
      
 326 
     | 
    
         
            +
                                <backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=000570570</backlink>
         
     | 
| 
      
 327 
     | 
    
         
            +
                                <thumbnail>http://images.amazon.com/images/P/079282783X.01._SSTHUM_.jpg</thumbnail>
         
     | 
| 
      
 328 
     | 
    
         
            +
                                <linktotoc>http://www.amazon.com/gp/reader/079282783X</linktotoc>
         
     | 
| 
      
 329 
     | 
    
         
            +
                                <openurlfulltext><![CDATA[https://dev.getit.library.nyu.edu/resolve?&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-09-25T10%3A52%3A07IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000570570&rft_val_fmt=info:ofi/fmt:kev:mtx:video&rft.genre=video&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&rft.aulast=Cukor&rft.aufirst=George%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=MGM/UA%20Home%20Video&rft.place=Santa%20Monica%2C%20CA&rft.issn=&rft.eissn=&rft.isbn=079282783X&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>000570570</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
         
     | 
| 
      
 330 
     | 
    
         
            +
                                <linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000570570</linktoholdings>
         
     | 
| 
      
 331 
     | 
    
         
            +
                                <linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph000570570?institution=NYU&amp;persistent</linktoreview>
         
     | 
| 
      
 332 
     | 
    
         
            +
                                <linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=079282783X</linktouc>
         
     | 
| 
      
 333 
     | 
    
         
            +
                                <linktouc>http://www.worldcat.org/search?q=isbn%3A079282783X</linktouc>
         
     | 
| 
      
 334 
     | 
    
         
            +
                              </LINKS>
         
     | 
| 
      
 335 
     | 
    
         
            +
                            </DOC>
         
     | 
| 
      
 336 
     | 
    
         
            +
                            <DOC ID="3893101" RANK="0.66670746" NO="2" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
         
     | 
| 
      
 337 
     | 
    
         
            +
                              <PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
         
     | 
| 
      
 338 
     | 
    
         
            +
                                <record>
         
     | 
| 
      
 339 
     | 
    
         
            +
                                  <control>
         
     | 
| 
      
 340 
     | 
    
         
            +
                                    <sourcerecordid>003443700</sourcerecordid>
         
     | 
| 
      
 341 
     | 
    
         
            +
                                    <sourceid>nyu_aleph</sourceid>
         
     | 
| 
      
 342 
     | 
    
         
            +
                                    <recordid>nyu_aleph003443700</recordid>
         
     | 
| 
      
 343 
     | 
    
         
            +
                                    <originalsourceid>NYU01</originalsourceid>
         
     | 
| 
      
 344 
     | 
    
         
            +
                                    <ilsapiid>NYU01003443700</ilsapiid>
         
     | 
| 
      
 345 
     | 
    
         
            +
                                    <sourceformat>MARC21</sourceformat>
         
     | 
| 
      
 346 
     | 
    
         
            +
                                    <sourcesystem>Aleph</sourcesystem>
         
     | 
| 
      
 347 
     | 
    
         
            +
                                  </control>
         
     | 
| 
      
 348 
     | 
    
         
            +
                                  <display>
         
     | 
| 
      
 349 
     | 
    
         
            +
                                    <type>book</type>
         
     | 
| 
      
 350 
     | 
    
         
            +
                                    <title>Travels with my aunt</title>
         
     | 
| 
      
 351 
     | 
    
         
            +
                                    <creator>Graham  Greene  1904-1991.</creator>
         
     | 
| 
      
 352 
     | 
    
         
            +
                                    <publisher>New York : The Viking Press</publisher>
         
     | 
| 
      
 353 
     | 
    
         
            +
                                    <creationdate>1981?], c1969</creationdate>
         
     | 
| 
      
 354 
     | 
    
         
            +
                                    <format>318 p. ; 20 cm.</format>
         
     | 
| 
      
 355 
     | 
    
         
            +
                                    <identifier>$$Cisbn$$V0670725242; $$Cisbn$$V9780670725243</identifier>
         
     | 
| 
      
 356 
     | 
    
         
            +
                                    <subject>British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous fiction</subject>
         
     | 
| 
      
 357 
     | 
    
         
            +
                                    <language>eng</language>
         
     | 
| 
      
 358 
     | 
    
         
            +
                                    <relation>$$Cseries $$VGreene, Graham, 1904-1991. Works. 1981.</relation>
         
     | 
| 
      
 359 
     | 
    
         
            +
                                    <source>nyu_aleph</source>
         
     | 
| 
      
 360 
     | 
    
         
            +
                                    <availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 1981 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
         
     | 
| 
      
 361 
     | 
    
         
            +
                                    <lds02>nyu_aleph003443700</lds02>
         
     | 
| 
      
 362 
     | 
    
         
            +
                                    <lds01>NYU</lds01>
         
     | 
| 
      
 363 
     | 
    
         
            +
                                    <availinstitution>$$INYU$$Savailable</availinstitution>
         
     | 
| 
      
 364 
     | 
    
         
            +
                                    <availpnx>available</availpnx>
         
     | 
| 
      
 365 
     | 
    
         
            +
                                    <version>2</version>
         
     | 
| 
      
 366 
     | 
    
         
            +
                                  </display>
         
     | 
| 
      
 367 
     | 
    
         
            +
                                  <links>
         
     | 
| 
      
 368 
     | 
    
         
            +
                                    <openurl>$$Topenurl_journal</openurl>
         
     | 
| 
      
 369 
     | 
    
         
            +
                                    <backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
         
     | 
| 
      
 370 
     | 
    
         
            +
                                    <thumbnail>$$Tamazon_thumb</thumbnail>
         
     | 
| 
      
 371 
     | 
    
         
            +
                                    <linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
         
     | 
| 
      
 372 
     | 
    
         
            +
                                    <openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
         
     | 
| 
      
 373 
     | 
    
         
            +
                                    <linktoholdings>$$Taleph_holdings</linktoholdings>
         
     | 
| 
      
 374 
     | 
    
         
            +
                                    <linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
         
     | 
| 
      
 375 
     | 
    
         
            +
                                    <linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
         
     | 
| 
      
 376 
     | 
    
         
            +
                                    <linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
         
     | 
| 
      
 377 
     | 
    
         
            +
                                    <linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
         
     | 
| 
      
 378 
     | 
    
         
            +
                                  </links>
         
     | 
| 
      
 379 
     | 
    
         
            +
                                  <search>
         
     | 
| 
      
 380 
     | 
    
         
            +
                                    <creatorcontrib>Graham,  Greene  1904-1991.</creatorcontrib>
         
     | 
| 
      
 381 
     | 
    
         
            +
                                    <creatorcontrib>Greene, Graham, 1904-1991.</creatorcontrib>
         
     | 
| 
      
 382 
     | 
    
         
            +
                                    <creatorcontrib>Greene, G</creatorcontrib>
         
     | 
| 
      
 383 
     | 
    
         
            +
                                    <creatorcontrib>by Graham Greene.</creatorcontrib>
         
     | 
| 
      
 384 
     | 
    
         
            +
                                    <creatorcontrib>Grīns, Greiems, 1904-1991</creatorcontrib>
         
     | 
| 
      
 385 
     | 
    
         
            +
                                    <creatorcontrib>Greene, Henry Graham, 1904-1991</creatorcontrib>
         
     | 
| 
      
 386 
     | 
    
         
            +
                                    <creatorcontrib>Gŭrin, Gŭreŏm, 1904-1991</creatorcontrib>
         
     | 
| 
      
 387 
     | 
    
         
            +
                                    <creatorcontrib>Grin, Greham, 1904-1991</creatorcontrib>
         
     | 
| 
      
 388 
     | 
    
         
            +
                                    <creatorcontrib>Grīna, Grāhama, 1904-1991</creatorcontrib>
         
     | 
| 
      
 389 
     | 
    
         
            +
                                    <creatorcontrib>Grin, Grėm, 1904-1991</creatorcontrib>
         
     | 
| 
      
 390 
     | 
    
         
            +
                                    <creatorcontrib>格拉姆・葛林, 1904-1991</creatorcontrib>
         
     | 
| 
      
 391 
     | 
    
         
            +
                                    <creatorcontrib>Grīns, G. (Greiems), 1904-1991</creatorcontrib>
         
     | 
| 
      
 392 
     | 
    
         
            +
                                    <title>Travels with my aunt /</title>
         
     | 
| 
      
 393 
     | 
    
         
            +
                                    <subject>British  Foreign countries Fiction</subject>
         
     | 
| 
      
 394 
     | 
    
         
            +
                                    <subject>Women travelers  Fiction</subject>
         
     | 
| 
      
 395 
     | 
    
         
            +
                                    <subject>Older women  Fiction</subject>
         
     | 
| 
      
 396 
     | 
    
         
            +
                                    <subject>Travelers  Fiction</subject>
         
     | 
| 
      
 397 
     | 
    
         
            +
                                    <subject>Retirees  Fiction</subject>
         
     | 
| 
      
 398 
     | 
    
         
            +
                                    <subject>Aunts  Fiction</subject>
         
     | 
| 
      
 399 
     | 
    
         
            +
                                    <subject>Humorous fiction</subject>
         
     | 
| 
      
 400 
     | 
    
         
            +
                                    <subject>Britishers</subject>
         
     | 
| 
      
 401 
     | 
    
         
            +
                                    <subject>British people</subject>
         
     | 
| 
      
 402 
     | 
    
         
            +
                                    <subject>Britons (British)</subject>
         
     | 
| 
      
 403 
     | 
    
         
            +
                                    <subject>Brits</subject>
         
     | 
| 
      
 404 
     | 
    
         
            +
                                    <subject>Travelers, Women</subject>
         
     | 
| 
      
 405 
     | 
    
         
            +
                                    <subject>Aged women</subject>
         
     | 
| 
      
 406 
     | 
    
         
            +
                                    <subject>People, Retired</subject>
         
     | 
| 
      
 407 
     | 
    
         
            +
                                    <subject>Retired persons</subject>
         
     | 
| 
      
 408 
     | 
    
         
            +
                                    <subject>Retired people</subject>
         
     | 
| 
      
 409 
     | 
    
         
            +
                                    <general>The Viking Press,</general>
         
     | 
| 
      
 410 
     | 
    
         
            +
                                    <general>"Published in 1970 ..."--T.p. verso.</general>
         
     | 
| 
      
 411 
     | 
    
         
            +
                                    <general>Series statement from dust jacket; part of the collected works reissued in 1981.</general>
         
     | 
| 
      
 412 
     | 
    
         
            +
                                    <general>United States New York New York.</general>
         
     | 
| 
      
 413 
     | 
    
         
            +
                                    <sourceid>nyu_aleph</sourceid>
         
     | 
| 
      
 414 
     | 
    
         
            +
                                    <recordid>nyu_aleph003443700</recordid>
         
     | 
| 
      
 415 
     | 
    
         
            +
                                    <isbn>0670725242</isbn>
         
     | 
| 
      
 416 
     | 
    
         
            +
                                    <isbn>9780670725243</isbn>
         
     | 
| 
      
 417 
     | 
    
         
            +
                                    <rsrctype>book</rsrctype>
         
     | 
| 
      
 418 
     | 
    
         
            +
                                    <creationdate>1981</creationdate>
         
     | 
| 
      
 419 
     | 
    
         
            +
                                    <creationdate>1969</creationdate>
         
     | 
| 
      
 420 
     | 
    
         
            +
                                    <addtitle>Works. 1981.</addtitle>
         
     | 
| 
      
 421 
     | 
    
         
            +
                                    <addtitle>The collected edition</addtitle>
         
     | 
| 
      
 422 
     | 
    
         
            +
                                    <searchscope>BOBST</searchscope>
         
     | 
| 
      
 423 
     | 
    
         
            +
                                    <searchscope>BOBST Main Collection</searchscope>
         
     | 
| 
      
 424 
     | 
    
         
            +
                                    <searchscope>nyu_aleph</searchscope>
         
     | 
| 
      
 425 
     | 
    
         
            +
                                    <searchscope>NYU</searchscope>
         
     | 
| 
      
 426 
     | 
    
         
            +
                                    <scope>BOBST</scope>
         
     | 
| 
      
 427 
     | 
    
         
            +
                                    <scope>BOBST Main Collection</scope>
         
     | 
| 
      
 428 
     | 
    
         
            +
                                    <scope>nyu_aleph</scope>
         
     | 
| 
      
 429 
     | 
    
         
            +
                                    <scope>NYU</scope>
         
     | 
| 
      
 430 
     | 
    
         
            +
                                    <lsr01>PR6013.R44 T7 1981</lsr01>
         
     | 
| 
      
 431 
     | 
    
         
            +
                                    <lsr01>PR6013 .R44 T7 1981</lsr01>
         
     | 
| 
      
 432 
     | 
    
         
            +
                                    <lsr02>The Viking Press,</lsr02>
         
     | 
| 
      
 433 
     | 
    
         
            +
                                  </search>
         
     | 
| 
      
 434 
     | 
    
         
            +
                                  <sort>
         
     | 
| 
      
 435 
     | 
    
         
            +
                                    <title>Travels with my aunt /</title>
         
     | 
| 
      
 436 
     | 
    
         
            +
                                    <creationdate>1981</creationdate>
         
     | 
| 
      
 437 
     | 
    
         
            +
                                    <author>Greene, Graham, 1904-1991.</author>
         
     | 
| 
      
 438 
     | 
    
         
            +
                                    <lso01>1981</lso01>
         
     | 
| 
      
 439 
     | 
    
         
            +
                                  </sort>
         
     | 
| 
      
 440 
     | 
    
         
            +
                                  <facets>
         
     | 
| 
      
 441 
     | 
    
         
            +
                                    <language>eng</language>
         
     | 
| 
      
 442 
     | 
    
         
            +
                                    <creationdate>1981</creationdate>
         
     | 
| 
      
 443 
     | 
    
         
            +
                                    <topic>British–Foreign countries–Fiction</topic>
         
     | 
| 
      
 444 
     | 
    
         
            +
                                    <topic>Women travelers–Fiction</topic>
         
     | 
| 
      
 445 
     | 
    
         
            +
                                    <topic>Older women–Fiction</topic>
         
     | 
| 
      
 446 
     | 
    
         
            +
                                    <topic>Travelers–Fiction</topic>
         
     | 
| 
      
 447 
     | 
    
         
            +
                                    <topic>Retirees–Fiction</topic>
         
     | 
| 
      
 448 
     | 
    
         
            +
                                    <topic>Aunts–Fiction</topic>
         
     | 
| 
      
 449 
     | 
    
         
            +
                                    <collection>BOBST</collection>
         
     | 
| 
      
 450 
     | 
    
         
            +
                                    <toplevel>available</toplevel>
         
     | 
| 
      
 451 
     | 
    
         
            +
                                    <prefilter>books</prefilter>
         
     | 
| 
      
 452 
     | 
    
         
            +
                                    <rsrctype>books</rsrctype>
         
     | 
| 
      
 453 
     | 
    
         
            +
                                    <creatorcontrib>Greene, G</creatorcontrib>
         
     | 
| 
      
 454 
     | 
    
         
            +
                                    <genre>Fiction</genre>
         
     | 
| 
      
 455 
     | 
    
         
            +
                                    <genre>Humorous fiction</genre>
         
     | 
| 
      
 456 
     | 
    
         
            +
                                    <library>BOBST</library>
         
     | 
| 
      
 457 
     | 
    
         
            +
                                    <lfc01>Main Collection</lfc01>
         
     | 
| 
      
 458 
     | 
    
         
            +
                                    <lfc04>United States</lfc04>
         
     | 
| 
      
 459 
     | 
    
         
            +
                                    <lfc04>New York</lfc04>
         
     | 
| 
      
 460 
     | 
    
         
            +
                                    <lfc04>New York.</lfc04>
         
     | 
| 
      
 461 
     | 
    
         
            +
                                    <classificationlcc>P - Language and literature.–Fiction and juvenile belles lettres–Fiction in English</classificationlcc>
         
     | 
| 
      
 462 
     | 
    
         
            +
                                    <classificationlcc>P - Language and literature.–English literature</classificationlcc>
         
     | 
| 
      
 463 
     | 
    
         
            +
                                    <frbrgroupid>49340863</frbrgroupid>
         
     | 
| 
      
 464 
     | 
    
         
            +
                                    <frbrtype>5</frbrtype>
         
     | 
| 
      
 465 
     | 
    
         
            +
                                  </facets>
         
     | 
| 
      
 466 
     | 
    
         
            +
                                  <dedup>
         
     | 
| 
      
 467 
     | 
    
         
            +
                                    <t>1</t>
         
     | 
| 
      
 468 
     | 
    
         
            +
                                    <c1>72094848</c1>
         
     | 
| 
      
 469 
     | 
    
         
            +
                                    <c2>0670725242;9780670725243</c2>
         
     | 
| 
      
 470 
     | 
    
         
            +
                                    <c3>travelswithmyaunt</c3>
         
     | 
| 
      
 471 
     | 
    
         
            +
                                    <c4>1981</c4>
         
     | 
| 
      
 472 
     | 
    
         
            +
                                    <f1>72094848</f1>
         
     | 
| 
      
 473 
     | 
    
         
            +
                                    <f3>0670725242;9780670725243</f3>
         
     | 
| 
      
 474 
     | 
    
         
            +
                                    <f5>travelswithmyaunt</f5>
         
     | 
| 
      
 475 
     | 
    
         
            +
                                    <f6>1981</f6>
         
     | 
| 
      
 476 
     | 
    
         
            +
                                    <f7>travels with my aunt</f7>
         
     | 
| 
      
 477 
     | 
    
         
            +
                                    <f8>nyu</f8>
         
     | 
| 
      
 478 
     | 
    
         
            +
                                    <f9>318 p. ;</f9>
         
     | 
| 
      
 479 
     | 
    
         
            +
                                    <f10>the viking press</f10>
         
     | 
| 
      
 480 
     | 
    
         
            +
                                    <f11>greene graham 1904 1991</f11>
         
     | 
| 
      
 481 
     | 
    
         
            +
                                  </dedup>
         
     | 
| 
      
 482 
     | 
    
         
            +
                                  <frbr>
         
     | 
| 
      
 483 
     | 
    
         
            +
                                    <t>1</t>
         
     | 
| 
      
 484 
     | 
    
         
            +
                                    <k1>$$Kgreene graham 1904 1991$$AA</k1>
         
     | 
| 
      
 485 
     | 
    
         
            +
                                    <k3>$$Kbooktravels with my aunt$$AT</k3>
         
     | 
| 
      
 486 
     | 
    
         
            +
                                  </frbr>
         
     | 
| 
      
 487 
     | 
    
         
            +
                                  <delivery>
         
     | 
| 
      
 488 
     | 
    
         
            +
                                    <institution>NYU</institution>
         
     | 
| 
      
 489 
     | 
    
         
            +
                                    <delcategory>Physical Item</delcategory>
         
     | 
| 
      
 490 
     | 
    
         
            +
                                  </delivery>
         
     | 
| 
      
 491 
     | 
    
         
            +
                                  <enrichment>
         
     | 
| 
      
 492 
     | 
    
         
            +
                                    <classificationlcc>PZ3.G8319</classificationlcc>
         
     | 
| 
      
 493 
     | 
    
         
            +
                                    <classificationlcc>PR6013.R44</classificationlcc>
         
     | 
| 
      
 494 
     | 
    
         
            +
                                  </enrichment>
         
     | 
| 
      
 495 
     | 
    
         
            +
                                  <ranking>
         
     | 
| 
      
 496 
     | 
    
         
            +
                                    <booster1>1</booster1>
         
     | 
| 
      
 497 
     | 
    
         
            +
                                    <booster2>1</booster2>
         
     | 
| 
      
 498 
     | 
    
         
            +
                                  </ranking>
         
     | 
| 
      
 499 
     | 
    
         
            +
                                  <addata>
         
     | 
| 
      
 500 
     | 
    
         
            +
                                    <aulast>Greene</aulast>
         
     | 
| 
      
 501 
     | 
    
         
            +
                                    <aufirst>Graham,</aufirst>
         
     | 
| 
      
 502 
     | 
    
         
            +
                                    <au>Greene, Graham, 1904-1991</au>
         
     | 
| 
      
 503 
     | 
    
         
            +
                                    <seriesau>Greene, Graham, 1904-1991</seriesau>
         
     | 
| 
      
 504 
     | 
    
         
            +
                                    <btitle>Travels with my aunt</btitle>
         
     | 
| 
      
 505 
     | 
    
         
            +
                                    <seriestitle>Greene, Graham, 1904-1991. Works. 1981</seriestitle>
         
     | 
| 
      
 506 
     | 
    
         
            +
                                    <date>1981</date>
         
     | 
| 
      
 507 
     | 
    
         
            +
                                    <risdate>[1981?], c1969.</risdate>
         
     | 
| 
      
 508 
     | 
    
         
            +
                                    <isbn>0670725242</isbn>
         
     | 
| 
      
 509 
     | 
    
         
            +
                                    <isbn>9780670725243</isbn>
         
     | 
| 
      
 510 
     | 
    
         
            +
                                    <format>book</format>
         
     | 
| 
      
 511 
     | 
    
         
            +
                                    <genre>book</genre>
         
     | 
| 
      
 512 
     | 
    
         
            +
                                    <ristype>BOOK</ristype>
         
     | 
| 
      
 513 
     | 
    
         
            +
                                    <cop>New York</cop>
         
     | 
| 
      
 514 
     | 
    
         
            +
                                    <pub>The Viking Press</pub>
         
     | 
| 
      
 515 
     | 
    
         
            +
                                    <oclcid>7871629</oclcid>
         
     | 
| 
      
 516 
     | 
    
         
            +
                                    <lad01>BOBST</lad01>
         
     | 
| 
      
 517 
     | 
    
         
            +
                                    <lad01>Physical Item</lad01>
         
     | 
| 
      
 518 
     | 
    
         
            +
                                    <lccn>72094848</lccn>
         
     | 
| 
      
 519 
     | 
    
         
            +
                                  </addata>
         
     | 
| 
      
 520 
     | 
    
         
            +
                                </record>
         
     | 
| 
      
 521 
     | 
    
         
            +
                              </PrimoNMBib>
         
     | 
| 
      
 522 
     | 
    
         
            +
                              <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=000570570" GetIt2="https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph000570570&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;rft.genre=video&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;rft.aulast=Cukor&amp;rft.aufirst=George%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=MGM/UA%20Home%20Video&amp;rft.place=Santa%20Monica%2C%20CA&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=079282783X&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000570570&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000570570&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
         
     | 
| 
      
 523 
     | 
    
         
            +
                              <LIBRARIES>
         
     | 
| 
      
 524 
     | 
    
         
            +
                                <LIBRARY>
         
     | 
| 
      
 525 
     | 
    
         
            +
                                  <institution>NYU</institution>
         
     | 
| 
      
 526 
     | 
    
         
            +
                                  <library>BOBST</library>
         
     | 
| 
      
 527 
     | 
    
         
            +
                                  <status>available</status>
         
     | 
| 
      
 528 
     | 
    
         
            +
                                  <collection>Main Collection</collection>
         
     | 
| 
      
 529 
     | 
    
         
            +
                                  <callNumber>(PR6013.R44 T7 1981 )</callNumber>
         
     | 
| 
      
 530 
     | 
    
         
            +
                                  <url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003443700</url>
         
     | 
| 
      
 531 
     | 
    
         
            +
                                </LIBRARY>
         
     | 
| 
      
 532 
     | 
    
         
            +
                              </LIBRARIES>
         
     | 
| 
      
 533 
     | 
    
         
            +
                              <LINKS>
         
     | 
| 
      
 534 
     | 
    
         
            +
                                <openurl><![CDATA[https://dev.getit.library.nyu.edu/resolve?&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-09-25T10%3A52%3A07IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003443700&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=The%20Viking%20Press&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=0670725242&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph003443700&rft.eisbn=&rft_dat=<nyu_aleph>003443700</nyu_aleph>&rft_id=info:oai/]]></openurl>
         
     | 
| 
      
 535 
     | 
    
         
            +
                                <backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=003443700</backlink>
         
     | 
| 
      
 536 
     | 
    
         
            +
                                <thumbnail>http://images.amazon.com/images/P/0670725242.01._SSTHUM_.jpg</thumbnail>
         
     | 
| 
      
 537 
     | 
    
         
            +
                                <linktotoc>http://www.amazon.com/gp/reader/0670725242</linktotoc>
         
     | 
| 
      
 538 
     | 
    
         
            +
                                <openurlfulltext><![CDATA[https://dev.getit.library.nyu.edu/resolve?&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-09-25T10%3A52%3A07IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003443700&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=The%20Viking%20Press&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=0670725242&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>003443700</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
         
     | 
| 
      
 539 
     | 
    
         
            +
                                <linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003443700</linktoholdings>
         
     | 
| 
      
 540 
     | 
    
         
            +
                                <linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph003443700?institution=NYU&amp;persistent</linktoreview>
         
     | 
| 
      
 541 
     | 
    
         
            +
                                <linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=0670725242</linktouc>
         
     | 
| 
      
 542 
     | 
    
         
            +
                                <linktouc>http://www.worldcat.org/search?q=isbn%3A0670725242</linktouc>
         
     | 
| 
      
 543 
     | 
    
         
            +
                              </LINKS>
         
     | 
| 
      
 544 
     | 
    
         
            +
                            </DOC>
         
     | 
| 
      
 545 
     | 
    
         
            +
                            <DOC ID="2970199" RANK="4.498112E-4" NO="3" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
         
     | 
| 
      
 546 
     | 
    
         
            +
                              <PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
         
     | 
| 
      
 547 
     | 
    
         
            +
                                <record>
         
     | 
| 
      
 548 
     | 
    
         
            +
                                  <control>
         
     | 
| 
      
 549 
     | 
    
         
            +
                                    <sourcerecordid>003445127</sourcerecordid>
         
     | 
| 
      
 550 
     | 
    
         
            +
                                    <sourceid>nyu_aleph</sourceid>
         
     | 
| 
      
 551 
     | 
    
         
            +
                                    <recordid>nyu_aleph003445127</recordid>
         
     | 
| 
      
 552 
     | 
    
         
            +
                                    <originalsourceid>NYU01</originalsourceid>
         
     | 
| 
      
 553 
     | 
    
         
            +
                                    <ilsapiid>NYU01003445127</ilsapiid>
         
     | 
| 
      
 554 
     | 
    
         
            +
                                    <sourceformat>MARC21</sourceformat>
         
     | 
| 
      
 555 
     | 
    
         
            +
                                    <sourcesystem>Aleph</sourcesystem>
         
     | 
| 
      
 556 
     | 
    
         
            +
                                  </control>
         
     | 
| 
      
 557 
     | 
    
         
            +
                                  <display>
         
     | 
| 
      
 558 
     | 
    
         
            +
                                    <type>book</type>
         
     | 
| 
      
 559 
     | 
    
         
            +
                                    <title>Reflections on Travels with my aunt</title>
         
     | 
| 
      
 560 
     | 
    
         
            +
                                    <creator>Graham  Greene  1904-1991.</creator>
         
     | 
| 
      
 561 
     | 
    
         
            +
                                    <contributor>Claudia Cohen 1953- binder.; Firsts &amp;amp; Company, publisher.; Allethaire Press printer.; Grenfell Press, printer.</contributor>
         
     | 
| 
      
 562 
     | 
    
         
            +
                                    <publisher>New York : Firsts &amp;amp; Company</publisher>
         
     | 
| 
      
 563 
     | 
    
         
            +
                                    <creationdate>1989</creationdate>
         
     | 
| 
      
 564 
     | 
    
         
            +
                                    <format>[20] p. : port., facsims. ; 26 cm.</format>
         
     | 
| 
      
 565 
     | 
    
         
            +
                                    <subject>Greene, Graham, 1904-1991. Travels with my aunt</subject>
         
     | 
| 
      
 566 
     | 
    
         
            +
                                    <language>eng</language>
         
     | 
| 
      
 567 
     | 
    
         
            +
                                    <source>nyu_aleph</source>
         
     | 
| 
      
 568 
     | 
    
         
            +
                                    <availlibrary>$$INYU$$LBFALE$$1Fales$$2(Brit Non-circulating )$$Savailable$$31$$40$$5Y$$60$$XNYU50$$YBFALE$$ZFALEF</availlibrary>
         
     | 
| 
      
 569 
     | 
    
         
            +
                                    <lds02>nyu_aleph003445127</lds02>
         
     | 
| 
      
 570 
     | 
    
         
            +
                                    <lds01>NYU</lds01>
         
     | 
| 
      
 571 
     | 
    
         
            +
                                    <availinstitution>$$INYU$$Savailable</availinstitution>
         
     | 
| 
      
 572 
     | 
    
         
            +
                                    <availpnx>available</availpnx>
         
     | 
| 
      
 573 
     | 
    
         
            +
                                  </display>
         
     | 
| 
      
 574 
     | 
    
         
            +
                                  <links>
         
     | 
| 
      
 575 
     | 
    
         
            +
                                    <openurl>$$Topenurl_journal</openurl>
         
     | 
| 
      
 576 
     | 
    
         
            +
                                    <backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
         
     | 
| 
      
 577 
     | 
    
         
            +
                                    <thumbnail>$$Tgoogle_thumbnail</thumbnail>
         
     | 
| 
      
 578 
     | 
    
         
            +
                                    <openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
         
     | 
| 
      
 579 
     | 
    
         
            +
                                    <linktoholdings>$$Taleph_holdings</linktoholdings>
         
     | 
| 
      
 580 
     | 
    
         
            +
                                    <linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
         
     | 
| 
      
 581 
     | 
    
         
            +
                                    <linktouc>$$Tworldcat_oclc$$DCheck other libraries (WorldCat®)</linktouc>
         
     | 
| 
      
 582 
     | 
    
         
            +
                                  </links>
         
     | 
| 
      
 583 
     | 
    
         
            +
                                  <search>
         
     | 
| 
      
 584 
     | 
    
         
            +
                                    <creatorcontrib>Graham,  Greene  1904-1991.</creatorcontrib>
         
     | 
| 
      
 585 
     | 
    
         
            +
                                    <creatorcontrib>Greene, Graham, 1904-1991.</creatorcontrib>
         
     | 
| 
      
 586 
     | 
    
         
            +
                                    <creatorcontrib>Greene, G</creatorcontrib>
         
     | 
| 
      
 587 
     | 
    
         
            +
                                    <creatorcontrib>Graham Greene.</creatorcontrib>
         
     | 
| 
      
 588 
     | 
    
         
            +
                                    <creatorcontrib>Claudia,  Cohen  1953- binder.</creatorcontrib>
         
     | 
| 
      
 589 
     | 
    
         
            +
                                    <creatorcontrib>Cohen, C</creatorcontrib>
         
     | 
| 
      
 590 
     | 
    
         
            +
                                    <creatorcontrib>Firsts &amp;amp; Company, publisher.</creatorcontrib>
         
     | 
| 
      
 591 
     | 
    
         
            +
                                    <creatorcontrib>Allethaire Press printer.</creatorcontrib>
         
     | 
| 
      
 592 
     | 
    
         
            +
                                    <creatorcontrib>Grenfell Press, printer.</creatorcontrib>
         
     | 
| 
      
 593 
     | 
    
         
            +
                                    <creatorcontrib>Grīns, G. (Greiems), 1904-1991</creatorcontrib>
         
     | 
| 
      
 594 
     | 
    
         
            +
                                    <creatorcontrib>Grīns, Greiems, 1904-1991</creatorcontrib>
         
     | 
| 
      
 595 
     | 
    
         
            +
                                    <creatorcontrib>Gŭrin, Gŭreŏm, 1904-1991</creatorcontrib>
         
     | 
| 
      
 596 
     | 
    
         
            +
                                    <creatorcontrib>Grin, Greham, 1904-1991</creatorcontrib>
         
     | 
| 
      
 597 
     | 
    
         
            +
                                    <creatorcontrib>Grīna, Grāhama, 1904-1991</creatorcontrib>
         
     | 
| 
      
 598 
     | 
    
         
            +
                                    <creatorcontrib>Grin, Grėm, 1904-1991</creatorcontrib>
         
     | 
| 
      
 599 
     | 
    
         
            +
                                    <creatorcontrib>格拉姆・葛林, 1904-1991</creatorcontrib>
         
     | 
| 
      
 600 
     | 
    
         
            +
                                    <creatorcontrib>Cohen, Claudia, of Easthampton, Mass.</creatorcontrib>
         
     | 
| 
      
 601 
     | 
    
         
            +
                                    <creatorcontrib>Greene, Henry Graham, 1904-1991</creatorcontrib>
         
     | 
| 
      
 602 
     | 
    
         
            +
                                    <title>Reflections on Travels with my aunt /</title>
         
     | 
| 
      
 603 
     | 
    
         
            +
                                    <subject>Greene, Graham, 1904-1991. Travels with my aunt</subject>
         
     | 
| 
      
 604 
     | 
    
         
            +
                                    <general>Firsts &amp;amp; Company,</general>
         
     | 
| 
      
 605 
     | 
    
         
            +
                                    <general>"Reflections on Travels With My Aunt has been published by Firsts &amp;amp; Company in the spring of 1989 in an edition of 250. The book was printed by Allethaire Press and The Grenfell Press on T.H. Saunders paper and bound by hand in Sage Reynolds' painted papers by Claudia Cohen. All copies have been signed by the author."--Colophon.</general>
         
     | 
| 
      
 606 
     | 
    
         
            +
                                    <general>Facsimile of a portion of Greene's manuscript is printed on p. [13-16].</general>
         
     | 
| 
      
 607 
     | 
    
         
            +
                                    <sourceid>nyu_aleph</sourceid>
         
     | 
| 
      
 608 
     | 
    
         
            +
                                    <recordid>nyu_aleph003445127</recordid>
         
     | 
| 
      
 609 
     | 
    
         
            +
                                    <rsrctype>book</rsrctype>
         
     | 
| 
      
 610 
     | 
    
         
            +
                                    <creationdate>1989</creationdate>
         
     | 
| 
      
 611 
     | 
    
         
            +
                                    <addtitle>Travels with my aunt.</addtitle>
         
     | 
| 
      
 612 
     | 
    
         
            +
                                    <searchscope>BFALE</searchscope>
         
     | 
| 
      
 613 
     | 
    
         
            +
                                    <searchscope>BFALE Fales</searchscope>
         
     | 
| 
      
 614 
     | 
    
         
            +
                                    <searchscope>nyu_aleph</searchscope>
         
     | 
| 
      
 615 
     | 
    
         
            +
                                    <searchscope>NYU</searchscope>
         
     | 
| 
      
 616 
     | 
    
         
            +
                                    <searchscope>BOBST</searchscope>
         
     | 
| 
      
 617 
     | 
    
         
            +
                                    <scope>BFALE</scope>
         
     | 
| 
      
 618 
     | 
    
         
            +
                                    <scope>BFALE Fales</scope>
         
     | 
| 
      
 619 
     | 
    
         
            +
                                    <scope>nyu_aleph</scope>
         
     | 
| 
      
 620 
     | 
    
         
            +
                                    <scope>NYU</scope>
         
     | 
| 
      
 621 
     | 
    
         
            +
                                    <scope>BOBST</scope>
         
     | 
| 
      
 622 
     | 
    
         
            +
                                    <lsr01>Brit</lsr01>
         
     | 
| 
      
 623 
     | 
    
         
            +
                                    <lsr02>Firsts &amp;amp; Company,</lsr02>
         
     | 
| 
      
 624 
     | 
    
         
            +
                                  </search>
         
     | 
| 
      
 625 
     | 
    
         
            +
                                  <sort>
         
     | 
| 
      
 626 
     | 
    
         
            +
                                    <title>Reflections on Travels with my aunt /</title>
         
     | 
| 
      
 627 
     | 
    
         
            +
                                    <creationdate>1989</creationdate>
         
     | 
| 
      
 628 
     | 
    
         
            +
                                    <author>Greene, Graham, 1904-1991.</author>
         
     | 
| 
      
 629 
     | 
    
         
            +
                                    <lso01>1989</lso01>
         
     | 
| 
      
 630 
     | 
    
         
            +
                                  </sort>
         
     | 
| 
      
 631 
     | 
    
         
            +
                                  <facets>
         
     | 
| 
      
 632 
     | 
    
         
            +
                                    <language>eng</language>
         
     | 
| 
      
 633 
     | 
    
         
            +
                                    <creationdate>1989</creationdate>
         
     | 
| 
      
 634 
     | 
    
         
            +
                                    <topic>Greene, Graham, 1904-1991. Travels with my aunt</topic>
         
     | 
| 
      
 635 
     | 
    
         
            +
                                    <toplevel>available</toplevel>
         
     | 
| 
      
 636 
     | 
    
         
            +
                                    <prefilter>books</prefilter>
         
     | 
| 
      
 637 
     | 
    
         
            +
                                    <rsrctype>books</rsrctype>
         
     | 
| 
      
 638 
     | 
    
         
            +
                                    <creatorcontrib>Greene, G</creatorcontrib>
         
     | 
| 
      
 639 
     | 
    
         
            +
                                    <creatorcontrib>Cohen, C</creatorcontrib>
         
     | 
| 
      
 640 
     | 
    
         
            +
                                    <creatorcontrib>Firsts &amp;amp; Company</creatorcontrib>
         
     | 
| 
      
 641 
     | 
    
         
            +
                                    <creatorcontrib>Allethaire Press</creatorcontrib>
         
     | 
| 
      
 642 
     | 
    
         
            +
                                    <creatorcontrib>Grenfell Press</creatorcontrib>
         
     | 
| 
      
 643 
     | 
    
         
            +
                                    <library>BFALE</library>
         
     | 
| 
      
 644 
     | 
    
         
            +
                                    <library>BOBST</library>
         
     | 
| 
      
 645 
     | 
    
         
            +
                                    <lfc01>Fales</lfc01>
         
     | 
| 
      
 646 
     | 
    
         
            +
                                    <frbrgroupid>52487517</frbrgroupid>
         
     | 
| 
      
 647 
     | 
    
         
            +
                                    <frbrtype>6</frbrtype>
         
     | 
| 
      
 648 
     | 
    
         
            +
                                  </facets>
         
     | 
| 
      
 649 
     | 
    
         
            +
                                  <dedup>
         
     | 
| 
      
 650 
     | 
    
         
            +
                                    <t>99</t>
         
     | 
| 
      
 651 
     | 
    
         
            +
                                    <c3>reflectionsontravelswithmyaunt</c3>
         
     | 
| 
      
 652 
     | 
    
         
            +
                                    <c4>1989</c4>
         
     | 
| 
      
 653 
     | 
    
         
            +
                                    <f5>reflectionsontravelswithmyaunt</f5>
         
     | 
| 
      
 654 
     | 
    
         
            +
                                    <f6>1989</f6>
         
     | 
| 
      
 655 
     | 
    
         
            +
                                    <f7>reflections on travels with my aunt</f7>
         
     | 
| 
      
 656 
     | 
    
         
            +
                                    <f8>nyu</f8>
         
     | 
| 
      
 657 
     | 
    
         
            +
                                    <f9>[20] p. :</f9>
         
     | 
| 
      
 658 
     | 
    
         
            +
                                    <f10>firsts company</f10>
         
     | 
| 
      
 659 
     | 
    
         
            +
                                    <f11>greene graham 1904 1991</f11>
         
     | 
| 
      
 660 
     | 
    
         
            +
                                  </dedup>
         
     | 
| 
      
 661 
     | 
    
         
            +
                                  <frbr>
         
     | 
| 
      
 662 
     | 
    
         
            +
                                    <t>1</t>
         
     | 
| 
      
 663 
     | 
    
         
            +
                                    <k1>$$Kgreene graham 1904 1991$$AA</k1>
         
     | 
| 
      
 664 
     | 
    
         
            +
                                    <k3>$$Kbookreflections on travels with my aunt$$AT</k3>
         
     | 
| 
      
 665 
     | 
    
         
            +
                                  </frbr>
         
     | 
| 
      
 666 
     | 
    
         
            +
                                  <delivery>
         
     | 
| 
      
 667 
     | 
    
         
            +
                                    <institution>NYU</institution>
         
     | 
| 
      
 668 
     | 
    
         
            +
                                    <delcategory>Physical Item</delcategory>
         
     | 
| 
      
 669 
     | 
    
         
            +
                                  </delivery>
         
     | 
| 
      
 670 
     | 
    
         
            +
                                  <ranking>
         
     | 
| 
      
 671 
     | 
    
         
            +
                                    <booster1>1</booster1>
         
     | 
| 
      
 672 
     | 
    
         
            +
                                    <booster2>1</booster2>
         
     | 
| 
      
 673 
     | 
    
         
            +
                                  </ranking>
         
     | 
| 
      
 674 
     | 
    
         
            +
                                  <addata>
         
     | 
| 
      
 675 
     | 
    
         
            +
                                    <aulast>Greene</aulast>
         
     | 
| 
      
 676 
     | 
    
         
            +
                                    <aufirst>Graham,</aufirst>
         
     | 
| 
      
 677 
     | 
    
         
            +
                                    <au>Greene, Graham, 1904-1991</au>
         
     | 
| 
      
 678 
     | 
    
         
            +
                                    <addau>Cohen, Claudia, 1953- binder</addau>
         
     | 
| 
      
 679 
     | 
    
         
            +
                                    <addau>Firsts &amp;amp; Company, publisher</addau>
         
     | 
| 
      
 680 
     | 
    
         
            +
                                    <addau>Allethaire Press printer</addau>
         
     | 
| 
      
 681 
     | 
    
         
            +
                                    <addau>Grenfell Press, printer</addau>
         
     | 
| 
      
 682 
     | 
    
         
            +
                                    <btitle>Reflections on Travels with my aunt</btitle>
         
     | 
| 
      
 683 
     | 
    
         
            +
                                    <date>1989</date>
         
     | 
| 
      
 684 
     | 
    
         
            +
                                    <risdate>1989.</risdate>
         
     | 
| 
      
 685 
     | 
    
         
            +
                                    <format>book</format>
         
     | 
| 
      
 686 
     | 
    
         
            +
                                    <genre>book</genre>
         
     | 
| 
      
 687 
     | 
    
         
            +
                                    <ristype>BOOK</ristype>
         
     | 
| 
      
 688 
     | 
    
         
            +
                                    <cop>New York</cop>
         
     | 
| 
      
 689 
     | 
    
         
            +
                                    <pub>Firsts &amp;amp; Company</pub>
         
     | 
| 
      
 690 
     | 
    
         
            +
                                    <oclcid>20905242</oclcid>
         
     | 
| 
      
 691 
     | 
    
         
            +
                                    <lad01>BFALE</lad01>
         
     | 
| 
      
 692 
     | 
    
         
            +
                                    <lad01>Physical Item</lad01>
         
     | 
| 
      
 693 
     | 
    
         
            +
                                  </addata>
         
     | 
| 
      
 694 
     | 
    
         
            +
                                </record>
         
     | 
| 
      
 695 
     | 
    
         
            +
                              </PrimoNMBib>
         
     | 
| 
      
 696 
     | 
    
         
            +
                              <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=000570570" GetIt2="https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph000570570&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;rft.genre=video&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;rft.aulast=Cukor&amp;rft.aufirst=George%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=MGM/UA%20Home%20Video&amp;rft.place=Santa%20Monica%2C%20CA&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=079282783X&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000570570&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000570570&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
         
     | 
| 
      
 697 
     | 
    
         
            +
                              <LIBRARIES>
         
     | 
| 
      
 698 
     | 
    
         
            +
                                <LIBRARY>
         
     | 
| 
      
 699 
     | 
    
         
            +
                                  <institution>NYU</institution>
         
     | 
| 
      
 700 
     | 
    
         
            +
                                  <library>BFALE</library>
         
     | 
| 
      
 701 
     | 
    
         
            +
                                  <status>available</status>
         
     | 
| 
      
 702 
     | 
    
         
            +
                                  <collection>Fales</collection>
         
     | 
| 
      
 703 
     | 
    
         
            +
                                  <callNumber>(Brit Non-circulating )</callNumber>
         
     | 
| 
      
 704 
     | 
    
         
            +
                                  <url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003445127</url>
         
     | 
| 
      
 705 
     | 
    
         
            +
                                </LIBRARY>
         
     | 
| 
      
 706 
     | 
    
         
            +
                              </LIBRARIES>
         
     | 
| 
      
 707 
     | 
    
         
            +
                              <LINKS>
         
     | 
| 
      
 708 
     | 
    
         
            +
                                <openurl><![CDATA[https://dev.getit.library.nyu.edu/resolve?&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-09-25T10%3A52%3A07IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003445127&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Reflections%20on%20Travels%20with%20my%20aunt&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Firsts%20%26%20Company&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph003445127&rft.eisbn=&rft_dat=<nyu_aleph>003445127</nyu_aleph>&rft_id=info:oai/]]></openurl>
         
     | 
| 
      
 709 
     | 
    
         
            +
                                <backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=003445127</backlink>
         
     | 
| 
      
 710 
     | 
    
         
            +
                                <thumbnail>http://images.amazon.com/images/P/.01._SSTHUM_.jpg</thumbnail>
         
     | 
| 
      
 711 
     | 
    
         
            +
                                <openurlfulltext><![CDATA[https://dev.getit.library.nyu.edu/resolve?&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-09-25T10%3A52%3A07IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003445127&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Reflections%20on%20Travels%20with%20my%20aunt&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Firsts%20%26%20Company&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>003445127</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
         
     | 
| 
      
 712 
     | 
    
         
            +
                                <linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=003445127</linktoholdings>
         
     | 
| 
      
 713 
     | 
    
         
            +
                                <linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph003445127?institution=NYU&amp;persistent</linktoreview>
         
     | 
| 
      
 714 
     | 
    
         
            +
                                <linktouc>http://www.worldcat.org/search?q=no%3A20905242</linktouc>
         
     | 
| 
      
 715 
     | 
    
         
            +
                              </LINKS>
         
     | 
| 
      
 716 
     | 
    
         
            +
                            </DOC>
         
     | 
| 
      
 717 
     | 
    
         
            +
                            <DOC ID="2130847" RANK="3.859733E-4" NO="4" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
         
     | 
| 
      
 718 
     | 
    
         
            +
                              <PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
         
     | 
| 
      
 719 
     | 
    
         
            +
                                <record>
         
     | 
| 
      
 720 
     | 
    
         
            +
                                  <control>
         
     | 
| 
      
 721 
     | 
    
         
            +
                                    <sourcerecordid>002212958</sourcerecordid>
         
     | 
| 
      
 722 
     | 
    
         
            +
                                    <sourceid>nyu_aleph</sourceid>
         
     | 
| 
      
 723 
     | 
    
         
            +
                                    <recordid>nyu_aleph002212958</recordid>
         
     | 
| 
      
 724 
     | 
    
         
            +
                                    <originalsourceid>NYU01</originalsourceid>
         
     | 
| 
      
 725 
     | 
    
         
            +
                                    <ilsapiid>NYU01002212958</ilsapiid>
         
     | 
| 
      
 726 
     | 
    
         
            +
                                    <sourceformat>MARC21</sourceformat>
         
     | 
| 
      
 727 
     | 
    
         
            +
                                    <sourcesystem>Aleph</sourcesystem>
         
     | 
| 
      
 728 
     | 
    
         
            +
                                  </control>
         
     | 
| 
      
 729 
     | 
    
         
            +
                                  <display>
         
     | 
| 
      
 730 
     | 
    
         
            +
                                    <type>book</type>
         
     | 
| 
      
 731 
     | 
    
         
            +
                                    <title>Travels with my aunt : a novel</title>
         
     | 
| 
      
 732 
     | 
    
         
            +
                                    <creator>Graham  Greene  1904-1991.</creator>
         
     | 
| 
      
 733 
     | 
    
         
            +
                                    <publisher>New York : Viking Press</publisher>
         
     | 
| 
      
 734 
     | 
    
         
            +
                                    <creationdate>1970, c1969</creationdate>
         
     | 
| 
      
 735 
     | 
    
         
            +
                                    <format>244 p. ; 23 cm.</format>
         
     | 
| 
      
 736 
     | 
    
         
            +
                                    <subject>British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories</subject>
         
     | 
| 
      
 737 
     | 
    
         
            +
                                    <language>eng</language>
         
     | 
| 
      
 738 
     | 
    
         
            +
                                    <source>nyu_aleph</source>
         
     | 
| 
      
 739 
     | 
    
         
            +
                                    <availlibrary>$$INYU$$LBFALE$$1Fales$$2(Brit Non-circulating )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBFALE$$ZFALEF</availlibrary>
         
     | 
| 
      
 740 
     | 
    
         
            +
                                    <availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 1970 )$$Sunavailable$$31$$41$$5N$$61$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
         
     | 
| 
      
 741 
     | 
    
         
            +
                                    <availlibrary>$$ICU$$LCU$$1Main Collection$$2(PR6013.R44 T7 1970 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YCU$$ZMAIN</availlibrary>
         
     | 
| 
      
 742 
     | 
    
         
            +
                                    <lds02>nyu_aleph002212958</lds02>
         
     | 
| 
      
 743 
     | 
    
         
            +
                                    <lds01>NYU</lds01>
         
     | 
| 
      
 744 
     | 
    
         
            +
                                    <lds01>CU</lds01>
         
     | 
| 
      
 745 
     | 
    
         
            +
                                    <availinstitution>$$ICU$$Savailable</availinstitution>
         
     | 
| 
      
 746 
     | 
    
         
            +
                                    <availinstitution>$$INYU$$Savailable</availinstitution>
         
     | 
| 
      
 747 
     | 
    
         
            +
                                    <availpnx>available</availpnx>
         
     | 
| 
      
 748 
     | 
    
         
            +
                                    <version>2</version>
         
     | 
| 
      
 749 
     | 
    
         
            +
                                  </display>
         
     | 
| 
      
 750 
     | 
    
         
            +
                                  <links>
         
     | 
| 
      
 751 
     | 
    
         
            +
                                    <openurl>$$Topenurl_journal</openurl>
         
     | 
| 
      
 752 
     | 
    
         
            +
                                    <backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
         
     | 
| 
      
 753 
     | 
    
         
            +
                                    <thumbnail>$$Tgoogle_thumbnail</thumbnail>
         
     | 
| 
      
 754 
     | 
    
         
            +
                                    <openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
         
     | 
| 
      
 755 
     | 
    
         
            +
                                    <linktoholdings>$$Taleph_holdings</linktoholdings>
         
     | 
| 
      
 756 
     | 
    
         
            +
                                    <linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
         
     | 
| 
      
 757 
     | 
    
         
            +
                                  </links>
         
     | 
| 
      
 758 
     | 
    
         
            +
                                  <search>
         
     | 
| 
      
 759 
     | 
    
         
            +
                                    <creatorcontrib>Graham,  Greene  1904-1991.</creatorcontrib>
         
     | 
| 
      
 760 
     | 
    
         
            +
                                    <creatorcontrib>Greene, Graham, 1904-1991.</creatorcontrib>
         
     | 
| 
      
 761 
     | 
    
         
            +
                                    <creatorcontrib>Greene, G</creatorcontrib>
         
     | 
| 
      
 762 
     | 
    
         
            +
                                    <creatorcontrib>by Graham Greene.</creatorcontrib>
         
     | 
| 
      
 763 
     | 
    
         
            +
                                    <creatorcontrib>Grīns, G. (Greiems), 1904-1991</creatorcontrib>
         
     | 
| 
      
 764 
     | 
    
         
            +
                                    <creatorcontrib>Grīns, Greiems, 1904-1991</creatorcontrib>
         
     | 
| 
      
 765 
     | 
    
         
            +
                                    <creatorcontrib>Greene, Henry Graham, 1904-1991</creatorcontrib>
         
     | 
| 
      
 766 
     | 
    
         
            +
                                    <creatorcontrib>Gŭrin, Gŭreŏm, 1904-1991</creatorcontrib>
         
     | 
| 
      
 767 
     | 
    
         
            +
                                    <creatorcontrib>Grin, Greham, 1904-1991</creatorcontrib>
         
     | 
| 
      
 768 
     | 
    
         
            +
                                    <creatorcontrib>Grīna, Grāhama, 1904-1991</creatorcontrib>
         
     | 
| 
      
 769 
     | 
    
         
            +
                                    <creatorcontrib>Grin, Grėm, 1904-1991</creatorcontrib>
         
     | 
| 
      
 770 
     | 
    
         
            +
                                    <creatorcontrib>格拉姆・葛林, 1904-1991</creatorcontrib>
         
     | 
| 
      
 771 
     | 
    
         
            +
                                    <title>Travels with my aunt : a novel /</title>
         
     | 
| 
      
 772 
     | 
    
         
            +
                                    <subject>British  Foreign countries Fiction</subject>
         
     | 
| 
      
 773 
     | 
    
         
            +
                                    <subject>Women travelers  Fiction</subject>
         
     | 
| 
      
 774 
     | 
    
         
            +
                                    <subject>Older women  Fiction</subject>
         
     | 
| 
      
 775 
     | 
    
         
            +
                                    <subject>Travelers  Fiction</subject>
         
     | 
| 
      
 776 
     | 
    
         
            +
                                    <subject>Retirees  Fiction</subject>
         
     | 
| 
      
 777 
     | 
    
         
            +
                                    <subject>Aunts  Fiction</subject>
         
     | 
| 
      
 778 
     | 
    
         
            +
                                    <subject>Humorous stories</subject>
         
     | 
| 
      
 779 
     | 
    
         
            +
                                    <subject>Britishers</subject>
         
     | 
| 
      
 780 
     | 
    
         
            +
                                    <subject>British people</subject>
         
     | 
| 
      
 781 
     | 
    
         
            +
                                    <subject>Britons (British)</subject>
         
     | 
| 
      
 782 
     | 
    
         
            +
                                    <subject>Brits</subject>
         
     | 
| 
      
 783 
     | 
    
         
            +
                                    <subject>Travelers, Women</subject>
         
     | 
| 
      
 784 
     | 
    
         
            +
                                    <subject>Aged women</subject>
         
     | 
| 
      
 785 
     | 
    
         
            +
                                    <subject>People, Retired</subject>
         
     | 
| 
      
 786 
     | 
    
         
            +
                                    <subject>Retired persons</subject>
         
     | 
| 
      
 787 
     | 
    
         
            +
                                    <subject>Retired people</subject>
         
     | 
| 
      
 788 
     | 
    
         
            +
                                    <general>Viking Press,</general>
         
     | 
| 
      
 789 
     | 
    
         
            +
                                    <sourceid>nyu_aleph</sourceid>
         
     | 
| 
      
 790 
     | 
    
         
            +
                                    <recordid>nyu_aleph002212958</recordid>
         
     | 
| 
      
 791 
     | 
    
         
            +
                                    <rsrctype>book</rsrctype>
         
     | 
| 
      
 792 
     | 
    
         
            +
                                    <creationdate>1970</creationdate>
         
     | 
| 
      
 793 
     | 
    
         
            +
                                    <creationdate>1969</creationdate>
         
     | 
| 
      
 794 
     | 
    
         
            +
                                    <searchscope>BFALE</searchscope>
         
     | 
| 
      
 795 
     | 
    
         
            +
                                    <searchscope>BFALE Fales</searchscope>
         
     | 
| 
      
 796 
     | 
    
         
            +
                                    <searchscope>BOBST</searchscope>
         
     | 
| 
      
 797 
     | 
    
         
            +
                                    <searchscope>BOBST Main Collection</searchscope>
         
     | 
| 
      
 798 
     | 
    
         
            +
                                    <searchscope>CU</searchscope>
         
     | 
| 
      
 799 
     | 
    
         
            +
                                    <searchscope>CU Main Collection</searchscope>
         
     | 
| 
      
 800 
     | 
    
         
            +
                                    <searchscope>nyu_aleph</searchscope>
         
     | 
| 
      
 801 
     | 
    
         
            +
                                    <searchscope>NYU</searchscope>
         
     | 
| 
      
 802 
     | 
    
         
            +
                                    <searchscope>CGEN</searchscope>
         
     | 
| 
      
 803 
     | 
    
         
            +
                                    <scope>BFALE</scope>
         
     | 
| 
      
 804 
     | 
    
         
            +
                                    <scope>BFALE Fales</scope>
         
     | 
| 
      
 805 
     | 
    
         
            +
                                    <scope>BOBST</scope>
         
     | 
| 
      
 806 
     | 
    
         
            +
                                    <scope>BOBST Main Collection</scope>
         
     | 
| 
      
 807 
     | 
    
         
            +
                                    <scope>CU</scope>
         
     | 
| 
      
 808 
     | 
    
         
            +
                                    <scope>CU Main Collection</scope>
         
     | 
| 
      
 809 
     | 
    
         
            +
                                    <scope>nyu_aleph</scope>
         
     | 
| 
      
 810 
     | 
    
         
            +
                                    <scope>NYU</scope>
         
     | 
| 
      
 811 
     | 
    
         
            +
                                    <scope>CGEN</scope>
         
     | 
| 
      
 812 
     | 
    
         
            +
                                    <lsr01>PR6013.R44 T7 1970</lsr01>
         
     | 
| 
      
 813 
     | 
    
         
            +
                                    <lsr01>PR6013 .R44 T7 1970</lsr01>
         
     | 
| 
      
 814 
     | 
    
         
            +
                                    <lsr01>Brit</lsr01>
         
     | 
| 
      
 815 
     | 
    
         
            +
                                    <lsr02>Viking Press,</lsr02>
         
     | 
| 
      
 816 
     | 
    
         
            +
                                  </search>
         
     | 
| 
      
 817 
     | 
    
         
            +
                                  <sort>
         
     | 
| 
      
 818 
     | 
    
         
            +
                                    <title>Travels with my aunt : a novel /</title>
         
     | 
| 
      
 819 
     | 
    
         
            +
                                    <creationdate>1970</creationdate>
         
     | 
| 
      
 820 
     | 
    
         
            +
                                    <author>Greene, Graham, 1904-1991.</author>
         
     | 
| 
      
 821 
     | 
    
         
            +
                                    <lso01>1970</lso01>
         
     | 
| 
      
 822 
     | 
    
         
            +
                                  </sort>
         
     | 
| 
      
 823 
     | 
    
         
            +
                                  <facets>
         
     | 
| 
      
 824 
     | 
    
         
            +
                                    <language>eng</language>
         
     | 
| 
      
 825 
     | 
    
         
            +
                                    <creationdate>1970</creationdate>
         
     | 
| 
      
 826 
     | 
    
         
            +
                                    <topic>British–Foreign countries–Fiction</topic>
         
     | 
| 
      
 827 
     | 
    
         
            +
                                    <topic>Women travelers–Fiction</topic>
         
     | 
| 
      
 828 
     | 
    
         
            +
                                    <topic>Older women–Fiction</topic>
         
     | 
| 
      
 829 
     | 
    
         
            +
                                    <topic>Travelers–Fiction</topic>
         
     | 
| 
      
 830 
     | 
    
         
            +
                                    <topic>Retirees–Fiction</topic>
         
     | 
| 
      
 831 
     | 
    
         
            +
                                    <topic>Aunts–Fiction</topic>
         
     | 
| 
      
 832 
     | 
    
         
            +
                                    <collection>BOBST</collection>
         
     | 
| 
      
 833 
     | 
    
         
            +
                                    <collection>CU</collection>
         
     | 
| 
      
 834 
     | 
    
         
            +
                                    <toplevel>available</toplevel>
         
     | 
| 
      
 835 
     | 
    
         
            +
                                    <prefilter>books</prefilter>
         
     | 
| 
      
 836 
     | 
    
         
            +
                                    <rsrctype>books</rsrctype>
         
     | 
| 
      
 837 
     | 
    
         
            +
                                    <creatorcontrib>Greene, G</creatorcontrib>
         
     | 
| 
      
 838 
     | 
    
         
            +
                                    <genre>Fiction</genre>
         
     | 
| 
      
 839 
     | 
    
         
            +
                                    <genre>Humorous stories</genre>
         
     | 
| 
      
 840 
     | 
    
         
            +
                                    <library>BFALE</library>
         
     | 
| 
      
 841 
     | 
    
         
            +
                                    <library>BOBST</library>
         
     | 
| 
      
 842 
     | 
    
         
            +
                                    <library>CGEN</library>
         
     | 
| 
      
 843 
     | 
    
         
            +
                                    <lfc01>Fales</lfc01>
         
     | 
| 
      
 844 
     | 
    
         
            +
                                    <lfc01>Main Collection</lfc01>
         
     | 
| 
      
 845 
     | 
    
         
            +
                                    <classificationlcc>P - Language and literature.–Fiction and juvenile belles lettres–Fiction in English</classificationlcc>
         
     | 
| 
      
 846 
     | 
    
         
            +
                                    <classificationlcc>P - Language and literature.–English literature</classificationlcc>
         
     | 
| 
      
 847 
     | 
    
         
            +
                                    <frbrgroupid>50511627</frbrgroupid>
         
     | 
| 
      
 848 
     | 
    
         
            +
                                    <frbrtype>5</frbrtype>
         
     | 
| 
      
 849 
     | 
    
         
            +
                                  </facets>
         
     | 
| 
      
 850 
     | 
    
         
            +
                                  <dedup>
         
     | 
| 
      
 851 
     | 
    
         
            +
                                    <t>99</t>
         
     | 
| 
      
 852 
     | 
    
         
            +
                                    <c1>72094848</c1>
         
     | 
| 
      
 853 
     | 
    
         
            +
                                    <c3>travelswithmyauntanovel</c3>
         
     | 
| 
      
 854 
     | 
    
         
            +
                                    <c4>1970</c4>
         
     | 
| 
      
 855 
     | 
    
         
            +
                                    <f1>72094848</f1>
         
     | 
| 
      
 856 
     | 
    
         
            +
                                    <f5>travelswithmyauntanovel</f5>
         
     | 
| 
      
 857 
     | 
    
         
            +
                                    <f6>1970</f6>
         
     | 
| 
      
 858 
     | 
    
         
            +
                                    <f7>travels with my aunt a novel</f7>
         
     | 
| 
      
 859 
     | 
    
         
            +
                                    <f8>nyu</f8>
         
     | 
| 
      
 860 
     | 
    
         
            +
                                    <f9>244 p. ;</f9>
         
     | 
| 
      
 861 
     | 
    
         
            +
                                    <f10>viking press</f10>
         
     | 
| 
      
 862 
     | 
    
         
            +
                                    <f11>greene graham 1904 1991</f11>
         
     | 
| 
      
 863 
     | 
    
         
            +
                                  </dedup>
         
     | 
| 
      
 864 
     | 
    
         
            +
                                  <frbr>
         
     | 
| 
      
 865 
     | 
    
         
            +
                                    <t>1</t>
         
     | 
| 
      
 866 
     | 
    
         
            +
                                    <k1>$$Kgreene graham 1904 1991$$AA</k1>
         
     | 
| 
      
 867 
     | 
    
         
            +
                                    <k3>$$Kbooktravels with my aunt a novel$$AT</k3>
         
     | 
| 
      
 868 
     | 
    
         
            +
                                  </frbr>
         
     | 
| 
      
 869 
     | 
    
         
            +
                                  <delivery>
         
     | 
| 
      
 870 
     | 
    
         
            +
                                    <institution>NYU</institution>
         
     | 
| 
      
 871 
     | 
    
         
            +
                                    <institution>CU</institution>
         
     | 
| 
      
 872 
     | 
    
         
            +
                                    <delcategory>Physical Item</delcategory>
         
     | 
| 
      
 873 
     | 
    
         
            +
                                  </delivery>
         
     | 
| 
      
 874 
     | 
    
         
            +
                                  <enrichment>
         
     | 
| 
      
 875 
     | 
    
         
            +
                                    <classificationlcc>PZ3.G8319</classificationlcc>
         
     | 
| 
      
 876 
     | 
    
         
            +
                                    <classificationlcc>PR6013.R44</classificationlcc>
         
     | 
| 
      
 877 
     | 
    
         
            +
                                  </enrichment>
         
     | 
| 
      
 878 
     | 
    
         
            +
                                  <ranking>
         
     | 
| 
      
 879 
     | 
    
         
            +
                                    <booster1>1</booster1>
         
     | 
| 
      
 880 
     | 
    
         
            +
                                    <booster2>1</booster2>
         
     | 
| 
      
 881 
     | 
    
         
            +
                                  </ranking>
         
     | 
| 
      
 882 
     | 
    
         
            +
                                  <addata>
         
     | 
| 
      
 883 
     | 
    
         
            +
                                    <aulast>Greene</aulast>
         
     | 
| 
      
 884 
     | 
    
         
            +
                                    <aufirst>Graham,</aufirst>
         
     | 
| 
      
 885 
     | 
    
         
            +
                                    <au>Greene, Graham, 1904-1991</au>
         
     | 
| 
      
 886 
     | 
    
         
            +
                                    <btitle>Travels with my aunt : a novel</btitle>
         
     | 
| 
      
 887 
     | 
    
         
            +
                                    <date>1970</date>
         
     | 
| 
      
 888 
     | 
    
         
            +
                                    <risdate>1970, c1969.</risdate>
         
     | 
| 
      
 889 
     | 
    
         
            +
                                    <format>book</format>
         
     | 
| 
      
 890 
     | 
    
         
            +
                                    <genre>book</genre>
         
     | 
| 
      
 891 
     | 
    
         
            +
                                    <ristype>BOOK</ristype>
         
     | 
| 
      
 892 
     | 
    
         
            +
                                    <cop>New York</cop>
         
     | 
| 
      
 893 
     | 
    
         
            +
                                    <pub>Viking Press</pub>
         
     | 
| 
      
 894 
     | 
    
         
            +
                                    <lad01>BOBSTCUBFALE</lad01>
         
     | 
| 
      
 895 
     | 
    
         
            +
                                    <lad01>Physical Item</lad01>
         
     | 
| 
      
 896 
     | 
    
         
            +
                                    <lccn>72094848</lccn>
         
     | 
| 
      
 897 
     | 
    
         
            +
                                  </addata>
         
     | 
| 
      
 898 
     | 
    
         
            +
                                </record>
         
     | 
| 
      
 899 
     | 
    
         
            +
                              </PrimoNMBib>
         
     | 
| 
      
 900 
     | 
    
         
            +
                              <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=000570570" GetIt2="https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph000570570&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;rft.genre=video&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;rft.aulast=Cukor&amp;rft.aufirst=George%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=MGM/UA%20Home%20Video&amp;rft.place=Santa%20Monica%2C%20CA&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=079282783X&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000570570&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000570570&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
         
     | 
| 
      
 901 
     | 
    
         
            +
                              <LIBRARIES>
         
     | 
| 
      
 902 
     | 
    
         
            +
                                <LIBRARY>
         
     | 
| 
      
 903 
     | 
    
         
            +
                                  <institution>NYU</institution>
         
     | 
| 
      
 904 
     | 
    
         
            +
                                  <library>BOBST</library>
         
     | 
| 
      
 905 
     | 
    
         
            +
                                  <status>unavailable</status>
         
     | 
| 
      
 906 
     | 
    
         
            +
                                  <collection>Main Collection</collection>
         
     | 
| 
      
 907 
     | 
    
         
            +
                                  <callNumber>(PR6013.R44 T7 1970 )</callNumber>
         
     | 
| 
      
 908 
     | 
    
         
            +
                                  <url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=002212958</url>
         
     | 
| 
      
 909 
     | 
    
         
            +
                                </LIBRARY>
         
     | 
| 
      
 910 
     | 
    
         
            +
                              </LIBRARIES>
         
     | 
| 
      
 911 
     | 
    
         
            +
                              <LIBRARIES>
         
     | 
| 
      
 912 
     | 
    
         
            +
                                <LIBRARY>
         
     | 
| 
      
 913 
     | 
    
         
            +
                                  <institution>NYU</institution>
         
     | 
| 
      
 914 
     | 
    
         
            +
                                  <library>BFALE</library>
         
     | 
| 
      
 915 
     | 
    
         
            +
                                  <status>available</status>
         
     | 
| 
      
 916 
     | 
    
         
            +
                                  <collection>Fales</collection>
         
     | 
| 
      
 917 
     | 
    
         
            +
                                  <callNumber>(Brit Non-circulating )</callNumber>
         
     | 
| 
      
 918 
     | 
    
         
            +
                                  <url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=002212958</url>
         
     | 
| 
      
 919 
     | 
    
         
            +
                                </LIBRARY>
         
     | 
| 
      
 920 
     | 
    
         
            +
                                <LIBRARY>
         
     | 
| 
      
 921 
     | 
    
         
            +
                                  <institution>CU</institution>
         
     | 
| 
      
 922 
     | 
    
         
            +
                                  <library>CU</library>
         
     | 
| 
      
 923 
     | 
    
         
            +
                                  <status>available</status>
         
     | 
| 
      
 924 
     | 
    
         
            +
                                  <collection>Main Collection</collection>
         
     | 
| 
      
 925 
     | 
    
         
            +
                                  <callNumber>(PR6013.R44 T7 1970 )</callNumber>
         
     | 
| 
      
 926 
     | 
    
         
            +
                                  <url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=002212958</url>
         
     | 
| 
      
 927 
     | 
    
         
            +
                                </LIBRARY>
         
     | 
| 
      
 928 
     | 
    
         
            +
                              </LIBRARIES>
         
     | 
| 
      
 929 
     | 
    
         
            +
                              <LINKS>
         
     | 
| 
      
 930 
     | 
    
         
            +
                                <openurl><![CDATA[https://qa.getit.library.nyu.edu/resolve?umlaut.institution=CU&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-09-25T10%3A52%3A07IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph002212958&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt%20:%20a%20novel&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Viking%20Press&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph002212958&rft.eisbn=&rft_dat=<nyu_aleph>002212958</nyu_aleph>&rft_id=info:oai/]]></openurl>
         
     | 
| 
      
 931 
     | 
    
         
            +
                                <backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=002212958</backlink>
         
     | 
| 
      
 932 
     | 
    
         
            +
                                <thumbnail>http://images.amazon.com/images/P/.01._SSTHUM_.jpg</thumbnail>
         
     | 
| 
      
 933 
     | 
    
         
            +
                                <openurlfulltext><![CDATA[https://qa.getit.library.nyu.edu/resolve?umlaut.institution=CU&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-09-25T10%3A52%3A07IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph002212958&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt%20:%20a%20novel&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Viking%20Press&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>002212958</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
         
     | 
| 
      
 934 
     | 
    
         
            +
                                <linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=002212958</linktoholdings>
         
     | 
| 
      
 935 
     | 
    
         
            +
                                <linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph002212958?institution=NYU&amp;persistent</linktoreview>
         
     | 
| 
      
 936 
     | 
    
         
            +
                              </LINKS>
         
     | 
| 
      
 937 
     | 
    
         
            +
                            </DOC>
         
     | 
| 
      
 938 
     | 
    
         
            +
                          </DOCSET>
         
     | 
| 
      
 939 
     | 
    
         
            +
                        </RESULT>
         
     | 
| 
      
 940 
     | 
    
         
            +
                        <searchToken>0</searchToken>
         
     | 
| 
      
 941 
     | 
    
         
            +
                      </JAGROOT>
         
     | 
| 
      
 942 
     | 
    
         
            +
                    </SEGMENTS></searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>
         
     | 
| 
      
 943 
     | 
    
         
            +
                http_version:
         
     | 
| 
      
 944 
     | 
    
         
            +
              recorded_at: Wed, 25 Sep 2013 14:52:07 GMT
         
     | 
| 
      
 945 
     | 
    
         
            +
            recorded_with: VCR 2.5.0
         
     |