]> code.delx.au - gnu-emacs/blobdiff - lisp/calendar/cal-julian.el
Merge from trunk.
[gnu-emacs] / lisp / calendar / cal-julian.el
index abe66a0e950a4f5be09a8c14ab191af2484e3a32..e0f85b36d44a85d0f725cd671ca5081a60c62a2f 100644 (file)
@@ -1,19 +1,19 @@
 ;;; cal-julian.el --- calendar functions for the Julian calendar
 
-;; Copyright (C) 1995, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
-;;   2008  Free Software Foundation, Inc.
+;; Copyright (C) 1995, 1997, 2001-2011  Free Software Foundation, Inc.
 
 ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
 ;; Maintainer: Glenn Morris <rgm@gnu.org>
 ;; Keywords: calendar
 ;; Human-Keywords: Julian calendar, Julian day number, calendar, diary
+;; Package: calendar
 
 ;; This file is part of GNU Emacs.
 
-;; GNU Emacs is free software; you can redistribute it and/or modify
+;; GNU Emacs is free software: you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
-;; the Free Software Foundation; either version 3, or (at your option)
-;; any later version.
+;; the Free Software Foundation, either version 3 of the License, or
+;; (at your option) any later version.
 
 ;; GNU Emacs is distributed in the hope that it will be useful,
 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
 ;; GNU General Public License for more details.
 
 ;; You should have received a copy of the GNU General Public License
-;; along with GNU Emacs; see the file COPYING.  If not, write to the
-;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-;; Boston, MA 02110-1301, USA.
+;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
 
 ;;; Commentary:
 
-;; This collection of functions implements the features of calendar.el and
-;; diary.el that deal with the Julian calendar.
-
-;; Technical details of all the calendrical calculations can be found in
-;; ``Calendrical Calculations: The Millennium Edition'' by Edward M. Reingold
-;; and Nachum Dershowitz, Cambridge University Press (2001).
+;; See calendar.el.
 
 ;;; Code:
 
 (require 'calendar)
 
-(defun calendar-absolute-from-julian (date)
+(defun calendar-julian-to-absolute (date)
   "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE.
 The Gregorian date Sunday, December 31, 1 BC is imaginary."
-  (let ((month (extract-calendar-month date))
-        (year (extract-calendar-year date)))
+  (let ((month (calendar-extract-month date))
+        (year (calendar-extract-year date)))
     (+ (calendar-day-number date)
        (if (and (zerop (% year 100))
                 (not (zerop (% year 400)))
@@ -52,6 +45,9 @@ The Gregorian date Sunday, December 31, 1 BC is imaginary."
        (/ (1- year) 4)
        -2)))
 
+(define-obsolete-function-alias 'calendar-absolute-from-julian
+  'calendar-julian-to-absolute "23.1")
+
 ;;;###cal-autoload
 (defun calendar-julian-from-absolute (date)
   "Compute the Julian (month day year) corresponding to the absolute DATE.
@@ -61,13 +57,13 @@ Gregorian date Sunday, December 31, 1 BC."
          (year                 ; search forward from the approximation
           (+ approx
              (calendar-sum y approx
-                           (>= date (calendar-absolute-from-julian
+                           (>= date (calendar-julian-to-absolute
                                      (list 1 1 (1+ y))))
                            1)))
          (month                         ; search forward from January
           (1+ (calendar-sum m 1
                             (> date
-                               (calendar-absolute-from-julian
+                               (calendar-julian-to-absolute
                                 (list m
                                       (if (and (= m 2) (zerop (% year 4)))
                                           29
@@ -77,7 +73,7 @@ Gregorian date Sunday, December 31, 1 BC."
                                       year)))
                             1)))
          (day                       ; calculate the day by subtraction
-          (- date (1- (calendar-absolute-from-julian (list month 1 year))))))
+          (- date (1- (calendar-julian-to-absolute (list month 1 year))))))
     (list month day year)))
 
 ;;;###cal-autoload
@@ -91,22 +87,25 @@ Driven by the variable `calendar-date-display-form'."
    nil t))
 
 ;;;###cal-autoload
-(defun calendar-print-julian-date ()
+(defun calendar-julian-print-date ()
   "Show the Julian calendar equivalent of the date under the cursor."
   (interactive)
   (message "Julian date: %s"
            (calendar-julian-date-string (calendar-cursor-to-date t))))
 
+(define-obsolete-function-alias 'calendar-print-julian-date
+  'calendar-julian-print-date "23.1")
+
 ;;;###cal-autoload
-(defun calendar-goto-julian-date (date &optional noecho)
+(defun calendar-julian-goto-date (date &optional noecho)
   "Move cursor to Julian DATE; echo Julian date unless NOECHO is non-nil."
   (interactive
    (let* ((today (calendar-current-date))
           (year (calendar-read
                  "Julian calendar year (>0): "
                  (lambda (x) (> x 0))
-                 (int-to-string
-                  (extract-calendar-year
+                 (number-to-string
+                  (calendar-extract-year
                    (calendar-julian-from-absolute
                     (calendar-absolute-from-gregorian
                      today))))))
@@ -130,11 +129,11 @@ Driven by the variable `calendar-date-display-form'."
                        (<= x last))))))
      (list (list month day year))))
   (calendar-goto-date (calendar-gregorian-from-absolute
-                       (calendar-absolute-from-julian date)))
-  (or noecho (calendar-print-julian-date)))
+                       (calendar-julian-to-absolute date)))
+  (or noecho (calendar-julian-print-date)))
 
