Added CascadingAdapter to be able to chain data sources. Very useful in web situations.
[castle.git] / Experiments / IronPythonViewEngine / Castle.MonoRail.Views.IronView / ITemplateParser.cs
bloba3a4da7b87497513e42c65f898085afc277dda59
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 namespace Castle.MonoRail.Views.IronView
17 using System;
19 /// <summary>
20 ///
21 /// </summary>
22 /// <param name="attributeName"></param>
23 /// <returns></returns>
24 public delegate bool FilterAttribute(String attributeName);
26 /// <summary>
27 ///
28 /// </summary>
29 public interface ITemplateParser
31 /// <summary>
32 /// Processes the reader until the specified level is reached.
33 /// </summary>
34 /// <param name="context">The context.</param>
35 /// <param name="levelToStop">The level to stop.</param>
36 void ProcessReader(ITemplateContext context, int levelToStop);
38 void OutputCurrentElementAsContent(ITemplateContext context);
40 void OutputCurrentElementAsContent(ITemplateContext context, FilterAttribute filter);