Пример #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));
		}
Пример #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));
		}
Пример #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)));
        }
Пример #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)));
        }