예제 #1
0
 //+
 //- @Ctor -//
 public BlogEntryProxy()
 {
     //+ default
     this.ShowAuthorSeries = true;
     this.HidePostDateTime = false;
     //+ parser
     this.CodeParserSeries = new Themelia.CodeParsing.CodeParserSeries()
     {
         CodeParserId = Info.Scope
     };
     this.CodeParserSeries.Add(new Minima.Parsing.BlogEntryCodeParser());
     this.CodeParserSeries.Add(new Minima.Parsing.AmazonAffiliateCodeParser());
 }
예제 #2
0
 //+
 //- @Ctor -//
 public MinimaBlog()
 {
     //+ default
     this.CaptchaControl      = new MathCaptcha();
     this.LinkHeader          = true;
     this.SupportCommenting   = true;
     this.ClosedCommentText   = "Comments have been closed for this entry.";
     this.DisabledCommentText = "Comments have been disabled for this entry.";
     this.ShowAuthorSeries    = true;
     this.HidePostDateTime    = false;
     //+ parser
     this.CodeParserSeries = new Themelia.CodeParsing.CodeParserSeries()
     {
         CodeParserId = Info.Scope
     };
     this.CodeParserSeries.Add(new BlogEntryCodeParser());
     this.CodeParserSeries.Add(new AmazonAffiliateCodeParser());
 }