alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  
<#else> <td>${name} </#if> </#macro> <#-- Highlights every other row--> <#macro indexedRows count> <#if (count%2>0)> <tr class="a"> <#else> <tr class="b"> </#if> </#macro> <#-- Convenience method--> <#macro rows count> <#call indexedRows count="${count}"> </#macro> <#-- User feedback macros --> <#macro error(text)> <p class="errormark">${text}

</#macro> <#macro done(text)> <p class="donemark">${text}

</#macro> <#macro info(text)> <p class="infomark">${text}

</#macro> <#macro warn(text)> <p class="warningmark">${text}

</#macro> <#macro errorMessage(caption, message)> <div class="errormessage"> <p> <strong>${caption}

${message} </p> </div> </#macro> <#macro errorMessageMultiple(caption, message, errors)> <div class="errormessage"> <p> <strong>${caption}

${message} <#if errors?exists> <@s.iterator id="e" value="errors"> <#assign e = stack.findString('top') /> <#call error(e)> </@s.iterator> </#if> </p> </div> </#macro> <#macro warningMessage(caption, message)> <div class="warningmessage"> <p> <strong>${caption}

${message} </p> </div> </#macro> <#macro infoMessage(caption, message)> <div class="infomessage"> <p> <strong>${caption}

${message} </p> </div> </#macro> <#macro doneMessage(caption, message)> <div class="donemessage"> <p> <strong>${caption}

${message} </p> </div> </#macro>

Other Struts examples (source code examples)

Here is a short list of links related to this Struts tigris-macros.ftl source code file:

Struts example source code file (tigris-macros.ftl)

This example Struts source code file (tigris-macros.ftl) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Struts tags/keywords

convenience, convenience, display, display, highlights, highlights, user, user

The Struts tigris-macros.ftl source code

<#--
/*
 * $Id: tigris-macros.ftl 590812 2007-10-31 20:32:54Z apetrelli $
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */
-->
<#-- Display related macros -->

<#macro startPage pageTitle>
	<#include "page-header.ftl">
</#macro>

<#macro endPage>
	<#include "page-footer.ftl">
</#macro>

<#macro startTabs>
	<div class="tabs" id="tabs">
		<table cellpadding="3" cellspacing="0" border="0">
			<tr>
</#macro>

<#macro endTabs>
			</tr>
		</table>
	</div>
</#macro>

<#macro tab name, url, isSelected>
	<#if isSelected == "true">
		<th>${name}
... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.