2003-05-19 21:25:31 -06:00
|
|
|
#*
|
|
|
|
The contents of this file are subject to the Mozilla Public License Version 1.1
|
|
|
|
(the "License"); you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at <http://www.mozilla.org/MPL/>.
|
|
|
|
|
|
|
|
Software distributed under the License is distributed on an "AS IS" basis, WITHOUT
|
|
|
|
WARRANTY OF ANY KIND, either express or implied. See the License for the specific
|
|
|
|
language governing rights and limitations under the License.
|
|
|
|
|
|
|
|
The Original Code is the Venice Web Communities System.
|
|
|
|
|
|
|
|
The Initial Developer of the Original Code is Eric J. Bowersox <erbo@silcom.com>,
|
|
|
|
for Silverwrist Design Studios. Portions created by Eric J. Bowersox are
|
|
|
|
Copyright (C) 2002-03 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved.
|
|
|
|
|
|
|
|
Contributor(s):
|
|
|
|
*#
|
|
|
|
|
|
|
|
## Define macros around the "std" object.
|
2003-05-25 21:06:43 -06:00
|
|
|
#macro( dollarprefix $data )$std.dollarPrefix($data)#end
|
|
|
|
|
2003-05-19 21:25:31 -06:00
|
|
|
#macro( formatURL $type $url )$std.formatURL($type,$url)#end
|
|
|
|
|
|
|
|
#macro( encodeHTML $data )$std.encodeHTML($data)#end
|
|
|
|
|
|
|
|
#macro( encodeURL $data )$std.encodeURL($data)#end
|
|
|
|
|
2003-05-30 20:27:09 -06:00
|
|
|
#macro( getProperty $obj $namespace $name )$std.getProperty($data,$namespace,$name)#end
|
|
|
|
|
2003-05-19 21:25:31 -06:00
|
|
|
#macro( render $obj )$std.renderObject($obj)#end
|
|
|
|
|
|
|
|
#macro( renderDialog $dlg )$std.renderDialog($dlg)#end
|
|
|
|
|
|
|
|
#macro( stacktrace $thr )$std.getStackTrace($thr)#end
|
|
|
|
|
|
|
|
## following are additions for Venice
|
|
|
|
#macro( comment $txt )#if( ${std_frame.getShowComments()} )<!-- $txt -->#end #end
|
|
|
|
|
|
|
|
#macro( formatDate $d )$std_datefmt.formatDate($d)#end
|
|
|
|
|
|
|
|
#macro( formatActivity $d )$std_datefmt.getActivityString($d)#end
|
|
|
|
|
|
|
|
#macro( header1 $title )$std.renderObject($std_content.header1($title))#end
|
|
|
|
|
|
|
|
#macro( header2 $title $subtitle )$std.renderObject($std_content.header2($title,$subtitle))#end
|
|
|
|
|
|
|
|
#macro( button $type $name )$std.renderObject($std_button.getButton($type,$name))#end
|
2003-05-26 03:58:35 -06:00
|
|
|
|
|
|
|
#macro( bullet )$std.renderObject($std_content.bullet())#end
|