Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/24/11 23:33:38 (13 years ago)
Author:
dkahn
Message:

#1198 Merged Site.Master with changes from plugin developers (Javascript links)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Views/Shared/Site.Master

    r6253 r6273  
    77    <asp:ContentPlaceHolder ID="TitleContent" runat="server" />
    88  </title>
     9  <script src="../../Content/jQuery/js/jquery-1.5.1.min.js" type="text/javascript"></script>
     10  <script src="../../Content/jQuery/js/jquery-ui-1.8.12.custom.min.js" type="text/javascript"></script>
    911  <link href="../../Content/themes/hl/Site.css" rel="stylesheet" type="text/css" />
    10   <!-- for ajax -->
    11   <script src="<%= Url.Content("~/Scripts/MicrosoftAjax.debug.js") %>" type="text/javascript"></script> 
     12  <link href="../../Content/jQuery/css/ui-lightness/jquery-ui-1.8.12.custom.css" rel="stylesheet"
     13    type="text/css" />
     14  <script src="../../Content/HLStyling.js" type="text/javascript"></script>
     15  <!-- Microsoft Ajax -->
     16  <script src="<%= Url.Content("~/Scripts/MicrosoftAjax.debug.js") %>" type="text/javascript"></script>
    1217  <script src="<%= Url.Content("~/Scripts/MicrosoftMvcAjax.debug.js") %>" type="text/javascript"></script>
    13 
    1418</head>
    1519<body>
     
    4044          <%}%>>
    4145          <%: Html.ActionLink("About", "About", "Home")%></li>
     46        <li <% if(ViewContext.RouteData.Values["action"].ToString() == "Styling") {%> class="selected"
     47          <%}%>>
     48          <%: Html.ActionLink("Styling", "Index", "Styling")%></li>
    4249      </ul>
    4350    </div>
    44  
    4551    <div id="master-main">
    46              <div id="master-submenu">
     52      <div id="master-submenu">
    4753        <asp:ContentPlaceHolder ID="SubMenuContent" runat="server" />
    4854      </div>
     
    5864    </div>
    5965  </div>
    60   <!--
    61   <div class="page">
    62     <div id="header">
    63       <div id="title">
    64         <h1>
    65           My MVC Application</h1>
    66       </div>
    67       <div id="logindisplay">
    68         <% Html.RenderPartial("LogOnUserControl"); %>
    69       </div>
    70       <div id="menucontainer">
    71         <ul id="menu">
    72           <li>
    73             <%: Html.ActionLink("Home", "Index", "Home")%></li>
    74           <li>
    75             <%: Html.ActionLink("About", "About", "Home")%></li>
    76           <% foreach (var pluginLink in
    77           HLWebPluginHost.PluginLib.PluginHelper.GetPluginActions()) {  %>
    78           <li>
    79             <%: Html.ActionLink(pluginLink.Name,
    80                             pluginLink.Action,
    81                             pluginLink.Controller)%>
    82           </li>
    83           <% } %>
    84         </ul>
    85       </div>
    86     </div>
    87     <div id="main">
    88       <asp:ContentPlaceHolder ID="MainContent2" runat="server" />
    89       <div id="footer">
    90       </div>
    91     </div>
    92   </div>
    93   -->
    9466</body>
    9567</html>
Note: See TracChangeset for help on using the changeset viewer.