annotate lisp/hyperbole/hsys-www.el @ 110:fe104dbd9147 r20-1b7

Import from CVS: tag r20-1b7
author cvs
date Mon, 13 Aug 2007 09:19:45 +0200
parents 376386a54a3c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;!emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; FILE: hsys-www.el
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; SUMMARY: Hyperbole support for old CERN command line WWW browsing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; USAGE: GNU Emacs Lisp Library
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; KEYWORDS: comm, help, hypermedia
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; AUTHOR: Bob Weiner
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; ORG: Brown U.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; ORIG-DATE: 12-Oct-91 at 03:48:23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; LAST-MOD: 14-Apr-95 at 16:09:23 by Bob Weiner
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; This file is part of Hyperbole.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; Available for use and distribution under the same terms as GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; Copyright (C) 1991-1995, Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; Developed with support from Motorola Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;; DESCRIPTION:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; You must first build the www line mode browser executable before you can
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; use this system encapsulation. The browser MUST be configured so that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;; the final part of its prompt is a line beginning with "==> " without a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 ;; trailing newline, like so:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;; <ref.number>, Back, Quit, or Help.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; ==>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; Then, a Hyperbole button should be created that has 'hwww:start' as its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;; action type. It may optionally contain a file name argument as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; the initial file to display. When selected, it starts a 'www'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;; process and displays the initial file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; The 'hwww:link-follow' implicit button type is then used when the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;; user clicks inside the buffer containing the 'www' output. It
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; passes commands to the 'hwww:link-follow' action type.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;; DESCRIP-END.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 ;;; Other required Elisp libraries
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 ;;; Requires external 'www' executable available via anonymous ftp
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 ;;; from info.cern.ch.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 ;;; Public variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (defib hwww:link-follow ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 "When in a www buffer, returns a link follow or history recall command."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (let* ((www (get-buffer-process (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (www-proc-nm (and www (process-name www)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (selection)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (act (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (lambda (&optional prefix)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (setq selection
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (buffer-substring (match-beginning 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 (match-end 1)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (ibut:label-set selection (match-beginning 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (match-end 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (hact 'hwww:link-follow (concat prefix selection))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (if (and www-proc-nm (equal (string-match "www" www-proc-nm) 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (cond (;; Hyper ref
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (skip-chars-backward "^ \t\n")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (looking-at "[^][ \t\n]*\\[\\([0-9]+\\)\\]"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (funcall act))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (;; History list entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (looking-at "[ \t]*\\([0-9]+\\)\)[ \t]+[^ \t\n]"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (funcall act "recall "))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (;; Hyper ref list
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (looking-at "[ \t]*\\[\\([0-9]+\\)\\][ \t]+[^ \t\n]"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (funcall act ))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (defact hwww:link-follow (link-num-str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 "Follows a link given by LINK-NUM-STR or displays a www history list."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (interactive "sNumber of WWW link to follow: ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (or (stringp link-num-str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (error "(hwww:link-follow): Link number must be given as a string."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (let ((www (get-buffer-process (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 (if www
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (setq buffer-read-only nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (process-send-string www (concat link-num-str "\n"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (error "(hwww:link-follow): No current WWW process. Use 'hwww:start'."))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (defun hwww:link-follow:help (&optional but)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 "Displays history list of www nodes previously visited."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 (hact 'hwww:link-follow "recall"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (defact hwww:start (&optional file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 "Starts a www process and displays optional FILE.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 Without FILE (an empty string), displays default initial www file."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (interactive "FWWW file to start with: ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (or (stringp file)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (error "(hwww:start): FILE argument is not a string."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (let ((www-buf (get-buffer-create "WWW"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (www-proc (get-process "www")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 (set-buffer www-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 (setq buffer-read-only nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (if www-proc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (pop-to-buffer www-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (if (setq www-proc
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (if (or (equal file "") (equal file "\"\""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (start-process "www" www-buf "www" "-p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (start-process "www" www-buf "www" "-p" file)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (progn (set-process-sentinel www-proc 'hwww:sentinel)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (set-process-filter www-proc 'hwww:filter)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (process-kill-without-query www-proc)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (pop-to-buffer www-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (shell-mode)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (make-local-variable 'explicit-shell-file-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (setq explicit-shell-file-name "www")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (use-local-map hwww:mode-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (if hwww:mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (setq hwww:mode-map (copy-keymap shell-mode-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (define-key hwww:mode-map "\C-m" 'hwww:send-input)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (define-key hwww:mode-map " " 'hwww:scroll-up)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (define-key hwww:mode-map "\177" 'hwww:scroll-down)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 )))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 ;;; Private functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (defun hwww:filter (process str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (if (and (> (length str) 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 (equal "==> " (substring str -4)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 (insert str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 (hproperty:but-create (concat "\\([^ \t\n]*\\[[0-9]+\\]\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 "^[ \t]*\\[\\([0-9]+\\)\\][ \t]+[^ \t\n]+\\|"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 "^[ ]+[0-9]+\).*\\)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 'regexp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (insert str)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (defun hwww:scroll-up (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 "If on last line of buffer, insert space, else scroll up a page."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (if (last-line-p) (insert " ") (scroll-up arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (defun hwww:scroll-down (&optional arg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 "If on last line of buffer, delete char backwards, else scroll down a page."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (interactive "P")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (if (last-line-p) (backward-delete-char-untabify (or arg 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (scroll-down arg)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (defun hwww:send-input ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (cond ((eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (let ((www (get-buffer-process (current-buffer))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (if www
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 ;; Exclude the shell prompt, if any.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (re-search-forward shell-prompt-pattern
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (save-excursion (end-of-line) (point))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (let ((cmd (concat (buffer-substring (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (progn (forward-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (point)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 "\n")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 (process-send-string www cmd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 (error "(hwww:link-follow): No current WWW process. Use 'hwww:start'."))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 ((ibut:at-p) (hui:hbut-act))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (t (end-of-buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (defun hwww:sentinel (process signal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (princ
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 (format "Process: %s received the msg: %s" process signal))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 (or (string-match "killed" signal)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 (pop-to-buffer (process-buffer process))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 ;;; Private variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 ;;; ************************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (defvar hwww:mode-map nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (provide 'hsys-www)