Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OaaS/HeuristicLab.Services.Optimization.Web/Views/Shared/_Layout.cshtml @ 9062

Last change on this file since 9062 was 9062, checked in by fschoepp, 12 years ago

#1888:
Backend changes:

  • Simplified job state detection (only one hive call will be made to detect all states now, instead of one additional call per job)
  • Reorganized classes (moved model classes into Model folder)

Website changes:

  • Website now heavily uses JavaScript to achieve better user experience
  • JavaScript degrades gracefully, except for plots
  • Tables: Added jquery-datatable-plugin to extend tables (pagination + search functionality)
  • OaaS-Website now uses the design of the HL websites (found in WebApplication branch)
  • Added jqplot to render zoomable line plots for HL-Datatables
  • Styling.js: Plots will be generated by using an ajax call; additional jquery-styling occurs within this file.
  • Added jquery-ui-1.9.2 which is capable of handling/rendering tabs, accordions and resizers.
File size: 3.4 KB
Line 
1<!DOCTYPE html>
2<html>
3<head>
4    <meta charset="utf-8" />
5    <title>@ViewBag.Title</title>
6    <link href="@Url.Content("~/Content/hl/Site.css")" rel="stylesheet" type="text/css" />
7    <link href="@Url.Content("~/Content/datatable/css/jquery.dataTables.css")" rel="stylesheet" type="text/css" />
8    <link href="@Url.Content("~/Content/ui-lightness/jquery-ui-1.9.2.min.css")" rel="stylesheet" type="text/css" />   
9    <link href="@Url.Content("~/Content/jqplot/src/jquery.jqplot.css")" rel="stylesheet" type="text/css" />
10   
11    <script src="@Url.Content("~/Scripts/jquery-1.8.3.min.js")" type="text/javascript"></script>
12    <script src="@Url.Content("~/Scripts/jquery.dataTables.min.js")" type="text/javascript"></script>
13    <script src="@Url.Content("~/Scripts/jquery-ui-1.9.2.min.js")" type="text/javascript"></script>
14    <script src="@Url.Content("~/Scripts/modernizr-1.7.min.js")" type="text/javascript"></script>
15    <script src="@Url.Content("~/Content/Styling.js")" type="text/javascript"></script>
16
17    <!--[if lt IE 9]><script language="javascript" type="text/javascript" src="/Content/jqplot/src/excanvas.js"></script><![endif]-->
18    <script src="@Url.Content("~/Content/jqplot/src/jquery.jqplot.js")" type="text/javascript"></script>
19    <script src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.canvasTextRenderer.js")" type="text/javascript"></script>
20    <script src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.canvasAxisLabelRenderer.js")" type="text/javascript"></script>
21    <script type="text/javascript" src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.barRenderer.js")"></script>
22    <script type="text/javascript" src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.categoryAxisRenderer.js")"></script>
23    <script type="text/javascript" src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.pointLabels.js")"></script>
24    <script type="text/javascript" src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.pieRenderer.js")"></script>
25    <script type="text/javascript" src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.donutRenderer.js")"></script>
26    <script type="text/javascript" src="@Url.Content("~/Content/jqplot/src/plugins/jqplot.cursor.js")"></script>
27</head>
28<body>
29    <div id="master-page">
30       
31        <div id="master-header">
32            <div class="logo">
33                <a href="/">Optimization-as-a-Service</a>
34            </div>       
35            <div class="login">
36                @Html.Partial("_LogOnPartial")
37            </div>
38        </div>
39        <div id="master-mainmenu">
40            <ul id="menu">
41                <li>@Html.ActionLink("Admin", "Index", "Admin")</li>
42                <li>@Html.ActionLink("Home", "Index", "Home")</li>
43                <li>@Html.ActionLink("About", "About", "Home")</li>
44            </ul>
45        </div>
46       
47        <div id="master-main">
48            <div id="master-submenu"/>
49            <div id="master-MainContent">               
50                @RenderBody()               
51            </div>
52        </div>
53        <div id="master-footer">
54            <div class="logo">
55                <a title="Visit the HeuristicLab website" href="http://www.heuristiclab.com/" target="_blank">
56                    <img alt="HeuristicLab" src="/Content/hl/images/hl-logo.png" />
57                </a>
58            </div>
59        </div>
60        <!--footer>
61        </footer-->
62    </div>
63</body>
64</html>
Note: See TracBrowser for help on using the repository browser.