/usr/share/emacs/site-lisp/w3m/w3m-perldoc.el is in w3m-el 1.4.4-10.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 | ;;; w3m-perldoc.el --- The add-on program to view Perl documents.
;; Copyright (C) 2001, 2002, 2003 TSUCHIYA Masatoshi <tsuchiya@namazu.org>
;; Author: TSUCHIYA Masatoshi <tsuchiya@namazu.org>
;; Keywords: w3m, perldoc
;; This file is a part of emacs-w3m.
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program; if not, you can either send email to this
;; program's maintainer or write to: The Free Software Foundation,
;; Inc.; 59 Temple Place, Suite 330; Boston, MA 02111-1307, USA.
;;; Commentary:
;; w3m-perldoc.el is the add-on program of emacs-w3m to view Perl
;; documents. For more detail about emacs-w3m, see:
;;
;; http://emacs-w3m.namazu.org/
;;; Code:
(require 'w3m)
(defgroup w3m-perldoc nil
"Perldoc front-end for emacs-w3m."
:group 'w3m
:prefix "w3m-perldoc-")
(defcustom w3m-perldoc-command "perldoc"
"*Name of the executable file of perldoc."
:group 'w3m-perldoc
:type '(string :size 0))
(defcustom w3m-perldoc-pod2html-command "pod2html"
"*Name of the executable file of pod2html."
:group 'w3m-perldoc
:type '(string :size 0))
(defcustom w3m-perldoc-pod2html-arguments
'("--noindex")
"*Arguments of pod2html."
:group 'w3m-perldoc
:type '(repeat (string :format "Argument: %v\n" :size 0))
:get (lambda (symbol)
(delq nil (delete "" (mapcar (lambda (x) (if (stringp x) x))
(default-value symbol)))))
:set (lambda (symbol value)
(set-default
symbol
(delq nil (delete "" (mapcar (lambda (x) (if (stringp x) x))
value))))))
(defcustom w3m-perldoc-input-coding-system
(if (string= "Japanese" w3m-language)
'euc-japan
(if (w3m-find-coding-system 'utf-8)
'utf-8
'iso-latin-1))
"*Coding system used when writing to `w3m-perldoc-command'."
:group 'w3m-perldoc
:type '(coding-system :size 0))
(defcustom w3m-perldoc-output-coding-system
'undecided
"*Coding system used when reading from `w3m-perldoc-command'."
:group 'w3m-perldoc
:type '(coding-system :size 0))
;;;###autoload
(defun w3m-about-perldoc (url &optional no-decode no-cache &rest args)
(when (string-match "\\`about://perldoc/" url)
(let ((docname (if (= (length url) (match-end 0))
"perl"
(w3m-url-decode-string (substring url (match-end 0)))))
(default-directory w3m-profile-directory)
(process-environment (copy-sequence process-environment)))
;; To specify the place in which pod2html generates its cache files.
(setenv "HOME" (expand-file-name w3m-profile-directory))
(and (let ((coding-system-for-read w3m-perldoc-output-coding-system))
(zerop (call-process w3m-perldoc-command
nil t nil "-u" docname)))
(let ((coding-system-for-write w3m-perldoc-input-coding-system)
(coding-system-for-read w3m-perldoc-input-coding-system))
(w3m-static-if (featurep 'xemacs)
(goto-char (point-max)))
(zerop (apply (function call-process-region)
(point-min) (point-max)
w3m-perldoc-pod2html-command
t '(t nil) nil
(append w3m-perldoc-pod2html-arguments
'("--htmlroot=about://perldoc")))))
(let ((case-fold-search t))
(goto-char (point-min))
(while (re-search-forward
"<a href=\"about://perldoc/\\([^\"]*\\)\\(\\.html\\)\">" nil t)
(delete-region (match-beginning 2) (match-end 2))
(save-restriction
(narrow-to-region (match-beginning 1) (match-end 1))
(while (search-backward "/" nil t)
(delete-char 1)
(insert "::"))
(goto-char (point-max))))
"text/html")))))
;;;###autoload
(defun w3m-perldoc (docname)
"View Perl documents."
(interactive "sDocument: ")
(w3m-goto-url (concat "about://perldoc/" (w3m-url-encode-string docname))))
(provide 'w3m-perldoc)
;;; w3m-perldoc.el ends here.
|