Switch to recommended form of GPLv3 permissions notice.
[bpt/emacs.git] / lisp / cdl.el
CommitLineData
1cd7adc6 1;;; cdl.el --- Common Data Language (CDL) utility functions for GNU Emacs
13726a3b 2
e91081eb 3;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005,
409cc4a3 4;; 2006, 2007, 2008 Free Software Foundation, Inc.
13726a3b 5
b0fd5198 6;; Author: ATAE@spva.physics.imperial.ac.uk (Ata Etemadi)
d2a5c764 7;; Maintainer: FSF
b0fd5198
RS
8;; Keywords: data
9
13726a3b
RS
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
13726a3b 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
13726a3b
RS
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
13726a3b 24
55535639
PJ
25;;; Commentary:
26
13726a3b
RS
27;;; Code:
28
29(defun cdl-get-file (filename)
30 "Run file through ncdump and insert result into buffer after point."
31 (interactive "fCDF file: ")
32 (message "ncdump in progress...")
33 (let ((start (point)))
34 (call-process "ncdump" nil t nil (expand-file-name filename))
35 (goto-char start))
36 (message "ncdump in progress...done"))
37
38(defun cdl-put-region (filename start end)
39 "Run region through ncgen and write results into a file."
40 (interactive "FNew CDF file: \nr")
41 (message "ncgen in progress...")
42 (call-process-region start end "ncgen"
43 nil nil nil "-o" (expand-file-name filename))
44 (message "ncgen in progress...done"))
45
896546cd
RS
46(provide 'cdl)
47
cbee283d 48;; arch-tag: b8e95a6e-2387-4077-ad9a-af54b09b8615
1cd7adc6 49;;; cdl.el ends here