File: lists.htm

package info (click to toggle)
libembperl-perl 2.5.0-17
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 7,632 kB
  • sloc: ansic: 21,387; perl: 14,497; javascript: 4,280; cpp: 467; xml: 49; makefile: 35; sh: 24
file content (59 lines) | stat: -rw-r--r-- 1,003 bytes parent folder | download | duplicates (21)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>

<head>
<meta http-equiv="Content-Type"
content="text/html; charset=iso-8859-1">
<title>Lists</title>
</head>

<body bgcolor="#FFFFFF">

<p>[- @k = keys %INC -]<br>
[- @v = values %INC -]<br>
</p>
<hr>
<P>OL Tag</P>
<ol>
    <li>[+ $k[$row] +] = [+ $v[$row] +]</li>
</ol>

<hr>
<P>UL Tag</P>
<ul>
    <li>[+ $k[$row] +] = [+ $v[$row] +]</li>
</ul>

<hr>
<form method="POST">
  <P>Select Tag</P>

    If you request this document with list.htm?sel=x you can specify which
    module of the dropdownlist is initialy selected<BR>
    eg. lists.htm?sel=Apache.pm

    <p><select name="sel" size="1">
        <option value="[+ $k[$row] +]">[+ $v[$row] +]</option>
    </select></p>
</form>

<hr>
<P>DL Tag</P>
<dl>
    <dt>[+ $k[$row] +]</dt>
    <dd>[+ $v[$row] +]</dd>
</dl>

<hr>
<P>MENU Tag</P>
<menu>
    <li>[+ $k[$row] +] = [+ $v[$row] +]</li>
</menu>

<hr>
<P>DIR Tag</P>
<dir>
    <li>[+ $k[$row] +] = [+ $v[$row] +]</li>
</dir>
</body>
</html>