Source: site.view [edit]
Function name: displayBinaryTags
Arguments:
Description:
Page type: webl
Render function:  
Module: sandbox

Page source:

var Result = "<H1>Recorded Binary Relations</H1>";  
var BinaryTags = WubCall("sandbox.binaryTags", []);
every BinaryTag in BinaryTags do 
  Result = Result + "<br><hr>Source:<br><UL><LI>Title: " + BinaryTag.sourceTitle + "</LI><LI>URL: " + BinaryTag.sourceURL + "</LI></UL> Target:<br><UL><LI>Title: " + BinaryTag.targetTitle + "</LI><LI>URL: " + BinaryTag.targetURL + "</LI></UL>Tag: " + BinaryTag.tag + "<br>";
end;

NewPiece(Result, "text/html");