* Makefile: creates two targets "xmldoc" and
"htmldoc" to generate the documentation * Web.csproj: * YavscModel.csproj: * WebControls.csproj: * YavscClient.csproj: * SalesCatalog.csproj: * NpgsqlWorkflow.csproj: * NpgsqlMRPProviders.csproj: * NpgsqlBlogProvider.csproj: ITContentProvider/ITContentProvider.csproj * AssemblyInfo.cs: makes "en" the assembly culture, and normalize my name * HomeController.cs: modifies the xmldoc * Web.config: Modifies the owner email * ITContentProvider.csproj: Activates the documentation generation * App.master: adds a <meta charset=> in the head section
This commit is contained in:
parent
ae38718dd9
commit
1b7b3595e2
14 changed files with 28 additions and 10 deletions
|
|
@ -10,9 +10,9 @@ using System.Resources;
|
|||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("")]
|
||||
[assembly: AssemblyCopyright("paul schneider")]
|
||||
[assembly: AssemblyCopyright("Paul Schneider")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: AssemblyCulture("en")]
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -47,7 +47,7 @@ namespace Yavsc.Controllers
|
|||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// Assemblies the info.
|
||||
/// Lists the referenced assemblies.
|
||||
/// </summary>
|
||||
/// <returns>The info.</returns>
|
||||
public ActionResult AssemblyInfo()
|
||||
|
|
@ -113,7 +113,8 @@ namespace Yavsc.Controllers
|
|||
{
|
||||
sc.Send (msg);
|
||||
ViewData ["Message"] = LocalizedText.Message_sent;
|
||||
return View (new { reason="", body="" });
|
||||
|
||||
return View (new { email=email, reason="", body="" });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,8 +7,10 @@
|
|||
<% ViewState["orgtitle"] = T.GetString(Page.Title); %>
|
||||
<% Page.Title = ViewState["orgtitle"] + " - " + YavscHelpers.SiteName; %>
|
||||
<head runat="server">
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" href="/Theme/style.css"/>
|
||||
<link rel="icon" type="image/png" href="/favicon.png" />
|
||||
<asp:ContentPlaceHolder id="head" runat="server">
|
||||
|
|
@ -67,6 +69,7 @@
|
|||
</div>
|
||||
</aside>
|
||||
<footer>
|
||||
<%= Html.ActionLink("Contact","Contact","Home",null, new { @class="footerlink" }) %> <br/>
|
||||
<% foreach ( string link in Yavsc.ThanksHelper.Links()) { %>
|
||||
<%= link %>
|
||||
<% } %>
|
||||
|
|
|
|||
|
|
@ -303,7 +303,7 @@ http://msdn2.microsoft.com/en-us/library/b5ysx397.aspx
|
|||
<add key="WorkflowContentProviderClass" value="yavsc.NpgsqlContentProvider" />
|
||||
<add key="SmtpServer" value="smtp.free.fr" />
|
||||
<add key="AdminEMail" value="paulschneider@free.fr" />
|
||||
<add key="OwnerEMail" value="paul@127.0.0.1" />
|
||||
<add key="OwnerEMail" value="paulschneider@free.fr" />
|
||||
<add key="Name" value="Psc" />
|
||||
<!-- do not point "/Home/index" with the value for the "StartPage",
|
||||
it would result in a redirection infinite loop -->
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
<Command type="BeforeExecute" />
|
||||
</CustomCommands>
|
||||
</CustomCommands>
|
||||
<DocumentationFile>bin\Yavsc.xml</DocumentationFile>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>none</DebugType>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue