
* JsonReaderError.aspx: display a nice json conversion error * CalendarEntryList.cs: new Google data for the calendar entries * JsonReaderError.cs: Json error model * README.md: Documentation url * NpgsqlBlogProvider.cs: Update the blog post title * BlogsController.cs: - Updating the blog post title - bug fix rendering the avatar * FrontOfficeController.cs: - the client cannot modify its estimation * GoogleController.cs: - implementing the calendar entries retrieval * HomeController.cs: - the home start page from configuration parameter named "StartPage" * Global.asax.cs: - back to a clean global.asax * style.css: showing the main area with a background transparent color * Post.aspx: Bug fix: the message was displayed two times (we keep the one from app.master) * UserPost.aspx: the blog title comes from the poster profile found in ViewData * DateQuery.aspx: implementing the date query * Web.config: the start page now comes from Web.config * Web.csproj: the Sql db creation script should not be deployed, neither as package.config * BlogManager.cs: updating the blog post title * BlogProvider.cs: yavscModel/Blogs/BlogManager.cs * YavscModel.csproj: new cs files to compile * App.master: returning from the Google login
76 lines
3.0 KiB
Plaintext
76 lines
3.0 KiB
Plaintext
<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
|
||
<!DOCTYPE html>
|
||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
<asp:ContentPlaceHolder id="init" runat="server">
|
||
</asp:ContentPlaceHolder>
|
||
<% ViewState["orgtitle"] = T.GetString(Page.Title); %>
|
||
<% Page.Title = ViewState["orgtitle"] + " - " + YavscHelpers.SiteName; %>
|
||
<head runat="server">
|
||
<asp:ContentPlaceHolder id="head" runat="server">
|
||
</asp:ContentPlaceHolder>
|
||
<meta name="viewport" content="width=device-width" />
|
||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||
<link rel="stylesheet" href="/Theme/style.css"/>
|
||
<link rel="icon" type="image/png" href="/favicon.png" />
|
||
<link href='http://fonts.googleapis.com/css?family=Dancing+Script:400,700' rel='stylesheet' type='text/css'/>
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<asp:ContentPlaceHolder ID="overHeaderOne" runat="server">
|
||
<h1><a href="<%= Html.Encode(Request.Url.AbsoluteUri.ToString()) %>"> <%=ViewState["orgtitle"]%> </a> -
|
||
<a href="<%=Request.Url.Scheme + "://" + Request.Url.Authority%>"><%= YavscHelpers.SiteName %></a>
|
||
</h1>
|
||
</asp:ContentPlaceHolder>
|
||
<asp:ContentPlaceHolder ID="header" runat="server"></asp:ContentPlaceHolder>
|
||
<% if (ViewData["Error"]!=null) { %>
|
||
<div class="error">
|
||
<%= Html.Encode(ViewData["Error"]) %>
|
||
</div>
|
||
<% } %>
|
||
<% if (ViewData["Message"]!=null) { %>
|
||
<div class="message">
|
||
<%= Html.Encode(ViewData["Message"]) %>
|
||
</div>
|
||
<% } %>
|
||
|
||
</header>
|
||
<main>
|
||
|
||
<asp:ContentPlaceHolder ID="MainContent" runat="server">
|
||
</asp:ContentPlaceHolder>
|
||
|
||
|
||
</main>
|
||
<aside>
|
||
<asp:ContentPlaceHolder ID="MASContent" runat="server">
|
||
</asp:ContentPlaceHolder>
|
||
<div id="login">
|
||
<% if (Membership.GetUser()==null) { %>
|
||
<%= Html.ActionLink( YavscHelpers.SiteName, "Index", "Home" ,null, new { @class="actionlink" } ) %>
|
||
<span class="hidcom"> Page d'accueil </span>
|
||
<%= Html.ActionLink("Login", "Login", "Account", new { returnUrl=Request.Url.PathAndQuery }, new { @class="actionlink" } ) %>
|
||
<span class="hidcom">Pour pouvoir poster ou commenter</span>
|
||
<a href="<%=Request.Url.Scheme + "://" + Request.Url.Authority + "/Google/Login"%>?returnUrl=<%=Request.Url.PathAndQuery%>" class="actionlink">
|
||
<img src="/images/sign-in-with-google-s.png" style="max-height:1.5em; max-width:6em;" alt="Google sign in">
|
||
</a>
|
||
<span class="hidcom">S'authentifier avec son compte Google+</span>
|
||
<% } else { %>
|
||
<%= Html.ActionLink(HttpContext.Current.User.Identity.Name, "Profile", "Account", null, new { @class="actionlink" }) %>
|
||
<span class="hidcom"> Édition de votre profile </span>
|
||
@ <%= Html.ActionLink( YavscHelpers.SiteName, "Index", "Home" ,null, new { @class="actionlink" }) %>
|
||
<span class="hidcom"> Page d'accueil </span>
|
||
<a href="/Blogs/Post" class="actionlink">Poster</a>
|
||
<span class="hidcom"> Édition d'un nouveau billet </span>
|
||
<%= Html.ActionLink( "Deconnexion", "Logout", "Account", new { returnUrl=Request.Url.PathAndQuery }, new { @class="actionlink" }) %>
|
||
<% } %>
|
||
</div>
|
||
</aside>
|
||
<footer>
|
||
<% foreach ( string link in Yavsc.ThanksHelper.Links()) { %>
|
||
<div><%= link %></div>
|
||
<% } %>
|
||
</footer>
|
||
</body>
|
||
</html>
|
||
|