~ubuntu-branches/ubuntu/utopic/haskell-blaze-html/utopic

« back to all changes in this revision

Viewing changes to Text/Blaze/XHtml1/FrameSet/Attributes.hs

  • Committer: Package Import Robot
  • Author(s): Joachim Breitner
  • Date: 2013-05-25 00:17:43 UTC
  • mfrom: (1.2.1) (6.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20130525001743-iji5qplp60hehaxw
Tags: 0.5.1.3-1
* Enable compat level 9
* Use substvars for Haskell description blurbs
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
--
2
 
--
3
 
{-# LANGUAGE OverloadedStrings #-}
4
 
module Text.Blaze.XHtml1.FrameSet.Attributes
5
 
    ( abbr
6
 
    , accept
7
 
    , accesskey
8
 
    , action
9
 
    , align
10
 
    , alt
11
 
    , archive
12
 
    , axis
13
 
    , background
14
 
    , bgcolor
15
 
    , border
16
 
    , cellpadding
17
 
    , cellspacing
18
 
    , char
19
 
    , charoff
20
 
    , charset
21
 
    , checked
22
 
    , cite
23
 
    , class_
24
 
    , classid
25
 
    , clear
26
 
    , codebase
27
 
    , codetype
28
 
    , cols
29
 
    , colspan
30
 
    , compact
31
 
    , content
32
 
    , coords
33
 
    , data_
34
 
    , datetime
35
 
    , declare
36
 
    , defer
37
 
    , dir
38
 
    , disabled
39
 
    , enctype
40
 
    , for
41
 
    , frame
42
 
    , frameborder
43
 
    , headers
44
 
    , height
45
 
    , href
46
 
    , hreflang
47
 
    , hspace
48
 
    , httpEquiv
49
 
    , id
50
 
    , label
51
 
    , lang
52
 
    , language
53
 
    , maxlength
54
 
    , media
55
 
    , method
56
 
    , multiple
57
 
    , name
58
 
    , nohref
59
 
    , noshade
60
 
    , nowrap
61
 
    , onabort
62
 
    , onblur
63
 
    , onchange
64
 
    , onclick
65
 
    , ondblclick
66
 
    , onfocus
67
 
    , onkeydown
68
 
    , onkeypress
69
 
    , onkeyup
70
 
    , onload
71
 
    , onmousedown
72
 
    , onmousemove
73
 
    , onmouseout
74
 
    , onmouseover
75
 
    , onmouseup
76
 
    , onreset
77
 
    , onselect
78
 
    , onsubmit
79
 
    , onunload
80
 
    , profile
81
 
    , readonly
82
 
    , rel
83
 
    , rev
84
 
    , rows
85
 
    , rowspan
86
 
    , rules
87
 
    , scheme
88
 
    , scope
89
 
    , scrolling
90
 
    , selected
91
 
    , shape
92
 
    , size
93
 
    , span
94
 
    , src
95
 
    , standby
96
 
    , start
97
 
    , style
98
 
    , summary
99
 
    , tabindex
100
 
    , target
101
 
    , title
102
 
    , type_
103
 
    , usemap
104
 
    , valign
105
 
    , value
106
 
    , valuetype
107
 
    , vspace
108
 
    , width
109
 
    ) where
110
 
 
111
 
--
112
 
import Prelude ()
113
 
 
114
 
import Text.Blaze.Internal (Attribute, AttributeValue, attribute)
115
 
 
116
 
--
117
 
--
118
 
--
119
 
--
120
 
--
121
 
--
122
 
abbr :: AttributeValue  -- ^ Attribute value.
123
 
     -> Attribute       -- ^ Resulting attribute.
124
 
abbr = attribute "abbr" " abbr=\""
125
 
{-# INLINE abbr #-}
126
 
 
127
 
--
128
 
--
129
 
--
130
 
--
131
 
--
132
 
--
133
 
accept :: AttributeValue  -- ^ Attribute value.
134
 
       -> Attribute       -- ^ Resulting attribute.
135
 
accept = attribute "accept" " accept=\""
136
 
{-# INLINE accept #-}
137
 
 
138
 
--
139
 
--
140
 
--
141
 
--
142
 
--
143
 
--
144
 
accesskey :: AttributeValue  -- ^ Attribute value.
145
 
          -> Attribute       -- ^ Resulting attribute.
146
 
accesskey = attribute "accesskey" " accesskey=\""
147
 
{-# INLINE accesskey #-}
148
 
 
149
 
--
150
 
--
151
 
--
152
 
--
153
 
--
154
 
--
155
 
action :: AttributeValue  -- ^ Attribute value.
156
 
       -> Attribute       -- ^ Resulting attribute.
157
 
action = attribute "action" " action=\""
158
 
{-# INLINE action #-}
159
 
 
160
 
--
161
 
--
162
 
--
163
 
--
164
 
--
165
 
--
166
 
align :: AttributeValue  -- ^ Attribute value.
167
 
      -> Attribute       -- ^ Resulting attribute.
168
 
align = attribute "align" " align=\""
169
 
{-# INLINE align #-}
170
 
 
171
 
--
172
 
--
173
 
--
174
 
--
175
 
--
176
 
--
177
 
alt :: AttributeValue  -- ^ Attribute value.
178
 
    -> Attribute       -- ^ Resulting attribute.
179
 
alt = attribute "alt" " alt=\""
180
 
{-# INLINE alt #-}
181
 
 
182
 
--
183
 
--
184
 
--
185
 
--
186
 
--
187
 
--
188
 
archive :: AttributeValue  -- ^ Attribute value.
189
 
        -> Attribute       -- ^ Resulting attribute.
190
 
archive = attribute "archive" " archive=\""
191
 
{-# INLINE archive #-}
192
 
 
193
 
--
194
 
--
195
 
--
196
 
--
197
 
--
198
 
--
199
 
axis :: AttributeValue  -- ^ Attribute value.
200
 
     -> Attribute       -- ^ Resulting attribute.
201
 
axis = attribute "axis" " axis=\""
202
 
{-# INLINE axis #-}
203
 
 
204
 
--
205
 
--
206
 
--
207
 
--
208
 
--
209
 
--
210
 
background :: AttributeValue  -- ^ Attribute value.
211
 
           -> Attribute       -- ^ Resulting attribute.
212
 
background = attribute "background" " background=\""
213
 
{-# INLINE background #-}
214
 
 
215
 
--
216
 
--
217
 
--
218
 
--
219
 
--
220
 
--
221
 
bgcolor :: AttributeValue  -- ^ Attribute value.
222
 
        -> Attribute       -- ^ Resulting attribute.
223
 
bgcolor = attribute "bgcolor" " bgcolor=\""
224
 
{-# INLINE bgcolor #-}
225
 
 
226
 
--
227
 
--
228
 
--
229
 
--
230
 
--
231
 
--
232
 
border :: AttributeValue  -- ^ Attribute value.
233
 
       -> Attribute       -- ^ Resulting attribute.
234
 
border = attribute "border" " border=\""
235
 
{-# INLINE border #-}
236
 
 
237
 
--
238
 
--
239
 
--
240
 
--
241
 
--
242
 
--
243
 
cellpadding :: AttributeValue  -- ^ Attribute value.
244
 
            -> Attribute       -- ^ Resulting attribute.
245
 
cellpadding = attribute "cellpadding" " cellpadding=\""
246
 
{-# INLINE cellpadding #-}
247
 
 
248
 
--
249
 
--
250
 
--
251
 
--
252
 
--
253
 
--
254
 
cellspacing :: AttributeValue  -- ^ Attribute value.
255
 
            -> Attribute       -- ^ Resulting attribute.
256
 
cellspacing = attribute "cellspacing" " cellspacing=\""
257
 
{-# INLINE cellspacing #-}
258
 
 
259
 
--
260
 
--
261
 
--
262
 
--
263
 
--
264
 
--
265
 
char :: AttributeValue  -- ^ Attribute value.
266
 
     -> Attribute       -- ^ Resulting attribute.
267
 
char = attribute "char" " char=\""
268
 
{-# INLINE char #-}
269
 
 
270
 
--
271
 
--
272
 
--
273
 
--
274
 
--
275
 
--
276
 
charoff :: AttributeValue  -- ^ Attribute value.
277
 
        -> Attribute       -- ^ Resulting attribute.
278
 
charoff = attribute "charoff" " charoff=\""
279
 
{-# INLINE charoff #-}
280
 
 
281
 
--
282
 
--
283
 
--
284
 
--
285
 
--
286
 
--
287
 
charset :: AttributeValue  -- ^ Attribute value.
288
 
        -> Attribute       -- ^ Resulting attribute.
289
 
charset = attribute "charset" " charset=\""
290
 
{-# INLINE charset #-}
291
 
 
292
 
--
293
 
--
294
 
--
295
 
--
296
 
--
297
 
--
298
 
checked :: AttributeValue  -- ^ Attribute value.
299
 
        -> Attribute       -- ^ Resulting attribute.
300
 
checked = attribute "checked" " checked=\""
301
 
{-# INLINE checked #-}
302
 
 
303
 
--
304
 
--
305
 
--
306
 
--
307
 
--
308
 
--
309
 
cite :: AttributeValue  -- ^ Attribute value.
310
 
     -> Attribute       -- ^ Resulting attribute.
311
 
cite = attribute "cite" " cite=\""
312
 
{-# INLINE cite #-}
313
 
 
314
 
--
315
 
--
316
 
--
317
 
--
318
 
--
319
 
--
320
 
class_ :: AttributeValue  -- ^ Attribute value.
321
 
       -> Attribute       -- ^ Resulting attribute.
322
 
class_ = attribute "class" " class=\""
323
 
{-# INLINE class_ #-}
324
 
 
325
 
--
326
 
--
327
 
--
328
 
--
329
 
--
330
 
--
331
 
classid :: AttributeValue  -- ^ Attribute value.
332
 
        -> Attribute       -- ^ Resulting attribute.
333
 
classid = attribute "classid" " classid=\""
334
 
{-# INLINE classid #-}
335
 
 
336
 
--
337
 
--
338
 
--
339
 
--
340
 
--
341
 
--
342
 
clear :: AttributeValue  -- ^ Attribute value.
343
 
      -> Attribute       -- ^ Resulting attribute.
344
 
clear = attribute "clear" " clear=\""
345
 
{-# INLINE clear #-}
346
 
 
347
 
--
348
 
--
349
 
--
350
 
--
351
 
--
352
 
--
353
 
codebase :: AttributeValue  -- ^ Attribute value.
354
 
         -> Attribute       -- ^ Resulting attribute.
355
 
codebase = attribute "codebase" " codebase=\""
356
 
{-# INLINE codebase #-}
357
 
 
358
 
--
359
 
--
360
 
--
361
 
--
362
 
--
363
 
--
364
 
codetype :: AttributeValue  -- ^ Attribute value.
365
 
         -> Attribute       -- ^ Resulting attribute.
366
 
codetype = attribute "codetype" " codetype=\""
367
 
{-# INLINE codetype #-}
368
 
 
369
 
--
370
 
--
371
 
--
372
 
--
373
 
--
374
 
--
375
 
cols :: AttributeValue  -- ^ Attribute value.
376
 
     -> Attribute       -- ^ Resulting attribute.
377
 
cols = attribute "cols" " cols=\""
378
 
{-# INLINE cols #-}
379
 
 
380
 
--
381
 
--
382
 
--
383
 
--
384
 
--
385
 
--
386
 
colspan :: AttributeValue  -- ^ Attribute value.
387
 
        -> Attribute       -- ^ Resulting attribute.
388
 
colspan = attribute "colspan" " colspan=\""
389
 
{-# INLINE colspan #-}
390
 
 
391
 
--
392
 
--
393
 
--
394
 
--
395
 
--
396
 
--
397
 
compact :: AttributeValue  -- ^ Attribute value.
398
 
        -> Attribute       -- ^ Resulting attribute.
399
 
compact = attribute "compact" " compact=\""
400
 
{-# INLINE compact #-}
401
 
 
402
 
--
403
 
--
404
 
--
405
 
--
406
 
--
407
 
--
408
 
content :: AttributeValue  -- ^ Attribute value.
409
 
        -> Attribute       -- ^ Resulting attribute.
410
 
content = attribute "content" " content=\""
411
 
{-# INLINE content #-}
412
 
 
413
 
--
414
 
--
415
 
--
416
 
--
417
 
--
418
 
--
419
 
coords :: AttributeValue  -- ^ Attribute value.
420
 
       -> Attribute       -- ^ Resulting attribute.
421
 
coords = attribute "coords" " coords=\""
422
 
{-# INLINE coords #-}
423
 
 
424
 
--
425
 
--
426
 
--
427
 
--
428
 
--
429
 
--
430
 
data_ :: AttributeValue  -- ^ Attribute value.
431
 
      -> Attribute       -- ^ Resulting attribute.
432
 
data_ = attribute "data" " data=\""
433
 
{-# INLINE data_ #-}
434
 
 
435
 
--
436
 
--
437
 
--
438
 
--
439
 
--
440
 
--
441
 
datetime :: AttributeValue  -- ^ Attribute value.
442
 
         -> Attribute       -- ^ Resulting attribute.
443
 
datetime = attribute "datetime" " datetime=\""
444
 
{-# INLINE datetime #-}
445
 
 
446
 
--
447
 
--
448
 
--
449
 
--
450
 
--
451
 
--
452
 
declare :: AttributeValue  -- ^ Attribute value.
453
 
        -> Attribute       -- ^ Resulting attribute.
454
 
declare = attribute "declare" " declare=\""
455
 
{-# INLINE declare #-}
456
 
 
457
 
--
458
 
--
459
 
--
460
 
--
461
 
--
462
 
--
463
 
defer :: AttributeValue  -- ^ Attribute value.
464
 
      -> Attribute       -- ^ Resulting attribute.
465
 
defer = attribute "defer" " defer=\""
466
 
{-# INLINE defer #-}
467
 
 
468
 
--
469
 
--
470
 
--
471
 
--
472
 
--
473
 
--
474
 
dir :: AttributeValue  -- ^ Attribute value.
475
 
    -> Attribute       -- ^ Resulting attribute.
476
 
dir = attribute "dir" " dir=\""
477
 
{-# INLINE dir #-}
478
 
 
479
 
--
480
 
--
481
 
--
482
 
--
483
 
--
484
 
--
485
 
disabled :: AttributeValue  -- ^ Attribute value.
486
 
         -> Attribute       -- ^ Resulting attribute.
487
 
disabled = attribute "disabled" " disabled=\""
488
 
{-# INLINE disabled #-}
489
 
 
490
 
--
491
 
--
492
 
--
493
 
--
494
 
--
495
 
--
496
 
enctype :: AttributeValue  -- ^ Attribute value.
497
 
        -> Attribute       -- ^ Resulting attribute.
498
 
enctype = attribute "enctype" " enctype=\""
499
 
{-# INLINE enctype #-}
500
 
 
501
 
--
502
 
--
503
 
--
504
 
--
505
 
--
506
 
--
507
 
for :: AttributeValue  -- ^ Attribute value.
508
 
    -> Attribute       -- ^ Resulting attribute.
509
 
for = attribute "for" " for=\""
510
 
{-# INLINE for #-}
511
 
 
512
 
--
513
 
--
514
 
--
515
 
--
516
 
--
517
 
--
518
 
frame :: AttributeValue  -- ^ Attribute value.
519
 
      -> Attribute       -- ^ Resulting attribute.
520
 
frame = attribute "frame" " frame=\""
521
 
{-# INLINE frame #-}
522
 
 
523
 
--
524
 
--
525
 
--
526
 
--
527
 
--
528
 
--
529
 
frameborder :: AttributeValue  -- ^ Attribute value.
530
 
            -> Attribute       -- ^ Resulting attribute.
531
 
frameborder = attribute "frameborder" " frameborder=\""
532
 
{-# INLINE frameborder #-}
533
 
 
534
 
--
535
 
--
536
 
--
537
 
--
538
 
--
539
 
--
540
 
headers :: AttributeValue  -- ^ Attribute value.
541
 
        -> Attribute       -- ^ Resulting attribute.
542
 
headers = attribute "headers" " headers=\""
543
 
{-# INLINE headers #-}
544
 
 
545
 
--
546
 
--
547
 
--
548
 
--
549
 
--
550
 
--
551
 
height :: AttributeValue  -- ^ Attribute value.
552
 
       -> Attribute       -- ^ Resulting attribute.
553
 
height = attribute "height" " height=\""
554
 
{-# INLINE height #-}
555
 
 
556
 
--
557
 
--
558
 
--
559
 
--
560
 
--
561
 
--
562
 
href :: AttributeValue  -- ^ Attribute value.
563
 
     -> Attribute       -- ^ Resulting attribute.
564
 
href = attribute "href" " href=\""
565
 
{-# INLINE href #-}
566
 
 
567
 
--
568
 
--
569
 
--
570
 
--
571
 
--
572
 
--
573
 
hreflang :: AttributeValue  -- ^ Attribute value.
574
 
         -> Attribute       -- ^ Resulting attribute.
575
 
hreflang = attribute "hreflang" " hreflang=\""
576
 
{-# INLINE hreflang #-}
577
 
 
578
 
--
579
 
--
580
 
--
581
 
--
582
 
--
583
 
--
584
 
hspace :: AttributeValue  -- ^ Attribute value.
585
 
       -> Attribute       -- ^ Resulting attribute.
586
 
hspace = attribute "hspace" " hspace=\""
587
 
{-# INLINE hspace #-}
588
 
 
589
 
--
590
 
--
591
 
--
592
 
--
593
 
--
594
 
--
595
 
httpEquiv :: AttributeValue  -- ^ Attribute value.
596
 
          -> Attribute       -- ^ Resulting attribute.
597
 
httpEquiv = attribute "http-equiv" " http-equiv=\""
598
 
{-# INLINE httpEquiv #-}
599
 
 
600
 
--
601
 
--
602
 
--
603
 
--
604
 
--
605
 
--
606
 
id :: AttributeValue  -- ^ Attribute value.
607
 
   -> Attribute       -- ^ Resulting attribute.
608
 
id = attribute "id" " id=\""
609
 
{-# INLINE id #-}
610
 
 
611
 
--
612
 
--
613
 
--
614
 
--
615
 
--
616
 
--
617
 
label :: AttributeValue  -- ^ Attribute value.
618
 
      -> Attribute       -- ^ Resulting attribute.
619
 
label = attribute "label" " label=\""
620
 
{-# INLINE label #-}
621
 
 
622
 
--
623
 
--
624
 
--
625
 
--
626
 
--
627
 
--
628
 
lang :: AttributeValue  -- ^ Attribute value.
629
 
     -> Attribute       -- ^ Resulting attribute.
630
 
lang = attribute "lang" " lang=\""
631
 
{-# INLINE lang #-}
632
 
 
633
 
--
634
 
--
635
 
--
636
 
--
637
 
--
638
 
--
639
 
language :: AttributeValue  -- ^ Attribute value.
640
 
         -> Attribute       -- ^ Resulting attribute.
641
 
language = attribute "language" " language=\""
642
 
{-# INLINE language #-}
643
 
 
644
 
--
645
 
--
646
 
--
647
 
--
648
 
--
649
 
--
650
 
maxlength :: AttributeValue  -- ^ Attribute value.
651
 
          -> Attribute       -- ^ Resulting attribute.
652
 
maxlength = attribute "maxlength" " maxlength=\""
653
 
{-# INLINE maxlength #-}
654
 
 
655
 
--
656
 
--
657
 
--
658
 
--
659
 
--
660
 
--
661
 
media :: AttributeValue  -- ^ Attribute value.
662
 
      -> Attribute       -- ^ Resulting attribute.
663
 
media = attribute "media" " media=\""
664
 
{-# INLINE media #-}
665
 
 
666
 
--
667
 
--
668
 
--
669
 
--
670
 
--
671
 
--
672
 
method :: AttributeValue  -- ^ Attribute value.
673
 
       -> Attribute       -- ^ Resulting attribute.
674
 
method = attribute "method" " method=\""
675
 
{-# INLINE method #-}
676
 
 
677
 
--
678
 
--
679
 
--
680
 
--
681
 
--
682
 
--
683
 
multiple :: AttributeValue  -- ^ Attribute value.
684
 
         -> Attribute       -- ^ Resulting attribute.
685
 
multiple = attribute "multiple" " multiple=\""
686
 
{-# INLINE multiple #-}
687
 
 
688
 
--
689
 
--
690
 
--
691
 
--
692
 
--
693
 
--
694
 
name :: AttributeValue  -- ^ Attribute value.
695
 
     -> Attribute       -- ^ Resulting attribute.
696
 
name = attribute "name" " name=\""
697
 
{-# INLINE name #-}
698
 
 
699
 
--
700
 
--
701
 
--
702
 
--
703
 
--
704
 
--
705
 
nohref :: AttributeValue  -- ^ Attribute value.
706
 
       -> Attribute       -- ^ Resulting attribute.
707
 
nohref = attribute "nohref" " nohref=\""
708
 
{-# INLINE nohref #-}
709
 
 
710
 
--
711
 
--
712
 
--
713
 
--
714
 
--
715
 
--
716
 
noshade :: AttributeValue  -- ^ Attribute value.
717
 
        -> Attribute       -- ^ Resulting attribute.
718
 
noshade = attribute "noshade" " noshade=\""
719
 
{-# INLINE noshade #-}
720
 
 
721
 
--
722
 
--
723
 
--
724
 
--
725
 
--
726
 
--
727
 
nowrap :: AttributeValue  -- ^ Attribute value.
728
 
       -> Attribute       -- ^ Resulting attribute.
729
 
nowrap = attribute "nowrap" " nowrap=\""
730
 
{-# INLINE nowrap #-}
731
 
 
732
 
--
733
 
--
734
 
--
735
 
--
736
 
--
737
 
--
738
 
onabort :: AttributeValue  -- ^ Attribute value.
739
 
        -> Attribute       -- ^ Resulting attribute.
740
 
onabort = attribute "onabort" " onabort=\""
741
 
{-# INLINE onabort #-}
742
 
 
743
 
--
744
 
--
745
 
--
746
 
--
747
 
--
748
 
--
749
 
onblur :: AttributeValue  -- ^ Attribute value.
750
 
       -> Attribute       -- ^ Resulting attribute.
751
 
onblur = attribute "onblur" " onblur=\""
752
 
{-# INLINE onblur #-}
753
 
 
754
 
--
755
 
--
756
 
--
757
 
--
758
 
--
759
 
--
760
 
onchange :: AttributeValue  -- ^ Attribute value.
761
 
         -> Attribute       -- ^ Resulting attribute.
762
 
onchange = attribute "onchange" " onchange=\""
763
 
{-# INLINE onchange #-}
764
 
 
765
 
--
766
 
--
767
 
--
768
 
--
769
 
--
770
 
--
771
 
onclick :: AttributeValue  -- ^ Attribute value.
772
 
        -> Attribute       -- ^ Resulting attribute.
773
 
onclick = attribute "onclick" " onclick=\""
774
 
{-# INLINE onclick #-}
775
 
 
776
 
--
777
 
--
778
 
--
779
 
--
780
 
--
781
 
--
782
 
ondblclick :: AttributeValue  -- ^ Attribute value.
783
 
           -> Attribute       -- ^ Resulting attribute.
784
 
ondblclick = attribute "ondblclick" " ondblclick=\""
785
 
{-# INLINE ondblclick #-}
786
 
 
787
 
--
788
 
--
789
 
--
790
 
--
791
 
--
792
 
--
793
 
onfocus :: AttributeValue  -- ^ Attribute value.
794
 
        -> Attribute       -- ^ Resulting attribute.
795
 
onfocus = attribute "onfocus" " onfocus=\""
796
 
{-# INLINE onfocus #-}
797
 
 
798
 
--
799
 
--
800
 
--
801
 
--
802
 
--
803
 
--
804
 
onkeydown :: AttributeValue  -- ^ Attribute value.
805
 
          -> Attribute       -- ^ Resulting attribute.
806
 
onkeydown = attribute "onkeydown" " onkeydown=\""
807
 
{-# INLINE onkeydown #-}
808
 
 
809
 
--
810
 
--
811
 
--
812
 
--
813
 
--
814
 
--
815
 
onkeypress :: AttributeValue  -- ^ Attribute value.
816
 
           -> Attribute       -- ^ Resulting attribute.
817
 
onkeypress = attribute "onkeypress" " onkeypress=\""
818
 
{-# INLINE onkeypress #-}
819
 
 
820
 
--
821
 
--
822
 
--
823
 
--
824
 
--
825
 
--
826
 
onkeyup :: AttributeValue  -- ^ Attribute value.
827
 
        -> Attribute       -- ^ Resulting attribute.
828
 
onkeyup = attribute "onkeyup" " onkeyup=\""
829
 
{-# INLINE onkeyup #-}
830
 
 
831
 
--
832
 
--
833
 
--
834
 
--
835
 
--
836
 
--
837
 
onload :: AttributeValue  -- ^ Attribute value.
838
 
       -> Attribute       -- ^ Resulting attribute.
839
 
onload = attribute "onload" " onload=\""
840
 
{-# INLINE onload #-}
841
 
 
842
 
--
843
 
--
844
 
--
845
 
--
846
 
--
847
 
--
848
 
onmousedown :: AttributeValue  -- ^ Attribute value.
849
 
            -> Attribute       -- ^ Resulting attribute.
850
 
onmousedown = attribute "onmousedown" " onmousedown=\""
851
 
{-# INLINE onmousedown #-}
852
 
 
853
 
--
854
 
--
855
 
--
856
 
--
857
 
--
858
 
--
859
 
onmousemove :: AttributeValue  -- ^ Attribute value.
860
 
            -> Attribute       -- ^ Resulting attribute.
861
 
onmousemove = attribute "onmousemove" " onmousemove=\""
862
 
{-# INLINE onmousemove #-}
863
 
 
864
 
--
865
 
--
866
 
--
867
 
--
868
 
--
869
 
--
870
 
onmouseout :: AttributeValue  -- ^ Attribute value.
871
 
           -> Attribute       -- ^ Resulting attribute.
872
 
onmouseout = attribute "onmouseout" " onmouseout=\""
873
 
{-# INLINE onmouseout #-}
874
 
 
875
 
--
876
 
--
877
 
--
878
 
--
879
 
--
880
 
--
881
 
onmouseover :: AttributeValue  -- ^ Attribute value.
882
 
            -> Attribute       -- ^ Resulting attribute.
883
 
onmouseover = attribute "onmouseover" " onmouseover=\""
884
 
{-# INLINE onmouseover #-}
885
 
 
886
 
--
887
 
--
888
 
--
889
 
--
890
 
--
891
 
--
892
 
onmouseup :: AttributeValue  -- ^ Attribute value.
893
 
          -> Attribute       -- ^ Resulting attribute.
894
 
onmouseup = attribute "onmouseup" " onmouseup=\""
895
 
{-# INLINE onmouseup #-}
896
 
 
897
 
--
898
 
--
899
 
--
900
 
--
901
 
--
902
 
--
903
 
onreset :: AttributeValue  -- ^ Attribute value.
904
 
        -> Attribute       -- ^ Resulting attribute.
905
 
onreset = attribute "onreset" " onreset=\""
906
 
{-# INLINE onreset #-}
907
 
 
908
 
--
909
 
--
910
 
--
911
 
--
912
 
--
913
 
--
914
 
onselect :: AttributeValue  -- ^ Attribute value.
915
 
         -> Attribute       -- ^ Resulting attribute.
916
 
onselect = attribute "onselect" " onselect=\""
917
 
{-# INLINE onselect #-}
918
 
 
919
 
--
920
 
--
921
 
--
922
 
--
923
 
--
924
 
--
925
 
onsubmit :: AttributeValue  -- ^ Attribute value.
926
 
         -> Attribute       -- ^ Resulting attribute.
927
 
onsubmit = attribute "onsubmit" " onsubmit=\""
928
 
{-# INLINE onsubmit #-}
929
 
 
930
 
--
931
 
--
932
 
--
933
 
--
934
 
--
935
 
--
936
 
onunload :: AttributeValue  -- ^ Attribute value.
937
 
         -> Attribute       -- ^ Resulting attribute.
938
 
onunload = attribute "onunload" " onunload=\""
939
 
{-# INLINE onunload #-}
940
 
 
941
 
--
942
 
--
943
 
--
944
 
--
945
 
--
946
 
--
947
 
profile :: AttributeValue  -- ^ Attribute value.
948
 
        -> Attribute       -- ^ Resulting attribute.
949
 
profile = attribute "profile" " profile=\""
950
 
{-# INLINE profile #-}
951
 
 
952
 
--
953
 
--
954
 
--
955
 
--
956
 
--
957
 
--
958
 
readonly :: AttributeValue  -- ^ Attribute value.
959
 
         -> Attribute       -- ^ Resulting attribute.
960
 
readonly = attribute "readonly" " readonly=\""
961
 
{-# INLINE readonly #-}
962
 
 
963
 
--
964
 
--
965
 
--
966
 
--
967
 
--
968
 
--
969
 
rel :: AttributeValue  -- ^ Attribute value.
970
 
    -> Attribute       -- ^ Resulting attribute.
971
 
rel = attribute "rel" " rel=\""
972
 
{-# INLINE rel #-}
973
 
 
974
 
--
975
 
--
976
 
--
977
 
--
978
 
--
979
 
--
980
 
rev :: AttributeValue  -- ^ Attribute value.
981
 
    -> Attribute       -- ^ Resulting attribute.
982
 
rev = attribute "rev" " rev=\""
983
 
{-# INLINE rev #-}
984
 
 
985
 
--
986
 
--
987
 
--
988
 
--
989
 
--
990
 
--
991
 
rows :: AttributeValue  -- ^ Attribute value.
992
 
     -> Attribute       -- ^ Resulting attribute.
993
 
rows = attribute "rows" " rows=\""
994
 
{-# INLINE rows #-}
995
 
 
996
 
--
997
 
--
998
 
--
999
 
--
1000
 
--
1001
 
--
1002
 
rowspan :: AttributeValue  -- ^ Attribute value.
1003
 
        -> Attribute       -- ^ Resulting attribute.
1004
 
rowspan = attribute "rowspan" " rowspan=\""
1005
 
{-# INLINE rowspan #-}
1006
 
 
1007
 
--
1008
 
--
1009
 
--
1010
 
--
1011
 
--
1012
 
--
1013
 
rules :: AttributeValue  -- ^ Attribute value.
1014
 
      -> Attribute       -- ^ Resulting attribute.
1015
 
rules = attribute "rules" " rules=\""
1016
 
{-# INLINE rules #-}
1017
 
 
1018
 
--
1019
 
--
1020
 
--
1021
 
--
1022
 
--
1023
 
--
1024
 
scheme :: AttributeValue  -- ^ Attribute value.
1025
 
       -> Attribute       -- ^ Resulting attribute.
1026
 
scheme = attribute "scheme" " scheme=\""
1027
 
{-# INLINE scheme #-}
1028
 
 
1029
 
--
1030
 
--
1031
 
--
1032
 
--
1033
 
--
1034
 
--
1035
 
scope :: AttributeValue  -- ^ Attribute value.
1036
 
      -> Attribute       -- ^ Resulting attribute.
1037
 
scope = attribute "scope" " scope=\""
1038
 
{-# INLINE scope #-}
1039
 
 
1040
 
--
1041
 
--
1042
 
--
1043
 
--
1044
 
--
1045
 
--
1046
 
scrolling :: AttributeValue  -- ^ Attribute value.
1047
 
          -> Attribute       -- ^ Resulting attribute.
1048
 
scrolling = attribute "scrolling" " scrolling=\""
1049
 
{-# INLINE scrolling #-}
1050
 
 
1051
 
--
1052
 
--
1053
 
--
1054
 
--
1055
 
--
1056
 
--
1057
 
selected :: AttributeValue  -- ^ Attribute value.
1058
 
         -> Attribute       -- ^ Resulting attribute.
1059
 
selected = attribute "selected" " selected=\""
1060
 
{-# INLINE selected #-}
1061
 
 
1062
 
--
1063
 
--
1064
 
--
1065
 
--
1066
 
--
1067
 
--
1068
 
shape :: AttributeValue  -- ^ Attribute value.
1069
 
      -> Attribute       -- ^ Resulting attribute.
1070
 
shape = attribute "shape" " shape=\""
1071
 
{-# INLINE shape #-}
1072
 
 
1073
 
--
1074
 
--
1075
 
--
1076
 
--
1077
 
--
1078
 
--
1079
 
size :: AttributeValue  -- ^ Attribute value.
1080
 
     -> Attribute       -- ^ Resulting attribute.
1081
 
size = attribute "size" " size=\""
1082
 
{-# INLINE size #-}
1083
 
 
1084
 
--
1085
 
--
1086
 
--
1087
 
--
1088
 
--
1089
 
--
1090
 
span :: AttributeValue  -- ^ Attribute value.
1091
 
     -> Attribute       -- ^ Resulting attribute.
1092
 
span = attribute "span" " span=\""
1093
 
{-# INLINE span #-}
1094
 
 
1095
 
--
1096
 
--
1097
 
--
1098
 
--
1099
 
--
1100
 
--
1101
 
src :: AttributeValue  -- ^ Attribute value.
1102
 
    -> Attribute       -- ^ Resulting attribute.
1103
 
src = attribute "src" " src=\""
1104
 
{-# INLINE src #-}
1105
 
 
1106
 
--
1107
 
--
1108
 
--
1109
 
--
1110
 
--
1111
 
--
1112
 
standby :: AttributeValue  -- ^ Attribute value.
1113
 
        -> Attribute       -- ^ Resulting attribute.
1114
 
standby = attribute "standby" " standby=\""
1115
 
{-# INLINE standby #-}
1116
 
 
1117
 
--
1118
 
--
1119
 
--
1120
 
--
1121
 
--
1122
 
--
1123
 
start :: AttributeValue  -- ^ Attribute value.
1124
 
      -> Attribute       -- ^ Resulting attribute.
1125
 
start = attribute "start" " start=\""
1126
 
{-# INLINE start #-}
1127
 
 
1128
 
--
1129
 
--
1130
 
--
1131
 
--
1132
 
--
1133
 
--
1134
 
style :: AttributeValue  -- ^ Attribute value.
1135
 
      -> Attribute       -- ^ Resulting attribute.
1136
 
style = attribute "style" " style=\""
1137
 
{-# INLINE style #-}
1138
 
 
1139
 
--
1140
 
--
1141
 
--
1142
 
--
1143
 
--
1144
 
--
1145
 
summary :: AttributeValue  -- ^ Attribute value.
1146
 
        -> Attribute       -- ^ Resulting attribute.
1147
 
summary = attribute "summary" " summary=\""
1148
 
{-# INLINE summary #-}
1149
 
 
1150
 
--
1151
 
--
1152
 
--
1153
 
--
1154
 
--
1155
 
--
1156
 
tabindex :: AttributeValue  -- ^ Attribute value.
1157
 
         -> Attribute       -- ^ Resulting attribute.
1158
 
tabindex = attribute "tabindex" " tabindex=\""
1159
 
{-# INLINE tabindex #-}
1160
 
 
1161
 
--
1162
 
--
1163
 
--
1164
 
--
1165
 
--
1166
 
--
1167
 
target :: AttributeValue  -- ^ Attribute value.
1168
 
       -> Attribute       -- ^ Resulting attribute.
1169
 
target = attribute "target" " target=\""
1170
 
{-# INLINE target #-}
1171
 
 
1172
 
--
1173
 
--
1174
 
--
1175
 
--
1176
 
--
1177
 
--
1178
 
title :: AttributeValue  -- ^ Attribute value.
1179
 
      -> Attribute       -- ^ Resulting attribute.
1180
 
title = attribute "title" " title=\""
1181
 
{-# INLINE title #-}
1182
 
 
1183
 
--
1184
 
--
1185
 
--
1186
 
--
1187
 
--
1188
 
--
1189
 
type_ :: AttributeValue  -- ^ Attribute value.
1190
 
      -> Attribute       -- ^ Resulting attribute.
1191
 
type_ = attribute "type" " type=\""
1192
 
{-# INLINE type_ #-}
1193
 
 
1194
 
--
1195
 
--
1196
 
--
1197
 
--
1198
 
--
1199
 
--
1200
 
usemap :: AttributeValue  -- ^ Attribute value.
1201
 
       -> Attribute       -- ^ Resulting attribute.
1202
 
usemap = attribute "usemap" " usemap=\""
1203
 
{-# INLINE usemap #-}
1204
 
 
1205
 
--
1206
 
--
1207
 
--
1208
 
--
1209
 
--
1210
 
--
1211
 
valign :: AttributeValue  -- ^ Attribute value.
1212
 
       -> Attribute       -- ^ Resulting attribute.
1213
 
valign = attribute "valign" " valign=\""
1214
 
{-# INLINE valign #-}
1215
 
 
1216
 
--
1217
 
--
1218
 
--
1219
 
--
1220
 
--
1221
 
--
1222
 
value :: AttributeValue  -- ^ Attribute value.
1223
 
      -> Attribute       -- ^ Resulting attribute.
1224
 
value = attribute "value" " value=\""
1225
 
{-# INLINE value #-}
1226
 
 
1227
 
--
1228
 
--
1229
 
--
1230
 
--
1231
 
--
1232
 
--
1233
 
valuetype :: AttributeValue  -- ^ Attribute value.
1234
 
          -> Attribute       -- ^ Resulting attribute.
1235
 
valuetype = attribute "valuetype" " valuetype=\""
1236
 
{-# INLINE valuetype #-}
1237
 
 
1238
 
--
1239
 
--
1240
 
--
1241
 
--
1242
 
--
1243
 
--
1244
 
vspace :: AttributeValue  -- ^ Attribute value.
1245
 
       -> Attribute       -- ^ Resulting attribute.
1246
 
vspace = attribute "vspace" " vspace=\""
1247
 
{-# INLINE vspace #-}
1248
 
 
1249
 
--
1250
 
--
1251
 
--
1252
 
--
1253
 
--
1254
 
--
1255
 
width :: AttributeValue  -- ^ Attribute value.
1256
 
      -> Attribute       -- ^ Resulting attribute.
1257
 
width = attribute "width" " width=\""
1258
 
{-# INLINE width #-}