Removed the ExportCode dialog as it's not needed any more now that L2U is gone.
This commit is contained in:
@@ -1531,7 +1531,6 @@
|
||||
<Content Include="Umbraco\config\lang\no.xml" />
|
||||
<Content Include="Umbraco\config\lang\sv.xml" />
|
||||
<Content Include="Umbraco\css\permissionsEditor.css" />
|
||||
<Content Include="Umbraco\dialogs\ExportCode.aspx" />
|
||||
<Content Include="Umbraco\dialogs\mediaPicker.aspx" />
|
||||
<Content Include="Umbraco\images\editor\spellchecker.gif" />
|
||||
<Content Include="Umbraco\webservices\MacroContainerService.asmx" />
|
||||
|
||||
@@ -1,52 +0,0 @@
|
||||
<%@ Page Language="C#" MasterPageFile="../masterpages/umbracoDialog.Master" AutoEventWireup="true"
|
||||
CodeBehind="ExportCode.aspx.cs" Inherits="umbraco.presentation.umbraco.dialogs.ExportCode" %>
|
||||
|
||||
<%@ Register TagPrefix="cc1" Namespace="umbraco.uicontrols" Assembly="controls" %>
|
||||
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
|
||||
<style type="text/css">
|
||||
.label
|
||||
{
|
||||
width: 150px;
|
||||
float: left;
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
</asp:Content>
|
||||
<asp:Content ID="Content2" ContentPlaceHolderID="body" runat="server">
|
||||
<p id="pageName" style="text-align: center;">
|
||||
<%=
|
||||
umbraco.ui.GetText("exportDocumentTypeAsCode-Full")
|
||||
%>
|
||||
</p>
|
||||
<cc1:Pane ID="pane_language" runat="server">
|
||||
<em class="label">Generation Mode:</em>
|
||||
<asp:DropDownList ID="ddlGenerationMode" runat="server">
|
||||
<asp:ListItem Text="Plain Old CLR Objects (POCO) with abstractions" Value="abs" />
|
||||
<asp:ListItem Text="Plain Old CLR Objects (POCO)" Value="poco" />
|
||||
</asp:DropDownList>
|
||||
</cc1:Pane>
|
||||
<cc1:Pane ID="pane_contextName" runat="server">
|
||||
<div>
|
||||
<em class="label">DataContext Name:</em>
|
||||
<asp:TextBox ID="txtDataContextName" runat="server" Style="width: 180px;" Text="MyUmbraco" />
|
||||
</div>
|
||||
<div>
|
||||
<em class="label">Namespace:</em>
|
||||
<asp:TextBox ID="txtNamespace" runat="server" Style="width: 180px;" Text="MyUmbraco" />
|
||||
</div>
|
||||
</cc1:Pane>
|
||||
<asp:Panel ID="pnlButtons" runat="server" Style="margin-top: 10px;">
|
||||
<asp:Button ID="btnGenerate" runat="server" Text="Submit" OnClick="btnGenerate_Click"
|
||||
Style="margin-top: 14px" />
|
||||
<em>or </em><a href="#" style="color: Blue; margin-left: 6px;" onclick="UmbClientMgr.closeModalWindow()">
|
||||
<%=umbraco.ui.Text("cancel")%></a>
|
||||
</asp:Panel>
|
||||
<cc1:Pane ID="pane_files" runat="server" Visible="false">
|
||||
<p>
|
||||
<strong>Don't forget to change the extensions to .cs!</strong>
|
||||
</p>
|
||||
<asp:HyperLink ID="lnkPoco" runat="server" Text="POCO" Target="_blank" />
|
||||
<br />
|
||||
<asp:HyperLink ID="lnkAbstractions" runat="server" Text="Abstractions" Target="_blank" Enabled="false" />
|
||||
</cc1:Pane>
|
||||
</asp:Content>
|
||||
Reference in New Issue
Block a user