-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRefText.py
161 lines (144 loc) · 5.05 KB
/
RefText.py
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
"""
RefText Macro
Generate the pretty printed output from the BIB database
for a given key.
@copyright: 2011 Jason L. Wright <[email protected]>
@license: BSD
"""
from MoinMoin import config
import xml.dom.minidom
import os
from subprocess import Popen, PIPE
bib2xml = None
bibfile = None
Dependencies = ["time"]
def execute(macro, args):
request = macro.request
formatter = macro.formatter
if not hasattr(request, 'refbibtex_bibdb'):
request.refbibtex_bibdb = {}
load_bibdb(request)
return printDocument(request, formatter, request.refbibtex_bibdb, args)
def getText(nodelist):
rc = []
for node in nodelist:
if node.nodeType == node.TEXT_NODE:
rc.append(node.data)
return ''.join(rc)
def load_bibdb(request):
bibdb = request.refbibtex_bibdb
global bib2xml,bibfile
if bib2xml == None:
if hasattr(request.cfg, 'refbibtex_bib2xml'):
bib2xml = request.cfg.refbibtex_bib2xml
else:
bib2xml = path_search('bib2xml')
if bibfile == None:
if hasattr(request.cfg, 'refbibtex_bibfile'):
bibfile = request.cfg.refbibtex_bibfile
else:
bibfile = os.path.join(request.cfg.data_dir, 'db.bib')
pipe = Popen(['bib2xml', bibfile], executable=bib2xml,
stdout=PIPE, stderr=PIPE)
sout = pipe.stdout.read()
serr = pipe.stderr.read()
rv = pipe.wait()
# XXX handle error
dom = xml.dom.minidom.parseString(sout)
for ent in dom.getElementsByTagName("bibtex:entry"):
id = ent.getAttribute('id')
bibdb[id] = {}
for ip in ent.childNodes:
if ip.nodeType == ip.ELEMENT_NODE:
bibdb[id][u'documentclass'] = ip.localName
for attr in ip.childNodes:
if attr.nodeType == ip.ELEMENT_NODE:
name = attr.localName
value = getText(attr.childNodes)
bibdb[id][name] = value
def printDocument(req, formatter, bibdb, key):
if not bibdb.has_key(key):
return 'bibkey(%s): not found' % (key)
doc = bibdb[key]
if not doc.has_key('documentclass'):
return 'bibkey(%s): missing documentclass' % (key)
try:
fun = eval("print_doc_%s" % doc['documentclass'])
except NameError:
return 'bibkey(%s): no parser for documentclass: %s' % (
key, doc['documentclass'])
return fun(req, formatter, key, doc)
def simple_if(doc, key, res):
if doc.has_key(key):
res.append(', %s' % (doc[key]))
def print_doc_article(req, formatter, key, doc):
res = []
res.append('%s' % (doc['author']))
res.append(', "%s"' % (doc['title']))
res.append(", ''%s''" % (doc['journal']))
if doc.has_key('volume'):
res.append(', %s' % (doc['volume']))
if doc.has_key('number'):
res.append('(%s)' % (doc['number']))
simple_if(doc, 'month', res)
res.append(', %s' % (doc['year']))
if doc.has_key('pages'):
res.append(', pp. %s' % (doc['pages']))
if doc.has_key('note'):
res.append(', <i>%s</i>' % (doc['note']))
if doc.has_key('doi'):
res.append(', [[http://dx.doi.org/%s|DOI]]' % doc['doi'])
res.append('.')
return ''.join(res)
def print_doc_inproceedings(req, formatter, key, doc):
res = []
res.append('%s' % (doc['author']))
res.append(', "%s"' % (doc['title']))
res.append(', in<i>%s</i>' % (doc['booktitle']))
if doc.has_key('editor'):
res.append(', Ed. %s' % (doc['editor']))
simple_if(doc, 'series', res)
simple_if(doc, 'month', res)
res.append(', %s' % (doc['year']))
simple_if(doc, 'organization', res)
simple_if(doc, 'publisher', res)
simple_if(doc, 'address', res)
if doc.has_key('pages'):
res.append(', pp. %s' % (doc['pages']))
if doc.has_key('note'):
res.append(', <i>%s</i>' % (doc['note']))
return ''.join(res)
def print_doc_book(req, formatter, key, doc):
res = []
if doc.has_key('author'):
res.append('%s' % (doc['author']))
res.append(', %s' % (doc['title']))
if doc.has_key('editor'):
res.append(', Ed. %s' % (doc['editor']))
else:
res.append('%s (Ed.)' % (doc['editor']))
res.append(', %s' % (doc['title']))
if doc.has_key('edition'):
res.append(', %s Edition' % (doc['edition']))
simple_if(doc, 'series', res)
res.append(', %s' % (doc['publisher']))
simple_if(doc, 'address', res)
simple_if(doc, 'month', res)
res.append(', %s' % (doc['year']))
if doc.has_key('note'):
res.append(', <i>%s</i>' % (doc['note']))
return ''.join(res)
if __name__ == "__main__":
bibdb = {}
load_bibdb('foo.xml', bibdb)
for i in bibdb.keys():
print '%s' % (i)
print '%s' % (printDocument(bibdb, i))
def path_search(fname):
path = os.getenv('PATH')
if path == None:
return None
for i in path.split(os.pathsep):
if os.access(os.path.join(i, 'bib2xml'), os.X_OK):
return os.path.join(i, 'bib2xml')
return None