Method code for $channel_ui.channel_page_cmd()

[Turn on line numbering]
arg cmd, cmstr, channel;
var text, line;

if (.channel_alias(channel) == "")
    return .tell("Channel alias " + channel + " does not exist.");
text = .read();
if (text == 'aborted)
    return .tell("@paste aborted.");
else if (!text)
    return .tell("@paste nothing?");
for line in (text)
    .broadcast(.channel_alias(channel), ":paste: " + line);

// Created 24-Jul-1996 as a part of ColdCore, see: @help Credit

Tlon