No longer need to patch configure.
[bpt/emacs.git] / lisp / htmlfontify.el
CommitLineData
acca02b0
SM
1;;; htmlfontify.el --- htmlise a buffer/source tree with optional hyperlinks
2
3;; Copyright (C) 2002, 2003, 2009 Free Software Foundation, Inc.
4
5;; Emacs Lisp Archive Entry
6;; Package: htmlfontify
7;; Filename: htmlfontify.el
8;; Version: 0.21
9;; Keywords: html, hypermedia, markup, etags
10;; Author: Vivek Dasmohapatra <vivek@etla.org>
11;; Maintainer: Vivek Dasmohapatra <vivek@etla.org>
12;; Created: 2002-01-05
13;; Description: htmlise a buffer/source tree with optional hyperlinks
14;; URL: http://rtfm.etla.org/emacs/htmlfontify/
15;; Compatibility: Emacs23, Emacs22
16;; Incompatibility: Emacs19, Emacs20, Emacs21
17;; Last Updated: Thu 2009-11-19 01:31:21 +0000
18
19;; This file is part of GNU Emacs.
20
21;; GNU Emacs is free software: you can redistribute it and/or modify
22;; it under the terms of the GNU General Public License as published by
23;; the Free Software Foundation, either version 3 of the License, or
24;; (at your option) any later version.
25
26;; GNU Emacs is distributed in the hope that it will be useful,
27;; but WITHOUT ANY WARRANTY; without even the implied warranty of
28;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29;; GNU General Public License for more details.
30
31;; You should have received a copy of the GNU General Public License
32;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
33
34;;; Commentary:
35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
36;; I have made some changes to make it work for Emacs 22. A lot of
37;; small bug fixes related to the format of text and overlay
38;; properties (which might have changed since the beginning of 2003
39;; when this file was originally written).
40;;
41;; The function `hfy-face-at' currently carries much of the burden of
42;; my lacking understanding of the formats mentioned above and should
43;; need some knowledgeable help.
44;;
45;; Another thing that maybe could be fixed is that overlay background
46;; colors which are now only seen where there is text (in the XHTML
47;; output). A bit of CSS tweaking is necessary there.
48;;
49;; The face 'default has a value :background "SystemWindow" for the
50;; background color. There is no explicit notion that this should be
51;; considered transparent, but I have assumed that it could be handled
52;; like if it was here. (I am unsure that background and foreground
53;; priorities are handled ok, but it looks ok in my tests now.)
54;;
55;; 2007-12-27 Lennart Borgman
56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
57
58;; Here's some elisp code to html-pretty-print an Emacs buffer, preserving
59;; the Emacs syntax/whatever highlighting. It also knows how to drive etags
60;; (exuberant-ctags or Emacs etags) and hyperlink the code according
61;; to its (etags') output.
62
63;; NOTE: Currently the hyperlinking code only knows how to drive GNU find
64;; and the exuberant and GNU variants of etags : I do not know of any other
65;; etags variants, but mechanisms have been provided to allow htmlfontify
66;; to be taught how to drive them. As long as your version of find has
67;; the -path test and is reasonably sane, you should be fine.
68
69;; A sample of the htmlfontified / hyperlinked output of this module can be
70;; found at http://rtfm.etla.org/sql/dbishell/src/ - it's not perfect, but
71;; it's a hell of a lot faster and more thorough than I could hope to be
72;; doing this by hand.
73
74;; some user / horrified onlooker comments:
75;; What? No! There's something deeply wrong here... (R. Shufflebotham)
76;; You're a freak. (D. Silverstone)
77;; Aren't we giving you enough to do? (J. Busuttil)
78;; You're almost as messed up as Lexx is! (N. Graves-Morris)
79
80;;; History:
81;; Changes: moved to changelog (CHANGES) file.
82
83;;; Code:
84(eval-when-compile (require 'cl))
85(require 'faces)
86;; (`facep' `face-attr-construct' `x-color-values' `color-values' `face-name')
87(require 'custom)
88;; (`defgroup' `defcustom')
89(require 'font-lock)
90;; (`font-lock-fontify-region')
91(require 'cus-edit)
92
93(eval-and-compile
94 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
95 ;; I want these - can't be bothered requiring all of cl though.
96 (if (not (fboundp 'caddr))
97 (defun caddr (list)
98 "Return the `car' of the `cddr' of LIST."
99 (car (cddr list))))
100
101 (if (not (fboundp 'cadddr))
102 (defun cadddr (list)
103 "Return the `cadr' of the `cddr' of LIST."
104 (cadr (cddr list))))
105 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
106
107 (autoload
108 'htmlfontify-load-rgb-file
109 "hfy-cmap"
110 "Load an rgb.txt file for colour name -> rgb translation purposes."
111 'interactive)
112
113 (autoload
114 'htmlfontify-unload-rgb-file
115 "hfy-cmap"
116 "Unload the current colour name -> rgb translation map."
117 'interactive)
118
119 (autoload
120 'hfy-fallback-colour-values
121 "hfy-cmap"
122 "Use a fallback method for obtaining the rgb values for a colour."
123 'interactive)
124 )
125
126(defconst htmlfontify-version 0.21)
127
128(defconst hfy-meta-tags
129 (format "<meta name=\"generator\" content=\"emacs %s; htmlfontify %0.2f\" />"
130 emacs-version htmlfontify-version)
131 "The generator meta tag for this version of htmlfontify.")
132
133(defconst htmlfontify-manual "Htmlfontify Manual"
134 "Copy and convert buffers and files to html, adding hyperlinks between files
135\(driven by etags\) if requested.
136\nInteractive functions:
137 `htmlfontify-buffer'
138 `htmlfontify-run-etags'
139 `htmlfontify-copy-and-link-dir'
140 `htmlfontify-load-rgb-file'
141 `htmlfontify-unload-rgb-file'\n
142In order to:\n
143fontify a file you have open: M-x htmlfontify-buffer
144prepare the etags map for a directory: M-x htmlfontify-run-etags
145copy a directory, fontifying as you go: M-x htmlfontify-copy-and-link-dir\n
146The following might be useful when running non-windowed or in batch mode:
147\(note that they shouldn't be necessary - we have a built in map\)\n
148load an X11 style rgb.txt file: M-x htmlfontify-load-rgb-file
149unload the current rgb.txt file: M-x htmlfontify-unload-rgb-file\n
150And here's a programmatic example:\n
151\(defun rtfm-build-page-header \(file style\)
152 \(format \"#define TEMPLATE red+black.html
153#define DEBUG 1
154#include <build/menu-dirlist|>\\n
155html-css-url := /css/red+black.css
156title := rtfm.etla.org \( %s / src/%s \)
157bodytag :=
158head <=STYLESHEET;\\n
159%s
160STYLESHEET
161main-title := rtfm / %s / src/%s\\n
162main-content <=MAIN_CONTENT;\\n\" rtfm-section file style rtfm-section file\)\)
163
164\(defun rtfm-build-page-footer \(file\) \"\\nMAIN_CONTENT\\n\"\)
165
166\(defun rtfm-build-source-docs \(section srcdir destdir\)
167 \(interactive
168 \"s section[eg- emacs / p4-blame]:\\nD source-dir: \\nD output-dir: \"\)
169 \(require 'htmlfontify\)
170 \(hfy-load-tags-cache srcdir\)
171 \(let \(\(hfy-page-header 'rtfm-build-page-header\)
172 \(hfy-page-footer 'rtfm-build-page-footer\)
173 \(rtfm-section section\)
174 \(hfy-index-file \"index\"\)\)
175 \(htmlfontify-run-etags srcdir\)
176 \(htmlfontify-copy-and-link-dir srcdir destdir \".src\" \".html\"\)\)\)")
177
178(defgroup htmlfontify nil
179 "Copy and convert buffers and files to html, adding hyperlinks between
180files \(driven by etags\) if requested.\n
181See: `htmlfontify-manual'"
182 :group 'applications
183 :prefix "hfy-")
184
185(defcustom hfy-page-header 'hfy-default-header
72fe6b25 186 "Function called with two arguments \(the filename relative to the top
acca02b0
SM
187level source directory being etag\'d and fontified), and a string containing
188the <style>...</style> text to embed in the document- the string returned will
189be used as the header for the htmlfontified version of the source file.\n
190See also: `hfy-page-footer'"
191 :group 'htmlfontify
72fe6b25
SM
192 ;; FIXME: Why place such a :tag everywhere? Isn't it imposing your
193 ;; own Custom preference on your users? --Stef
acca02b0
SM
194 :tag "page-header"
195 :type '(function))
196
197(defcustom hfy-split-index nil
72fe6b25 198 "Whether or not to split the index `hfy-index-file' alphabetically
acca02b0
SM
199on the first letter of each tag. Useful when the index would otherwise
200be large and take a long time to render or be difficult to navigate."
201 :group 'htmlfontify
202 :tag "split-index"
203 :type '(boolean))
204
205(defcustom hfy-page-footer 'hfy-default-footer
72fe6b25 206 "As `hfy-page-header', but generates the output footer
acca02b0
SM
207\(and takes only 1 argument, the filename\)."
208 :group 'htmlfontify
209 :tag "page-footer"
210 :type '(function))
211
212(defcustom hfy-extn ".html"
72fe6b25 213 "File extension used for output files."
acca02b0
SM
214 :group 'htmlfontify
215 :tag "extension"
216 :type '(string))
217
218(defcustom hfy-src-doc-link-style "text-decoration: underline;"
72fe6b25 219 "String to add to the \'<style> a\' variant of an htmlfontify css class."
acca02b0
SM
220 :group 'htmlfontify
221 :tag "src-doc-link-style"
222 :type '(string))
223
224(defcustom hfy-src-doc-link-unstyle " text-decoration: none;"
72fe6b25 225 "Regex to remove from the <style> a variant of an htmlfontify css class."
acca02b0
SM
226 :group 'htmlfontify
227 :tag "src-doc-link-unstyle"
228 :type '(string))
229
230(defcustom hfy-link-extn nil
72fe6b25 231 "File extension used for href links - Useful where the htmlfontify
acca02b0
SM
232output files are going to be processed again, with a resulting change
233in file extension. If nil, then any code using this should fall back
234to `hfy-extn'."
235 :group 'htmlfontify
236 :tag "link-extension"
237 :type '(choice string (const nil)))
238
239(defcustom hfy-link-style-fun 'hfy-link-style-string
72fe6b25 240 "Set this to a function, which will be called with one argument
acca02b0
SM
241\(a \"{ foo: bar; ...}\" css style-string\) - it should return a copy of
242its argument, altered so as to make any changes you want made for text which
243is a hyperlink, in addition to being in the class to which that style would
244normally be applied."
245 :group 'htmlfontify
246 :tag "link-style-function"
247 :type '(function))
248
249(defcustom hfy-index-file "hfy-index"
72fe6b25 250 "Name \(sans extension\) of the tag definition index file produced during
acca02b0
SM
251fontification-and-hyperlinking."
252 :group 'htmlfontify
253 :tag "index-file"
254 :type '(string))
255
256(defcustom hfy-instance-file "hfy-instance"
72fe6b25 257 "Name \(sans extension\) of the tag usage index file produced during
acca02b0
SM
258fontification-and-hyperlinking."
259 :group 'htmlfontify
260 :tag "instance-file"
261 :type '(string))
262
263(defcustom hfy-html-quote-regex "\\(<\\|\"\\|&\\|>\\)"
72fe6b25 264 "Regex to match \(with a single back-reference per match\) strings in HTML
acca02b0
SM
265which should be quoted with `hfy-html-quote' \(and `hfy-html-quote-map'\)
266to make them safe."
267 :group 'htmlfontify
268 :tag "html-quote-regex"
269 :type '(regexp))
270
72fe6b25
SM
271(define-obsolete-variable-alias 'hfy-init-kludge-hooks 'hfy-init-kludge-hook
272 "23.2")
273(defcustom hfy-init-kludge-hook '(hfy-kludge-cperl-mode)
274 "List of functions to call when starting htmlfontify-buffer to do any
acca02b0
SM
275kludging necessary to get highlighting modes to bahave as you want, even
276when not running under a window system."
277 :group 'htmlfontify
278 :tag "init-kludge-hooks"
279 :type '(hook))
280
281(defcustom hfy-post-html-hooks nil
72fe6b25 282 "List of functions to call after creating and filling the html buffer.
acca02b0
SM
283These functions will be called with the html buffer as the current buffer"
284 :group 'htmlfontify
285 :tag "post-html-hooks"
286 :options '(set-auto-mode)
287 :type '(hook))
288
289(defcustom hfy-default-face-def nil
72fe6b25 290 "Fallback `defface' specification for the face \'default, used when
acca02b0
SM
291`hfy-display-class' has been set \(the normal htmlfontify way of extracting
292potentially non-current face information doesn\'t necessarily work for
293\'default\).\n
294Example: I customise this to:\n
295\(\(t :background \"black\" :foreground \"white\" :family \"misc-fixed\"\)\)"
296 :group 'htmlfontify
297 :tag "default-face-definition"
298 :type '(alist))
299
300(defcustom hfy-etag-regex (concat ".*"
301 "\x7f" "\\([^\x01\n]+\\)"
302 "\x01" "\\([0-9]+\\)"
303 "," "\\([0-9]+\\)$"
304 "\\|" ".*\x7f[0-9]+,[0-9]+$")
72fe6b25 305 "Regex used to parse an etags entry: must have 3 subexps, corresponding,
acca02b0
SM
306in order, to:\n
307 1 - The tag
308 2 - The line
309 3 - The char \(point\) at which the tag occurs."
310 :group 'htmlfontify
311 :tag "etag-regex"
312 :type '(regexp))
313
314(defcustom hfy-html-quote-map '(("\"" "&quot;")
315 ("<" "&lt;" )
316 ("&" "&amp;" )
317 (">" "&gt;" ))
72fe6b25 318 "Alist of char -> entity mappings used to make the text html-safe."
acca02b0
SM
319 :group 'htmlfontify
320 :tag "html-quote-map"
321 :type '(alist :key-type (string)))
322(eval-and-compile
323 (defconst hfy-e2x-etags-cmd "for src in `find . -type f`;
324do
325 ETAGS=%s;
326 case ${src} in
327 *.ad[absm]|*.[CFHMSacfhlmpsty]|*.def|*.in[cs]|*.s[as]|*.src|*.cc|\\
328 *.hh|*.[chy]++|*.[ch]pp|*.[chy]xx|*.pdb|*.[ch]s|*.[Cc][Oo][Bb]|\\
329 *.[eh]rl|*.f90|*.for|*.java|*.[cem]l|*.clisp|*.lisp|*.[Ll][Ss][Pp]|\\
330 [Mm]akefile*|*.pas|*.[Pp][LlMm]|*.psw|*.lm|*.pc|*.prolog|*.oak|\\
331 *.p[sy]|*.sch|*.scheme|*.[Ss][Cc][Mm]|*.[Ss][Mm]|*.bib|*.cl[os]|\\
332 *.ltx|*.sty|*.TeX|*.tex|*.texi|*.texinfo|*.txi|*.x[bp]m|*.yy|\\
333 *.[Ss][Qq][Ll])
334 ${ETAGS} -o- ${src};
335 ;;
336 *)
337 FTYPE=`file ${src}`;
338 case ${FTYPE} in
339 *script*text*)
340 ${ETAGS} -o- ${src};
341 ;;
342 *text*)
343 SHEBANG=`head -n1 ${src} | grep '#!' -c`;
344 if [ ${SHEBANG} -eq 1 ];
345 then
346 ${ETAGS} -o- ${src};
347 fi;
348 ;;
349 esac;
350 ;;
351 esac;
352done;")
353
354 (defconst hfy-etags-cmd-alist-default
355 `(("emacs etags" . ,hfy-e2x-etags-cmd)
356 ("exuberant ctags" . "%s -R -f -" )))
357
358 (defcustom hfy-etags-cmd-alist
359 hfy-etags-cmd-alist-default
72fe6b25 360 "Alist of possible shell commands that will generate etags output that
acca02b0
SM
361`htmlfontify' can use. \'%s\' will be replaced by `hfy-etags-bin'."
362 :group 'htmlfontify
363 :tag "etags-cmd-alist"
364 :type '(alist :key-type (string) :value-type (string)) ))
365
366(defcustom hfy-etags-bin "etags"
72fe6b25 367 "Location of etags binary (we begin by assuming it\'s in your path).\n
acca02b0
SM
368Note that if etags is not in your path, you will need to alter the shell
369commands in `hfy-etags-cmd-alist'."
370 :group 'htmlfontify
371 :tag "etags-bin"
372 :type '(file))
373
374(defcustom hfy-shell-file-name "/bin/sh"
72fe6b25 375 "Shell (bourne or compatible) to invoke for complex shell operations."
acca02b0
SM
376 :group 'htmlfontify
377 :tag "shell-file-name"
378 :type '(file))
379
380(defun hfy-which-etags ()
381 "Return a string indicating which flavour of etags we are using."
382 (let ((v (shell-command-to-string (concat hfy-etags-bin " --version"))))
383 (cond ((string-match "exube" v) "exuberant ctags")
384 ((string-match "GNU E" v) "emacs etags" )) ))
385
386(defcustom hfy-etags-cmd
387 (eval-and-compile (cdr (assoc (hfy-which-etags) hfy-etags-cmd-alist)))
72fe6b25 388 "The etags equivalent command to run in a source directory to generate a tags
acca02b0
SM
389file for the whole source tree from there on down. The command should emit
390the etags output on stdout.\n
391Two canned commands are provided - they drive Emacs\' etags and
392exuberant-ctags\' etags respectively."
393 :group 'htmlfontify
394 :tag "etags-command"
395 :type (eval-and-compile
396 (let ((clist (list '(string))))
72fe6b25
SM
397 (dolist (C hfy-etags-cmd-alist)
398 (push (list 'const :tag (car C) (cdr C)) clist))
acca02b0
SM
399 (cons 'choice clist)) ))
400
401(defcustom hfy-istext-command "file %s | sed -e 's@^[^:]*:[ \t]*@@'"
72fe6b25 402 "Command to run with the name of a file, to see whether it is a text file
acca02b0
SM
403or not. The command should emit a string containing the word \'text\' if
404the file is a text file, and a string not containing \'text\' otherwise."
405 :group 'htmlfontify
406 :tag "istext-command"
407 :type '(string))
408
409(defcustom hfy-find-cmd
410 "find . -type f \\! -name \\*~ \\! -name \\*.flc \\! -path \\*/CVS/\\*"
72fe6b25 411 "Find command used to harvest a list of files to attempt to fontify."
acca02b0
SM
412 :group 'htmlfontify
413 :tag "find-command"
414 :type '(string))
415
416(defcustom hfy-display-class nil
72fe6b25 417 "Display class to use to determine which display class to use when
acca02b0
SM
418calculating a face\'s attributes. This is useful when, for example, you
419are running Emacs on a tty or in batch mode, and want htmlfontify to have
420access to the face spec you would use if you were connected to an X display.\n
421Some valid class specification elements are:\n
422 \'\(class color\)
423 \'\(class grayscale\)
424 \'\(background dark\)
425 \'\(background light\)
426 \'\(type x-toolkit\)
427 \'\(type tty\)
428 \'\(type motif\)
429 \'\(type lucid\)
430Multiple values for a tag may be combined, to indicate that any one or more
431of these values in the specification key constitutes a match, eg:\n
432\'\(\(class color grayscale\) \(type tty\)\) would match any of:\n
433 \'\(\(class color\)\)
434 \'\(\(class grayscale\)\)
435 \'\(\(class color grayscale\)\)\)
436 \'\(\(class color foo\)\)
437 \'\(\(type tty\)\)
438 \'\(\(type tty\) \(class color\)\)\n
439and so on."
440 :type '(alist :key-type (symbol) :value-type (symbol))
441 :group 'htmlfontify
442 :tag "display-class"
443 :options '((type (choice (const :tag "X11" x-toolkit)
444 (const :tag "Terminal" tty )
445 (const :tag "Lucid Toolkit" lucid )
446 (const :tag "Motif Toolkit" motif )))
447
448 (class (choice (const :tag "Colour" color )
449 (const :tag "Greyscale" grayscale)))
450
451 (background (choice (const :tag "Dark" dark )
452 (const :tag "Bright" light ))) ))
453
454(defcustom hfy-optimisations (list 'keep-overlays)
72fe6b25 455 "Optimisations to turn on: So far, the following have been implemented:\n
acca02b0
SM
456 merge-adjacent-tags: If two (or more) span tags are adjacent, identical and
457 separated by nothing more than whitespace, they will
458 be merged into one span.
459 zap-comment-links : Suppress hyperlinking of tags found in comments.
460 zap-string-links : Suppress hyperlinking of tags found in strings.
461 div-wrapper : Add <div class=\"default\"> </div> tags around the
462 output.
463 keep-overlays : More of a bell \(or possibly whistle\) than an
464 optimisation - If on, preserve overlay highlighting
465 \(cf ediff or goo-font-lock\) as well as basic faces\n
466 And the following are planned but not yet available:\n
467 kill-context-leak : Suppress hyperlinking between files highlighted by
468 different modes.\n
469Note: like compiler optimisations, these optimise the _output_ of the code,
470not the processing of the source itself, and are therefore likely to slow
471htmlfontify down, at least a little. Except for skip-refontification,
472which can never slow you down, but may result in incomplete fontification."
473 :type '(set (const :tag "merge-adjacent-tags" merge-adjacent-tags )
474 (const :tag "zap-comment-links" zap-comment-links )
475 (const :tag "zap-string-links" zap-string-links )
476 (const :tag "skip-refontification" skip-refontification)
477 (const :tag "kill-context-leak" kill-context-leak )
478 (const :tag "div-wrapper" div-wrapper )
479 (const :tag "keep-overlays" keep-overlays ))
480 :group 'htmlfontify
481 :tag "optimisations")
482
483(defvar hfy-tags-cache nil
484 "Alist of the form:\n
485\(\(\"/src/dir/0\" . tag-hash0\) \(\"/src/dir/1\" tag-hash1\) ...\)\n
486Each tag hash entry then contains entries of the form:\n
487\"tag_string\" => ((\"file/name.ext\" line char) ... )\n
488ie an alist mapping \(relative\) file paths to line and character offsets.\n
489See `hfy-load-tags-cache'.")
490
491(defvar hfy-tags-sortl nil
492 "Alist of the form \(\(\"/src/dir\" . (tag0 tag1 tag2)\) ... \)\n
493Where the tags are stored in descending order of length.\n
494See `hfy-load-tags-cache'.")
495
496(defvar hfy-tags-rmap nil
497 "Alist of the form \(\(\"/src/dir\" . tag-rmap-hash\)\)\n
498Where tag-rmap-hash has entries of the form:
499\"tag_string\" => ( \"file/name.ext\" line char )
500Unlike `hfy-tags-cache' these are the locations of occurrences of
501tagged items, not the locations of their definitions.")
502
503(defvar hfy-style-assoc 'please-ignore-this-line
504 "An assoc representing/describing an Emacs face.
505Properties may be repeated, In which case later properties should be
506treated as if they were inherited from a \'parent\' font.
507\(For some properties, only the first encountered value is of any importance,
508for others the values might be cumulative, and for others they might be
509cumulative in a complex way).\n
510Some examples:\n
511\(hfy-face-to-style 'default\) =>
512 \(\(\"background\" . \"rgb\(0, 0, 0\)\"\)
513 \(\"color\" . \"rgb\(255, 255, 255\)\"\)
514 \(\"font-style\" . \"normal\"\)
515 \(\"font-weight\" . \"500\"\)
516 \(\"font-stretch\" . \"normal\"\)
517 \(\"font-family\" . \"misc-fixed\"\)
518 \(\"font-size\" . \"13pt\"\)
519 \(\"text-decoration\" . \"none\"\)\)\n
520\(hfy-face-to-style 'Info-title-3-face\) =>
521 \(\(\"font-weight\" . \"700\"\)
522 \(\"font-family\" . \"helv\"\)
523 \(\"font-size\" . \"120%\"\)
524 \(\"text-decoration\" . \"none\"\)\)\n")
525
526(defvar hfy-sheet-assoc 'please-ignore-this-line
527 "An assoc with elements of the form (face-name style-name . stlye-string):\n
528'\(\(default \"default\" . \"{background: black;color: white}\"\)
529 \(font-lock-string-face \"string\" . \"{color: rgb\(64,224,208\)}\"\)\)" )
530
531(defvar hfy-facemap-assoc 'please-ignore-this-line
532 "An assoc of \(point . FACE-SYMBOL\) or \(point . DEFFACE-LIST\)
533and (point . 'end) elements, in descending order of point value
534\(ie from the file's end to its beginning\).\n
535The map is in reverse order because inserting a <style> tag \(or any other
536string) at POINT invalidates the map for all entries with a greater value of
537point. By traversing the map from greatest to least POINT, we still invalidate
538the map as we go, but only those points we have already dealt with \( and
539therefore no longer care about \) will be invalid at any time.\n
540'\(\(64820 . end\)
541 \(64744 . font-lock-comment-face\)
542 \(64736 . end\)
543 \(64722 . font-lock-string-face\)
544 \(64630 . end\)
545 \(64623 . font-lock-string-face\)
546 \(64449 . end\)
547 \(64446 . font-lock-keyword-face\)
548 \(64406 . end\)
549 \(64395 . font-lock-constant-face\)
550 \(64393 . end\)
551 \(64386 . font-lock-keyword-face\)
552 \(64379 . end\)
553 ;; big similar section elided. You get the idea.
554 \(4285 . font-lock-constant-face\)
555 \(4285 . end\)
556 \(4221 . font-lock-comment-face\)
557 \(4221 . end\)
558 \(4197 . font-lock-constant-face\)
559 \(4197 . end\)
560 \(1 . font-lock-comment-face\)\)")
561
562(defvar hfy-tmpfont-stack nil
563 "An alist of derived fonts resulting from overlays.")
564
565(defconst hfy-hex-regex "[0-9A-Fa-f]")
566
567(defconst hfy-triplet-regex
568 (concat
569 "\\(" hfy-hex-regex hfy-hex-regex "\\)"
570 "\\(" hfy-hex-regex hfy-hex-regex "\\)"
571 "\\(" hfy-hex-regex hfy-hex-regex "\\)"))
572
573(defun hfy-interq (set-a set-b)
574 "Return the intersection \(using `eq'\) of 2 lists SET-A and SET-B."
575 (let ((sa set-a) (interq nil) (elt nil))
576 (while sa
577 (setq elt (car sa)
578 sa (cdr sa))
579 (if (memq elt set-b) (setq interq (cons elt interq)))) interq))
580
581(defun hfy-colour-vals (colour)
582 "Where COLOUR is a colour name or #XXXXXX style triplet, return a
583list of 3 (16 bit) rgb values for said colour.\n
584If a window system is unavailable, calls `hfy-fallback-colour-values'."
585 (if (string-match hfy-triplet-regex colour)
586 (mapcar
72fe6b25
SM
587 (lambda (x) (* (string-to-number (match-string x colour) 16) 257))
588 '(1 2 3))
acca02b0
SM
589 ;;(message ">> %s" colour)
590 (if window-system
591 (if (fboundp 'color-values)
592 (color-values colour)
593 ;;(message "[%S]" window-system)
594 (x-color-values colour))
595 ;; blarg - tty colours are no good - go fetch some X colours:
596 (hfy-fallback-colour-values colour))))
597
598(defvar hfy-cperl-mode-kludged-p nil)
599
600(defun hfy-kludge-cperl-mode ()
601 "CPerl mode does its damndest not to do some of its fontification when not
602in a windowing system - try to trick it..."
603 (if (not hfy-cperl-mode-kludged-p)
604 (progn (if (not window-system)
605 (let ((window-system 'htmlfontify))
606 (eval-and-compile (require 'cperl-mode))
607 (setq cperl-syntaxify-by-font-lock t)))
608 (setq hfy-cperl-mode-kludged-p t))) )
609
610(defun hfy-opt (symbol) "Is option SYMBOL set." (memq symbol hfy-optimisations))
611
612(defun hfy-default-header (file style)
613 "Default value for `hfy-page-header'.
614FILE is the name of the file.
615STYLE is the inline CSS stylesheet (or tag referring to an external sheet)."
616;; (format "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">
617;; <html>\n <head>\n <title>%s</title>\n %s\n </head>\n <body>\n" file style))
618 (format "<?xml version=\"1.0\" encoding=\"utf-8\"?>
619<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.1//EN\"
620\"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd\">
621<html xmlns=\"http://www.w3.org/1999/xhtml\">
622 <head>
623 <title>%s</title>
624%s
625 <script type=\"text/javascript\"><!--
626 // this function is needed to work around
627 // a bug in IE related to element attributes
628 function hasClass(obj)
629 {
630 var result = false;
631 if (obj.getAttributeNode(\"class\") != null)
632 {
633 result = obj.getAttributeNode(\"class\").value;
634 }
635 return result;
636 }
637
638 function stripe(id)
639 {
640 // the flag we'll use to keep track of
641 // whether the current row is odd or even
642 var even = false;
643
644 // if arguments are provided to specify the colours
645 // of the even & odd rows, then use the them;
646 // otherwise use the following defaults:
647 var evenColor = arguments[1] ? arguments[1] : \"#fff\";
648 var oddColor = arguments[2] ? arguments[2] : \"#ddd\";
649
650 // obtain a reference to the desired table
651 // if no such table exists, abort
652 var table = document.getElementById(id);
653 if (! table) { return; }
654
655 // by definition, tables can have more than one tbody
656 // element, so we'll have to get the list of child
657 // &lt;tbody&gt;s
658 var tbodies = table.getElementsByTagName(\"tbody\");
659
660 // and iterate through them...
661 for (var h = 0; h < tbodies.length; h++)
662 {
663 // find all the &lt;tr&gt; elements...
664 var trs = tbodies[h].getElementsByTagName(\"tr\");
665
666 // ... and iterate through them
667 for (var i = 0; i < trs.length; i++)
668 {
669 // avoid rows that have a class attribute
670 // or backgroundColor style
671 if (! hasClass(trs[i]) &&
672 ! trs[i].style.backgroundColor)
673 {
674 // get all the cells in this row...
675 var tds = trs[i].getElementsByTagName(\"td\");
676
677 // and iterate through them...
678 for (var j = 0; j < tds.length; j++)
679 {
680 var mytd = tds[j];
681
682 // avoid cells that have a class attribute
683 // or backgroundColor style
684 if (! hasClass(mytd) &&
685 ! mytd.style.backgroundColor)
686 {
687 mytd.style.backgroundColor =
688 even ? evenColor : oddColor;
689 }
690 }
691 }
692 // flip from odd to even, or vice-versa
693 even = ! even;
694 }
695 }
696 }
85e0a536
SM
697
698 function toggle_invis( name )
699 {
700 var filter =
701 { acceptNode:
702 function( node )
703 { var classname = node.id;
704 if( classname )
705 { var classbase = classname.substr( 0, name.length );
706 if( classbase == name ) { return NodeFilter.FILTER_ACCEPT; } }
707 return NodeFilter.FILTER_SKIP; } };
708 var walker = document.createTreeWalker( document.body ,
709 NodeFilter.SHOW_ELEMENT ,
710 filter ,
711 false );
712 while( walker.nextNode() )
713 {
714 var e = walker.currentNode;
715 if( e.style.display == \"none\" ) { e.style.display = \"inline\"; }
716 else { e.style.display = \"none\"; }
717 }
718 }
acca02b0
SM
719--> </script>
720 </head>
721 <body onload=\"stripe('index'); return true;\">\n"
722 file style))
723
724(defun hfy-default-footer (file)
725 "Default value for `hfy-page-footer'.
726FILE is the name of the file being rendered, in case it is needed."
727 "\n </body>\n</html>\n")
728
729(defun hfy-link-style-string (style-string)
730 "Replace the end of a css style declaration STYLE-STRING with the contents
731of the variable `hfy-src-doc-link-style', removing text matching the regex
732`hfy-src-doc-link-unstyle' first, if necessary."
733 ;;(message "hfy-colour-vals");;DBUG
734 (if (string-match hfy-src-doc-link-unstyle style-string)
735 (setq style-string (replace-match "" 'fixed-case 'literal style-string)))
736 (if (and (not (string-match hfy-src-doc-link-style style-string))
737 (string-match "} *$" style-string))
738 (concat (replace-match hfy-src-doc-link-style
739 'fixed-case
740 'literal
741 style-string) " }") style-string))
742
743;; utility functions - cast emacs style specification values into their
744;; css2 equivalents:
745(defun hfy-triplet (colour)
746 "Takes a COLOUR name \(string\) and return a CSS rgb(R, G, B) triplet string.
747Uses the definition of \"white\" to map the numbers to the 0-255 range, so
748if you\'ve redefined white, \(esp if you've redefined it to have a triplet
749member lower than that of the colour you are processing, strange things
750may happen\)."
751 ;;(message "hfy-colour-vals");;DBUG
752 (let ((white (mapcar (lambda (I) (float (1+ I))) (hfy-colour-vals "white")))
753 (rgb16 (mapcar (lambda (I) (float (1+ I))) (hfy-colour-vals colour))))
754 (if rgb16
755 ;;(apply 'format "rgb(%d, %d, %d)"
756 ;; Use #rrggbb instead, it is smaller
757 (apply 'format "#%02x%02x%02x"
758 (mapcar (lambda (X)
759 (* (/ (nth X rgb16)
72fe6b25
SM
760 (nth X white)) 255))
761 '(0 1 2))))))
acca02b0
SM
762
763(defun hfy-family (family) (list (cons "font-family" family)))
764(defun hfy-bgcol (colour) (list (cons "background" (hfy-triplet colour))))
765(defun hfy-colour (colour) (list (cons "color" (hfy-triplet colour))))
766(defun hfy-width (width) (list (cons "font-stretch" (symbol-name width))))
767
768(defcustom hfy-font-zoom 1.05
769 "Font scaling from Emacs to HTML."
770 :type 'float
771 :group 'htmlfontify)
772
773(defun hfy-size (height)
774 "Derive a CSS font-size specifier from an Emacs font :height attribute HEIGHT.
775Does not cope with the case where height is a function to be applied to
776the height of the underlying font."
777 (list
778 (cond
779 ;;(t (cons "font-size" ": 1em"))
780 ((floatp height)
781 (cons "font-size" (format "%d%%" (* (* hfy-font-zoom height) 100))))
782 ((integerp height)
783 (cons "font-size" (format "%dpt" (/ (* hfy-font-zoom height) 10 )))) )) )
784
785(defun hfy-slant (slant)
786 "Derive a font-style css specifier from the Emacs :slant attribute SLANT:
787CSS does not define the reverse-* styles, so just maps those to the
788regular specifiers."
72fe6b25
SM
789 (list (cons "font-style"
790 (or (cdr (assq slant '((italic . "italic")
791 (reverse-italic . "italic" )
792 (oblique . "oblique")
793 (reverse-oblique . "oblique"))))
794 "normal"))))
acca02b0
SM
795
796(defun hfy-weight (weight)
797 "Derive a font-weight css specifier from an Emacs weight spec symbol WEIGHT."
72fe6b25
SM
798 (list (cons "font-weight" (cdr (assq weight '((ultra-bold . "900")
799 (extra-bold . "800")
800 (bold . "700")
801 (semi-bold . "600")
802 (normal . "500")
803 (semi-light . "400")
804 (light . "300")
805 (extra-light . "200")
806 (ultra-light . "100")))))))
807
acca02b0
SM
808(defun hfy-box-to-border-assoc (spec)
809 (if spec
810 (let ((tag (car spec))
811 (val (cadr spec)))
72fe6b25
SM
812 (cons (case tag
813 (:color (cons "colour" val))
814 (:width (cons "width" val))
815 (:style (cons "style" val)))
816 (hfy-box-to-border-assoc (cddr spec))))))
acca02b0
SM
817
818(defun hfy-box-to-style (spec)
819 (let* ((css (hfy-box-to-border-assoc spec))
820 (col (cdr (assoc "colour" css)))
821 (s (cdr (assoc "style" css))))
822 (list
823 (if col (cons "border-color" (cdr (assoc "colour" css))))
824 (cons "border-width" (format "%dpx" (or (cdr (assoc "width" css)) 1)))
72fe6b25
SM
825 (cons "border-style" (case s
826 (released-button "outset")
827 (pressed-button "inset" )
828 (t "solid" ))))))
acca02b0
SM
829
830(defun hfy-box (box)
831 "Derive CSS border-* attributes from the Emacs :box attribute BOX."
832 (if box
833 (cond
834 ((integerp box) (list (cons "border-width" (format "%dpx" box))))
835 ((stringp box) (list (cons "border" (format "solid %s 1px" box))))
836 ((listp box) (hfy-box-to-style box) ))) )
837
838(defun hfy-decor (tag val)
839 "Derive CSS text-decoration specifiers from various Emacs font attributes.
840TAG is an Emacs font attribute key (eg :underline).
841VAL is ignored."
842 (list
e3353a78 843 ;; FIXME: Why not '("text-decoration" . "underline")? --Stef
72fe6b25
SM
844 (case tag
845 (:underline (cons "text-decoration" "underline" ))
846 (:overline (cons "text-decoration" "overline" ))
847 (:strike-through (cons "text-decoration" "line-through")))))
acca02b0
SM
848
849(defun hfy-invisible (&optional val)
850 "This text should be invisible.
851Do something in CSS to make that happen.
852VAL is ignored here."
853 '(("display" . "none")))
854
855(defun hfy-combined-face-spec (face)
856 "Return a `defface' style alist of possible specifications for FACE.
857Entries resulting from customisation \(`custom-set-faces'\) will take
858precedence."
859 (let ((spec nil))
860 (setq spec (append (or (get face 'saved-face) (list))
861 (or (get face 'face-defface-spec) (list))))
862 (if (and hfy-display-class hfy-default-face-def (eq face 'default))
863 (setq spec (append hfy-default-face-def spec))) spec))
864
865(defun hfy-face-attr-for-class (face &optional class)
866 "Return the face attributes for FACE.
867If CLASS is set, it must be a `defface' alist key \[see below\],
868in which case the first face specification returned by `hfy-combined-face-spec'
869which *doesn\'t* clash with CLASS is returned.\n
870\(A specification with a class of t is considered to match any class you
871specify - this matches Emacs\' behaviour when deciding on which face attributes
872to use, to the best of my understanding\).\n
873If CLASS is nil, then you just get get whatever `face-attr-construct' returns,
874ie the current specification in effect for FACE.\n
875*NOTE* This function forces any face that is not \'default and which has
876no :inherit property to inherit from \'default \( this is because \'default
877is magical in that Emacs' fonts behave as if they inherit implicitly from
878\'default, but no such behaviour exists in HTML/CSS \).\n
879See `hfy-display-class' for details of valid values for CLASS."
72fe6b25
SM
880 (let ((face-spec
881 (if class
882 (let ((face-props (hfy-combined-face-spec face))
883 (face-specn nil)
884 (face-class nil)
885 (face-attrs nil)
886 (face-score -1)
887 (face-match nil))
888 (while face-props
889 (setq face-specn (car face-props)
890 face-class (car face-specn)
891 face-attrs (cdr face-specn)
892 face-props (cdr face-props))
893 ;; if the current element CEL of CLASS is t we match
894 ;; if the current face-class is t, we match
895 ;; if the cdr of CEL has a non-nil
896 ;; intersection with the cdr of the first member of
897 ;; the current face-class with the same car as CEL, we match
898 ;; if we actually clash, then we can't match
899 (let ((cbuf class)
900 (cel nil)
901 (key nil)
902 (val nil)
903 (x nil)
904 (next nil)
905 (score 0))
906 (while (and cbuf (not next))
907 (setq cel (car cbuf)
908 cbuf (cdr cbuf)
909 key (car cel)
910 val (cdr cel)
911 val (if (listp val) val (list val)))
912 (cond
913 ((or (eq cel t)
914 (memq face-class '(t default))) ;Default match.
915 (setq score 0) (ignore "t match"))
916 ((not (cdr (assq key face-class))) ;Neither good nor bad.
917 nil (ignore "non match, non collision"))
918 ((setq x (hfy-interq val (cdr (assq key face-class))))
919 (setq score (+ score (length x)))
920 (ignore "intersection"))
921 (t ;; nope.
922 (setq next t score -10) (ignore "collision")) ))
923 (if (> score face-score)
924 (progn
925 (setq face-match face-attrs
926 face-score score )
927 (ignore "%d << %S/%S" score face-class class))
928 (ignore "--- %d ---- (insufficient)" score)) ))
929 ;; matched ? last attrs : nil
930 (if face-match
931 (if (listp (car face-match)) (car face-match) face-match)
932 nil))
933 ;; Unfortunately the default face returns a
934 ;; :background. Fortunately we can remove it, but how do we do
935 ;; that in a non-system specific way?
936 (let ((spec (face-attr-construct face))
937 (new-spec nil))
938 (if (not (memq :background spec))
939 spec
940 (while spec
941 (let ((a (nth 0 spec))
942 (b (nth 1 spec)))
943 (unless (and (eq a :background)
944 (stringp b)
945 (string= b "SystemWindow"))
946 (setq new-spec (cons a (cons b new-spec)))))
947 (setq spec (cddr spec)))
948 new-spec)))))
acca02b0
SM
949 (if (or (memq :inherit face-spec) (eq 'default face))
950 face-spec
951 (nconc face-spec (list :inherit 'default))) ))
952
953;; construct an assoc of (css-tag-name . css-tag-value) pairs
954;; from a face or assoc of face attributes:
955
956;; Some tests etc:
957;; (mumamo-message-with-face "testing face" 'highlight)
958;; (mumamo-message-with-face "testing face" '(:foreground "red" :background "yellow"))
959;; (hfy-face-to-style-i '(:inherit default foreground-color "red"))
960;; default face=(:stipple nil :background "SystemWindow" :foreground
961;; "SystemWindowText" :inverse-video nil :box nil :strike-through
962;; nil :overline nil :underline nil :slant normal :weight normal
963;; :height 98 :width normal :family "outline-courier new")
964(defun hfy-face-to-style-i (fn)
965 "The guts of `hfy-face-to-style': FN should be a `defface' font spec,
966as returned by `face-attr-construct' or `hfy-face-attr-for-class'. Note
967that this function does not get font-sizes right if they are based on
968inherited modifiers \(via the :inherit\) attribute, and any other
969modifiers that are cumulative if they appear multiple times need to be
970merged by the user - `hfy-flatten-style' should do this."
971 ;;(message "hfy-face-to-style-i");;DBUG
972
973 ;; fn's value could be something like
974 ;; (:inherit
975 ;; ((foreground-color . "blue"))
976 ;; (foreground-color . "blue")
977 ;; nil)
978
979 (when fn
980 (let ((key (car fn))
981 (val (cadr fn))
982 (next (cddr fn))
983 (that nil)
984 (this nil)
985 (parent nil))
986 (if (eq key :inherit)
987 (let ((vs (if (listp val) val (list val))))
988 ;; (let ((x '(a b))) (setq x (append '(c d) x)))
989 ;; (let ((x '(a b))) (setq x (append '(c d) x)))
990 (dolist (v vs)
991 (setq parent
992 (append
993 parent
994 (hfy-face-to-style-i
995 (hfy-face-attr-for-class v hfy-display-class)) ))))
996 (setq this
72fe6b25
SM
997 (if val (case key
998 (:family (hfy-family val))
999 (:width (hfy-width val))
1000 (:weight (hfy-weight val))
1001 (:slant (hfy-slant val))
1002 (:foreground (hfy-colour val))
1003 (:background (hfy-bgcol val))
1004 (:box (hfy-box val))
1005 (:height (hfy-size val))
1006 (:underline (hfy-decor key val))
1007 (:overline (hfy-decor key val))
1008 (:strike-through (hfy-decor key val))
1009 (:invisible (hfy-invisible val))
1010 (:bold (hfy-weight 'bold))
1011 (:italic (hfy-slant 'italic))))))
acca02b0
SM
1012 (setq that (hfy-face-to-style-i next))
1013 ;;(lwarn t :warning "%S => %S" fn (nconc this that parent))
1014 (nconc this that parent))) )
1015
1016(defun hfy-size-to-int (spec)
1017 "Convert SPEC, a css font-size specifier, back to an Emacs :height attribute
1018value. Used while merging multiple font-size attributes."
1019 ;;(message "hfy-size-to-int");;DBUG
1020 (list
1021 (if (string-match "\\([0-9]+\\)\\(%\\|pt\\)" spec)
1022 (cond ((string= "%" (match-string 2 spec))
1023 (/ (string-to-number (match-string 1 spec)) 100.0))
1024 ((string= "pt" (match-string 2 spec))
1025 (* (string-to-number (match-string 1 spec)) 10)))
1026 (string-to-number spec))) )
1027
1028;; size is different, in that in order to get it right at all,
1029;; we have to trawl the inheritance path, accumulating modifiers,
1030;; _until_ we get to an absolute (pt) specifier, then combine the lot
1031(defun hfy-flatten-style (style)
1032 "Take STYLE (see `hfy-face-to-style-i', `hfy-face-to-style') and merge
1033any multiple attributes appropriately. Currently only font-size is merged
1034down to a single occurrence - others may need special handling, but I
1035haven\'t encountered them yet. Returns a `hfy-style-assoc'."
1036 ;;(message "(hfy-flatten-style %S)" style) ;;DBUG
1037 (let ((n 0)
1038 (m (list 1))
1039 (x nil)
1040 (r nil))
72fe6b25
SM
1041 (dolist (css style)
1042 (if (string= (car css) "font-size")
1043 (progn
1044 (when (not x) (setq m (nconc m (hfy-size-to-int (cdr css)))))
1045 (when (string-match "pt" (cdr css)) (setq x t)))
1046 (setq r (nconc r (list css)))))
acca02b0
SM
1047 ;;(message "r: %S" r)
1048 (setq n (apply '* m))
1049 (nconc r (hfy-size (if x (round n) (* n 1.0)))) ))
1050
1051(defun hfy-face-to-style (fn)
1052 "Take FN, a font or `defface' style font specification,
1053\(as returned by `face-attr-construct' or `hfy-face-attr-for-class'\)
1054and return a `hfy-style-assoc'.\n
1055See also: `hfy-face-to-style-i', `hfy-flatten-style'."
1056 ;;(message "hfy-face-to-style");;DBUG
1057 (let ((face-def (if (facep fn)
1058 (hfy-face-attr-for-class fn hfy-display-class) fn))
1059 (final-style nil))
1060
1061 (setq final-style (hfy-flatten-style (hfy-face-to-style-i face-def)))
1062 ;;(message "%S" final-style)
1063 (if (not (assoc "text-decoration" final-style))
1064 (progn (setq final-style
1065 ;; Fix-me: there is no need for this since
1066 ;; text-decoration is not inherited.
1067 ;; but it's not wrong and if this ever changes it will
1068 ;; be needed, so I think it's better to leave it in? -- v
1069 (nconc final-style '(("text-decoration"."none"))))))
1070 final-style))
1071
1072;; strip redundant bits from a name. Technically, this could result in
1073;; a collision, but it is pretty unlikely - will fix later...
1074;; also handle ephemeral fonts created by overlays, which don't actually
1075;; have names:
1076(defun hfy-face-or-def-to-name (fn)
1077 "Render a font symbol or `defface' font spec FN into a name \(string\)."
1078 ;;(message "generating name for %s" fn)
1079 (if (not (listp fn))
1080 (format "%s" fn)
1081 (let* ((key (format "%s" fn))
1082 (entry (assoc key hfy-tmpfont-stack))
1083 (base (cadr (memq :inherit fn)))
1084 (tag (cdr entry)))
1085 ;;(message "checking for key «%s» in font stack [%d]"
1086 ;; key (if entry 1 0))
1087 (if entry nil ;; noop
1088 (setq tag (format "%04d" (length hfy-tmpfont-stack))
1089 entry (cons key tag)
1090 hfy-tmpfont-stack (cons entry hfy-tmpfont-stack)))
1091 ;;(message " -> name: %s-%s" (or base 'default) tag)
1092 (format "%s-%s" (or base 'default) tag)) ))
1093
1094(defun hfy-css-name (fn)
1095 "Strip the boring bits from a font-name FN and return a CSS style name."
1096 ;;(message "hfy-css-name");;DBUG
1097 (let ((face-name (hfy-face-or-def-to-name fn)))
1098 (if (or (string-match "font-lock-\\(.*\\)" face-name)
1099 (string-match "cperl-\\(.*\\)" face-name)
1100 (string-match "^[Ii]nfo-\\(.*\\)" face-name))
1101 (progn
1102 (setq face-name (match-string 1 face-name))
1103 (if (string-match "\\(.*\\)-face$" face-name)
1104 (setq face-name (match-string 1 face-name))) face-name)
1105 face-name)) )
1106
1107;; construct an assoc of (stripped-name . "{ css-stuff-here }") pairs
1108;; from a face:
1109(defun hfy-face-to-css (fn)
1110 "Take FN, a font or `defface' specification \(cf `face-attr-construct'\)
1111and return a CSS style specification.\n
1112See also: `hfy-face-to-style'"
1113 ;;(message "hfy-face-to-css");;DBUG
1114 (let ((css-list nil)
1115 (css-text nil)
acca02b0
SM
1116 (seen nil))
1117 ;;(message "(hfy-face-to-style %S)" fn)
1118 (setq css-list (hfy-face-to-style fn))
1119 (setq css-text
72fe6b25
SM
1120 (mapcar
1121 (lambda (E)
1122 (if (car E)
1123 (unless (member (car E) seen)
1124 (push (car E) seen)
1125 (format " %s: %s; " (car E) (cdr E)))))
1126 css-list))
acca02b0
SM
1127 (cons (hfy-css-name fn) (format "{%s}" (apply 'concat css-text)))) )
1128
1129;; extract a face from a list of char properties, if there is one:
1130(defun hfy-p-to-face (props)
1131 "Given PROPS, a list of text-properties, return the value of the face
1132property, or nil."
1133 (if props
1134 (if (string= (car props) "face")
1135 (let ((propval (cadr props)))
1136 (if (and (listp propval) (not (cdr propval)))
1137 (car propval)
1138 propval))
1139 (hfy-p-to-face (cddr props)))
1140 nil))
1141
1142(defun hfy-p-to-face-lennart (props)
1143 "Given PROPS, a list of text-properties, return the value of the face
1144property, or nil."
1145 (when props
1146 (let ((face (plist-get props 'face))
1147 (font-lock-face (plist-get props 'font-lock-face))
1148 (button (plist-get props 'button))
1149 ;;(face-rec (memq 'face props))
1150 ;;(button-rec (memq 'button props)))
1151 )
1152 (if button
1153 (let* ((category (plist-get props 'category))
1154 (face (when category (plist-get (symbol-plist category) 'face))))
1155 face)
72fe6b25
SM
1156 (or font-lock-face
1157 face)))))
acca02b0
SM
1158
1159;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1160;; (defun hfy-get-face-at (pos)
1161;; ;; (let ((face (get-char-property-and-overlay pos 'face)))
1162;; ;; (when (and face (listp face)) (setq face (car face)))
1163;; ;; (unless (listp face)
1164;; ;; face)))
1165;; ;;(get-char-property pos 'face)
1166;; ;; Overlays are handled later
1167;; (if (or (not show-trailing-whitespace)
1168;; (not (get-text-property pos 'hfy-show-trailing-whitespace)))
1169;; (get-text-property pos 'face)
1170;; (list 'trailing-whitespace (get-text-property pos 'face)))
1171;; )
1172
1173(defun hfy-prop-invisible-p (prop)
1174 "Is text property PROP an active invisibility property?"
1175 (or (and (eq buffer-invisibility-spec t) prop)
1176 (or (memq prop buffer-invisibility-spec)
1177 (assq prop buffer-invisibility-spec))))
1178
1179(defun hfy-find-invisible-ranges ()
1180 "Return a list of (start-point . end-point) cons cells of invisible regions."
1181 (let (invisible p i e s) ;; return-value pos invisible end start
1182 (save-excursion
1183 (setq p (goto-char (point-min)))
1184 (when (invisible-p p) (setq s p i t))
1185 (while (< p (point-max))
1186 (if i ;; currently invisible
1187 (when (not (invisible-p p)) ;; but became visible
1188 (setq e p
1189 i nil
1190 invisible (cons (cons s e) invisible)))
1191 ;; currently visible:
1192 (when (invisible-p p) ;; but have become invisible
1193 (setq s p i t)))
1194 (setq p (next-char-property-change p)))
1195 ;; still invisible at buffer end?
1196 (when i
1197 (setq e (point-max)
1198 invisible (cons (cons s e) invisible))) ) invisible))
1199
1200(defun hfy-invisible-name (point map)
1201 "Generate a CSS style name for an invisible section of the buffer.
1202POINT is the point inside the invisible region.
1203MAP is the invisibility map as returned by `hfy-find-invisible-ranges'."
1204 ;;(message "(hfy-invisible-name %S %S)" point map)
1205 (let (name)
72fe6b25
SM
1206 (dolist (range map)
1207 (when (and (>= point (car range))
1208 (< point (cdr range)))
1209 (setq name (format "invisible-%S-%S" (car range) (cdr range)))))
acca02b0
SM
1210 name))
1211
1212;; Fix-me: This function needs some cleanup by someone who understand
1213;; all the formats that face properties can have.
1214;;
1215;; overlay handling should be fine. haven't tested multiple stacked overlapping
1216;; overlays recently, but the common case of a text property face + an overlay
1217;; face produces the correct merged css style (or as close to it as css can get)
1218;; -- v
1219(defun hfy-face-at (p)
1220 "Find face in effect at point P.
1221If overlays are to be considered \(see `hfy-optimisations'\) then this may
1222return a defface style list of face properties instead of a face symbol."
1223 ;;(message "hfy-face-at");;DBUG
1224 ;; Fix-me: clean up, remove face-name etc
1225 ;; not sure why we'd want to remove face-name? -- v
72fe6b25
SM
1226 (let ((overlay-data nil)
1227 (base-face nil)
1228 ;; restored hfy-p-to-face as it handles faces like (bold) as
1229 ;; well as face like 'bold - hfy-get-face-at doesn't dtrt -- v
1230 (face-name (hfy-p-to-face (text-properties-at p)))
1231 ;; (face-name (hfy-get-face-at p))
1232 (prop-seen nil)
1233 (extra-props nil)
1234 (text-props (text-properties-at p)))
1235 ;;(message "face-name: %S" face-name)
1236 (when (and face-name (listp face-name) (facep (car face-name)))
1237 ;;(message "face-name is a list %S" face-name)
1238 ;;(setq text-props (cons 'face face-name))
1239 (dolist (f face-name)
1240 (setq extra-props (if (listp f)
1241 ;; for things like (variable-pitch
1242 ;; (:foreground "red"))
1243 (cons f extra-props)
1244 (cons :inherit (cons f extra-props)))))
1245 (setq base-face (car face-name)
1246 face-name nil))
1247 ;; text-properties-at => (face (:foreground "red" ...))
1248 ;; or => (face (compilation-info underline)) list of faces
1249 ;; overlay-properties
1250 ;; format= (evaporate t face ((foreground-color . "red")))
1251
1252 ;; SO: if we have turned overlays off,
1253 ;; or if there's no overlay data
1254 ;; just bail out and return whatever face data we've accumulated so far
1255 (if (or (not (hfy-opt 'keep-overlays))
1256 (not (setq overlay-data (hfy-overlay-props-at p))))
1257 (progn
1258 ;;(message "· %d: %s; %S; %s"
1259 ;; p face-name extra-props text-props)
1260 (or face-name base-face)) ;; no overlays or extra properties
1261 ;; collect any face data and any overlay data for processing:
1262 (when text-props
1263 (push text-props overlay-data))
1264 (setq overlay-data (nreverse overlay-data))
1265 ;;(message "- %d: %s; %S; %s; %s"
1266 ;; p face-name extra-props text-props overlay-data)
1267 ;; remember the basic face name so we don't keep repeating its specs:
1268 (when face-name (setq base-face face-name))
1269 (dolist (P overlay-data)
1270 (let ((iprops (cadr (memq 'invisible P)))) ;FIXME: plist-get?
1271 ;;(message "(hfy-prop-invisible-p %S)" iprops)
1272 (when (and iprops (hfy-prop-invisible-p iprops))
1273 (setq extra-props
1274 (cons :invisible (cons t extra-props))) ))
1275 (let ((fprops (cadr (or (memq 'face P)
1276 (memq 'font-lock-face P)))))
1277 ;;(message "overlay face: %s" fprops)
1278 (if (not (listp fprops))
1279 (let ((this-face (if (stringp fprops) (intern fprops) fprops)))
1280 (when (not (eq this-face base-face))
1281 (setq extra-props
1282 (cons :inherit
1283 (cons this-face extra-props))) ))
1284 (while fprops
1285 (if (facep (car fprops))
1286 (let ((face (car fprops)))
1287 (when (stringp face) (setq face (intern fprops)))
1288 (setq extra-props
1289 (cons :inherit
1290 (cons face
1291 extra-props)))
1292 (setq fprops (cdr fprops)))
1293 (let (p v)
1294 ;; Sigh.
1295 (if (listp (car fprops))
1296 (if (nlistp (cdr (car fprops)))
1297 (progn
1298 ;; ((prop . val))
1299 (setq p (caar fprops))
1300 (setq v (cdar fprops))
1301 (setq fprops (cdr fprops)))
1302 ;; ((prop val))
1303 (setq p (caar fprops))
1304 (setq v (cadar fprops))
1305 (setq fprops (cdr fprops)))
1306 (if (listp (cdr fprops))
1307 (progn
1308 ;; (:prop val :prop val ...)
1309 (setq p (car fprops))
1310 (setq v (cadr fprops))
1311 (setq fprops (cddr fprops)))
1312 (if (and (listp fprops)
1313 (not (listp (cdr fprops))))
1314 ;;(and (consp x) (cdr (last x)))
1315 (progn
1316 ;; (prop . val)
1317 (setq p (car fprops))
1318 (setq v (cdr fprops))
1319 (setq fprops nil))
1320 (error "Eh... another format! fprops=%s" fprops) )))
1321 (setq p (case p
1322 ;; These are all the properties handled
1323 ;; in `hfy-face-to-style-i'.
1324 ;;
1325 ;; Are these translations right?
1326 ;; yes, they are -- v
1327 (family :family )
1328 (width :width )
1329 (height :height )
1330 (weight :weight )
1331 (slant :slant )
1332 (underline :underline )
1333 (overline :overline )
1334 (strike-through :strike-through)
1335 (box :box )
1336 (foreground-color :foreground)
1337 (background-color :background)
1338 (bold :bold )
1339 (italic :italic )
1340 (t p)))
1341 (if (memq p prop-seen) nil ;; noop
1342 (setq prop-seen (cons p prop-seen)
1343 extra-props (cons p (cons v extra-props))))))))))
1344 ;;(message "+ %d: %s; %S" p face-name extra-props)
1345 (if extra-props
1346 (if (listp face-name)
1347 (nconc extra-props face-name)
1348 (nconc extra-props (face-attr-construct face-name)))
1349 face-name)) ))
acca02b0
SM
1350
1351(defun hfy-overlay-props-at (p)
1352 "Grab overlay properties at point P.
1353The plists are returned in descending priority order."
72fe6b25
SM
1354 (sort (mapcar #'overlay-properties (overlays-at p))
1355 (lambda (A B) (> (or (cadr (memq 'priority A)) 0) ;FIXME: plist-get?
1356 (or (cadr (memq 'priority B)) 0)))))
acca02b0
SM
1357
1358;; construct an assoc of (face-name . (css-name . "{ css-style }")) elements:
1359(defun hfy-compile-stylesheet ()
1360 "Trawl the current buffer, construct and return a `hfy-sheet-assoc'."
1361 ;;(message "hfy-compile-stylesheet");;DBUG
1362 (let ((pt (point-min))
1363 ;; Make the font stack stay:
1364 ;;(hfy-tmpfont-stack nil)
1365 (fn nil)
acca02b0
SM
1366 (style nil))
1367 (save-excursion
1368 (goto-char pt)
1369 (while (< pt (point-max))
1370 (if (and (setq fn (hfy-face-at pt)) (not (assoc fn style)))
72fe6b25 1371 (push (cons fn (hfy-face-to-css fn)) style))
acca02b0 1372 (setq pt (next-char-property-change pt))) )
72fe6b25 1373 (push (cons 'default (hfy-face-to-css 'default)) style)))
acca02b0
SM
1374
1375(defun hfy-fontified-p ()
1376 "`font-lock' doesn't like to say it\'s been fontified when in batch
1377mode, but we want to know if we should fontify or raw copy, so in batch
1378mode we check for non-default face properties. Otherwise we test
1379variable `font-lock-mode' and variable `font-lock-fontified' for truth."
1380 ;;(message "font-lock-fontified: %S" font-lock-fontified)
1381 ;;(message "noninteractive : %S" noninteractive)
1382 ;;(message "font-lock-mode : %S" font-lock-mode)
1383 (and font-lock-fontified
1384 (if noninteractive
1385 (let ((pt (point-min))
1386 (face-name nil))
1387 (save-excursion
1388 (goto-char pt)
1389 (while (and (< pt (point-max)) (not face-name))
1390 (setq face-name (hfy-face-at pt))
1391 (setq pt (next-char-property-change pt)))) face-name)
1392 font-lock-mode)))
1393
1394;; remember, the map is in reverse point order:
1395;; I wrote this while suffering the effects of a cold, and maybe a
1396;; mild fever - I think it's correct, but it might be a little warped
1397;; as my minfd keeps ... where was I? Oh yes, the bunnies...
1398(defun hfy-merge-adjacent-spans (face-map)
1399 "Where FACE-MAP is a `hfy-facemap-assoc' for the current buffer,
1400this function merges adjacent style blocks which are of the same value
1401and are separated by nothing more interesting than whitespace.\n
1402 <span class=\"foo\">narf</span> <span class=\"foo\">brain</span>\n
1403\(as interpreted from FACE-MAP\) would become:\n
1404 <span class=\"foo\">narf brain</span>\n
1405Returns a modified copy of FACE-MAP."
1406 (let ((tmp-map face-map)
1407 (map-buf nil)
1408 (first-start nil)
1409 (first-stop nil)
1410 (last-start nil)
1411 (last-stop nil)
1412 (span-stop nil)
1413 (span-start nil)
1414 (reduced-map nil))
72fe6b25
SM
1415 ;;(push (car tmp-map) reduced-map)
1416 ;;(push (cadr tmp-map) reduced-map)
acca02b0
SM
1417 (while tmp-map
1418 (setq first-start (cadddr tmp-map)
1419 first-stop (caddr tmp-map)
1420 last-start (cadr tmp-map)
1421 last-stop (car tmp-map)
1422 map-buf tmp-map
1423 span-start last-start
1424 span-stop last-stop )
1425 (while (and (equal (cdr first-start)
1426 (cdr last-start))
1427 (save-excursion
1428 (goto-char (car first-stop))
1429 (not (re-search-forward "[^ \t\n\r]" (car last-start) t))))
1430 (setq map-buf (cddr map-buf)
1431 span-start first-start
1432 first-start (cadddr map-buf)
1433 first-stop (caddr map-buf)
1434 last-start (cadr map-buf)
1435 last-stop (car map-buf)))
72fe6b25
SM
1436 (push span-stop reduced-map)
1437 (push span-start reduced-map)
acca02b0
SM
1438 (setq tmp-map (memq last-start tmp-map))
1439 (setq tmp-map (cdr tmp-map)))
1440 (setq reduced-map (nreverse reduced-map))))
1441
1442;; remember to generate 'synthetic' </span> entries -
1443;; emacs copes by just having a stack of styles in effect
1444;; and only using the top one: html has a more simplistic approach -
1445;; we have to explicitly end a style, there's no way of temporarily
1446;; overriding it w. another one... (afaik)
1447(defun hfy-compile-face-map ()
1448;; no need for special <a> version.
1449;; IME hyperlinks don't get underlined, esp when you htmlfontify a whole
1450;; source tree, so the <a> version is needed -- v
1451;; Fix-me: save table for multi-buffer
1452 "Compile and return a `hfy-facemap-assoc' for the current buffer."
1453 ;;(message "hfy-compile-face-map");;DBUG
1454 (let ((pt (point-min))
1455 (pt-narrow 1)
1456 (fn nil)
1457 (map nil)
1458 (prev-tag nil)) ;; t if the last tag-point was a span-start
1459 ;; nil if it was a span-stop
1460 (save-excursion
1461 (goto-char pt)
1462 (while (< pt (point-max))
1463 (if (setq fn (hfy-face-at pt))
72fe6b25
SM
1464 (progn (if prev-tag (push (cons pt-narrow 'end) map))
1465 (push (cons pt-narrow fn) map)
acca02b0 1466 (setq prev-tag t))
72fe6b25 1467 (if prev-tag (push (cons pt-narrow 'end) map))
acca02b0
SM
1468 (setq prev-tag nil))
1469 (setq pt (next-char-property-change pt))
1470 (setq pt-narrow (1+ (- pt (point-min)))))
1471 (if (and map (not (eq 'end (cdar map))))
72fe6b25 1472 (push (cons (- (point-max) (point-min)) 'end) map)))
acca02b0
SM
1473 (if (hfy-opt 'merge-adjacent-tags) (hfy-merge-adjacent-spans map) map)))
1474
1475(defun hfy-buffer ()
1476 "Generate a buffer to hold the html output.
1477The filename of this buffer is derived from the source \(current\) buffer\'s
1478variable `buffer-file-name', if it is set, plus `hfy-extn'.
1479Otherwise a plausible filename is constructed from `default-directory',
1480`buffer-name' and `hfy-extn'."
1481 (let* ((name (concat (buffer-name) hfy-extn))
1482 (src (buffer-file-name))
1483 (buf (get-buffer-create name)))
e3353a78
SM
1484 (with-current-buffer buf
1485 (setq buffer-file-name
1486 (if src (concat src hfy-extn)
1487 (expand-file-name (if (string-match "^.*/\\([^/]*\\)$" name)
1488 (match-string 1 name)
1489 name))))
acca02b0
SM
1490 buf)))
1491
1492(defun hfy-lookup (face style)
1493 "Get a CSS style name for FACE from STYLE."
1494 (cadr (assoc face style)))
1495
1496(defun hfy-link-style (style-string)
1497 "Copy, alter and return a STYLE-STRING to make it suitable for a hyperlink.
1498Uses `hfy-link-style-fun' to do this."
1499 (if (functionp hfy-link-style-fun)
1500 (funcall hfy-link-style-fun style-string)
1501 style-string))
1502
1503(defun hfy-sprintf-stylesheet (css file)
1504 "Return the inline CSS style sheet for FILE as a string."
1505 (let ((stylesheet nil))
1506 (setq stylesheet
1507 (concat
1508 hfy-meta-tags
1509 "\n<style type=\"text/css\"><!-- \n"
1510 ;; Fix-me: Add handling of page breaks here + scan for ^L
1511 ;; where appropriate.
1512 (format "body %s\n" (cddr (assq 'default css)))
1513 (apply 'concat
1514 (mapcar
1515 (lambda (style)
1516 (format
1517 "span.%s %s\nspan.%s a %s\n"
1518 (cadr style) (cddr style)
72fe6b25
SM
1519 (cadr style) (hfy-link-style (cddr style))))
1520 css))
acca02b0
SM
1521 " --></style>\n"))
1522 (funcall hfy-page-header file stylesheet)))
1523
acca02b0
SM
1524;; tag all the dangerous characters we want to escape
1525;; (ie any "<> chars we _didn't_ put there explicitly for css markup)
1526(defun hfy-html-enkludge-buffer ()
1527 "Mark dangerous [\"\<\>] characters with the \'hfy-quoteme property.\n
1528See also `hfy-html-dekludge-buffer'."
1529 ;;(message "hfy-html-enkludge-buffer");;DBUG
1530 (save-excursion
1531 (goto-char (point-min))
1532 (while (re-search-forward hfy-html-quote-regex nil t)
1533 (put-text-property (match-beginning 0) (point) 'hfy-quoteme t))) )
1534
1535;; dangerous char -> &entity;
1536(defun hfy-html-quote (char-string)
1537 "Map CHAR-STRING to an html safe string (entity) if need be."
1538 ;;(message "hfy-html-quote");;DBUG
1539 (or (cadr (assoc char-string hfy-html-quote-map)) char-string) )
1540
1541;; actually entity-ise dangerous chars.
1542;; note that we can't do this until _after_ we have inserted the css
1543;; markup, since we use a position-based map to insert this, and if we
1544;; enter any other text before we do this, we'd have to track another
1545;; map of offsets, which would be tedious...
1546(defun hfy-html-dekludge-buffer ()
1547 "Transform all dangerous characters marked with the \'hfy-quoteme property
1548using `hfy-html-quote'\n
1549See also `hfy-html-enkludge-buffer'."
1550 ;;(message "hfy-html-dekludge-buffer");;DBUG
1551 (save-excursion
1552 (goto-char (point-min))
1553 (while (re-search-forward hfy-html-quote-regex nil t)
1554 (if (get-text-property (match-beginning 0) 'hfy-quoteme)
1555 (replace-match (hfy-html-quote (match-string 1))) )) ))
1556
1557;; Borrowed from font-lock.el
1558(defmacro hfy-save-buffer-state (varlist &rest body)
1559 "Bind variables according to VARLIST and eval BODY restoring buffer state.
1560Do not record undo information during evaluation of BODY."
1561 (declare (indent 1) (debug let))
1562 (let ((modified (make-symbol "modified")))
1563 `(let* ,(append varlist
1564 `((,modified (buffer-modified-p))
1565 (buffer-undo-list t)
1566 (inhibit-read-only t)
1567 (inhibit-point-motion-hooks t)
1568 (inhibit-modification-hooks t)
1569 deactivate-mark
1570 buffer-file-name
1571 buffer-file-truename))
1572 (progn
1573 ,@body)
1574 (unless ,modified
1575 (restore-buffer-modified-p nil)))))
1576
1577(defun hfy-mark-trailing-whitespace ()
1578 "Tag trailing whitespace with a hfy property if it is currently highlighted."
1579 (when show-trailing-whitespace
1580 (let ((inhibit-read-only t))
1581 (save-excursion
1582 (goto-char (point-min))
1583 (hfy-save-buffer-state nil
1584 (while (re-search-forward "[ \t]+$" nil t)
1585 (put-text-property (match-beginning 0) (match-end 0)
1586 'hfy-show-trailing-whitespace t)))))))
1587
1588(defun hfy-unmark-trailing-whitespace ()
1589 "Undo the effect of `hfy-mark-trailing-whitespace'."
1590 (when show-trailing-whitespace
1591 (hfy-save-buffer-state nil
1592 (remove-text-properties (point-min) (point-max)
1593 '(hfy-show-trailing-whitespace)))))
1594
1595(defun hfy-fontify-buffer (&optional srcdir file)
1596 "Implement the guts of `htmlfontify-buffer'.
1597SRCDIR, if set, is the directory being htmlfontified.
1598FILE, if set, is the file name."
1599 (if srcdir (setq srcdir (directory-file-name srcdir)))
e3353a78 1600 (let* ( (html-buffer (hfy-buffer))
acca02b0
SM
1601 (css-sheet nil)
1602 (css-map nil)
1603 (invis-ranges nil)
1604 (rovl nil)
1605 (orig-ovls (overlays-in (point-min) (point-max)))
1606 (rmin (when mark-active (region-beginning)))
1607 (rmax (when mark-active (region-end ))) )
1608 (when (and mark-active
1609 transient-mark-mode)
1610 (unless (and (= rmin (point-min))
1611 (= rmax (point-max)))
1612 (setq rovl (make-overlay rmin rmax))
1613 (overlay-put rovl 'priority 1000)
1614 (overlay-put rovl 'face 'region)))
1615 ;; copy the buffer, including fontification, and switch to it:
1616 (hfy-mark-trailing-whitespace)
1617 (setq css-sheet (hfy-compile-stylesheet )
1618 css-map (hfy-compile-face-map )
1619 invis-ranges (hfy-find-invisible-ranges))
1620 (hfy-unmark-trailing-whitespace)
1621 (when rovl
1622 (delete-overlay rovl))
1623 (copy-to-buffer html-buffer (point-min) (point-max))
1624 (set-buffer html-buffer)
1625 ;; Apply overlay invisible spec
1626 (setq orig-ovls
1627 (sort orig-ovls
1628 (lambda (A B)
1629 (> (or (cadr (memq 'priority (overlay-properties A))) 0)
1630 (or (cadr (memq 'priority (overlay-properties B))) 0)))))
1631 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1632 ;; at this point, html-buffer retains the fontification of the parent:
1633 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1634 ;; we don't really need or want text in the html buffer to be invisible, as
1635 ;; that can make it look like we've rendered invalid xhtml when all that's
1636 ;; happened is some tags are in the invisible portions of the buffer:
1637 (setq buffer-invisibility-spec nil)
1638 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1639 ;; #####################################################################
1640 ;; if we are in etags mode, add properties to mark the anchors and links
1641 (if (and srcdir file)
1642 (progn
1643 (hfy-mark-tag-names srcdir file) ;; mark anchors
1644 (hfy-mark-tag-hrefs srcdir file))) ;; mark links
1645 ;; #####################################################################
1646 ;; mark the 'dangerous' characters
1647 ;;(message "marking dangerous characters")
1648 (hfy-html-enkludge-buffer)
1649 ;; trawl the position-based face-map, inserting span tags as we go
1650 ;; note that we cannot change any character positions before this point
1651 ;; or we will invalidate the map:
1652 ;; NB: This also means we have to trawl the map in descending file-offset
1653 ;; order, obviously.
1654 ;; ---------------------------------------------------------------------
1655 ;; Remember, inserting pushes properties to the right, which we don't
1656 ;; actually want to happen for link properties, so we have to flag
1657 ;; them and move them by hand - if you don't, you end up with
1658 ;;
1659 ;; <span class="foo"><a href="bar">texta</span><span class="bletch"></a>...
1660 ;;
1661 ;; instead of:
1662 ;;
1663 ;; <span class="foo"><a href="bar">texta</a></span><span class="bletch">...
1664 ;;
1665 ;; If my analysis of the problem is correct, we can detect link-ness by
1666 ;; either hfy-linkp or hfy-endl properties at the insertion point, but I
1667 ;; think we only need to relocate the hfy-endl property, as the hfy-linkp
1668 ;; property has already served its main purpose by this point.
1669 ;;(message "mapcar over the CSS-MAP")
1670 (message "invis-ranges:\n%S" invis-ranges)
72fe6b25
SM
1671 (dolist (point-face css-map)
1672 (let ((pt (car point-face))
1673 (fn (cdr point-face))
1674 (move-link nil))
1675 (goto-char pt)
1676 (setq move-link
1677 (or (get-text-property pt 'hfy-linkp)
1678 (get-text-property pt 'hfy-endl )))
1679 (if (eq 'end fn)
1680 (insert "</span>")
1681 (if (not (and srcdir file))
1682 nil
1683 (when move-link
1684 (remove-text-properties (point) (1+ (point)) '(hfy-endl nil))
1685 (put-text-property pt (1+ pt) 'hfy-endl t) ))
1686 ;; if we have invisible blocks, we need to do some extra magic:
1687 (if invis-ranges
1688 (let ((iname (hfy-invisible-name pt invis-ranges))
1689 (fname (hfy-lookup fn css-sheet )))
1690 (when (assq pt invis-ranges)
1691 (insert
1692 (format "<span onclick=\"toggle_invis('%s');\">" iname))
1693 (insert "…</span>"))
1694 (insert
1695 (format "<span class=\"%s\" id=\"%s-%d\">" fname iname pt)))
1696 (insert (format "<span class=\"%s\">" (hfy-lookup fn css-sheet))))
1697 (if (not move-link) nil
1698 ;;(message "removing prop2 @ %d" (point))
1699 (if (remove-text-properties (point) (1+ (point)) '(hfy-endl nil))
1700 (put-text-property pt (1+ pt) 'hfy-endl t))))))
acca02b0
SM
1701 ;; #####################################################################
1702 ;; Invisibility
1703 ;; Maybe just make the text invisible in XHTML?
1704 ;; DONE -- big block of obsolete invisibility code elided here -- v
1705 ;; #####################################################################
1706 ;; (message "checking to see whether we should link...")
1707 (if (and srcdir file)
1708 (let ((lp 'hfy-link)
1709 (pt nil)
1710 (pr nil)
1711 (rr nil))
1712 ;; (message " yes we should.")
1713 ;; translate 'hfy-anchor properties to anchors
1714 (setq pt (point-min))
1715 (while (setq pt (next-single-property-change pt 'hfy-anchor))
1716 (if (setq pr (get-text-property pt 'hfy-anchor))
1717 (progn (goto-char pt)
1718 (remove-text-properties pt (1+ pt) '(hfy-anchor nil))
1719 (insert (concat "<a name=\"" pr "\"></a>")))))
1720 ;; translate alternate 'hfy-link and 'hfy-endl props to opening
1721 ;; and closing links. (this should avoid those spurious closes
1722 ;; we sometimes get by generating only paired tags)
1723 (setq pt (point-min))
1724 (while (setq pt (next-single-property-change pt lp))
1725 (if (not (setq pr (get-text-property pt lp))) nil
1726 (goto-char pt)
1727 (remove-text-properties pt (1+ pt) (list lp nil))
72fe6b25
SM
1728 (case lp
1729 (hfy-link
acca02b0
SM
1730 (if (setq rr (get-text-property pt 'hfy-inst))
1731 (insert (format "<a name=\"%s\"></a>" rr)))
1732 (insert (format "<a href=\"%s\">" pr))
1733 (setq lp 'hfy-endl))
72fe6b25 1734 (hfy-endl
acca02b0
SM
1735 (insert "</a>") (setq lp 'hfy-link)) ))) ))
1736
1737 ;; #####################################################################
1738 ;; transform the dangerous chars. This changes character positions
1739 ;; since entities have > char length.
1740 ;; note that this deletes the dangerous characters, and therefore
1741 ;; destroys any properties they may contain (such as 'hfy-endl),
1742 ;; so we have to do this after we use said properties:
1743 ;; (message "munging dangerous characters")
1744 (hfy-html-dekludge-buffer)
1745 ;; insert the stylesheet at the top:
1746 (goto-char (point-min))
1747 ;;(message "inserting stylesheet")
1748 (insert (hfy-sprintf-stylesheet css-sheet file))
acca02b0
SM
1749 (if (hfy-opt 'div-wrapper) (insert "<div class=\"default\">"))
1750 (insert "\n<pre>")
1751 (goto-char (point-max))
1752 (insert "</pre>\n")
1753 (if (hfy-opt 'div-wrapper) (insert "</div>"))
1754 ;;(message "inserting footer")
1755 (insert (funcall hfy-page-footer file))
1756 ;; call any post html-generation hooks:
1757 (run-hooks 'hfy-post-html-hooks)
1758 ;; return the html buffer
1759 (set-buffer-modified-p nil)
1760 html-buffer))
1761
1762(defun hfy-force-fontification ()
1763 "Try to force font-locking even when it is optimised away."
72fe6b25 1764 (run-hooks 'hfy-init-kludge-hook)
acca02b0
SM
1765 (eval-and-compile (require 'font-lock))
1766 (if (boundp 'font-lock-cache-position)
1767 (or font-lock-cache-position
1768 (set 'font-lock-cache-position (make-marker))))
1769 (if (not noninteractive)
1770 (progn
1771 (message "hfy interactive mode (%S %S)" window-system major-mode)
1772 (when (and font-lock-defaults
1773 font-lock-mode)
1774 (font-lock-fontify-region (point-min) (point-max) nil)))
1775 (message "hfy batch mode (%s:%S)"
1776 (or (buffer-file-name) (buffer-name)) major-mode)
1777 (when font-lock-defaults
1778 (font-lock-fontify-buffer)) ))
1779
1780(defun htmlfontify-buffer (&optional srcdir file)
1781 "Create a new buffer, named for the current buffer + a .html extension,
1782containing an inline css-stylesheet and formatted css-markup html
1783that reproduces the look of the current Emacs buffer as closely
1784as possible.
1785
1786Dangerous characters in the existing buffer are turned into html
1787entities, so you should even be able to do html-within-html
1788fontified display.
1789
1790You should, however, note that random control or eight-bit
1791characters such as ^L (\x0c) or ¤ (\xa4) won't get mapped yet.
1792
1793If the SRCDIR and FILE arguments are set, lookup etags derived
1794entries in the `hfy-tags-cache' and add html anchors and
1795hyperlinks as appropriate."
1796 (interactive)
1797 ;; pick up the file name in case we didn't receive it
1798 (if (not file)
1799 (progn (setq file (or (buffer-file-name) (buffer-name)))
1800 (if (string-match "/\\([^/]*\\)$" file)
1801 (setq file (match-string 1 file)))) )
1802
1803 (if (not (hfy-opt 'skip-refontification))
1804 (save-excursion ;; Keep region
1805 (hfy-force-fontification)))
1806 (if (interactive-p) ;; display the buffer in interactive mode:
1807 (switch-to-buffer (hfy-fontify-buffer srcdir file))
1808 (hfy-fontify-buffer srcdir file)))
1809
1810;; recursive file listing
1811(defun hfy-list-files (directory)
1812 "Return a list of files under DIRECTORY.
1813Strips any leading \"./\" from each filename."
1814 ;;(message "hfy-list-files");;DBUG
72fe6b25 1815 ;; FIXME: this changes the dir of the currrent buffer. Is that right??
acca02b0
SM
1816 (cd directory)
1817 (mapcar (lambda (F) (if (string-match "^./\\(.*\\)" F) (match-string 1 F) F))
1818 (split-string (shell-command-to-string hfy-find-cmd))) )
1819
1820;; strip the filename off, return a directiry name
1821;; not a particularly thorough implementaion, but it will be
1822;; fed pretty carefully, so it should be Ok:
1823(defun hfy-dirname (file)
1824 "Return everything preceding the last \"/\" from a relative filename FILE,
1825on the assumption that this will produce a relative directory name. Hardly
1826bombproof, but good enough in the context in which it is being used."
1827 ;;(message "hfy-dirname");;DBUG
1828 (let ((f (directory-file-name file)))
1829 (and (string-match "^\\(.*\\)/" f) (match-string 1 f))))
1830
1831;; create a directory, cf mkdir -p
1832(defun hfy-make-directory (dir)
1833 "Approx equivalent of mkdir -p DIR."
1834 ;;(message "hfy-make-directory");;DBUG
1835 (if (file-exists-p dir)
1836 (if (file-directory-p dir) t)
1837 (make-directory dir t)))
1838
1839(defun hfy-text-p (srcdir file)
1840 "Is SRCDIR/FILE text? Uses `hfy-istext-command' to determine this."
e3353a78
SM
1841 (let* ((cmd (format hfy-istext-command (expand-file-name file srcdir)))
1842 (rsp (shell-command-to-string cmd)))
acca02b0
SM
1843 (if (string-match "text" rsp) t nil)))
1844
1845;; open a file, check fontification, if fontified, write a fontified copy
1846;; to the destination directory, otherwise just copy the file:
1847(defun hfy-copy-and-fontify-file (srcdir dstdir file)
1848 "Open FILE in SRCDIR - if fontified, write a fontified copy to DSTDIR
1849adding an extension of `hfy-extn'. Fontification is actually done by
1850`htmlfontify-buffer'. If the buffer is not fontified, just copy it."
1851 ;;(message "hfy-copy-and-fontify-file");;DBUG
1852 (let (;;(fast-lock-minimum-size hfy-fast-lock-save)
1853 ;;(font-lock-support-mode 'fast-lock-mode)
1854 ;;(window-system (or window-system 'htmlfontify))
1855 (target nil)
1856 (source nil)
1857 (html nil))
1858 (cd srcdir)
e3353a78
SM
1859 (with-current-buffer (setq source (find-file-noselect file))
1860 ;; FIXME: Shouldn't this use expand-file-name? --Stef
acca02b0
SM
1861 (setq target (concat dstdir "/" file))
1862 (hfy-make-directory (hfy-dirname target))
1863 (if (not (hfy-opt 'skip-refontification)) (hfy-force-fontification))
1864 (if (or (hfy-fontified-p) (hfy-text-p srcdir file))
1865 (progn (setq html (hfy-fontify-buffer srcdir file))
1866 (set-buffer html)
1867 (write-file (concat target hfy-extn))
1868 (kill-buffer html))
1869 ;; #o0200 == 128, but emacs20 doesn't know that
1870 (if (and (file-exists-p target) (not (file-writable-p target)))
1871 (set-file-modes target (logior (file-modes target) 128)))
1872 (copy-file (buffer-file-name source) target 'overwrite))
1873 (kill-buffer source)) ))
1874
1875;; list of tags in file in srcdir
1876(defun hfy-tags-for-file (srcdir file)
1877 "List of etags tags that have definitions in this FILE.
1878Looks up the tags cache in `hfy-tags-cache' using SRCDIR as the key."
1879 ;;(message "hfy-tags-for-file");;DBUG
1880 (let ((cache-entry (assoc srcdir hfy-tags-cache))
1881 (cache-hash nil)
1882 (tag-list nil))
1883 (if (setq cache-hash (cadr cache-entry))
1884 (maphash
1885 (lambda (K V)
1886 (if (assoc file V)
1887 (setq tag-list (cons K tag-list)))) cache-hash))
1888 tag-list))
1889
1890;; mark the tags native to this file for anchors
1891(defun hfy-mark-tag-names (srcdir file)
1892 "Mark tags in FILE (lookup SRCDIR in `hfy-tags-cache') with the \'hfy-anchor
1893property, with a value of \"tag.line-number\"."
1894 ;;(message "(hfy-mark-tag-names %s %s)" srcdir file);;DBUG
1895 (let ((cache-entry (assoc srcdir hfy-tags-cache))
1896 (cache-hash nil))
1897 (if (setq cache-hash (cadr cache-entry))
1898 (mapcar
1899 (lambda (TAG)
1900 (mapcar
1901 (lambda (TLIST)
1902 (if (string= file (car TLIST))
1903 (let* ((line (cadr TLIST) )
1904 (chr (caddr TLIST) )
1905 (link (format "%s.%d" TAG line) ))
1906 (put-text-property (+ 1 chr)
1907 (+ 2 chr)
1908 'hfy-anchor link))))
1909 (gethash TAG cache-hash)))
1910 (hfy-tags-for-file srcdir file)))))
1911
1912(defun hfy-relstub (file &optional start)
1913 "Return a \"../\" stub of the appropriate length for the current source
1914tree depth \(as determined from FILE \(a filename\)\).
1915START is the offset at which to start looking for the / character in FILE."
1916 ;;(message "hfy-relstub");;DBUG
1917 (let ((c ""))
1918 (while (setq start (string-match "/" file start))
1919 (setq start (1+ start)) (setq c (concat c "../"))) c))
1920
1921(defun hfy-href-stub (this-file def-files tag)
1922 "Return an href stub for a tag href i THIS-FILE:
1923If DEF-FILES \(list of files containing definitions for the tag in question\)
1924contains only one entry, the href should link straight to that file.
1925Otherwise, the link should be to the index file.\n
1926We are not yet concerned with the file extensions/tag line number and so on at
1927this point.\n
1928If `hfy-split-index' is set, and the href wil be to an index file rather than
1929a source file, append a .X to `hfy-index-file', where X is the uppercased
1930first character of TAG.\n
1931See also: `hfy-relstub', `hfy-index-file'`'."
1932 ;;(message "hfy-href-stub");;DBUG
e3353a78
SM
1933 ;; FIXME: Why not use something like
1934 ;; (file-relative-name (if ...) (file-name-directory this-file)) ? --Stef
acca02b0
SM
1935 (concat
1936 (hfy-relstub this-file)
1937 (if (= 1 (length def-files)) (car def-files)
1938 (if (not hfy-split-index) hfy-index-file
1939 (concat hfy-index-file "." (upcase (substring tag 0 1)))))) )
1940
1941(defun hfy-href (this-file def-files tag tag-map)
1942 "Return a relative href to the tag in question, based on\n
1943THIS-FILE `hfy-link-extn' `hfy-extn' DEF-FILES TAG and TAG-MAP\n
1944THIS-FILE is the current source file
1945DEF-FILES is a list of file containing possible link endpoints for TAG
1946TAG is the TAG in question
1947TAG-MAP is the entry in `hfy-tags-cache'."
1948 ;;(message "hfy-href");;DBUG
1949 (concat
1950 (hfy-href-stub this-file def-files tag)
1951 (or hfy-link-extn hfy-extn) "#" tag ;;(.src -> .html)
1952 (if (= 1 (length def-files))
1953 (concat "." (format "%d" (cadr (assoc (car def-files) tag-map)))))) )
1954
1955(defun hfy-word-regex (string)
1956 "Return a regex that matches STRING as the first `match-string', with non
1957word characters on either side."
e3353a78 1958 ;; FIXME: Should this use [^$[:alnum:]_] instead? --Stef
acca02b0
SM
1959 (concat "[^$A-Za-z_0-9]\\(" (regexp-quote string) "\\)[^A-Za-z_0-9]"))
1960
1961;; mark all tags for hyperlinking, except the tags at
1962;; their own points of definition, iyswim:
1963(defun hfy-mark-tag-hrefs (srcdir file)
1964 "Mark href start points with the \'hfy-link prop \(value: href string\)\n
1965Mark href end points with the \'hfy-endl prop \(value t\)\n
1966Avoid overlapping links, and mark links in descending length of
1967tag name in order to prevent subtags from usurping supertags,
1968\(eg \"term\" for \"terminal\").
1969SRCDIR is the directory being \"published\".
1970FILE is the specific file we are rendering."
1971 ;;(message "hfy-mark-tag-hrefs");;DBUG
1972 (let ((cache-entry (assoc srcdir hfy-tags-cache))
1973 (list-cache (assoc srcdir hfy-tags-sortl))
1974 (rmap-cache (assoc srcdir hfy-tags-rmap ))
1975 (no-comment (hfy-opt 'zap-comment-links))
1976 (no-strings (hfy-opt 'zap-string-links ))
1977 (cache-hash nil)
1978 (tags-list nil)
1979 (tags-rmap nil)
1980 (case-fold-search nil))
1981 ;; extract the tag mapping hashes (fwd and rev) and the tag list:
1982 (if (and (setq cache-hash (cadr cache-entry))
1983 (setq tags-rmap (cadr rmap-cache ))
1984 (setq tags-list (cadr list-cache )))
1985 (mapcar
1986 (lambda (TAG)
1987 (let* ((start nil)
1988 (stop nil)
1989 (href nil)
1990 (name nil)
1991 (case-fold-search nil)
1992 (tmp-point nil)
1993 (maybe-start nil)
1994 (face-at nil)
1995 (rmap-entry nil)
1996 (rnew-elt nil)
1997 (rmap-line nil)
1998 (tag-regex (hfy-word-regex TAG))
1999 (tag-map (gethash TAG cache-hash))
72fe6b25 2000 (tag-files (mapcar #'car tag-map)))
acca02b0
SM
2001 ;; find instances of TAG and do what needs to be done:
2002 (goto-char (point-min))
2003 (while (search-forward TAG nil 'NOERROR)
2004 (setq tmp-point (point)
2005 maybe-start (- (match-beginning 0) 1))
2006 (goto-char maybe-start)
2007 (if (not (looking-at tag-regex))
2008 nil
2009 (setq start (match-beginning 1))
2010 (setq stop (match-end 1))
2011 (setq face-at
2012 (and (or no-comment no-strings) (hfy-face-at start)))
2013 (if (listp face-at)
2014 (setq face-at (cadr (memq :inherit face-at))))
2015 (if (or (text-property-any start (1+ stop) 'hfy-linkp t)
2016 (and no-comment (eq 'font-lock-comment-face face-at))
2017 (and no-strings (eq 'font-lock-string-face face-at)))
2018 nil ;; already a link, NOOP
2019
2020 ;; set a reverse map entry:
2021 (setq rmap-line (line-number-at-pos)
2022 rmap-entry (gethash TAG tags-rmap)
2023 rnew-elt (list file rmap-line start)
2024 rmap-entry (cons rnew-elt rmap-entry)
2025 name (format "%s.%d" TAG rmap-line))
2026 (put-text-property start (1+ start) 'hfy-inst name)
2027 (puthash TAG rmap-entry tags-rmap)
2028
2029 ;; mark the link. link to index if the tag has > 1 def
2030 ;; add the line number to the #name if it does not:
2031 (setq href (hfy-href file tag-files TAG tag-map))
2032 (put-text-property start (1+ start) 'hfy-link href)
2033 (put-text-property stop (1+ stop ) 'hfy-endl t )
2034 (put-text-property start (1+ stop ) 'hfy-linkp t )))
2035 (goto-char tmp-point)) ))
2036 tags-list) )))
2037
2038(defun hfy-shell ()
2039 "Return `shell-file-name', or \"/bin/sh\" if it is a non-bourne shell."
2040 (if (string-match "\\<bash\\>\\|\\<sh\\>\\|\\<dash\\>" shell-file-name)
2041 shell-file-name
2042 (or hfy-shell-file-name "/bin/sh")))
2043
2044;; cache the #(tag => file line point) entries for files under srcdir
2045;; and cache the descending sorted list of tags in the relevant alist,
2046;; also keyed by srcdir:
2047(defun hfy-load-tags-cache (srcdir)
2048 "Run `hfy-etags-cmd' on SRCDIR, then call `hfy-parse-tags-buffer'."
2049 ;;(message "hfy-load-tags-cache");;DBUG
2050 (let ((etags-buffer (get-buffer-create "*hfy-tags*"))
2051 (etags-command (format hfy-etags-cmd hfy-etags-bin))
2052 (shell-file-name (hfy-shell)))
2053 (cd srcdir)
2054 (shell-command etags-command etags-buffer)
2055 (hfy-parse-tags-buffer srcdir etags-buffer)) )
2056
2057;; break this out from `hfy-load-tags-cache' to make the tar file
2058;; functionality easier to implement.
2059;; ( tar file functionality not merged here because it requires a
2060;; hacked copy of etags capable of tagging stdin: if Francesco
2061;; Potorti accepts a patch, or otherwise implements stdin tagging,
2062;; then I will provide a `htmlfontify-tar-file' defun )
2063(defun hfy-parse-tags-buffer (srcdir buffer)
2064 "Parse a BUFFER containing etags formatted output, loading the
2065`hfy-tags-cache' and `hfy-tags-sortl' entries for SRCDIR."
2066 (let ((cache-entry (assoc srcdir hfy-tags-cache))
2067 (tlist-cache (assoc srcdir hfy-tags-sortl))
2068 (trmap-cache (assoc srcdir hfy-tags-rmap ))
2069 (cache-hash nil) (trmap-hash nil) (tags-list nil)
2070 (hash-entry nil) (tag-string nil) (tag-line nil)
2071 (tag-point nil) (new-entry nil) (etags-file nil))
2072
2073 ;; (re)initialise the tag reverse map:
2074 (if trmap-cache (setq trmap-hash (cadr trmap-cache))
2075 (setq trmap-hash (make-hash-table :test 'equal))
2076 (setq hfy-tags-rmap (list (list srcdir trmap-hash) hfy-tags-rmap)))
2077 (clrhash trmap-hash)
2078
2079 ;; (re)initialise the tag cache:
2080 (if cache-entry (setq cache-hash (cadr cache-entry))
2081 (setq cache-hash (make-hash-table :test 'equal))
2082 (setq hfy-tags-cache (list (list srcdir cache-hash) hfy-tags-cache)))
2083 (clrhash cache-hash)
2084
2085 ;; cache the TAG => ((file line point) (file line point) ... ) entries:
e3353a78 2086 (with-current-buffer buffer
acca02b0
SM
2087 (goto-char (point-min))
2088
2089 (while (and (looking-at "^\x0c") (= 0 (forward-line 1)))
2090 ;;(message "^L boundary")
2091 (if (and (looking-at "^\\(.+\\),\\([0-9]+\\)$")
2092 (= 0 (forward-line 1)))
2093 (progn
2094 (setq etags-file (match-string 1))
2095 ;;(message "TAGS for file: %s" etags-file)
2096 (while (and (looking-at hfy-etag-regex) (= 0 (forward-line 1)))
2097 (setq tag-string (match-string 1))
2098 (if (= 0 (length tag-string)) nil ;; noop
2099 (setq tag-line (round (string-to-number (match-string 2))))
2100 (setq tag-point (round (string-to-number (match-string 3))))
2101 (setq hash-entry (gethash tag-string cache-hash))
2102 (setq new-entry (list etags-file tag-line tag-point))
72fe6b25 2103 (push new-entry hash-entry)
acca02b0
SM
2104 ;;(message "HASH-ENTRY %s %S" tag-string new-entry)
2105 (puthash tag-string hash-entry cache-hash)))) )))
2106
2107 ;; cache a list of tags in descending length order:
72fe6b25 2108 (maphash (lambda (K V) (push K tags-list)) cache-hash)
acca02b0
SM
2109 (setq tags-list (sort tags-list (lambda (A B) (< (length B) (length A)))))
2110
2111 ;; put the tag list into the cache:
2112 (if tlist-cache (setcar (cdr tlist-cache) tags-list)
72fe6b25 2113 (push (list srcdir tags-list) hfy-tags-sortl))
acca02b0
SM
2114
2115 ;; return the number of tags found:
2116 (length tags-list) ))
2117
2118(defun hfy-prepare-index-i (srcdir dstdir filename &optional stub map)
2119 "Prepare a tags index buffer for SRCDIR.
2120`hfy-tags-cache' must already have an entry for SRCDIR for this to work.
2121`hfy-page-header', `hfy-page-footer', `hfy-link-extn' and `hfy-extn'
2122all play a part here.\n
2123If STUB is set, prepare an \(appropriately named\) index buffer
2124specifically for entries beginning with STUB.\n
2125If MAP is set, use that instead of `hfy-tags-cache'.
2126FILENAME is the name of the file being indexed.
2127DSTDIR is the output directory, where files will be written."
2128 ;;(message "hfy-write-index");;DBUG
2129 (let ((cache-entry (assoc srcdir (or map hfy-tags-cache)))
2130 (cache-hash nil)
2131 (tag-list nil)
2132 (index-file
2133 (concat filename (if stub (concat "." stub) "") hfy-extn))
2134 (index-buf nil))
2135 (if (not (and cache-entry
2136 (setq cache-hash (cadr cache-entry))
2137 (setq index-buf (get-buffer-create index-file))))
2138 nil ;; noop
72fe6b25 2139 (maphash (lambda (K V) (push K tag-list)) cache-hash)
acca02b0
SM
2140 (setq tag-list (sort tag-list 'string<))
2141 (set-buffer index-buf)
2142 (erase-buffer)
2143 (insert (funcall hfy-page-header filename "<!-- CSS -->"))
2144 (insert "<table class=\"index\">\n")
2145
72fe6b25
SM
2146 (dolist (TAG tag-list)
2147 (let ((tag-started nil))
2148 (dolist (DEF (gethash TAG cache-hash))
2149 (if (and stub (not (string-match (concat "^" stub) TAG)))
2150 nil ;; we have a stub and it didn't match: NOOP
2151 (let ((file (car DEF))
2152 (line (cadr DEF)))
2153 (insert
2154 (format
2155 (concat
2156 " <tr> \n"
2157 " <td>%s</td> \n"
2158 " <td><a href=\"%s%s\">%s</a></td> \n"
2159 " <td><a href=\"%s%s#%s.%d\">%d</a></td>\n"
2160 " </tr> \n")
2161 (if (string= TAG tag-started) "&nbsp;"
2162 (format "<a name=\"%s\">%s</a>" TAG TAG))
2163 file (or hfy-link-extn hfy-extn) file
2164 file (or hfy-link-extn hfy-extn) TAG line line))
2165 (setq tag-started TAG))))))
acca02b0
SM
2166 (insert "</table>\n")
2167 (insert (funcall hfy-page-footer filename))
2168 (and dstdir (cd dstdir))
2169 (set-visited-file-name index-file)
2170 index-buf) ))
2171
2172(defun hfy-prepare-index (srcdir dstdir)
2173 "Return a list of index buffer\(s\), as determined by `hfy-split-index'.
2174SRCDIR and DSTDIR are the source and output directories respectively."
2175 (if (not hfy-split-index)
2176 (list (hfy-prepare-index-i srcdir dstdir hfy-index-file nil))
2177 (let ((stub-list nil)
2178 (cache-hash nil)
2179 (index-list nil)
2180 (cache-entry (assoc srcdir hfy-tags-cache)))
2181 (if (and cache-entry (setq cache-hash (cadr cache-entry)))
2182 (maphash
2183 (lambda (K V)
2184 (let ((stub (upcase (substring K 0 1))))
2185 (if (member stub stub-list)
2186 nil ;; seen this already: NOOP
2187 (setq
2188 stub-list (cons stub stub-list)
2189 index-list (cons (hfy-prepare-index-i srcdir
2190 dstdir
2191 hfy-index-file
2192 stub)
2193 index-list)) ))) cache-hash) ) index-list)))
2194
2195(defun hfy-prepare-tag-map (srcdir dstdir)
2196 "Prepare the counterpart\(s\) to the index buffer\(s\) - a list of buffers
2197with the same structure, but listing \( and linking to \) instances of tags
2198\( as opposed to their definitions \).\n
2199SRCDIR and DSTDIR are the source and output directories respectively.
2200See: `hfy-prepare-index'
2201 `hfy-split-index'."
2202 (if (not hfy-split-index)
2203 (list (hfy-prepare-index-i srcdir
2204 dstdir
2205 hfy-instance-file
2206 nil
2207 hfy-tags-rmap))
2208 (let ((stub-list nil)
2209 (cache-hash nil)
2210 (index-list nil)
2211 (cache-entry (assoc srcdir hfy-tags-rmap)))
2212
2213 (if (and cache-entry (setq cache-hash (cadr cache-entry)))
2214 (maphash
2215 (lambda (K V)
2216 (let ((stub (upcase (substring K 0 1))))
2217 (if (member stub stub-list)
2218 nil ;; seen this already: NOOP
2219 (setq
2220 stub-list (cons stub stub-list)
2221 index-list (cons (hfy-prepare-index-i srcdir
2222 dstdir
2223 hfy-instance-file
2224 stub
2225 hfy-tags-rmap)
2226 index-list)) ))) cache-hash) ) index-list)))
2227
2228(defun hfy-subtract-maps (srcdir)
2229 "Internal function - strips definitions of tags from the instance map.
2230SRCDIR is the directory being \"published\".
2231See: `hfy-tags-cache' and `hfy-tags-rmap'"
2232 (let ((new-list nil)
2233 (old-list nil)
2234 (def-list nil)
2235 (exc-list nil)
2236 (fwd-map (cadr (assoc srcdir hfy-tags-cache)))
2237 (rev-map (cadr (assoc srcdir hfy-tags-rmap )))
2238 (taglist (cadr (assoc srcdir hfy-tags-sortl))))
72fe6b25
SM
2239 (dolist (TAG taglist)
2240 (setq def-list (gethash TAG fwd-map)
2241 old-list (gethash TAG rev-map)
2242 exc-list (mapcar (lambda (P) (list (car P) (cadr P))) def-list)
2243 new-list nil)
2244 (dolist (P old-list)
2245 (or (member (list (car P) (cadr P)) exc-list)
2246 (push P new-list)))
2247 (puthash TAG new-list rev-map))))
acca02b0
SM
2248
2249(defun htmlfontify-run-etags (srcdir)
2250 "Load the etags cache for SRCDIR.
2251See `hfy-load-tags-cache'."
2252 (interactive "D source directory: ")
2253 (setq srcdir (directory-file-name srcdir))
2254 (hfy-load-tags-cache srcdir))
2255
2256;;(defun hfy-test-read-args (foo bar)
2257;; (interactive "D source directory: \nD target directory: ")
2258;; (message "foo: %S\nbar: %S" foo bar))
2259
2260(defun hfy-save-kill-buffers (buffer-list &optional dstdir)
72fe6b25
SM
2261 (dolist (B buffer-list)
2262 (set-buffer B)
2263 (and dstdir (file-directory-p dstdir) (cd dstdir))
2264 (save-buffer)
2265 (kill-buffer B)))
acca02b0
SM
2266
2267(defun htmlfontify-copy-and-link-dir (srcdir dstdir &optional f-ext l-ext)
2268 "Trawl SRCDIR and write fontified-and-hyperlinked output in DSTDIR.
2269F-EXT and L-EXT specify values for `hfy-extn' and `hfy-link-extn'.\n
2270You may also want to set `hfy-page-header' and `hfy-page-footer'."
2271 (interactive "D source directory: \nD output directory: ")
2272 ;;(message "htmlfontify-copy-and-link-dir")
2273 (setq srcdir (directory-file-name srcdir))
2274 (setq dstdir (directory-file-name dstdir))
2275 (let ((source-files "SETME: list of source files, relative to srcdir")
2276 (tr-cache (assoc srcdir hfy-tags-rmap))
2277 (hfy-extn (or f-ext ".html"))
2278 (hfy-link-extn (or l-ext ".html")))
2279 ;; oops, forgot to load etags for srcdir:
2280 (if tr-cache nil
2281 (message "autoload of tags cache")
2282 (hfy-load-tags-cache srcdir)
2283 (setq tr-cache (assoc srcdir hfy-tags-rmap)))
2284 ;; clear out the old cache:
2285 (clrhash (cadr tr-cache))
2286 (hfy-make-directory dstdir)
2287 (setq source-files (hfy-list-files srcdir))
72fe6b25
SM
2288 (dolist (file source-files)
2289 (hfy-copy-and-fontify-file srcdir dstdir file))
acca02b0
SM
2290 (hfy-subtract-maps srcdir)
2291 (hfy-save-kill-buffers (hfy-prepare-index srcdir dstdir) dstdir)
2292 (hfy-save-kill-buffers (hfy-prepare-tag-map srcdir dstdir) dstdir) ))
2293
2294;; name of the init file we want:
2295(defun hfy-initfile ()
2296 "Return the expected location of the htmlfontify specific init/custom file."
2297 (let* ((file (or (getenv "HFY_INITFILE") ".hfy.el")))
2298 (expand-file-name file "~") ))
2299
2300
2301;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2302;; incomplete as yet : transfer hook settings to hfy init file:
2303;; (defalias 'hfy-set-hooks 'custom-set-variables)
2304
2305;; (defun hfy-pp-hook (H)
2306;; (and (string-match "-hook$" (symbol-name H))
2307;; (boundp H)
2308;; (symbol-value H)
2309;; (insert (format "\n '(%S %S)" H (symbol-value H)))
2310;; )
2311;; )
2312
2313;; (defun hfy-save-hooks ()
2314;; (let ((custom-file (hfy-initfile)))
2315;; (custom-save-delete 'hfy-set-hooks)
2316;; (let ((standard-output (current-buffer)))
2317;; (princ "(hfy-set-hooks\n;;auto-generated, only one copy allowed\n")
2318;; (mapatoms 'hfy-pp-hook)
2319;; (insert "\n)")
2320;; )
2321;; )
2322;; )
2323;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2324
2325(defalias 'hfy-init-progn 'progn)
2326
2327(defun hfy-save-initvar (sym)
2328 (princ (format "(setq %s\n '" sym))
2329 (pp (symbol-value sym))
2330 (princ ")\n"))
2331
2332(defun htmlfontify-save-initfile ()
2333 "Save the htmlfontify settings to the htmlfontify init file."
2334 (interactive)
2335 (let* ((start-pos nil)
2336 (custom-file (hfy-initfile))
2337 (standard-output (find-file-noselect custom-file 'nowarn)))
2338 (save-excursion
2339 (custom-save-delete 'hfy-init-progn)
2340 (setq start-pos (point))
2341 (princ "(hfy-init-progn\n;;auto-generated, only one copy allowed\n")
72fe6b25
SM
2342 ;; FIXME: This saving&restoring of global customization
2343 ;; variables can interfere with other customization settings for
2344 ;; those vars (in .emacs or in Customize).
acca02b0 2345 (mapc 'hfy-save-initvar
72fe6b25 2346 '(auto-mode-alist interpreter-mode-alist))
acca02b0
SM
2347 (princ ")\n")
2348 (indent-region start-pos (point) nil))
2349 (custom-save-all) ))
2350
2351(defun htmlfontify-load-initfile ()
2352 "Load the htmlfontify specific init/custom file."
2353 (interactive)
2354 (let ((file (hfy-initfile)))
2355 (load file 'NOERROR nil nil) ))
2356
2357(provide 'htmlfontify)
2358;;; htmlfontify.el ends here
2359
964f5b2b 2360;; arch-tag: 944e5e63-c81d-4baa-a82a-0275f9c30e61