## Licensed to Cloudera, Inc. under one ## or more contributor license agreements. See the NOTICE file ## distributed with this work for additional information ## regarding copyright ownership. Cloudera, Inc. 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. <%! from desktop.views import commonheader, commonfooter from django.core.urlresolvers import reverse from django.utils.encoding import smart_unicode from django.utils.translation import ugettext as _ %> <%namespace name="header" file="header.mako" /> ${ commonheader(_('Quick Start'), "quickstart", user) | n,unicode } ${ header.menubar() }

% if user.is_superuser: ${ _('Quick Start Wizard') } - % endif Hue™ ${version} - ${ _("The Hadoop UI") }

% if user.is_superuser:

${ _('Checking current configuration') }

${ _('Install individual application examples') }

${ _('Create or import users') }

${ _('Tours and tutorials') }

${ _('Anonymous usage analytics') }

${ _('Use the applications') }

${ _('Skip wizard next time') }

${ _('Back') } ${ _('Next') } ${ _('Done') }
${ _('Hue and the Hue logo are trademarks of Cloudera, Inc.') }
% else:

${ _('Learn more about Hue and Hadoop on') } http://gethue.com. ${ _('Hue and the Hue logo are trademarks of Cloudera, Inc.') } % if not user.is_authenticated(): <% home_url = url('desktop.views.home') from desktop.conf import USE_NEW_EDITOR if USE_NEW_EDITOR.get(): home_url = url('desktop.views.home2') %>
${ _('Sign in now!') } % endif

% endif
% if user.is_superuser: % endif ${ commonfooter(request, messages) | n,unicode }