-(defvar displayed-month)
-(defvar displayed-year)
+(define-obsolete-function-alias 'calendar-goto-julian-date
+  'calendar-julian-goto-date "23.1")
 
 ;;;###holiday-autoload
 (defun holiday-julian (month day string)
@@ -142,33 +141,24 @@ Driven by the variable `calendar-date-display-form'."
 If MONTH, DAY (Julian) is visible, the value returned is corresponding
 Gregorian date in the form of the list (((month day year) STRING)).  Returns
 nil if it is not visible in the current calendar window."
-  (let ((m1 displayed-month)
-        (y1 displayed-year)
-        (m2 displayed-month)
-        (y2 displayed-year)
-        (year))
-    (increment-calendar-month m1 y1 -1)
-    (increment-calendar-month m2 y2 1)
-    (let* ((start-date (calendar-absolute-from-gregorian
-                        (list m1 1 y1)))
-           (end-date (calendar-absolute-from-gregorian
-                      (list m2 (calendar-last-day-of-month m2 y2) y2)))
-           (julian-start (calendar-julian-from-absolute start-date))
-           (julian-end (calendar-julian-from-absolute end-date))
-           (julian-y1 (extract-calendar-year julian-start))
-           (julian-y2 (extract-calendar-year julian-end)))
-      (setq year (if (< 10 month) julian-y1 julian-y2))
-      (let ((date (calendar-gregorian-from-absolute
-                   (calendar-absolute-from-julian
-                    (list month day year)))))
-        (if (calendar-date-is-visible-p date)
-            (list (list date string)))))))
+  (let ((gdate (calendar-nongregorian-visible-p
+                month day 'calendar-julian-to-absolute
+                'calendar-julian-from-absolute
+                ;; In the Gregorian case, we'd use the lower year when
+                ;; month >= 11. In the Julian case, there is an offset
+                ;; of two weeks (ie 1 Nov Greg = 19 Oct Julian). So we
+                ;; use month >= 10, since it can't cause any problems.
+                (lambda (m) (< m 10)))))
+    (if gdate (list (list gdate string)))))
 
 ;;;###cal-autoload
-(defun calendar-absolute-from-astro (d)
+(defun calendar-astro-to-absolute (d)
   "Absolute date of astronomical (Julian) day number D."
   (- d 1721424.5))
 
+(define-obsolete-function-alias 'calendar-absolute-from-astro
+  'calendar-astro-to-absolute "23.1")
+
 ;;;###cal-autoload
 (defun calendar-astro-from-absolute (d)
   "Astronomical (Julian) day number of absolute date D."
@@ -178,21 +168,24 @@ nil if it is not visible in the current calendar window."
 (defun calendar-astro-date-string (&optional date)
   "String of astronomical (Julian) day number after noon UTC of Gregorian DATE.
 Defaults to today's date if DATE is not given."
-  (int-to-string
+  (number-to-string
    (ceiling
     (calendar-astro-from-absolute
      (calendar-absolute-from-gregorian (or date (calendar-current-date)))))))
 
 ;;;###cal-autoload
-(defun calendar-print-astro-day-number ()
+(defun calendar-astro-print-day-number ()
   "Show astronomical (Julian) day number after noon UTC on cursor date."
   (interactive)
   (message
    "Astronomical (Julian) day number (at noon UTC): %s.0"
    (calendar-astro-date-string (calendar-cursor-to-date t))))
 
+(define-obsolete-function-alias 'calendar-print-astro-day-number
+  'calendar-astro-print-day-number "23.1")
+
 ;;;###cal-autoload
-(defun calendar-goto-astro-day-number (daynumber &optional noecho)
+(defun calendar-astro-goto-day-number (daynumber &optional noecho)
   "Move cursor to astronomical (Julian) DAYNUMBER.
 Echo astronomical (Julian) day number unless NOECHO is non-nil."
   (interactive (list (calendar-read
@@ -201,19 +194,21 @@ Echo astronomical (Julian) day number unless NOECHO is non-nil."
   (calendar-goto-date
    (calendar-gregorian-from-absolute
     (floor
-     (calendar-absolute-from-astro daynumber))))
-  (or noecho (calendar-print-astro-day-number)))
+     (calendar-astro-to-absolute daynumber))))
+  (or noecho (calendar-astro-print-day-number)))
 
+(define-obsolete-function-alias 'calendar-goto-astro-day-number
+  'calendar-astro-goto-day-number "23.1")
 
 (defvar date)
 
-;; To be called from list-sexp-diary-entries, where DATE is bound.
+;; To be called from diary-list-sexp-entries, where DATE is bound.
 ;;;###diary-autoload
 (defun diary-julian-date ()
   "Julian calendar equivalent of date diary entry."
   (format "Julian date: %s" (calendar-julian-date-string date)))
 
-;; To be called from list-sexp-diary-entries, where DATE is bound.
+;; To be called from diary-list-sexp-entries, where DATE is bound.
 ;;;###diary-autoload
 (defun diary-astro-day-number ()
   "Astronomical (Julian) day number diary entry."
@@ -222,5 +217,4 @@ Echo astronomical (Julian) day number unless NOECHO is non-nil."
 
 (provide 'cal-julian)
 
-;; arch-tag: 0520acdd-1c60-4188-9aa8-9b8c24d856ae
 ;;; cal-julian.el ends here