|
|
|
|
Synopsis |
|
|
|
Documentation |
|
module Network.Shpider.Pairs |
|
|
Plain old form: Method, action and inputs.
| Constructors | | Instances | |
|
|
|
Either GET or POST.
| Constructors | | Instances | |
|
|
|
Gets all forms from a list of tags.
|
|
|
Takes a form and fills out the inputs with the given [ ( String , String ) ].
It is convienent to use the pairs syntax here.
f : _ <- getFormsByAction "http://whatever.com"
sendForm $ fillOutForm f $ pairs $ do
"author" =: "Johnny"
"message" =: "Nice syntax dewd."
|
|
|
The TagParser which parses all forms.
|
|
|
|
|
The first argument is the action attribute of the form, the second is the method attribute, and the third are the inputs.
|
|
Produced by Haddock version 2.4.2 |