The cl-mechanize Reference Manual
Table of Contents
The cl-mechanize Reference Manual
This is the cl-mechanize Reference Manual, version 0.0,
generated automatically by Declt version 3.0 "Montgomery Scott"
on Tue Dec 22 12:31:57 2020 GMT+0.
1 Introduction
About
CL-MECHANIZE is a WWW::Mechanize work-alike for Common Lisp
implemented as a thin wrapper on top of Drakma.
This package is still in the early stages of development.
Please read the source before using; do not expect this to do anything useful.
Getting
git clone git://github.com/joachifm/cl-mechanize.git cl-mechanize
Use QuickLisp to easily install the dependencies.
Usage
$ lisp
;; Add system definition to the ASDF search path
(pushnew (merge-pathnames "relative/path/to/cl-mechanize"
(user-homedir-pathname))
asdf:*central-registry*)
;; Load system
(asdf:operate 'asdf:load-op :cl-mechanize)
(in-package :cl-mechanize-user)
;; Create browser object
(defvar *browser* (make-instance 'browser)
;; Do a google search
(fetch "http://www.google.com" *browser*)
(let* ((page (browser-page *browser*))
(search-form (car (page-forms page))))
(setf (form-inputs search-form)
'(("q" . "google")))
(submit search-form *browser*)
(let ((results (browser-page *browser*)))
(format t "~A~%" (ppcre:all-matches-as-strings "<title>[a-z].*</title>"
(page-content results)))
(dolist (link (page-links results))
(format t "~A~%" (link-text link)))
;; Traverse the DOM
(stp:do-recursively (n (page-dom results))
...)))
2 Systems
The main system appears first, followed by any subsystem dependency.
2.1 cl-mechanize
- Author
Joachim Fasting <joachim.fasting@gmail.com>
- License
BSD
- Description
A WWW::Mechanize work-alike
- Version
0.0
- Dependencies
- puri
- drakma
- closure-html
- cxml-stp
- cl-ppcre
- Source
cl-mechanize.asd (file)
- Components
-
3 Files
Files are sorted by type and then listed depth-first from the systems
components trees.
3.1 Lisp
3.1.1 cl-mechanize.asd
- Location
cl-mechanize.asd
- Systems
cl-mechanize (system)
- Packages
cl-mechanize-asd
3.1.2 cl-mechanize/packages.lisp
- Parent
cl-mechanize (system)
- Location
packages.lisp
- Packages
-
3.1.3 cl-mechanize/cl-mechanize.lisp
- Dependency
packages.lisp (file)
- Parent
cl-mechanize (system)
- Location
cl-mechanize.lisp
- Exported Definitions
-
- Internal Definitions
-
4 Packages
Packages are listed by definition order.
4.1 cl-mechanize-asd
- Source
cl-mechanize.asd
- Use List
- asdf/interface
- common-lisp
4.2 cl-mechanize-user
- Source
packages.lisp (file)
- Nicknames
- net.browser-user
- mechanize-user
- browser-user
- Use List
-
4.3 cl-mechanize
- Source
packages.lisp (file)
- Nicknames
- net.browser
- mechanize
- browser
- Use List
common-lisp
- Used By List
cl-mechanize-user
- Exported Definitions
-
- Internal Definitions
-
5 Definitions
Definitions are sorted by export status, category, package, and then by
lexicographic order.
5.1 Exported definitions
5.1.1 Special variables
- Special Variable: *accept-cookies-p*
-
Accept cookies from visited sites?
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Special Variable: *cookie-jar-dir*
-
Folder where cookies are stored.
Set to NIL to disable storing/loading cookies to/from disk.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Special Variable: *cookie-lifetime-policy*
-
How long to keep cookies.
Setting to :EXPIRY keeps cookies until they expire
Setting to :SESSION does not store any cookies.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Special Variable: *user-agent*
-
Default User-Agent string.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
5.1.2 Functions
- Function: back BROWSER
-
Go back in history.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Function: fetch URI BROWSER &key METHOD PARAMETERS
-
Send a request and fetch the response.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Function: follow LINK BROWSER
-
Follow a link on the current page.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Function: reload BROWSER
-
Repeat the current request.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Function: submit FORM BROWSER
-
Submit a form on the current page.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
5.1.3 Generic functions
- Generic Function: browser-cookie-jar OBJECT
-
- Generic Function: (setf browser-cookie-jar) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: browser-cookie-jar (BROWSER browser)
-
- Method: (setf browser-cookie-jar) NEW-VALUE (BROWSER browser)
-
The current cookie jar object. Updated by FETCH.
- Source
cl-mechanize.lisp (file)
- Generic Function: browser-history OBJECT
-
- Generic Function: (setf browser-history) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: browser-history (BROWSER browser)
-
- Method: (setf browser-history) NEW-VALUE (BROWSER browser)
-
A list of visited pages, in chronological order.
- Source
cl-mechanize.lisp (file)
- Generic Function: browser-page OBJECT
-
- Generic Function: (setf browser-page) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: browser-page (BROWSER browser)
-
- Method: (setf browser-page) NEW-VALUE (BROWSER browser)
-
The current page object. Updated by FETCH.
- Source
cl-mechanize.lisp (file)
- Generic Function: browser-user-agent OBJECT
-
- Generic Function: (setf browser-user-agent) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: browser-user-agent (BROWSER browser)
-
- Method: (setf browser-user-agent) NEW-VALUE (BROWSER browser)
-
User-Agent string used by GET.
- Source
cl-mechanize.lisp (file)
- Generic Function: form-action OBJECT
-
- Generic Function: (setf form-action) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: form-action (FORM form)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf form-action) NEW-VALUE (FORM form)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: form-inputs OBJECT
-
- Generic Function: (setf form-inputs) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: form-inputs (FORM form)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf form-inputs) NEW-VALUE (FORM form)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: form-method OBJECT
-
- Generic Function: (setf form-method) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: form-method (FORM form)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf form-method) NEW-VALUE (FORM form)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: form-name OBJECT
-
- Generic Function: (setf form-name) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: form-name (FORM form)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf form-name) NEW-VALUE (FORM form)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: link-attrs OBJECT
-
- Generic Function: (setf link-attrs) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: link-attrs (LINK link)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf link-attrs) NEW-VALUE (LINK link)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: link-tag OBJECT
-
- Generic Function: (setf link-tag) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: link-tag (LINK link)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf link-tag) NEW-VALUE (LINK link)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: link-text OBJECT
-
- Generic Function: (setf link-text) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: link-text (LINK link)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf link-text) NEW-VALUE (LINK link)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: link-uri OBJECT
-
- Generic Function: (setf link-uri) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: link-uri (LINK link)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf link-uri) NEW-VALUE (LINK link)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: link-url OBJECT
-
- Generic Function: (setf link-url) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: link-url (LINK link)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf link-url) NEW-VALUE (LINK link)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: page-content OBJECT
-
- Generic Function: (setf page-content) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: page-content (PAGE page)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf page-content) NEW-VALUE (PAGE page)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: page-dom OBJECT
-
- Generic Function: (setf page-dom) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: page-dom (PAGE page)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf page-dom) NEW-VALUE (PAGE page)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: page-forms OBJECT
-
- Generic Function: (setf page-forms) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: page-forms (PAGE page)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf page-forms) NEW-VALUE (PAGE page)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: page-links OBJECT
-
- Generic Function: (setf page-links) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: page-links (PAGE page)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf page-links) NEW-VALUE (PAGE page)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
- Generic Function: page-uri OBJECT
-
- Generic Function: (setf page-uri) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: page-uri (PAGE page)
-
automatically generated reader method
- Source
cl-mechanize.lisp (file)
- Method: (setf page-uri) NEW-VALUE (PAGE page)
-
automatically generated writer method
- Source
cl-mechanize.lisp (file)
5.1.4 Classes
- Class: browser ()
-
Encapsulates the browser state.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Direct superclasses
standard-object (class)
- Direct methods
-
- Direct slots
- Slot: user-agent
-
User-Agent string used by GET.
- Initargs
:user-agent
- Initform
cl-mechanize:*user-agent*
- Readers
browser-user-agent (generic function)
- Writers
(setf browser-user-agent) (generic function)
- Slot: cookie-jar
-
The current cookie jar object. Updated by FETCH.
- Initform
(make-instance (quote drakma:cookie-jar))
- Readers
browser-cookie-jar (generic function)
- Writers
(setf browser-cookie-jar) (generic function)
- Slot: history
-
A list of visited pages, in chronological order.
- Readers
browser-history (generic function)
- Writers
(setf browser-history) (generic function)
- Slot: page
-
The current page object. Updated by FETCH.
- Readers
browser-page (generic function)
- Writers
(setf browser-page) (generic function)
- Slot: status
-
The HTTP status code of the last request.
- Readers
browser-status (generic function)
- Writers
(setf browser-status) (generic function)
- Class: form ()
-
Represents a form element.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Direct superclasses
standard-object (class)
- Direct methods
-
- Direct slots
- Slot: name
-
- Initargs
:name
- Readers
form-name (generic function)
- Writers
(setf form-name) (generic function)
- Slot: action
-
- Initargs
:action
- Readers
form-action (generic function)
- Writers
(setf form-action) (generic function)
- Slot: method
-
- Initargs
:method
- Initform
:get
- Readers
form-method (generic function)
- Writers
(setf form-method) (generic function)
- Slot: inputs
-
- Initargs
:inputs
- Readers
form-inputs (generic function)
- Writers
(setf form-inputs) (generic function)
- Class: link ()
-
Represents a link element.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Direct superclasses
standard-object (class)
- Direct methods
-
- Direct slots
- Slot: text
-
- Initargs
:text
- Readers
link-text (generic function)
- Writers
(setf link-text) (generic function)
- Slot: uri
-
- Initargs
:uri
- Readers
link-uri (generic function)
- Writers
(setf link-uri) (generic function)
- Slot: url
-
- Initargs
:url
- Readers
link-url (generic function)
- Writers
(setf link-url) (generic function)
- Slot: tag
-
- Initargs
:tag
- Initform
:a
- Readers
link-tag (generic function)
- Writers
(setf link-tag) (generic function)
- Slot: attrs
-
- Initargs
:attrs
- Readers
link-attrs (generic function)
- Writers
(setf link-attrs) (generic function)
- Class: page ()
-
Contains the result of fetching a page.
- Package
cl-mechanize
- Source
cl-mechanize.lisp (file)
- Direct superclasses
standard-object (class)
- Direct methods
-
- Direct slots
- Slot: uri
-
- Initargs
:uri
- Readers
page-uri (generic function)
- Writers
(setf page-uri) (generic function)
- Slot: links
-
- Initargs
:links
- Readers
page-links (generic function)
- Writers
(setf page-links) (generic function)
- Slot: forms
-
- Initargs
:forms
- Readers
page-forms (generic function)
- Writers
(setf page-forms) (generic function)
- Slot: dom
-
- Initargs
:dom
- Readers
page-dom (generic function)
- Writers
(setf page-dom) (generic function)
- Slot: content
-
- Initargs
:content
- Readers
page-content (generic function)
- Writers
(setf page-content) (generic function)
5.2 Internal definitions
5.2.1 Generic functions
- Generic Function: browser-status OBJECT
-
- Generic Function: (setf browser-status) NEW-VALUE OBJECT
-
- Package
cl-mechanize
- Methods
- Method: browser-status (BROWSER browser)
-
- Method: (setf browser-status) NEW-VALUE (BROWSER browser)
-
The HTTP status code of the last request.
- Source
cl-mechanize.lisp (file)
Appendix A Indexes
A.1 Concepts
A.2 Functions
| Index Entry | | Section |
|
( | | |
| (setf browser-cookie-jar) : | | Exported generic functions |
| (setf browser-cookie-jar) : | | Exported generic functions |
| (setf browser-history) : | | Exported generic functions |
| (setf browser-history) : | | Exported generic functions |
| (setf browser-page) : | | Exported generic functions |
| (setf browser-page) : | | Exported generic functions |
| (setf browser-status) : | | Internal generic functions |
| (setf browser-status) : | | Internal generic functions |
| (setf browser-user-agent) : | | Exported generic functions |
| (setf browser-user-agent) : | | Exported generic functions |
| (setf form-action) : | | Exported generic functions |
| (setf form-action) : | | Exported generic functions |
| (setf form-inputs) : | | Exported generic functions |
| (setf form-inputs) : | | Exported generic functions |
| (setf form-method) : | | Exported generic functions |
| (setf form-method) : | | Exported generic functions |
| (setf form-name) : | | Exported generic functions |
| (setf form-name) : | | Exported generic functions |
| (setf link-attrs) : | | Exported generic functions |
| (setf link-attrs) : | | Exported generic functions |
| (setf link-tag) : | | Exported generic functions |
| (setf link-tag) : | | Exported generic functions |
| (setf link-text) : | | Exported generic functions |
| (setf link-text) : | | Exported generic functions |
| (setf link-uri) : | | Exported generic functions |
| (setf link-uri) : | | Exported generic functions |
| (setf link-url) : | | Exported generic functions |
| (setf link-url) : | | Exported generic functions |
| (setf page-content) : | | Exported generic functions |
| (setf page-content) : | | Exported generic functions |
| (setf page-dom) : | | Exported generic functions |
| (setf page-dom) : | | Exported generic functions |
| (setf page-forms) : | | Exported generic functions |
| (setf page-forms) : | | Exported generic functions |
| (setf page-links) : | | Exported generic functions |
| (setf page-links) : | | Exported generic functions |
| (setf page-uri) : | | Exported generic functions |
| (setf page-uri) : | | Exported generic functions |
|
B | | |
| back : | | Exported functions |
| browser-cookie-jar : | | Exported generic functions |
| browser-cookie-jar : | | Exported generic functions |
| browser-history : | | Exported generic functions |
| browser-history : | | Exported generic functions |
| browser-page : | | Exported generic functions |
| browser-page : | | Exported generic functions |
| browser-status : | | Internal generic functions |
| browser-status : | | Internal generic functions |
| browser-user-agent : | | Exported generic functions |
| browser-user-agent : | | Exported generic functions |
|
F | | |
| fetch : | | Exported functions |
| follow : | | Exported functions |
| form-action : | | Exported generic functions |
| form-action : | | Exported generic functions |
| form-inputs : | | Exported generic functions |
| form-inputs : | | Exported generic functions |
| form-method : | | Exported generic functions |
| form-method : | | Exported generic functions |
| form-name : | | Exported generic functions |
| form-name : | | Exported generic functions |
| Function, back : | | Exported functions |
| Function, fetch : | | Exported functions |
| Function, follow : | | Exported functions |
| Function, reload : | | Exported functions |
| Function, submit : | | Exported functions |
|
G | | |
| Generic Function, (setf browser-cookie-jar) : | | Exported generic functions |
| Generic Function, (setf browser-history) : | | Exported generic functions |
| Generic Function, (setf browser-page) : | | Exported generic functions |
| Generic Function, (setf browser-status) : | | Internal generic functions |
| Generic Function, (setf browser-user-agent) : | | Exported generic functions |
| Generic Function, (setf form-action) : | | Exported generic functions |
| Generic Function, (setf form-inputs) : | | Exported generic functions |
| Generic Function, (setf form-method) : | | Exported generic functions |
| Generic Function, (setf form-name) : | | Exported generic functions |
| Generic Function, (setf link-attrs) : | | Exported generic functions |
| Generic Function, (setf link-tag) : | | Exported generic functions |
| Generic Function, (setf link-text) : | | Exported generic functions |
| Generic Function, (setf link-uri) : | | Exported generic functions |
| Generic Function, (setf link-url) : | | Exported generic functions |
| Generic Function, (setf page-content) : | | Exported generic functions |
| Generic Function, (setf page-dom) : | | Exported generic functions |
| Generic Function, (setf page-forms) : | | Exported generic functions |
| Generic Function, (setf page-links) : | | Exported generic functions |
| Generic Function, (setf page-uri) : | | Exported generic functions |
| Generic Function, browser-cookie-jar : | | Exported generic functions |
| Generic Function, browser-history : | | Exported generic functions |
| Generic Function, browser-page : | | Exported generic functions |
| Generic Function, browser-status : | | Internal generic functions |
| Generic Function, browser-user-agent : | | Exported generic functions |
| Generic Function, form-action : | | Exported generic functions |
| Generic Function, form-inputs : | | Exported generic functions |
| Generic Function, form-method : | | Exported generic functions |
| Generic Function, form-name : | | Exported generic functions |
| Generic Function, link-attrs : | | Exported generic functions |
| Generic Function, link-tag : | | Exported generic functions |
| Generic Function, link-text : | | Exported generic functions |
| Generic Function, link-uri : | | Exported generic functions |
| Generic Function, link-url : | | Exported generic functions |
| Generic Function, page-content : | | Exported generic functions |
| Generic Function, page-dom : | | Exported generic functions |
| Generic Function, page-forms : | | Exported generic functions |
| Generic Function, page-links : | | Exported generic functions |
| Generic Function, page-uri : | | Exported generic functions |
|
L | | |
| link-attrs : | | Exported generic functions |
| link-attrs : | | Exported generic functions |
| link-tag : | | Exported generic functions |
| link-tag : | | Exported generic functions |
| link-text : | | Exported generic functions |
| link-text : | | Exported generic functions |
| link-uri : | | Exported generic functions |
| link-uri : | | Exported generic functions |
| link-url : | | Exported generic functions |
| link-url : | | Exported generic functions |
|
M | | |
| Method, (setf browser-cookie-jar) : | | Exported generic functions |
| Method, (setf browser-history) : | | Exported generic functions |
| Method, (setf browser-page) : | | Exported generic functions |
| Method, (setf browser-status) : | | Internal generic functions |
| Method, (setf browser-user-agent) : | | Exported generic functions |
| Method, (setf form-action) : | | Exported generic functions |
| Method, (setf form-inputs) : | | Exported generic functions |
| Method, (setf form-method) : | | Exported generic functions |
| Method, (setf form-name) : | | Exported generic functions |
| Method, (setf link-attrs) : | | Exported generic functions |
| Method, (setf link-tag) : | | Exported generic functions |
| Method, (setf link-text) : | | Exported generic functions |
| Method, (setf link-uri) : | | Exported generic functions |
| Method, (setf link-url) : | | Exported generic functions |
| Method, (setf page-content) : | | Exported generic functions |
| Method, (setf page-dom) : | | Exported generic functions |
| Method, (setf page-forms) : | | Exported generic functions |
| Method, (setf page-links) : | | Exported generic functions |
| Method, (setf page-uri) : | | Exported generic functions |
| Method, browser-cookie-jar : | | Exported generic functions |
| Method, browser-history : | | Exported generic functions |
| Method, browser-page : | | Exported generic functions |
| Method, browser-status : | | Internal generic functions |
| Method, browser-user-agent : | | Exported generic functions |
| Method, form-action : | | Exported generic functions |
| Method, form-inputs : | | Exported generic functions |
| Method, form-method : | | Exported generic functions |
| Method, form-name : | | Exported generic functions |
| Method, link-attrs : | | Exported generic functions |
| Method, link-tag : | | Exported generic functions |
| Method, link-text : | | Exported generic functions |
| Method, link-uri : | | Exported generic functions |
| Method, link-url : | | Exported generic functions |
| Method, page-content : | | Exported generic functions |
| Method, page-dom : | | Exported generic functions |
| Method, page-forms : | | Exported generic functions |
| Method, page-links : | | Exported generic functions |
| Method, page-uri : | | Exported generic functions |
|
P | | |
| page-content : | | Exported generic functions |
| page-content : | | Exported generic functions |
| page-dom : | | Exported generic functions |
| page-dom : | | Exported generic functions |
| page-forms : | | Exported generic functions |
| page-forms : | | Exported generic functions |
| page-links : | | Exported generic functions |
| page-links : | | Exported generic functions |
| page-uri : | | Exported generic functions |
| page-uri : | | Exported generic functions |
|
R | | |
| reload : | | Exported functions |
|
S | | |
| submit : | | Exported functions |
|
A.3 Variables
| Index Entry | | Section |
|
* | | |
| *accept-cookies-p* : | | Exported special variables |
| *cookie-jar-dir* : | | Exported special variables |
| *cookie-lifetime-policy* : | | Exported special variables |
| *user-agent* : | | Exported special variables |
|
A | | |
| action : | | Exported classes |
| attrs : | | Exported classes |
|
C | | |
| content : | | Exported classes |
| cookie-jar : | | Exported classes |
|
D | | |
| dom : | | Exported classes |
|
F | | |
| forms : | | Exported classes |
|
H | | |
| history : | | Exported classes |
|
I | | |
| inputs : | | Exported classes |
|
L | | |
| links : | | Exported classes |
|
M | | |
| method : | | Exported classes |
|
N | | |
| name : | | Exported classes |
|
P | | |
| page : | | Exported classes |
|
S | | |
| Slot, action : | | Exported classes |
| Slot, attrs : | | Exported classes |
| Slot, content : | | Exported classes |
| Slot, cookie-jar : | | Exported classes |
| Slot, dom : | | Exported classes |
| Slot, forms : | | Exported classes |
| Slot, history : | | Exported classes |
| Slot, inputs : | | Exported classes |
| Slot, links : | | Exported classes |
| Slot, method : | | Exported classes |
| Slot, name : | | Exported classes |
| Slot, page : | | Exported classes |
| Slot, status : | | Exported classes |
| Slot, tag : | | Exported classes |
| Slot, text : | | Exported classes |
| Slot, uri : | | Exported classes |
| Slot, uri : | | Exported classes |
| Slot, url : | | Exported classes |
| Slot, user-agent : | | Exported classes |
| Special Variable, *accept-cookies-p* : | | Exported special variables |
| Special Variable, *cookie-jar-dir* : | | Exported special variables |
| Special Variable, *cookie-lifetime-policy* : | | Exported special variables |
| Special Variable, *user-agent* : | | Exported special variables |
| status : | | Exported classes |
|
T | | |
| tag : | | Exported classes |
| text : | | Exported classes |
|
U | | |
| uri : | | Exported classes |
| uri : | | Exported classes |
| url : | | Exported classes |
| user-agent : | | Exported classes |
|
A.4 Data types