#* 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 . 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 , for Silverwrist Design Studios. Portions created by Eric J. Bowersox are Copyright (C) 2003 Eric J. Bowersox/Silverwrist Design Studios. All Rights Reserved. Contributor(s): *# #* Parameters: community = Community we're displaying the profile of. logo = Community logo renderable object. type = Community type description. category = The community's category, if we're using categories on this server. synopsis = Community synopsis. location = List of strings containing location information language = Primary language for community (a com.silverwrist.util.Language object) rules = Community rules/standards of conduct homepage = Community home page *# #comment( "Profile for community #${community.getCID()}" ) #header2( "Community Profile:" "${community.Name}" )
#render( $logo )
Community created:
#formatDate( $community.CreationDate )
#if( $community.LastAccessDate ) Last accessed:
#formatDate( $community.LastAccessDate )
#end #if( $community.LastUpdateDate ) Profile last updated:
#formatDate( $community.LastUpdateDate )
#end
## TODO: Reserved for Invite or Join button
$!type #if( $category ) #set( $limit = $category.getNumLevels() - 1 )
Category: #foreach( $i in [0..$limit] ) #if( $i > 0 ): #end #set( $c = $category.getIDAtLevel($i) ) #encodeHTML( $category.getTitleAtLevel($i) ) #end #end #if( $synopsis )

#encodeHTML( $synopsis )

#end #set( $u = $community.HostUser.Name )

Host: #encodeHTML( $u )

Location:
#if( $location ) #foreach( $t in $location ) #encodeHTML( $t )
#end #end

Primary Language: #encodeHTML( $language.Name )

#if( $rules )

Standards of Conduct: #encodeHTML( $rules )

#end #if( $homepage )

Home Page: #encodeHTML( $homepage )

#end