Quick docfix
[syinit] / 04-w3-sy.el
1 ;; 04-w3-sy.el --- W3 Settings   -*- Emacs-Lisp -*-
2
3 ;; Copyright (C) 2007 - 2013 Steve Youngs
4
5 ;;     Author: Steve Youngs <steve@sxemacs.org>
6 ;; Maintainer: Steve Youngs <steve@sxemacs.org>
7 ;;    Created: <2007-12-02>
8 ;; Time-stamp: <Friday Aug 16, 2013 09:40:38 steve>
9 ;;   Download: <http://bastard.steveyoungs.com/~steve/SXEmacs/inits/>
10 ;;   HTMLised: <http://bastard.steveyoungs.com/~steve/SXEmacs/htmlinits/04-w3-sy.html>
11 ;;   Git Repo: git clone http://git.sxemacs.org/syinit
12 ;;   Keywords: init, compile
13
14 ;; This file is part of SYinit
15
16 ;; Redistribution and use in source and binary forms, with or without
17 ;; modification, are permitted provided that the following conditions
18 ;; are met:
19 ;;
20 ;; 1. Redistributions of source code must retain the above copyright
21 ;;    notice, this list of conditions and the following disclaimer.
22 ;;
23 ;; 2. Redistributions in binary form must reproduce the above copyright
24 ;;    notice, this list of conditions and the following disclaimer in the
25 ;;    documentation and/or other materials provided with the distribution.
26 ;;
27 ;; 3. Neither the name of the author nor the names of any contributors
28 ;;    may be used to endorse or promote products derived from this
29 ;;    software without specific prior written permission.
30 ;;
31 ;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR
32 ;; IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
33 ;; WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
34 ;; DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
35 ;; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
36 ;; CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
37 ;; SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
38 ;; BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
39 ;; WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
40 ;; OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
41 ;; IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42
43 ;;; Commentary:
44 ;;
45 ;;   I very rarely use W3, but it does work (I'll leave the interpretation
46 ;;   of "work" up to you)
47 ;;
48
49 ;;; Credits:
50 ;;
51 ;;   The HTML version of this file was created with Hrvoje Niksic's
52 ;;   htmlize.el which is part of the XEmacs "text-modes" package.
53 ;;
54
55 ;;; Todo:
56 ;;
57 ;;     
58
59 ;;; Code:
60 (setq 
61  url-automatic-caching t
62  url-be-asynchronous t
63  url-keep-history t
64  url-news-use-article-mode t
65  url-personal-mail-address "steve@steveyoungs.com"
66  url-privacy-level 'none
67  url-proxy-services nil
68  w3-auto-image-alt nil
69  w3-default-homepage "http://localhost/"
70  w3-do-incremental-display t
71  w3-do-scripting t
72  w3-documentation-root "/home/steve/documents/XEmacs/w3/"
73  w3-honor-stylesheets t
74  w3-hotlist-file "~/.url/.mosaic-hotlist-default"
75  w3-java-vm-program "/opt/jdk/jre/bin/java_vm"
76  w3-latex-print-links 'footnote
77  w3-min-img-size 5
78  w3-use-menus 
79  '(file edit view go bookmark options buffers style search emacs nil help)
80  w3-use-terminal-characters t
81  w3-user-colors-take-precedence t 
82  w3-user-fonts-take-precedence nil)
83 ;:*====================================================================
84 (message "W3 initialised")