comparison lisp/w3/w3-auto.el @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents c53a95d3c46d
children 1ce6082ce73f
comparison
equal deleted inserted replaced
69:804d1389bcd6 70:131b0175ea99
1 ;;; All the autoloads for emacs-w3 1 ;;; All the autoloads for emacs-w3
2 2
3 ;; About pages 3 ;; About pages
4 (autoload 'w3-about "w3-about") 4 (autoload 'w3-about "w3-about")
5 5
6 ;; Annotation handling
7 (autoload 'w3-parse-personal-annotations "w3-annotat")
8 (autoload 'w3-is-personal-annotation "w3-annotat")
9 (autoload 'w3-delete-personal-annotation "w3-annotat")
10 (autoload 'w3-personal-annotation-add "w3-annotat")
11 (autoload 'w3-annotation-minor-mode "w3-annotat")
12 (autoload 'w3-annotation-add "w3-annotat")
13
6 ;; Hotlist handling 14 ;; Hotlist handling
7 (autoload 'w3-read-html-bookmarks "w3-hot" nil t) 15 (autoload 'w3-read-html-bookmarks "w3-hot")
8 (autoload 'w3-hotlist-apropos "w3-hot" nil t) 16 (autoload 'w3-hotlist-apropos "w3-hot")
9 (autoload 'w3-hotlist-refresh "w3-hot" nil t) 17 (autoload 'w3-hotlist-refresh "w3-hot")
10 (autoload 'w3-hotlist-delete "w3-hot" nil t) 18 (autoload 'w3-hotlist-delete "w3-hot")
11 (autoload 'w3-hotlist-rename-entry "w3-hot" nil t) 19 (autoload 'w3-hotlist-rename-entry "w3-hot")
12 (autoload 'w3-hotlist-append "w3-hot" nil t) 20 (autoload 'w3-hotlist-append "w3-hot")
13 (autoload 'w3-parse-hotlist "w3-hot") 21 (autoload 'w3-parse-hotlist "w3-hot")
14 (autoload 'w3-use-hotlist "w3-hot" nil t) 22 (autoload 'w3-use-hotlist "w3-hot")
15 (autoload 'w3-hotlist-add-document-at-point "w3-hot" nil t) 23 (autoload 'w3-hotlist-add-document-at-point "w3-hot")
16 (autoload 'w3-hotlist-add-document "w3-hot" nil t) 24 (autoload 'w3-hotlist-add-document "w3-hot")
17 25
18 ;; Printing 26 ;; Printing
19 (autoload 'w3-print-this-url "w3-print" nil t) 27 (autoload 'w3-print-with-ps-print "w3-print")
20 (autoload 'w3-print-url-under-point "w3-print" nil t) 28 (autoload 'w3-print-this-url "w3-print")
29 (autoload 'w3-print-url-under-point "w3-print")
21 (autoload 'w3-parse-tree-to-latex "w3-latex") 30 (autoload 'w3-parse-tree-to-latex "w3-latex")
22 (autoload 'w3-show-dvi "w3-latex" nil t) 31 (autoload 'w3-show-dvi "w3-latex")
23 32
24 ;; Stylesheet stuff 33 ;; Stylesheet stuff
25 (autoload 'w3-handle-style "w3-style") 34 (autoload 'w3-handle-style "w3-style")
26 (autoload 'w3-display-stylesheet "w3-style" nil t) 35 (autoload 'w3-style-parse-css "w3-style")
36 (autoload 'w3-generate-stylesheet-faces "w3-style")
27 37
28 ;; Setup stuff 38 ;; Setup stuff
29 (autoload 'url-do-setup "url") 39 (autoload 'url-do-setup "url")
30 (autoload 'w3-do-setup "w3") 40 (autoload 'w3-do-setup "w3")
31 41
32 ;; Forms stuff 42 ;; Forms stuff
33 (autoload 'w3-form-resurrect-widgets "w3-forms")
34 (autoload 'w3-form-add-element "w3-forms") 43 (autoload 'w3-form-add-element "w3-forms")
35 (autoload 'w3-do-text-entry "w3-forms") 44 (autoload 'w3-do-text-entry "w3-forms")
36 (autoload 'w3-do-form-entry "w3-forms") 45 (autoload 'w3-do-form-entry "w3-forms")
46 (autoload 'widget-at "w3-forms")
37 (autoload 'w3-next-widget "w3-forms") 47 (autoload 'w3-next-widget "w3-forms")
38 48
39 ;; Widget stuff 49 ;; Widget stuff
40 (autoload 'widget-setup "wid-edit") 50 (autoload 'widget-setup "widget-edit")
41 (autoload 'widget-create "wid-edit") 51 (autoload 'widget-create "widget-edit")
42 (autoload 'widget-get "wid-edit") 52 (autoload 'widget-get "widget-edit")
43 (autoload 'widget-put "wid-edit") 53 (autoload 'widget-put "widget-edit")
44 (autoload 'widget-forward "wid-edit") 54 (autoload 'widget-forward "widget-edit")
45 (autoload 'widget-backward "wid-edit") 55 (autoload 'widget-backward "widget-edit")
46 (autoload 'widget-at "wid-edit")
47 56
48 ;; Preferences 57 ;; Preferences
49 (autoload 'w3-preferences-edit "w3-prefs" nil t) 58 (autoload 'w3-preferences-edit "w3-prefs")
50 59
51 (defvar widget-field-new nil) 60 (defvar widget-field-new nil)
52 61
53 (provide 'w3-auto) 62 (provide 'w3-auto)
54 63