comparison lisp/url/url-gw.el @ 57612:2954cb243379

Update header and footer.
author Lars Hansen <larsh@soem.dk>
date Tue, 19 Oct 2004 21:36:56 +0000
parents 9f80571c6c3e
children 462b0b8865f7
comparison
equal deleted inserted replaced
57611:61dd8eea5548 57612:2954cb243379
1 ;;; url-gw.el --- Gateway munging for URL loading 1 ;;; url-gw.el --- Gateway munging for URL loading
2
3 ;; Copyright (c) 1997, 1998, 2004 Free Software Foundation, Inc.
4
2 ;; Author: Bill Perry <wmperry@gnu.org> 5 ;; Author: Bill Perry <wmperry@gnu.org>
3 ;; Keywords: comm, data, processes 6 ;; Keywords: comm, data, processes
4 7
5 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 8 ;; This file is part of GNU Emacs.
6 ;;; Copyright (c) 1997, 1998, 2004 Free Software Foundation, Inc. 9
7 ;;; 10 ;; GNU Emacs is free software; you can redistribute it and/or modify
8 ;;; This file is part of GNU Emacs. 11 ;; it under the terms of the GNU General Public License as published by
9 ;;; 12 ;; the Free Software Foundation; either version 2, or (at your option)
10 ;;; GNU Emacs is free software; you can redistribute it and/or modify 13 ;; any later version.
11 ;;; it under the terms of the GNU General Public License as published by 14
12 ;;; the Free Software Foundation; either version 2, or (at your option) 15 ;; GNU Emacs is distributed in the hope that it will be useful,
13 ;;; any later version. 16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;;; 17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 ;;; GNU Emacs is distributed in the hope that it will be useful, 18 ;; GNU General Public License for more details.
16 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of 19
17 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 20 ;; You should have received a copy of the GNU General Public License
18 ;;; GNU General Public License for more details. 21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
19 ;;; 22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 ;;; You should have received a copy of the GNU General Public License 23 ;; Boston, MA 02111-1307, USA.
21 ;;; along with GNU Emacs; see the file COPYING. If not, write to the 24
22 ;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, 25 ;;; Code:
23 ;;; Boston, MA 02111-1307, USA. 26
24 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25 (eval-when-compile (require 'cl)) 27 (eval-when-compile (require 'cl))
26 (require 'url-vars) 28 (require 'url-vars)
27 29
28 ;; Fixme: support SSH explicitly or via a url-gateway-rlogin-program? 30 ;; Fixme: support SSH explicitly or via a url-gateway-rlogin-program?
29 31
264 conn))) 266 conn)))
265 267
266 (provide 'url-gw) 268 (provide 'url-gw)
267 269
268 ;;; arch-tag: 1c4c0317-6d03-45b8-b3f3-838bd8f9d838 270 ;;; arch-tag: 1c4c0317-6d03-45b8-b3f3-838bd8f9d838
271 ;;; url-gw.el ends here