HTML #91
Aliases: HTML
4 verbs · 10 properties · 0 children
Verbs
| Verb | Spec | Flags | Definer | Lines |
|---|---|---|---|---|
option_list | this none this | rxd | #91 | 10 |
table | this none this | rxd | #91 | 0 |
link | this none this | rxd | #91 | 5 |
ascii_sub | this none this | rxd | #91 | 1 |
Properties
| Property | Definer | Flags | Owner | Value |
|---|---|---|---|---|
aliases | #1 | rc | #361 | {"HTML"} |
description | #1 | rc | #361 | <clear> |
object_size | #1 | r | #29 | {1592, 1298433815} |
hidden_verbs | #1 | rc | #361 | <clear> |
phelp_msg | #1 | rc | #361 | <clear> |
weight | #1 | rc | #361 | <clear> |
owner_verbs | #1 | rc | #361 | <clear> |
plural_name | #1 | rc | #361 | <clear> |
client_image | #1 | rc | #361 | <clear> |
listening | #1 | rc | #361 | <clear> |
Ancestry
Ancestors (nearest first): #1 root
Children: none
Source
option_list
Referenced by
none
Source
1options = args[1]; 2optags = args[2]; 3cgi_target = args[3]; 4notify(player, "<UL>"); 5for x in [1..length(options)] 6option = options[x]; 7optag = optags[x]; 8notify(player, ((((("<LI><A HREF=\"/" + cgi_target) + ",") + option) + "\">") + optag) + "</A>"); 9endfor 10notify(player, "</UL>");
table
Referenced by
none
Source
No program (verb defined but unprogrammed).
link
Referenced by
- #1:_www line 9:
$html:link
Source
1"$html:link(STR text, STR url) => Wraps text in an HTML anchor specified by"; 2" url and returns it."; 3text = args[1]; 4url = args[2]; 5return ((("<a href=\"" + url) + "\">") + text) + "</a>";
ascii_sub
Referenced by
- #90:clean_post line 2:
$html:ascii_sub
Source
1return args[1];