scheduledflowcalendarpage.vm

79 lines | 2.827 kB Blame History Raw Download
#*
 * Copyright 2012 LinkedIn Corp.
 * 
 * Licensed 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.
*#

<!DOCTYPE html> 
<html lang="en">
	<head>

#parse ("azkaban/webapp/servlet/velocity/style.vm")
#parse ("azkaban/webapp/servlet/velocity/javascript.vm")

		<link rel="stylesheet" type="text/css" href="${context}/css/jquery-ui-1.10.1.custom.css" />
		<link rel="stylesheet" type="text/css" href="${context}/css/jquery-ui.css" />
		
		<script type="text/javascript" src="${context}/js/jqueryui/jquery-ui-1.10.1.custom.js"></script>
		<script type="text/javascript" src="${context}/js/jquery/jquery.svg.min.js"></script>    
		<script type="text/javascript" src="${context}/js/jqueryui/jquery-ui-timepicker-addon.js"></script> 
		<script type="text/javascript" src="${context}/js/jqueryui/jquery-ui-sliderAccess.js"></script>

		<script type="text/javascript" src="${context}/js/azkaban/view/table-sort.js"></script>
		<script type="text/javascript" src="${context}/js/azkaban/view/schedule-svg.js"></script>
		<script type="text/javascript" src="${context}/js/azkaban/view/context-menu.js"></script>
		<script type="text/javascript" src="${context}/js/azkaban/util/svg-navigate.js"></script>
		<script type="text/javascript">
			var contextURL = "${context}";
			var currentTime = ${currentTime};
			var timezone = "${timezone}";
			var errorMessage = null;
			var successMessage = null;
		</script>
		<link rel="stylesheet" type="text/css" href="${context}/css/jquery.svg.css" />
	</head>
	<body>

#set ($current_page="schedule")
#parse ("azkaban/webapp/servlet/velocity/nav.vm")

#if ($errorMsg)
  #parse ("azkaban/webapp/servlet/velocity/errormsg.vm")
#else

    <div class="az-page-header">
      <div class="container-full">
        <h1>Scheduled Flows</h1>
      </div>
    </div>

  #parse ("azkaban/webapp/servlet/velocity/alerts.vm")

    <div class="container-full">
      <div class="row">
        <div class="col-xs-12">
          <div class="pull-right">
            <button type="button" class="nav-prev-week btn btn-default">Previous Week</button>
            <button type="button" class="nav-this-week btn btn-default">Today</button>
            <button type="button" class="nav-next-week btn btn-default">Next Week</button>
          </div>
          <div id="svgDivCustom"></div>
        </div>
      </div>
      
      <div id="contextMenu"></div>
    </div>
#end
	</body>
</html>