Mercurial > hg > xemacs-beta
diff lisp/w3/docomp.el @ 0:376386a54a3c r19-14
Import from CVS: tag r19-14
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:45:50 +0200 |
parents | |
children | ac2d302a0011 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lisp/w3/docomp.el Mon Aug 13 08:45:50 2007 +0200 @@ -0,0 +1,105 @@ +(setq load-path (append (list (expand-file-name "./") + (or (getenv "URLDIR") + (expand-file-name "../url"))) + load-path)) + +(defun hack-dot-emacs () + (interactive) + (let* ((args command-line-args-left) + (fname (expand-file-name (nth 0 args))) + (lispdir (nth 1 args)) + (urldir (nth 2 args))) + (setq command-line-args-left (cdr (cdr (cdr command-line-args-left)))) + (set-buffer (get-buffer-create " *x*")) + (erase-buffer) + (if (file-exists-p fname) + (insert-file-contents fname)) + (goto-char (point-min)) + (if (search-forward ";;; Emacs-w3 configuration options" nil t) + (message "No changes made.") + (goto-char (point-max)) + (insert "\n;;; Emacs-w3 configuration options\n") + (insert "(setq load-path (cons (expand-file-name \"" + lispdir "\") load-path))\n") + (insert "(setq load-path (cons (expand-file-name \"" + urldir "\") load-path))\n") + (insert "(autoload 'w3-preview-this-buffer \"w3\" \"WWW Previewer\" t)\n") + (insert "(autoload 'w3-follow-url-at-point \"w3\" \"Find document at pt\" t)\n") + (insert "(autoload 'w3 \"w3\" \"WWW Browser\" t)\n") + (insert "(autoload 'w3-open-local \"w3\" \"Open local file for WWW browsing\" t)\n") + (insert "(autoload 'w3-fetch \"w3\" \"Open remote file for WWW browsing\" t)\n") + (insert "(autoload 'w3-use-hotlist \"w3\" \"Use shortcuts to view WWW docs\" t)\n") + (insert "(autoload 'w3-show-hotlist \"w3\" \"Use shortcuts to view WWW docs\" t)\n") + (insert "(autoload 'w3-follow-link \"w3\" \"Follow a hypertext link.\" t)\n") + (insert "(autoload 'w3-batch-fetch \"w3\" \"Batch retrieval of URLs\" t)\n") + (insert "(autoload 'url-get-url-at-point \"url\" \"Find the url under the cursor\" nil)\n") + (insert "(autoload 'url-file-attributes \"url\" \"File attributes of a URL\" nil)\n") + (insert "(autoload 'url-popup-info \"url\" \"Get info on a URL\" t)\n") + (insert "(autoload 'url-retrieve \"url\" \"Retrieve a URL\" nil)\n") + (insert "(autoload 'url-buffer-visiting \"url\" \"Find buffer visiting a URL.\" nil)\n") + (insert "(autoload 'gopher-dispatch-object \"gopher\" \"Fetch gopher dir\" t)\n") + (insert ";;; End of Emacs-w3 configuration options\n") + (write-file fname)))) + +(defun w3-declare-variables (&rest args) + (while args + (eval (list 'defvar (car args) nil "")) + (setq args (cdr args)))) + +;; For Emacs 19 +(w3-declare-variables 'track-mouse 'menu-bar-help-menu 'menu-bar-mode) + +;; For XEmacs/Lucid +(w3-declare-variables 'current-menubar 'default-menubar 'extent + 'mode-motion-hook 'mode-popup-menu 'sound-alist + 'inhibit-help-echo 'default-toolbar + 'bottom-toolbar-height 'top-toolbar-height + 'toolbar-buttons-captioned-p + 'right-toolbar-width 'left-toolbar-width + 'top-toolbar 'bottom-toolbar 'right-toolbar + 'left-toolbar 'device-fonts-cache + 'has-modeline-p 'baud-rate) + +;; For MULE +(w3-declare-variables '*noconv* '*autoconv* '*euc-japan* '*internal* + 'w3-mime-list-for-code-conversion + 'file-coding-system-for-read 'file-coding-system) + +;; For Mailcrypt +(w3-declare-variables 'mc-pgp-path 'mc-pgp-key-begin-line 'mc-ripem-pubkeyfile + 'mc-default-scheme 'mc-flag) + +;; For NNTP +(w3-declare-variables 'nntp-server-buffer 'nntp-server-process 'nntp/connection + 'gnus-nntp-server 'nntp-server-name 'nntp-version + 'gnus-default-nntp-server) + +;; For ps-print +(w3-declare-variables 'ps-bold-faces 'ps-italic-faces 'ps-print-version) + +;; For xpm-button +(w3-declare-variables 'x-library-search-path) + +;; For emacspeak +(w3-declare-variables 'dtk-voice-table 'dtk-punctuation-mode) + +;; For a few intern things +(w3-declare-variables 'tag 'w3-working-buffer 'proxy-info 'args + 'w3-image-widgets-waiting + 'w3-last-parse-tree 'command-line-args-left + 'standard-display-table 'w3-html-bookmarks + 'widget-keymap) + +(load "bytecomp" t t nil) +;; Emacs 19 byte compiler complains about too much stuff by default. +;; Turn off most of the warnings here. +(setq byte-compile-warnings '(free-vars)) + +(require 'w3-vars) +(require 'url) +(require 'mm) +(and w3-running-FSF19 + (< emacs-minor-version 29) + (require 'font)) +(load-library "w3-sysdp") +(provide 'ange-ftp)