Xmark Template Engine V1.1.0 Beta
1. About
--------------------------------------------------------------------------------
Xmark is a generic extensible markup template engine.
When used as a template engine, you can customize the marks of the various functions, to meet your needs.
It is small but very powerful and freely.
2.Download
--------------------------------------------------------------------------------
Xmark Template Engine Beta for asp (http://xm.qemu.cn/demo/asp/?xmark_asp)
Xmark Template Engine Beta for php (http://xm.qemu.cn/demo/php/?xmark_php)
3. Documentation
--------------------------------------------------------------------------------
[Introduction]
Xmark supports two languages asp and php, and mutually compatible.
[Installation]
The file xmark1.1.asp/xmark1.1.php is the core program file, first you must include this file, and then define your own marks and templates. eg:
asp code (default.asp)
--------------------------------------------
<!--#include file="xmark1.1.asp"-->
<%
Dim Xmark
Set Xmark = New CXmark
Xmark.Name = ".."
Xmark.Item("$Hello") = "Hello World!"
Xmark.Item("@Hello") = "ParseHello"
Function ParseHello(pars)
ParseHello = "Hello World!"
End Function
Xmark.Show()
Set Xmark = Nothing
%>
php code (default.php)
-------------------------------------------
<?php
require(dirname(__FILE__) .'/xmark1.1.php');
$Xmark = new CXmark();
$Xmark->name = '..';
$Xmark->item('$Hello', 'Hello World!');
$Xmark->item('@Hello', 'parseHello');
function parseHello($pars){
return 'Hello World!';
}
$Xmark->show();
$Xmark = null;
?>
template code (default.html)
-----------------------------------------
{$Hello}<br />{@Hello()/}
4.Links
--------------------------------------------------------------------------------
User Case: Huncent (http://hi.baidu.com/huncent)
Qemu: Qemu (http://cn.qemu.cn)
xm.qemu.cn
2010-06-24
毕业_设计
- 粉丝: 1997
- 资源: 1万+
最新资源
- 基于Java微服务框架的程序员面试先锋交流社区设计源码
- 基于C#实现的串口双向转发协议分析设计源码
- Comsol 6.2 NCA111三元锂离子电池21700 18650 电化学-热耦合模型 老化模型 容量衰减模型 参数已经设置好 自己更改参数即可进行使用学习 可进行多倍率充放电仿真
- 基于SSDT的SQL Server数据库变更控制设计源码
- 非奇异终端滑模控制车辆前轮转角,实现车辆路径跟踪控制 Carsim与Simulink联合仿真 速度90km h 非奇异终端滑模控制器 使用matlab function 函数编写 Carsim20
- 基于C++引擎的推箱子小游戏设计源码
- Docker node:16 镜像
- 基于SpringBoot和微信小程序的流浪动物领养管理平台设计源码
- 基于Vue.js语法和构建工具体系的mpvue小程序开发框架源码
- 滑动平均算法(代码十分完整) 1、平抑光伏功率、平抑风电功率,然后进行并网 2、消除噪音 空间域的平滑滤波一般采用简单平均法进行,就是求邻近像元点的平均亮度值 3、邻域的大小与平滑的效果直接相关
- 基于JavaScript和微信小程序的咕冬小说小程序设计源码
- 基于Autofac全自动功能的SunnyPaine.Autofac.Extension设计源码
- 卡尔曼滤波 (代码非常详细、非常齐全) 1、卡尔曼滤波的含义是现时刻的最佳估计为在前一时刻的最佳估计的基础上根据现时刻的观测值作线性修正 2、卡尔曼滤波在数学上是一种线性最小方差统计估算方法,它是
- BoostPFC闭环CRM开关电源模型Matlab BoostPFC模型,闭环控制,CRM临界导通模式,ZCS零电流关断 开关电源PFC,适合入门学习使用,带参考文献 仿真模型使用MATLAB 2
- 基于React框架的某医院门诊诊疗系统设计与实施Tsx源码
- 储能优化 模型预测控制MPC 微电网 优化调度 能量管理 MATLAB:基于模型预测算法的含储能微网双层能量管理模型 参考文献:A Two-layer Energy Management Syst
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