@@ -35,7 +35,7 @@ public class SyndicationGenerator
35
35
/// <summary>
36
36
/// Private member to hold the URI of the syndication generation utility.
37
37
/// </summary>
38
- private static readonly Uri GeneratorUri = new Uri ( "http ://dotnetblogengine.net /" ) ;
38
+ private static readonly Uri GeneratorUri = new Uri ( "https ://blogengine.io /" ) ;
39
39
40
40
/// <summary>
41
41
/// Private member to hold the version of the syndication generation utility.
@@ -135,7 +135,7 @@ public static Dictionary<string, string> SupportedNamespaces
135
135
{ "wfw" , "http://wellformedweb.org/CommentAPI/" } ,
136
136
{ "slash" , "http://purl.org/rss/1.0/modules/slash/" } ,
137
137
{ "geo" , "http://www.w3.org/2003/01/geo/wgs84_pos#" } ,
138
- { "betag" , "http ://dotnetblogengine.net /schemas/tags" }
138
+ { "betag" , "https ://blogengine.io /schemas/tags" }
139
139
} ) ;
140
140
}
141
141
}
@@ -536,7 +536,7 @@ private static void WriteAtomEntry(XmlWriter writer, IPublishable publishable)
536
536
{
537
537
foreach ( var tag in publishable . Tags )
538
538
{
539
- writer . WriteElementString ( "betag" , "tag" , "http ://dotnetblogengine.net /schemas/tags" , tag ) ;
539
+ writer . WriteElementString ( "betag" , "tag" , "https ://blogengine.io /schemas/tags" , tag ) ;
540
540
}
541
541
}
542
542
@@ -725,7 +725,7 @@ private static void WriteRssItem(XmlWriter writer, IPublishable publishable)
725
725
{
726
726
foreach ( var tag in publishable . Tags )
727
727
{
728
- writer . WriteElementString ( "betag" , "tag" , "http ://dotnetblogengine.net /schemas/tags" , tag ) ;
728
+ writer . WriteElementString ( "betag" , "tag" , "https ://blogengine.io /schemas/tags" , tag ) ;
729
729
}
730
730
}
731
731
0 commit comments