Commit Graph

1148 Commits

Author SHA1 Message Date
joyqi 0b68fa8b14 fix #968 2020-06-11 18:08:32 +08:00
joyqi 65455bc67e fix typo error 2020-05-17 13:55:22 +08:00
joyqi a4bcd37dae fix upload panel 2020-05-15 15:18:39 +08:00
joyqi 31072a0726 fix icons retina display 2020-05-15 15:08:36 +08:00
joyqi 75227b3bac fix editor button generator 2020-05-15 12:19:26 +08:00
joyqi 38f959890d replace compass with node-sass.
create new build tools.
2020-05-14 14:30:19 +08:00
joyqi 77ef00e1a0 Merge pull request #955 from atomlong/master
Support Windows Live Writer and Open Live Writer.
2020-05-14 11:23:20 +08:00
Atom Long 09a81d394c Merge branch 'master' of https://github.com/typecho/typecho 2020-05-12 17:32:38 +08:00
Atom Long 78e2dfbde8 fixed code indent, TAB --> 4 spaces 2020-05-12 17:29:41 +08:00
joyqi 3413dfd7ce fix #954 2020-05-12 16:21:59 +08:00
joyqi 371e6c9884 Merge pull request #957 from starskim/master
添加GitHub Actions Ci
2020-05-12 16:19:30 +08:00
joyqi 6398551ac3 fix #952 2020-05-12 16:08:43 +08:00
Stars_Kim beeeab869d 添加GitHub Actions Ci 2020-05-09 16:05:33 +08:00
Atom Long 408cb56ce1 Fix #334: Support uploading pictures using Windows Live Writer or Open Live Writer. 2020-05-09 00:20:50 +08:00
Atom Long 029579be4d IXR_Error is a class, not a function. 2020-05-09 00:08:06 +08:00
joyqi 5ba2f03206 fix #945 2020-04-08 00:56:47 +08:00
joyqi 691b43bc48 fix #941 2020-04-01 17:17:31 +08:00
joyqi 3cc75893da close #940
fix #936
2020-04-01 17:10:44 +08:00
joyqi 3afd22c12c Merge branch 'master' of https://github.com/typecho/typecho 2020-03-10 10:48:09 +08:00
joyqi 3bba7cd9dd fix #926
close #928
2020-03-10 10:47:40 +08:00
joyqi 0020814e18 Merge pull request #853 from Seevil/patch-2
修复最近回复链接
2020-01-17 10:50:55 +08:00
joyqi 8d2aa236b1 fix 2019-12-19 22:15:15 +08:00
joyqi d695ce3ce5 Merge pull request #871 from AlanDecode/master
修复通过 metaWeblog 接口新建草稿时返回 cid 错误的问题
2019-12-18 11:47:49 +08:00
joyqi ac1527ce43 Merge pull request #901 from jeaxnew/patch-1
Update Request.php
2019-12-18 11:41:22 +08:00
jeaxnew 9948a62557 Update Request.php
fix #567
2019-11-13 19:04:56 +08:00
joyqi 75237e6a44 fix #896 2019-10-31 16:47:33 +08:00
joyqi c17bdaf606 Merge pull request #882 from kraity/master
修复 XmlRpc 接口的几个错误问题
2019-09-03 14:10:53 +08:00
joyqi 147f7ede98 fix #881
Add 'setInputsAttribute' method for all form element classes.
2019-09-03 13:44:16 +08:00
权那他 5abd915678 解决无法判断该独立页面是否有草稿 2019-08-23 13:20:52 +08:00
权那他 64a66be475 解决无法编辑独立页面 2019-08-23 13:19:51 +08:00
权那他 71c72c7926 修正XMLRPC不能获取文章是否有草稿状态
修正XMLRPC不能获取文章是否有草稿状态
1608行
$this->typechoToWordpressStatus($posts->status, 'post')
改为
$this->typechoToWordpressStatus(($posts->hasSaved || 'post_draft' == $posts->type) ? 'draft' : $posts->status, 'post')
2019-08-18 10:16:54 +08:00
权那他 6d27a24fb8 修正XMLRPC只能发表发布状态的问题,修正后可以发布私密、草稿、等等状态的文章
修正XMLRPC只能发表发布状态的问题,修正后可以发布私密、草稿、等等状态的文章
在1442行
$status = $this->wordpressToTypechoStatus($content["{$type}_status"], $type);
后面增加一行判断
$input['visibility'] = isset($content["visibility"]) ? $content["visibility"] : $status;
2019-08-18 10:14:26 +08:00
权那他 2e2835ce6b 修复用XMLRPC获取评论时无法得到垃圾评论和待审核评论
修复用XMLRPC获取评论时无法得到垃圾评论和待审核评论
1056行
$input['status'] = 'hold' == $input['status'] ? $input['status'] : $this->wordpressToTypechoStatus($struct['status']); 
改为
$input['status'] = $this->wordpressToTypechoStatus($struct['status'], 'comment');
2019-08-18 10:11:17 +08:00
AlanDecode 664d8bcb23 修复通过 metaWeblog 接口新建草稿时返回 cid 错误的问题 2019-06-11 10:06:44 +08:00
Intern 4df129b01c 修复最近回复链接
用户链接把评论链接覆盖掉了导致并不能点击前往回复的链接地址
2019-04-12 22:52:17 +08:00
joyqi 32c2f8217d fix #845 2019-03-16 14:50:13 +08:00
那他 91d83d40b1 BUG 2019-02-11 17:03:53 +08:00
那他 0cf11bb933 Update Dockerfile 2019-02-11 16:55:15 +08:00
那他 4155491719 Update Dockerfile 2019-02-11 16:31:08 +08:00
joyqi 8045a0d403 fix #821 2019-01-10 00:24:38 +08:00
joyqi 57a5857c1f Merge pull request #820 from xyuanmu/patch-2
fix Undefined variable: options in Fake.php
2018-12-26 11:06:46 +08:00
xyuanmu 632ac977ee Update Fake.php
测试发现,这个值是不需要的
2018-12-22 12:05:02 +08:00
xyuanmu 247aa9e043 fix Undefined variable: options in Fake.php 2018-12-14 23:14:57 +08:00
joyqi 9f8491076f add missing options 2018-11-26 14:20:08 +08:00
joyqi f4a34e0d7b fix 2018-11-26 14:15:25 +08:00
joyqi b6626e42d8 fix error 2018-11-26 13:28:19 +08:00
joyqi 26b70e2af8 Add function: mark status of multi posts. 2018-11-26 11:38:45 +08:00
joyqi 586492e1b8 Merge pull request #801 from jrotty/patch-1
增加标签统计
2018-11-21 13:32:00 +08:00
jrotty 430649df81 增加标签统计 2018-11-10 14:21:07 +08:00
joyqi 3050aa98ab Merge pull request #798 from renothing/ssl-proxy-to-http
fix error when use different protocol between reverse proxy and backend.
2018-10-30 10:31:17 +08:00