Class: ItuBib::ItuBibliography

Inherits:
Object
  • Object
show all
Defined in:
lib/itubib/itu_bibliography.rb

Overview

Class methods for search ISO standards.

Class Method Summary collapse

Class Method Details

.get(code, year = nil, opts = {}) ⇒ String

Returns Relaton XML serialisation of reference.

Parameters:

  • code (String)

    the ISO standard Code to look up (e..g “ISO 9000”)

  • year (String) (defaults to: nil)

    the year the standard was published (optional)

  • opts (Hash) (defaults to: {})

    options; restricted to :all_parts if all-parts reference is required

Returns:

  • (String)

    Relaton XML serialisation of reference



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/itubib/itu_bibliography.rb', line 27

def get(code, year = nil, opts = {})
  if year.nil?
    /^(?<code1>[^\s]+\s[^\s]+)\s\(\d{2}\/(?<year1>\d+)\)$/ =~ code
    unless code1.nil?
      code = code1
      year = year1
    end
  end

  code += '-1' if opts[:all_parts]
  ret = itubib_get1(code, year, opts)
  return nil if ret.nil?
  ret.to_most_recent_reference unless year || opts[:keep_year]
  ret.to_all_parts if opts[:all_parts]
  ret
end

.search(text, year = nil) ⇒ ItuBib::HitCollection

Parameters:

  • text (String)

Returns:



14
15
16
17
18
19
20
21
# File 'lib/itubib/itu_bibliography.rb', line 14

def search(text, year = nil)
  begin
    HitCollection.new text, year
  rescue
    warn "Could not access http://www.itu.int"
    []
  end
end