completes: U4-5546 Remove user 'channels', weblog api, and all code / db tables relevant to those

This commit is contained in:
Shannon
2015-02-22 17:16:39 +01:00
parent c4ca50dd5f
commit 693384bdf6
6 changed files with 0 additions and 86 deletions

View File

@@ -36,14 +36,6 @@ namespace Umbraco.Core.IO
}
}
public static string MetablogConfig
{
get
{
return SystemDirectories.Config + "/metablogConfig.config";
}
}
public static string DashboardConfig
{
get

View File

@@ -71,8 +71,6 @@
<!-- Show property descriptions in editing view "icon|text|none" -->
<PropertyContextHelpOption>text</PropertyContextHelpOption>
<UseLegacyXmlSchema>false</UseLegacyXmlSchema>
<cloneXmlContent>true</cloneXmlContent>
<ForceSafeAliases>true</ForceSafeAliases>

View File

@@ -895,8 +895,6 @@
<Content Include="Umbraco\Actions\editContent.aspx" />
<Content Include="Umbraco\Actions\preview.aspx" />
<Content Include="Umbraco\Actions\publish.aspx" />
<Content Include="Umbraco\Channels\rsd.aspx" />
<Content Include="Umbraco\Channels\wlwmanifest.aspx" />
<Content Include="Umbraco\Config\Lang\da.xml" />
<Content Include="Umbraco\Config\Lang\de.xml" />
<Content Include="Umbraco\Config\Lang\es.xml" />

View File

@@ -47,9 +47,6 @@
<!-- if true umbraco will ensure that no page under the same parent has an identical name -->
<ensureUniqueNaming>True</ensureUniqueNaming>
<!-- to enable new content schema, this needs to be false -->
<UseLegacyXmlSchema>false</UseLegacyXmlSchema>
<!-- Whether to force safe aliases (no spaces, no special characters) at businesslogic level on contenttypes and propertytypes -->
<!-- HIGHLY recommend to keep this to true to ensure valid and beautiful XML Schemas -->
<ForceSafeAliases>true</ForceSafeAliases>

View File

@@ -1,20 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<%@ Page Language="C#" AutoEventWireup="true" Inherits="System.Web.UI.Page" %>
<%@ Import Namespace="Umbraco.Core.IO" %>
<script runat="server">
protected override void OnInit(EventArgs e)
{
Response.ContentType = "text/xml";
}
</script>
<rsd version="1.0" xmlns="http://archipelago.phrasewise.com/rsd">
<service>
<engineName>umbraco</engineName>
<engineLink>http://umbraco.org/</engineLink>
<homePageLink>http://<%=Request.ServerVariables["SERVER_NAME"]%></homePageLink>
<apis>
<api name="MetaWeblog" blogID="1" preferred="true" apiLink="http://<%=Request.ServerVariables["SERVER_NAME"]%><%=IOHelper.ResolveUrl(SystemDirectories.Umbraco) %>/channels.aspx" />
<api name="Blogger" blogID="1" preferred="false" apiLink="http://<%=Request.ServerVariables["SERVER_NAME"]%><%=IOHelper.ResolveUrl(SystemDirectories.Umbraco) %>/channels.aspx" />
</apis>
</service>
</rsd>

View File

@@ -1,51 +0,0 @@
<?xml version="1.0" encoding="UTF-8" ?>
<%@ Page Language="C#" AutoEventWireup="true" Inherits="System.Web.UI.Page" %>
<%@ Import Namespace="Umbraco.Core.IO" %>
<%@ Import Namespace="umbraco" %>
<script runat="server">
protected override void OnInit(EventArgs e)
{
Response.ContentType = "text/xml";
}
protected override void OnLoad(EventArgs e)
{
var useXhtml = false;
if (bool.TryParse(GlobalSettings.EditXhtmlMode, out useXhtml) && !useXhtml)
{
xhtml.Text = "no";
}
else
{
xhtml.Text = "yes";
}
}
</script>
<manifest xmlns="http://schemas.microsoft.com/wlw/manifest/weblog">
<weblog>
<imageUrl>http://umbraco.org/images/liveWriterIcon.png</imageUrl>
<watermarkImageUrl>http://umbraco.org/images/liveWriterWatermark.png</watermarkImageUrl>
<homepageLinkText>View your site/weblog</homepageLinkText>
<adminLinkText>Edit your site/weblog</adminLinkText>
<adminUrl>{blog-homepage-url}<%= IOHelper.ResolveUrl(SystemDirectories.Umbraco) %>/</adminUrl>
<postEditingUrl>{blog-homepage-url}<%= IOHelper.ResolveUrl(SystemDirectories.Umbraco)%>/actions/editContent.aspx?id={post-id}</postEditingUrl>
</weblog>
<views>
<default>WebLayout</default>
</views>
<options>
<supportsScripts>Yes</supportsScripts>
<supportsEmbeds>Yes</supportsEmbeds>
<supportsHtmlTitles>Yes</supportsHtmlTitles>
<supportsEmptyTitles>No</supportsEmptyTitles>
<maxRecentPosts>100</maxRecentPosts>
<supportsNewCategories>Yes</supportsNewCategories>
<supportsExcerpt>Yes</supportsExcerpt>
<supportsPages>No</supportsPages>
<supportsPageParent>No</supportsPageParent>
<supportsPageOrder>No</supportsPageOrder>
<supportsAutoUpdate>Yes</supportsAutoUpdate>
<supportsMultipleCategories>Yes</supportsMultipleCategories>
<requiresXHTML><asp:Literal runat="server" id="xhtml"></asp:Literal></requiresXHTML>
</options>
</manifest>