Ejemplo n.º 1
0
		protected override object process() {
			var project = new SingleContentProject(Text);
			if(ProjBxl.hasContent()) {
				project.ConfigureFromXml(MyBxl.Parse(ProjBxl));
			}
			return new ThemaCompilerResultForQweb(
				LastContext = new ThemaCompiler().Compile(
					project));
		}
Ejemplo n.º 2
0
		public object Process() {
			var project = new SingleContentProject(Text);
			if (ProjBxl.IsNotEmpty()) {
				project.ConfigureFromXml(Application.Current.Bxl.Parse(ProjBxl));
			}
			return new ThemaCompilerResultForQweb(
				LastContext = new ThemaCompiler().Compile(
					project));
		}
Ejemplo n.º 3
0
        protected override object process()
        {
            var project = new SingleContentProject(Text);

            if (ProjBxl.hasContent())
            {
                project.ConfigureFromXml(MyBxl.Parse(ProjBxl));
            }
            return(new ThemaCompilerResultForQweb(
                       LastContext = new ThemaCompiler().Compile(
                           project)));
        }
Ejemplo n.º 4
0
        public object Process()
        {
            var project = new SingleContentProject(Text);

            if (ProjBxl.IsNotEmpty())
            {
                project.ConfigureFromXml(Application.Current.Bxl.Parse(ProjBxl));
            }
            return(new ThemaCompilerResultForQweb(
                       LastContext = new ThemaCompiler().Compile(
                           project)));
        }