Changed to use Authenticate asp.net event instead of Authorize
[castle.git] / MonoRail / Castle.MonoRail.Framework.Views.NVelocity / CustomDirectives / BlockComponentDirective.cs
blobca5cbcac87afbb4483cc5660954b645048a6dc5b
1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 using NVelocity.Runtime.Directive;
17 namespace Castle.MonoRail.Framework.Views.NVelocity.CustomDirectives
19 using System;
20 using System.Collections;
22 /// <summary>
23 /// Pendent
24 /// </summary>
25 public class BlockComponentDirective : AbstractComponentDirective
27 private readonly IList sectionsCreated = new ArrayList();
29 public BlockComponentDirective(IViewComponentFactory viewComponentFactory, IViewEngine viewEngine) : base(viewComponentFactory, viewEngine)
33 protected override void ProcessSubSections()
35 foreach(SubSectionDirective section in sectionsCreated)
37 if (!Component.SupportsSection(section.Name))
39 throw new ViewComponentException(
40 String.Format("The section '{0}' is not supported by the ViewComponent '{1}'",
41 section.Name, ComponentName));
44 ContextAdapter.RegisterSection(section);
46 section.ContextAdapter = ContextAdapter;
50 public override String Name
52 get { return "blockcomponent"; }
53 set { }
56 public override DirectiveType Type
58 get { return DirectiveType.BLOCK; }
61 public override bool SupportsNestedDirective(String name)
63 return true;
66 public override Directive CreateNestedDirective(String name)
68 SubSectionDirective section = new SubSectionDirective(name);
70 sectionsCreated.Add(section);
72 return section;