aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLudovic Court`es2006-07-19 12:28:34 +0000
committerLudovic Court`es2006-07-19 12:28:34 +0000
commit11c3af991c91a6c5cb571bfd38ed71ddc0a05b10 (patch)
tree4d6713707de43da7ad612d9994d89356120a5815 /src
parent64f27ff556ad7aab2838a9f4a323fae7fed38ecc (diff)
downloadskribilo-11c3af991c91a6c5cb571bfd38ed71ddc0a05b10.tar.gz
skribilo-11c3af991c91a6c5cb571bfd38ed71ddc0a05b10.tar.lz
skribilo-11c3af991c91a6c5cb571bfd38ed71ddc0a05b10.zip
Fixed abbreviations and author names handling.
* src/guile/skribilo/biblio/abbrev.scm: Fixed module dependencies. (abbreviate-markup): New. Use `markup-body-set!' if needed. (%cs-conference-abbreviations): New. (%ordinal-number-abbreviations): New. (%common-booktitle-abbreviations): New. * src/guile/skribilo/biblio/author.scm: Fixed module dependencies. git-archimport-id: lcourtes@laas.fr--2005-libre/skribilo--devo--1.2--patch-14
Diffstat (limited to 'src')
-rw-r--r--src/guile/skribilo/biblio/abbrev.scm87
-rw-r--r--src/guile/skribilo/biblio/author.scm4
2 files changed, 84 insertions, 7 deletions
diff --git a/src/guile/skribilo/biblio/abbrev.scm b/src/guile/skribilo/biblio/abbrev.scm
index 7b477d1..1e88e82 100644
--- a/src/guile/skribilo/biblio/abbrev.scm
+++ b/src/guile/skribilo/biblio/abbrev.scm
@@ -20,14 +20,22 @@
(define-module (skribilo biblio abbrev)
:use-module (srfi srfi-13)
- :autoload (ice-9 regex) (regexp-substitute/global)
- :export (is-abbreviation? is-acronym? abbreviate-word))
+ :autoload (skribilo ast) (markup? markup-body-set!)
+ :autoload (skribilo runtime) (make-string-replace)
+ :autoload (ice-9 regex) (regexp-substitute/global)
+ :export (is-abbreviation? is-acronym? abbreviate-word
+ abbreviate-string abbreviate-markup
+
+ %cs-conference-abbreviations
+ %ordinal-number-abbreviations
+ %common-booktitle-abbreviations))
;;; Author: Ludovic Courtès
;;;
;;; Commentary:
;;;
-;;; Heuristics to identify or generate abbreviations.
+;;; Heuristics to identify or generate abbreviations. This module
+;;; particularly targets booktitle abbreviations (in bibliography entries).
;;;
;;; Code:
@@ -56,9 +64,9 @@
(define (abbreviate-string subst title)
;; Abbreviate common conference names within TITLE based on the SUBST list
- ;; of regexp-substitution pairs. This function also removes the
- ;; abbreviation if it appears in parentheses right after the substitution
- ;; regexp. Example:
+ ;; of regexp-substitution pairs (see examples below). This function also
+ ;; removes the abbreviation if it appears in parentheses right after the
+ ;; substitution regexp. Example:
;;
;; "Symposium on Operating Systems Principles (SOSP 2004)"
;;
@@ -77,6 +85,73 @@
'pre abbr 'post)
(cdr subst))))))
+(define (abbreviate-markup subst markup)
+ ;; A version of `abbreviate-string' generalized to arbitrary markup
+ ;; objects.
+ (let loop ((markup markup))
+ (cond ((string? markup)
+ (let ((purify (make-string-replace '((#\newline " ")
+ (#\tab " ")))))
+ (abbreviate-string subst (purify markup))))
+ ((list? markup)
+ (map loop markup))
+ ((markup? markup)
+ (markup-body-set! markup (loop (markup-body title)))
+ markup)
+ (else markup))))
+
+
+;;;
+;;; Common English abbreviations.
+;;;
+
+;; The following abbreviation alists may be passed to `abbreviate-string'
+;; and `abbreviate-markup'.
+
+(define %cs-conference-abbreviations
+ ;; Common computer science conferences and their acronym.
+ '(("(Symposium [oO]n )?Operating Systems? Design and [iI]mplementation"
+ . "OSDI")
+ ("(Symposium [oO]n )?Operating Systems? Principles"
+ . "SOSP")
+ ("([wW]orkshop [oO]n )?Hot Topics [iI]n Operating Systems"
+ . "HotOS")
+ ("([cC]onference [oO]n )?[fF]ile [aA]nd [sS]torage [tT]echnologies"
+ . "FAST")
+ ("([tT]he )?([iI]nternational )?[cC]onference [oO]n [aA]rchitectural Support [fF]or Programming Languages [aA]nd Operating Systems"
+ . "ASPLOS")
+ ("([tT]he )?([iI]nternational )?[cC]onference [oO]n Peer-[tT]o-[pP]eer Computing"
+ . "P2P")
+ ("([iI]nternational )?[cC]onference [oO]n [dD]ata [eE]ngineering"
+ . "ICDE")
+ ("([cC]onference [oOn]) [mM]ass [sS]torage [sS]ystems( [aA]nd [tT]echnologies)?"
+ . "MSS")))
+
+
+(define %ordinal-number-abbreviations
+ ;; The poor man's abbreviation system.
+ ;; FIXME: This doesn't work with things like "twenty-first"!
+ '(("[Ff]irst" . "1st")
+ ("[sS]econd" . "2nd")
+ ("[Tt]hird" . "3rd")
+ ("[Ff]ourth" . "4th")
+ ("[Ff]ifth" . "5th")
+ ("[Ss]ixth" . "6th")
+ ("[Ss]eventh" . "7th")
+ ("[eE]ighth" . "8th")
+ ("[Nn]inth" . "9th")
+ ("[Tt]enth" . "10th")
+ ("[Ee]leventh" . "11th")
+ ("[Tt]welfth" . "12th")))
+
+(define %common-booktitle-abbreviations
+ ;; Common book title abbreviations. This is used by
+ ;; `abbreviate-booktitle'.
+ '(("[pP]roceedings?" . "Proc.")
+ ("[iI]nternational" . "Int.")
+ ("[sS]ymposium" . "Symp.")
+ ("[cC]onference" . "Conf.")))
+
;;; arch-tag: 34e0c5bb-592f-467b-b59a-d6f7d130ae4e
diff --git a/src/guile/skribilo/biblio/author.scm b/src/guile/skribilo/biblio/author.scm
index c2b3e6d..43269ab 100644
--- a/src/guile/skribilo/biblio/author.scm
+++ b/src/guile/skribilo/biblio/author.scm
@@ -22,7 +22,9 @@
:use-module (srfi srfi-13)
:use-module (srfi srfi-14)
:use-module (skribilo biblio abbrev)
- :autoload (skribilo utils compat) (skribe-error)
+ :autoload (skribilo ast) (markup-option markup-body markup-ident)
+ :autoload (skribilo lib) (skribe-error)
+ :autoload (skribilo runtime) (make-string-replace)
:export (comma-separated->author-list
comma-separated->and-separated-authors