This file is indexed.

/usr/lib/python2.7/dist-packages/xapers/sources/doi.py is in xapers 0.7.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import urllib2

description = "Digital Object Identifier"

url = 'https://dx.doi.org/'

# produces URL string when supplied with valid source identifier
url_format = 'https://dx.doi.org/%s'

id_regex = '(10\.\d{4,}[\w\d\:\.\-\/]+)'

# for regex matching a supplied URL.  match group 1 should return the
# source identifier string
url_regex = 'https?://dx.doi.org/(10\.\d{4,}[\w\d\:\.\-\/]+)'

# for regex scanning of document text
#scan_regex = '[doi|DOI][\s\.\:]{0,2}(10\.\d{4}[\d\:\.\-\/a-z]+)[A-Z\s]'
#scan_regex = '\b(10[.][0-9]{4,}(?:[.][0-9]+)*/(?:(?!["&\'<>])[[:graph:]])+)\b'
#scan_regex = '(doi|DOI)(10[.][0-9]{4,}(?:[.][0-9]+)*[\/\.](?:(?!["&\'<>])[[:graph:]])+)'
#scan_regex = '(?:doi|DOI)[\s\.\:]{0,2}(10\.\d{4,}[\w\d\:\.\-\/]+)'
scan_regex = '(?:doi|DOI)[\s\.\:]{0,2}' + id_regex

# function to fetch a bibtex entry for a given source identifier
def fetch_bibtex(id):
    # http://www.crosscite.org/cn/
    url = url_format % id
    req = urllib2.Request(url)
    req.add_header('Accept', 'application/x-bibtex')
    req.add_header('Accept-Charset', 'utf-8')
    f = urllib2.urlopen(req)
    # DECODE the returned byte string to get a unicode string
    bibtex = f.read().decode('utf-8')
    f.close
    return bibtex