2603N/A## -*- coding: utf-8 -*-
2603N/A##
2603N/A## CDDL HEADER START
2603N/A##
2603N/A## The contents of this file are subject to the terms of the
2603N/A## Common Development and Distribution License (the "License").
2603N/A## You may not use this file except in compliance with the License.
2603N/A##
2603N/A## You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2603N/A## or http://www.opensolaris.org/os/licensing.
2603N/A## See the License for the specific language governing permissions
2603N/A## and limitations under the License.
2603N/A##
2603N/A## When distributing Covered Code, include this CDDL HEADER in each
2603N/A## file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2603N/A## If applicable, add the following below this CDDL HEADER, with the
2603N/A## fields enclosed by brackets "[]" replaced with your own identifying
2603N/A## information: Portions Copyright [yyyy] [name of copyright owner]
2603N/A##
2603N/A## CDDL HEADER END
2603N/A##
2603N/A## Copyright 2008, 2011 Oracle and/or its affiliates. All rights reserved.
2603N/A##
2186N/A<%page args="g_vars, title, crumbs, gmenu_items"/>\
2186N/A
2186N/A<div id="head-container" class="page-container">
2186N/A <div class="masthead">
2603N/A <a id="logo" href="http://www.oracle.com/" title="www.oracle.com"></a>
2186N/A <div class="lang_wrapper">
2603N/A United States | English
2186N/A </div>
2186N/A </div>
2186N/A <ul id="navigation" class="menu">
2186N/A % for e, (link, text) in enumerate(gmenu_items):
2186N/A % if e == 0:
2186N/A <li id="left_cap" class="top-level"><p><a href="${link}">${text}</a></p></li>
2186N/A % else:
2186N/A <li class="top-level"><p><a href="${link}">${text}</a></p></li>
2186N/A % endif
2186N/A % endfor
2186N/A <li class="top-level special last"><p>&nbsp;</p></li>
2186N/A </ul>
2186N/A <div class="breadcrumbs">
2186N/A <div class="breadcrumb_left"></div>
2186N/A <div class="breadcrumb_center">
2186N/A <span class="breadcrumb_content">
2186N/A % for e, (link, text) in enumerate(crumbs):
2186N/A <a href="${link}">${text}</a>
2186N/A % if e < len(crumbs) - 1:
2603N/A <img src="http://www.oracleimg.com/ocom/groups/systemobject/@mktg_admin/documents/digitalasset/066625.gif"/>
2186N/A % endif
2186N/A % endfor
2186N/A </span>
2186N/A </div>
2186N/A <div class="breadcrumb_right"></div>
2186N/A </div>
2186N/A</div>