1;;; cdl.el --- Common Data Language (CDL) utility functions for GNU Emacs
2
3;; Copyright (C) 1993, 2001, 2002, 2003, 2004, 2005,
4;;   2006, 2007 Free Software Foundation, Inc.
5
6;; Author: ATAE@spva.physics.imperial.ac.uk (Ata Etemadi)
7;; Maintainer: FSF
8;; Keywords: data
9
10;; This file is part of GNU Emacs.
11
12;; GNU Emacs is free software; you can redistribute it and/or modify
13;; it under the terms of the GNU General Public License as published by
14;; the Free Software Foundation; either version 2, or (at your option)
15;; any later version.
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
23;; along with GNU Emacs; see the file COPYING.  If not, write to the
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
26
27;;; Commentary:
28
29;;; Code:
30
31(defun cdl-get-file (filename)
32  "Run file through ncdump and insert result into buffer after point."
33  (interactive "fCDF file: ")
34  (message "ncdump in progress...")
35  (let ((start (point)))
36    (call-process  "ncdump" nil t nil (expand-file-name filename))
37    (goto-char start))
38  (message "ncdump in progress...done"))
39
40(defun cdl-put-region (filename start end)
41  "Run region through ncgen and write results into a file."
42  (interactive "FNew CDF file: \nr")
43  (message "ncgen in progress...")
44  (call-process-region start end "ncgen"
45		       nil nil nil "-o" (expand-file-name filename))
46  (message "ncgen in progress...done"))
47
48(provide 'cdl)
49
50;;; arch-tag: b8e95a6e-2387-4077-ad9a-af54b09b8615
51;;; cdl.el ends here
52