annotate lisp/packages/refbib.el @ 0:376386a54a3c r19-14

Import from CVS: tag r19-14
author cvs
date Mon, 13 Aug 2007 08:45:50 +0200
parents
children ac2d302a0011
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; refbib.el --- convert refer-style references to ones usable by Latex bib
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;; Keywords: bib, tex
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Copyright (C) 1989 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; along with XEmacs; see the file COPYING. If not, write to the Free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;;; Synched up with: Very close to FSF 19.28 but not synched.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;; Use: from a buffer containing the refer-style bibliography,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;; M-x r2b-convert-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;; Program will prompt for an output buffer name, and will log
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;; warnings during the conversion process in the buffer *Log*.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ; HISTORY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ; 9/88, created
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ; modified 1/19/89, allow books with editor but no author;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ; added %O ordering field;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ; appended illegal multiple fields, instead of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ; discarding;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ; added rule, a tech report whose %R number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ; contains "ISBN" is really a book
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ; added rule, anything with an editor is a book
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ; or a proceedings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ; added 'manual type, for items with institution
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ; but no author or editor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 ; fixed bug so trailing blanks are trimmed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ; added 'proceedings type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ; used "organization" field for proceedings
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ; modified 2/16/89, updated help messages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 ; modified 2/23/89, include capitalize stop words in r2b stop words,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ; fixed problems with contractions (e.g. it's),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ; caught multiple stop words in a row
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 ; modified 3/1/89, fixed capitialize-title for first words all caps
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ; modified 3/15/89, allow use of " to delimit fields
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ; modified 4/18/89, properly "quote" special characters on output
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (provide 'refer-to-bibtex)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 ;**********************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 ; User Parameters
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (defvar r2b-trace-on nil "*trace conversion")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (defvar r2b-journal-abbrevs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 " Abbreviation list for journal names.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 If the car of an element matches a journal name exactly, it is replaced by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 the cadr when output. Braces must be included if replacement is a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 {string}, but not if replacement is a bibtex abbreviation. The cadr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 may be eliminated if is exactly the same as the car.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 Because titles are capitalized before matching, the abbreviation
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 for the journal name should be listed as beginning with a capital
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 letter, even if it really doesn't.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 For example, a value of '((\"Aij\" \"{Artificial Intelligence}\")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (\"Ijcai81\" \"ijcai7\")) would expand Aij to the text string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 \"Artificial Intelligence\", but would replace Ijcai81 with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 BibTeX macro \"ijcai7\".")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (defvar r2b-booktitle-abbrevs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 " Abbreviation list for book and proceedings names. If the car of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 an element matches a title or booktitle exactly, it is replaced by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 the cadr when output. Braces must be included if replacement is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 a {string}, but not if replacement is a bibtex abbreviation. The cadr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 may be eliminated if is exactly the same as the car.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 Because titles are capitalized before matching, the abbreviated title
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 should be listed as beginning with a capital letter, even if it doesn't.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 For example, a value of '((\"Aij\" \"{Artificial Intelligence}\")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (\"Ijcai81\" \"ijcai7\")) would expand Aij to the text string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 \"Artificial Intelligence\", but would replace Ijcai81 with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 BibTeX macro \"ijcai7\".")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (defvar r2b-proceedings-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 '()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 " Assoc list of books or journals which are really conference proceedings,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 but whose name and whose abbrev expansion (as defined in r2b-journal-abbrevs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 and r2b-booktitle-abbrevs) does not contain the words 'conference' or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 'proceedings'. (Those cases are handled automatically.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 The entry must match the given data exactly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 Because titles are capitalized before matching, the items in this list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 should begin with a capital letter.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 For example, suppose the title \"Ijcai81\" is used for the proceedings of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 a conference, and it's expansion is the BibTeX macro \"ijcai7\". Then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 r2b-proceedings-list should be '((\"Ijcai81\") ...). If instead its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 expansion were \"Proceedings of the Seventh International Conference
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 on Artificial Intelligence\", then you would NOT need to include Ijcai81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 in r2b-proceedings-list (although it wouldn't cause an error).")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (defvar r2b-additional-stop-words
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 "Some\\|What"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 "Words other than the capitialize-title-stop-words
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 which are not to be used to build the citation key")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (defvar r2b-delimit-with-quote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 "*If true, then use \" to delimit fields, otherwise use braces")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 ;**********************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 ; Utility Functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (defvar capitalize-title-stop-words
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 "the\\|and\\|of\\|is\\|a\\|an\\|of\\|for\\|in\\|to\\|in\\|on\\|at\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 "by\\|with\\|that\\|its")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 "Words not to be capitialized in a title (unless they are the first
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 word in the title)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (defvar capitalize-title-stop-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (concat "\\(" capitalize-title-stop-words "\\)\\(\\b\\|'\\)"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (defun capitalize-title-region (begin end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 "Like capitalize-region, but don't capitalize stop words, except the first"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (interactive "r")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (let ((case-fold-search nil) (orig-syntax-table (syntax-table)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (save-restriction
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (set-syntax-table text-mode-syntax-table)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (narrow-to-region begin end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (if (looking-at "[A-Z][a-z]*[A-Z]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (forward-word 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (capitalize-word 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (while (re-search-forward "\\<" nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (if (looking-at "[A-Z][a-z]*[A-Z]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (forward-word 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (if (let ((case-fold-search t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (looking-at capitalize-title-stop-regexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (downcase-word 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (capitalize-word 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (set-syntax-table orig-syntax-table))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 (defun capitalize-title (s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 "Like capitalize, but don't capitalize stop words, except the first"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (set-buffer (get-buffer-create "$$$Scratch$$$"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (insert s)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (capitalize-title-region (point-min) (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (buffer-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 ;*********************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (defun r2b-reset ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 "unbind defvars, for debugging"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (makunbound 'r2b-journal-abbrevs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (makunbound 'r2b-booktitle-abbrevs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (makunbound 'r2b-proceedings-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (makunbound 'capitalize-title-stop-words)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (makunbound 'capitalize-title-stop-regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (makunbound 'r2b-additional-stop-words)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (makunbound 'r2b-stop-regexp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (defvar r2b-stop-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (concat "\\`\\(\\("
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 r2b-additional-stop-words "\\|" capitalize-title-stop-words
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 "\\)\\('\\w*\\)?\\W+\\)*\\([A-Z0-9]+\\)"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (defun r2b-trace (&rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (if r2b-trace-on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (apply (function message) args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (defun r2b-match (exp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 "returns string matched in current buffer"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (buffer-substring (match-beginning exp) (match-end exp)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (defvar r2b-out-buf-name "*Out*" "*output from refer-to-bibtex" )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (defvar r2b-log-name "*Log*" "*logs errors from refer-to-bibtex" )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (defvar r2b-in-buf nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (defvar r2b-out-buf nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (defvar r2b-log nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (defvar r2b-error-found nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (setq r2b-variables '(
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 r2b-error-found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 r2bv-author
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 r2bv-primary-author
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 r2bv-date
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 r2bv-year
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 r2bv-decade
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 r2bv-month
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 r2bv-title
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 r2bv-title-first-word
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 r2bv-editor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 r2bv-annote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 r2bv-tr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 r2bv-address
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 r2bv-institution
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 r2bv-keywords
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 r2bv-booktitle
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 r2bv-journal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 r2bv-volume
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 r2bv-number
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 r2bv-pages
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 r2bv-booktitle
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 r2bv-kn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 r2bv-publisher
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 r2bv-organization
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 r2bv-school
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 r2bv-type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 r2bv-where
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 r2bv-note
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 r2bv-ordering
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (defun r2b-clear-variables ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 "set all global vars used by r2b to nil"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (let ((vars r2b-variables))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (while vars
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 (set (car vars) nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 (setq vars (cdr vars)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (defun r2b-warning (&rest args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (setq r2b-error-found t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (princ (apply (function format) args) r2b-log)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (princ "\n" r2b-log)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (princ "\n" r2b-out-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (princ "% " r2b-out-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (princ (apply (function format) args) r2b-out-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (defun r2b-get-field (var field &optional unique required capitalize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 "Set VAR to string value of FIELD, if any. If none, VAR is set to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 nil. If multiple fields appear, then separate values with the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 '\\nand\\t\\t', unless UNIQUE is non-nil, in which case log a warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 and just concatenate the values. Trim off leading blanks and tabs on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 first line, and trailing blanks and tabs of every line. Log a warning
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 and set VAR to the empty string if REQUIRED is true. Capitalize as a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 title if CAPITALIZE is true. Returns value of VAR."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (let (item val (not-past-end t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 (r2b-trace "snarfing %s" field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 (while (and not-past-end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 (re-search-forward
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 (concat "^" field "\\b[ \t]*\\(.*[^ \t\n]\\)[ \t]*") nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 (setq item (r2b-match 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 (while (and (setq not-past-end (zerop (forward-line 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (not (looking-at "[ \t]*$\\|%")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (looking-at "\\(.*[^ \t\n]\\)[ \t]*$")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 (setq item (concat item "\n" (r2b-match 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (if (null val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (setq val item)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (if unique
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 (r2b-warning "*Illegal multiple field %s %s" field item)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (setq val (concat val "\n" item))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (setq val (concat val "\n\t\tand " item))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (if (and val capitalize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 (setq val (capitalize-title val)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 (set var val)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (if (and (null val) required)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 (r2b-require var))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (defun r2b-set-match (var n regexp string )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 "set VAR to the Nth subpattern in REGEXP matched by STRING, or nil if none"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (set var
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (if (and (stringp string) (string-match regexp string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 (substring string (match-beginning n) (match-end n))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (defvar r2b-month-abbrevs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 '(("jan") ("feb") ("mar") ("apr") ("may") ("jun") ("jul") ("aug")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 ("sep") ("oct") ("nov") ("dec")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (defun r2b-convert-month ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 "Try to convert r2bv-month to a standard 3 letter name"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 (if r2bv-month
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (let ((months r2b-month-abbrevs))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 (if (string-match "[^0-9]" r2bv-month)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (while (and months (not (string-match (car (car months))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 r2bv-month)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (setq months (cdr months)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (if months
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (setq r2bv-month (car (car months)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (setq months (car (read-from-string r2bv-month)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (if (and (numberp months)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (> months 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (< months 13))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (setq r2bv-month (car (nth months r2b-month-abbrevs)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (r2b-warning "* Ridiculous month")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (setq r2bv-month nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (defun r2b-snarf-input ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 "parse buffer into global variables"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 (let ((case-fold-search t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 (r2b-trace "snarfing...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 (set-buffer r2b-in-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (princ " " r2b-log)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (princ (buffer-substring (point) (progn (end-of-line) (point))) r2b-log)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (terpri r2b-log)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (r2b-get-field 'r2bv-author "%A")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (r2b-get-field 'r2bv-editor "%E")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 (r2bv-author
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 (r2b-set-match 'r2bv-primary-author 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 "\\b\\(\\w+\\)[ \t]*\\($\\|,\\)" r2bv-author)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (r2bv-editor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (r2b-set-match 'r2bv-primary-author 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 "\\b\\(\\w+\\)[ \t]*\\($\\|,\\)" r2bv-editor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 (setq r2bv-primary-author "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (r2b-get-field 'r2bv-date "%D" t t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (r2b-set-match 'r2bv-year 0 "[12][0-9][0-9][0-9]" r2bv-date)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 (and (null r2bv-year)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (r2b-set-match 'r2bv-year 1 "[^0-9]\\([0-9][0-9]\\)$" r2bv-date)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (setq r2bv-year (concat "19" r2bv-year)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (r2b-set-match 'r2bv-decade 1 "..\\(..\\)" r2bv-year)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (r2b-set-match 'r2bv-month 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 "[0-9]+/\\|[a-zA-Z]+" r2bv-date)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 (if (and (stringp r2bv-month) (string-match "\\(.*\\)/$" r2bv-month))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (setq r2bv-month (substring r2bv-month 0 (match-end 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (r2b-convert-month)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (r2b-get-field 'r2bv-title "%T" t t t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (r2b-set-match 'r2bv-title-first-word 4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 r2b-stop-regexp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 r2bv-title)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (r2b-get-field 'r2bv-annote "%X" t )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (r2b-get-field 'r2bv-tr "%R" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 (r2b-get-field 'r2bv-address "%C" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 (r2b-get-field 'r2bv-institution "%I" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (r2b-get-field 'r2bv-keywords "%K")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (r2b-get-field 'r2bv-booktitle "%B" t nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 (r2b-get-field 'r2bv-journal "%J" t nil t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 (r2b-get-field 'r2bv-volume "%V" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (r2b-get-field 'r2bv-number "%N" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (r2b-get-field 'r2bv-pages "%P" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (r2b-get-field 'r2bv-where "%W" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (r2b-get-field 'r2bv-ordering "%O" t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (defun r2b-put-field (field data &optional abbrevs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 "print bibtex FIELD = {DATA} if DATA not null; precede
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 with a comma and newline; if ABBREVS list is given, then
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 try to replace the {DATA} with an abbreviation"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 (if data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 (let (match nodelim multi-line index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 ((and abbrevs (setq match (assoc data abbrevs)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 (if (null (cdr match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 (setq data (car match))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 (setq data (car (cdr match))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 (setq nodelim t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 ((and (not (equal data ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 (not (string-match "[^0-9]" data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 (setq nodelim t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 (setq index 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 (while (string-match "[\\~^]" data index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 (setq data (concat (substring data 0 (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 "\\verb+"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 (substring data (match-beginning 0) (match-end 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 "+"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 (substring data (match-end 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 (setq index (+ (match-end 0) 7)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 (setq index 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 (while (string-match "[$&%#_{}]" data index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 (setq data (concat (substring data 0 (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 "\\"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 (substring data (match-beginning 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 (setq index (+ (match-end 0) 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 (setq index 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 (if r2b-delimit-with-quote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 (while (string-match "\"" data index)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 (setq data (concat (substring data 0 (match-beginning 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 "{\"}"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 (substring data (match-end 0))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 (setq index (+ (match-end 0) 2))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 (princ ", \n ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 (princ field)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 (princ " =\t")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 (if (not nodelim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 (if r2b-delimit-with-quote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 (princ "\"")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 (princ "{")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 (string-match ".*" data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 (if (> (match-end 0) 59)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 (princ "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 (princ data)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 (if (not nodelim)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 (if r2b-delimit-with-quote
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 (princ "\"")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 (princ "}")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 (defun r2b-require (vars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 "If any of VARS is null, set to empty string and log error"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 ((null vars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 ((listp vars) (r2b-require (car vars)) (r2b-require (cdr vars)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 (if (null (symbol-value vars))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 (r2b-warning "*Missing value for field %s" vars)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 (set vars "")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 (defmacro r2b-moveq (new old)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455 "set NEW to OLD and set OLD to nil"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 (list 'progn (list 'setq new old) (list 'setq old 'nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 (defun r2b-isa-proceedings (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 "return t if NAME is the name of proceedings"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 (string-match "proceedings\\|conference" name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 (assoc name r2b-proceedings-list)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 (let ((match (assoc name r2b-booktitle-abbrevs)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 (and match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 (string-match "proceedings\\|conference" (car (cdr match)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 )))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 (defun r2b-isa-university (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 "return t if NAME is a university or similar organization,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 but not a publisher"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 (and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 name
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 (string-match "university" name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 (not (string-match "press" name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480 (defun r2b-barf-output ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 "generate bibtex based on global variables"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 (let ((standard-output r2b-out-buf) (case-fold-search t) match)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 (r2b-trace "...barfing")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 (sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 (set-buffer r2b-out-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 (setq r2bv-kn (concat r2bv-primary-author r2bv-decade
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489 r2bv-title-first-word))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 (setq r2bv-entry-kind
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 ((r2b-isa-proceedings r2bv-journal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 (r2b-moveq r2bv-booktitle r2bv-journal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495 (if (r2b-isa-university r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 (r2b-moveq r2bv-organization r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 (r2b-moveq r2bv-publisher r2bv-institution))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498 (r2b-moveq r2bv-note r2bv-tr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 (r2b-require 'r2bv-author)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 'inproceedings)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 ((r2b-isa-proceedings r2bv-booktitle)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 (if (r2b-isa-university r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 (r2b-moveq r2bv-organization r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 (r2b-moveq r2bv-publisher r2bv-institution))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 (r2b-moveq r2bv-note r2bv-tr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 (r2b-require 'r2bv-author)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 'inproceedings)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 ((and r2bv-tr (string-match "phd" r2bv-tr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 (r2b-moveq r2bv-school r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 (r2b-require 'r2bv-school )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 (r2b-require 'r2bv-author)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 'phdthesis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513 ((and r2bv-tr (string-match "master" r2bv-tr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 (r2b-moveq r2bv-school r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 (r2b-require 'r2bv-school )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 (r2b-require 'r2bv-author)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 'mastersthesis)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 ((and r2bv-tr (string-match "draft\\|unpublish" r2bv-tr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519 (r2b-moveq r2bv-note r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 (r2b-require 'r2bv-author)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 'unpublished)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 (r2bv-journal
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 (r2b-require 'r2bv-author)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 'article)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 (r2bv-booktitle
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 (r2b-moveq r2bv-publisher r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 (r2b-moveq r2bv-note r2bv-tr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 (r2b-require 'r2bv-publisher)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 (r2b-require 'r2bv-author)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 'incollection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 ((and r2bv-author
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 (null r2bv-editor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 (string-match "\\`personal communication\\'" r2bv-title))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 'misc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 ((r2b-isa-proceedings r2bv-title)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 (if (r2b-isa-university r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 (r2b-moveq r2bv-organization r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 (r2b-moveq r2bv-publisher r2bv-institution))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 (r2b-moveq r2bv-note r2bv-tr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 'proceedings)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 ((or r2bv-editor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 (and r2bv-author
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 (or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 (null r2bv-tr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 (string-match "\\bisbn\\b" r2bv-tr))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 (r2b-moveq r2bv-publisher r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 (r2b-moveq r2bv-note r2bv-tr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 (r2b-require 'r2bv-publisher)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 (if (null r2bv-editor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 (r2b-require 'r2bv-author))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 'book)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 (r2bv-tr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 (r2b-require 'r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 (if (string-match
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 "\\`\\(\\(.\\|\n\\)+\\)[ \t\n]+\\([^ \t\n]\\)+\\'"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 r2bv-tr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 (setq r2bv-type (substring r2bv-tr 0 (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 (setq r2bv-number (substring r2bv-tr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 (match-beginning 3)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 (setq r2bv-tr nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 (r2b-moveq r2bv-number r2bv-tr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 (r2b-require 'r2bv-author)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 'techreport)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 (r2bv-institution
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 (r2b-moveq r2bv-organization r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567 'manual)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 'misc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572 (r2b-require '( r2bv-year))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 (if r2b-error-found
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 (princ "\n% Warning -- Errors During Conversion Next Entry\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577 (princ "\n@")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 (princ r2bv-entry-kind)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579 (princ "( ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 (princ r2bv-kn)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 (r2b-put-field "author" r2bv-author )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 (r2b-put-field "title" r2bv-title r2b-booktitle-abbrevs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 (r2b-put-field "year" r2bv-year )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 (r2b-put-field "month" r2bv-month r2b-month-abbrevs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 (r2b-put-field "journal" r2bv-journal r2b-journal-abbrevs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 (r2b-put-field "volume" r2bv-volume)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 (r2b-put-field "type" r2bv-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 (r2b-put-field "number" r2bv-number)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 (r2b-put-field "booktitle" r2bv-booktitle r2b-booktitle-abbrevs)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 (r2b-put-field "editor" r2bv-editor)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 (r2b-put-field "publisher" r2bv-publisher)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 (r2b-put-field "institution" r2bv-institution)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 (r2b-put-field "organization" r2bv-organization)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 (r2b-put-field "school" r2bv-school)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 (r2b-put-field "pages" r2bv-pages)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 (r2b-put-field "address" r2bv-address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 (r2b-put-field "note" r2bv-note)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 (r2b-put-field "keywords" r2bv-keywords)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 (r2b-put-field "where" r2bv-where)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 (r2b-put-field "ordering" r2bv-ordering)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 (r2b-put-field "annote" r2bv-annote)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 (princ " )\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 (defun r2b-convert-record (output-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 "transform current bib entry and append to buffer OUTPUT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 do M-x r2b-help for more info"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 (list (read-string "Output to buffer: " r2b-out-buf-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 (let (rec-end rec-begin not-done)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 (setq r2b-out-buf-name output-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 (setq r2b-out-buf (get-buffer-create output-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 (setq r2b-in-buf (current-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 (set-buffer r2b-out-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 (setq r2b-log (get-buffer-create r2b-log-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 (set-buffer r2b-log)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 (set-buffer r2b-in-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 (setq not-done (re-search-forward "[^ \t\n]" nil t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 (if not-done
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 (re-search-backward "^[ \t]*$" nil 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 (re-search-forward "^%")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 (beginning-of-line nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 (setq rec-begin (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 (re-search-forward "^[ \t]*$" nil 2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 (setq rec-end (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 (narrow-to-region rec-begin rec-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 (r2b-clear-variables)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 (r2b-snarf-input)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 (r2b-barf-output)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 (set-buffer r2b-in-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 (goto-char rec-end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 (defun r2b-convert-buffer (output-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 "transform current buffer and append to buffer OUTPUT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649 do M-x r2b-help for more info"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 (interactive
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 (list (read-string "Output to buffer: " r2b-out-buf-name)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 (setq r2b-log (get-buffer-create r2b-log-name))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654 (set-buffer r2b-log)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 (erase-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 (message "Working, please be patient...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659 (sit-for 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 (while (r2b-convert-record output-name) t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 (message "Done, results in %s, errors in %s"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 r2b-out-buf-name r2b-log-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 (defvar r2b-load-quietly nil "*Don't print help message when loaded")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 (defvar r2b-help-message
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668 " Refer to Bibtex Bibliography Conversion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 A refer-style database is of the form:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 %A Joe Blow
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673 %T Great Thoughts I've Thought
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 %D 1977
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675 etc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 This utility converts these kind of databases to bibtex form, for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 users of TeX and LaTex. Instructions:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 1. Visit the file containing the refer-style database.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680 2. The command
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 M-x r2b-convert-buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 converts the entire buffer, appending it's output by default in a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 buffer named *Out*, and logging progress and errors in a buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 named *Log*. The original file is never modified.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685 Note that results are appended to *Out*, so if that buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 buffer already exists and contains material you don't want to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 save, you should kill it first.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 3. Switch to the buffer *Out* and save it as a named file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 4. To convert a single refer-style entry, simply position the cursor
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690 at the entry and enter
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 M-x r2b-convert-record
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692 Again output is appended to *Out* and errors are logged in *Log*.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 This utility is very robust and pretty smart about determining the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 type of the entry. It includes facilities for expanding refer macros
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 to text, or substituting bibtex macros. Do M-x describe-variable on
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 r2b-journal-abbrevs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 r2b-booktitle-abbrevs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 r2b-proceedings-list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 for information on these features.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 If you don't want to see this help message when you load this utility,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 then include the following line in your .emacs file:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 (setq r2b-load-quietly t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705 To see this message again, perform
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 M-x r2b-help")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709 (defun r2b-help ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 "print help message"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 (with-output-to-temp-buffer "*Help*"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 (princ r2b-help-message)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 (if (not r2b-load-quietly)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 (r2b-help))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 (message "r2b loaded")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719