Commit Graph

93 Commits

Author SHA1 Message Date
thinkphp
e5bf43afdc 改进数据库驱动类 2013-04-10 15:51:41 +08:00
thinkphp
65c1759138 修正数据库驱动类 2013-04-10 15:48:28 +08:00
thinkphp
94fcd0c484 base文件中增加IS_POST等判断请求类型常量 2013-04-10 15:07:59 +08:00
thinkphp
9aeef4e319 改进Input类 2013-04-10 14:57:21 +08:00
thinkphp
c61886657e 修正Input类 2013-04-10 14:52:34 +08:00
thinkphp
fcbd2d0ec6 修正Input类一处错误 2013-04-10 14:48:29 +08:00
thinkphp
6196fa3d6f 添加Amf控制器类 2013-04-10 14:45:35 +08:00
thinkphp
cd5444213b 修正Create类和Model类 2013-04-10 14:35:22 +08:00
thinkphp
257065acf2 修正Loader类的一处错误 2013-04-10 14:16:42 +08:00
thinkphp
b2f960ad33 增加Vendor\phpRPC 第三方类库 2013-04-10 14:13:10 +08:00
thinkphp
8eabeccfaf 增加Think\Controller\Phprpc类 支持phprpc 2013-04-10 14:09:53 +08:00
thinkphp
d81277ba19 Think\Rest类移动到Think\Controller\Rest 2013-04-10 10:09:37 +08:00
thinkphp
15a45e9ff7 Session驱动的扩展定义方式改变 采用SessionHandler机制
Model类的架构方法 参数调整
2013-04-09 21:29:32 +08:00
thinkphp
279ce15d21 Route类的register方法调整 路由定义规则调整 增加option参数 可以设置更多匹配条件 2013-04-09 21:25:21 +08:00
thinkphp
10e85046df 行为绑定支持闭包函数 2013-04-08 20:16:26 +08:00
thinkphp
48132b4534 Merge branch 'master' of https://github.com/liu21st/think 2013-04-08 20:06:08 +08:00
thinkphp
ae85b1dce1 改进Think\Tag类的add方法支持批量注册 删除register方法 2013-04-08 20:03:43 +08:00
麦当苗儿
8e89d53084 还原parse 方法为 transform 方法,添加了parse方法供ThinkPHP调用 2013-04-08 14:04:51 +08:00
thinkphp
4669001f2f 添加自动生成欢迎页面模板 2013-04-08 11:33:42 +08:00
麦当苗儿
75c15df026 修改注释 2013-04-08 11:30:45 +08:00
麦当苗儿
8889f3fa74 添加了UBB代码和Markdown代码解析为HTML的驱动 2013-04-08 11:27:40 +08:00
thinkphp
55f18287c7 域名部署规则支持闭包函数 2013-04-07 22:19:49 +08:00
thinkphp
638f5b5fbe Think\Route类增加子域名部署检测功能(针对模块) 2013-04-07 21:28:03 +08:00
thinkphp
04773e33f4 修正Create类的自动生成方法 2013-04-07 15:19:08 +08:00
thinkphp
24755c4cf6 改进Think\Create类,支持自动生成模块的公共文件 2013-04-07 15:08:03 +08:00
thinkphp
d4944bd9ca 引导文件添加 自动创建脚本支持 2013-04-07 14:31:05 +08:00
thinkphp
2f2a7efbc3 添加Think\Create类 用于框架的自动生成机制 2013-04-07 14:30:13 +08:00
thinkphp
5ed6af8363 改进View类 2013-04-06 18:31:34 +08:00
thinkphp
c0fc7e2971 View类增加模板主题支持 模板定位行为并入View类 2013-04-06 17:46:36 +08:00
thinkphp
4f3f63a3bb View类增加http方法,用于设置视图输出参数。 2013-04-06 16:04:01 +08:00
thinkphp
263598458f Think\Config类的parse方法 支持自动识别 解析文件类型
Config::parse('my_config.ini','ini');
可以简化成
Config::parse('my_config.ini');
2013-04-03 15:03:38 +08:00
thinkphp
9bfd2bd319 定义系统类库映射文件alias.php 2013-04-03 12:04:35 +08:00
thinkphp
b282238c7f 还原上次提交 2013-04-02 17:55:19 +08:00
thinkphp
85b90ec882 添加log方法用于记录日志信息 2013-04-02 17:52:39 +08:00
thinkphp
64c976e11d 改进App、Error和View类
改进Log类 简化驱动类的定义
2013-04-02 17:46:26 +08:00
thinkphp
083b312c96 缓存驱动类更新 2013-04-02 15:57:27 +08:00
thinkphp
3de1949696 去掉Error类里面的多余调试代码 2013-04-01 18:22:17 +08:00
thinkphp
bb8ce3fcf0 _404方法并入E方法,用法:
原 _404('错误信息',$url);
改成 E('错误信息',404,$url);
$url参数如果省略则发送404头信息
2013-04-01 18:18:19 +08:00
thinkphp
fb82fe8596 Think\parser类 改进 2013-04-01 17:24:17 +08:00
thinkphp
37359db93c Think\TagLib类 改成 Think\Template\Taglib类 2013-04-01 16:26:51 +08:00
thinkphp
257de134e4 类不存在的异常不再手动捕获 系统自动捕获 2013-04-01 16:18:53 +08:00
thinkphp
7d980d41c7 修正A方法 2013-04-01 15:00:50 +08:00
thinkphp
39282ac471 改进Think\Error类的appShutdown方法 2013-04-01 13:33:40 +08:00
thinkphp
a248444605 Think\Error类的appShutdown方法改进 2013-04-01 13:25:56 +08:00
thinkphp
05fc4d7497 Think\Oauth的getAccessToken方法参数 加上参数 2013-04-01 11:24:43 +08:00
thinkphp
2377aabaf4 修正Controller类 2013-04-01 11:22:56 +08:00
thinkphp
61925c8ae5 行为类规范 2013-04-01 11:05:06 +08:00
thinkphp
6f5db51323 数组定义规范统一 2013-04-01 11:03:19 +08:00
thinkphp
668aca97c8 调整Oauth类的实例化参数 2013-04-01 10:56:57 +08:00
thinkphp
574b41b380 去除调试代码 2013-04-01 10:53:02 +08:00