Blogengine-BlogRoll의 버그 2개

3320 단어 Engine
1) 컨트롤 생성 시 rssButton 클래스를 현재 속성에 추가하지 않아 css를 수정할 수 없습니다.
BlogEngine.Web\App_Code\Controls\Blogroll.cs
코드:
        HtmlImage image = new HtmlImage();
        image.Src = Utils.RelativeWebRoot + "pics/rssButton.gif";
        image.Alt = "RSS feed for " + item.Name;
        image.Attributes.Add("class", "rssButton");//KKCat Debug

        feedAnchor.Controls.Add(image);
2)    xml      ,         ,    bug 。
BlogEngine.Web\admin\Pages\Blogroll.aspx.cs
//120 
    }
    else
    {
        Directory.CreateDirectory(fileName.Replace ("blogroll.xml",""));
        File.Create(fileName).Close();
        XmlDocument doc = new XmlDocument();
        doc.LoadXml("<opml xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" version=\"1.0\">" +
                                    "<body>" + "</body>" + "</opml>");
        doc.Save(fileName);
        AddBlog();
    }


.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }

.csharpcode, .csharpcode pre
{
font-size: small;
color: black;
font-family: consolas, "Courier New", courier, monospace;
background-color: #ffffff;
/*white-space: pre;*/
}
.csharpcode pre { margin: 0em; }
.csharpcode .rem { color: #008000; }
.csharpcode .kwrd { color: #0000ff; }
.csharpcode .str { color: #006080; }
.csharpcode .op { color: #0000c0; }
.csharpcode .preproc { color: #cc6633; }
.csharpcode .asp { background-color: #ffff00; }
.csharpcode .html { color: #800000; }
.csharpcode .attr { color: #ff0000; }
.csharpcode .alt
{
background-color: #f4f4f4;
width: 100%;
margin: 0em;
}
.csharpcode .lnum { color: #606060; }

좋은 웹페이지 즐겨찾기