
* totem-banner.png: * totem-banner.xs.jpg: * totem-banner.xxs.jpg: totem custo * Makefile: reloads config after each rsync call * NpgsqlBlogProvider.cs: - Fixes access on bills - Fixes usage of bill without photo * style.css: yastyle * AccountController.cs: - Fixes route usage with n ovalue for `id` - better code at getting the avatar url * BlogsController.cs: Fixes a Post request without user name in the route * YavscHelpers.cs: Implements a file list html rendering * App.master: * UserPost.aspx: * Profile.aspx: * AssemblyInfo.aspx: yahtmlstructure * Edit.aspx: Displays a list a attached files * UserPosts.aspx: yahtmlstrucure * Web.csproj: new images * instdbws.sql: returns to the flat list of properies (groups are not working) * LocalizedText.resx: * LocalizedText.fr.resx: * LocalizedText.Designer.cs: * LocalizedText.fr.Designer.cs: a new translation
20 lines
547 B
Plaintext
20 lines
547 B
Plaintext
<%@ Page Title="Assemblies" Language="C#" Inherits="System.Web.Mvc.ViewPage<IEnumerable<System.Reflection.AssemblyName>>" MasterPageFile="~/Models/App.master"%>
|
|
<asp:Content ContentPlaceHolderID="MainContent" ID="MainContentContent" runat="server">
|
|
<div class="panel">
|
|
<p>
|
|
Running assembly :
|
|
<%= GetType().Assembly.FullName %></p>
|
|
</div>
|
|
<div class="panel">
|
|
<p>
|
|
Assemblies referenced in this application :
|
|
</p>
|
|
<ul>
|
|
<% foreach (System.Reflection.AssemblyName item in Model) { %>
|
|
<li><%= item.FullName %></li>
|
|
<% } %>
|
|
</ul>
|
|
</div>
|
|
</asp:Content>
|
|
|