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

Update header and footer.
author Lars Hansen <larsh@soem.dk>
date Tue, 19 Oct 2004 21:36:56 +0000
parents 01934125951e
children a8fa7c632ee4 ae7fab96922c
comparison
equal deleted inserted replaced
57611:61dd8eea5548 57612:2954cb243379
1 ;;; url-cache.el --- Uniform Resource Locator retrieval tool 1 ;;; url-cache.el --- Uniform Resource Locator retrieval tool
2
3 ;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc.
4
2 ;; Keywords: comm, data, processes, hypermedia 5 ;; Keywords: comm, data, processes, hypermedia
3 6
4 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 7 ;; This file is part of GNU Emacs.
5 ;;; Copyright (c) 1996 - 1999 Free Software Foundation, Inc. 8
6 ;;; 9 ;; GNU Emacs is free software; you can redistribute it and/or modify
7 ;;; This file is part of GNU Emacs. 10 ;; it under the terms of the GNU General Public License as published by
8 ;;; 11 ;; the Free Software Foundation; either version 2, or (at your option)
9 ;;; GNU Emacs is free software; you can redistribute it and/or modify 12 ;; any later version.
10 ;;; it under the terms of the GNU General Public License as published by 13
11 ;;; the Free Software Foundation; either version 2, or (at your option) 14 ;; GNU Emacs is distributed in the hope that it will be useful,
12 ;;; any later version. 15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ;;; 16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 ;;; GNU Emacs is distributed in the hope that it will be useful, 17 ;; GNU General Public License for more details.
15 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of 18
16 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 ;; You should have received a copy of the GNU General Public License
17 ;;; GNU General Public License for more details. 20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
18 ;;; 21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 ;;; You should have received a copy of the GNU General Public License 22 ;; Boston, MA 02111-1307, USA.
20 ;;; along with GNU Emacs; see the file COPYING. If not, write to the 23
21 ;;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, 24 ;;; Code:
22 ;;; Boston, MA 02111-1307, USA. 25
23 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
24 (require 'url-parse) 26 (require 'url-parse)
25 (require 'url-util) 27 (require 'url-util)
26 28
27 (defcustom url-cache-directory 29 (defcustom url-cache-directory
28 (expand-file-name "cache" url-configuration-directory) 30 (expand-file-name "cache" url-configuration-directory)
198 (t nil)))) 200 (t nil))))
199 201
200 (provide 'url-cache) 202 (provide 'url-cache)
201 203
202 ;;; arch-tag: 95b050a6-8e81-4f23-8e63-191b9d1d657c 204 ;;; arch-tag: 95b050a6-8e81-4f23-8e63-191b9d1d657c
205 ;;; url-cache.el ends here