Commit Graph

833 Commits

Author SHA1 Message Date
thinkphp
f6826ff24f Merge branch 'master' of https://github.com/top-think/think 2016-01-15 09:38:54 +08:00
thinkphp
3819cac216 增加资源路由支持 2016-01-15 09:38:26 +08:00
ThinkPHP
c976aea82d Merge pull request #198 from zhylninc/session_test
1. fix session_start() step to end
2016-01-14 22:52:38 +08:00
zhylninc
12379d08a0 1. fix session_start() step to end
2. fix format to PSR2
2016-01-14 22:29:53 +08:00
ThinkPHP
654114ef06 Merge pull request #197 from zhylninc/session_test
Session test
2016-01-14 22:10:41 +08:00
zhylninc
f22fffda28 fix session 2016-01-14 22:04:13 +08:00
zhylninc
e8001913bc session test 2016-01-14 21:52:55 +08:00
thinkphp
b3822bb7b7 添加参数 2016-01-14 17:07:55 +08:00
thinkphp
27d9b3913e 修正Input类 2016-01-14 17:04:24 +08:00
thinkphp
dee3872ae0 Merge branch 'master' of https://github.com/top-think/think 2016-01-14 16:57:51 +08:00
thinkphp
1f612a96bc 路由检测的domain条件支持设置子域名 添加restful 操作方法支持 2016-01-14 16:57:23 +08:00
huangdijia
b1bf335b96 修正两处notice 2016-01-14 15:59:42 +08:00
thinkphp
45701c6a57 修正 model类的alias方法 2016-01-14 15:04:34 +08:00
thinkphp
459339b61b 修正判断 2016-01-14 14:23:21 +08:00
thinkphp
869c70e0e7 改进路由地址中的变量解析 支持全类型解析 2016-01-14 14:20:19 +08:00
thinkphp
bc08a8cdcf 改进 路由到控制器的地址变量 2016-01-14 13:50:34 +08:00
thinkphp
e21b21ce36 路由地址到控制器方式 也支持动态变量 2016-01-14 09:33:46 +08:00
thinkphp
8e6bd84741 路由地址中支持定义模块/控制器/操作变量 例如:
'user/:action'=>'index/user/:action'
':controller/:action'=>'index/:controller/:action'
2016-01-13 22:40:27 +08:00
thinkphp
c94d5d12aa callable类型改为method closure类型改为function 2016-01-13 18:25:03 +08:00
thinkphp
63d795c345 Merge branch 'master' of https://github.com/top-think/think 2016-01-13 18:13:58 +08:00
thinkphp
21838296a2 改进App类的调度机制 callable类型针对方法 closure 类型针对函数和闭包 2016-01-13 18:13:30 +08:00
Chino Chang
147dac2759 Merge pull request #193 from oldrind/auto
修正复合值判断的问题,常量 MODEL_BOTH的值3,已是1和2的复合值,不需要再做位移
2016-01-13 15:14:06 +08:00
oldrind
084431f0c6 修正复合值判断的问题,常量 MODEL_BOTH的值3,已是1和2的复合值,不需要再做位移 2016-01-13 15:04:35 +08:00
thinkphp
b56b9d4824 sqlite驱动更新 2016-01-13 14:26:16 +08:00
小陈叔叔
4acf06a220 新增var_session_id配置,解决flash上传session跨域的问题 2016-01-13 14:05:28 +08:00
小陈叔叔
0e204c8265 Merge branch 'master' of https://github.com/top-think/think 2016-01-13 14:02:48 +08:00
oldrind
cf85daf81a 去掉_auto属性和_validate属性的下划线 2016-01-13 13:54:45 +08:00
小陈叔叔
793e267128 增加var_session_id配置,支持动态传入session_id实现回话控制 2016-01-13 13:54:28 +08:00
huangdijia
d040b4d99a 修正一处Notice 2016-01-13 13:20:24 +08:00
huangdijia
d07538815b 去掉多余的空格 2016-01-13 13:00:51 +08:00
thinkphp
b95d339acb Merge branch 'master' of https://github.com/top-think/think 2016-01-13 11:39:28 +08:00
thinkphp
369f49bd12 提高模板解析的时候<literal>标签的优先级 2016-01-13 11:39:03 +08:00
oldrind
31793bb8dc 修正$val[0]不存在时会引发报错的问题 2016-01-13 11:26:57 +08:00
thinkphp
2b24e23add URL中的模块 控制器 操作 强制转小写,读取的类名依然是驼峰, 如果控制器名为 UserType 则对应的URL访问应该是 user_type 模块和操作名仅作小写转换 不做parseName转换,如果模板文件的目录和文件有大写,输出使用fetch参数 2016-01-13 11:21:48 +08:00
ThinkPHP
5e3be61dd7 Merge pull request #189 from oldrind/auto
修正验证单一字段时回调参数0也被转成数组的问题.
2016-01-13 08:21:54 +08:00
yin
987d9ccac0 修正验证单一字段时回调参数0也被转成数组的问题.
回调参数0, 在单字段验证时应为对应字段的值, 多字段时才为数组。
2016-01-12 22:58:34 +08:00
thinkphp
cd66524bb6 Merge branch 'master' of https://github.com/top-think/think 2016-01-12 22:43:47 +08:00
thinkphp
fd53cfa9f2 调整View类 支持调试模式模板文件严格检查大小写 2016-01-12 22:43:28 +08:00
Chino Chang
ad103fe821 Merge pull request #188 from oldrind/auto
改进自动验证支持关联验证
2016-01-12 22:28:24 +08:00
thinkphp
03970d0845 改进Loader类的import方法 2016-01-12 21:46:21 +08:00
oldrind
d4a9a41722 1.改进自动验证支持关联验证
2.验证时间可设置为数组,一条规则可适用于多个验证时间
2016-01-12 21:22:29 +08:00
thinkphp
b49a2ed657 调试模式 window下面自动加载严格检测大小写 2016-01-12 19:03:43 +08:00
7IN0SAN9
7d9855e7f4 指定清除用户缓存 2016-01-12 17:32:11 +08:00
小陈叔叔
7c0eb3e60e 修复自定义标签不能正确加载的问题 2016-01-12 14:37:18 +08:00
thinkphp
0ef4997f48 改进Template类对标签库的识别 2016-01-12 14:30:49 +08:00
thinkphp
f6adfc44f1 根命名空间取消强制转小写 修正session驱动加载 2016-01-12 14:17:48 +08:00
thinkphp
47161ba7a6 模块 操作的URL访问取消强制转换 修正Build类 2016-01-12 13:39:52 +08:00
thinkphp
e0e0eec10f 取消URL中的控制器名的强制转小写 2016-01-12 12:36:41 +08:00
thinkphp
2ba0a806fc 修正Input类 2016-01-12 12:01:56 +08:00
thinkphp
e7daeb2563 修正 #182 2016-01-12 10:50:20 +08:00