Skip to content

Commit 0e6fac1

Browse files
Updated docs.
1 parent 548354d commit 0e6fac1

File tree

32 files changed

+36
-51
lines changed

32 files changed

+36
-51
lines changed

INSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Case of Ubuntu:
1818

1919
$ sudo apt-get install -y libmysqlclient-dev libpq5 libodbc1
2020

21-
For more understanding see http://doc.qt.io/qt-5/sql-driver.html
21+
For more understanding see https://doc.qt.io/qt-6/sql-driver.html
2222

2323

2424
Installation

README.ch

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,6 @@ TreeFrog使用了Qt的qmake构建系统.
3030
--------
3131
https://github.com/treefrogframework/treefrog-framework/releases
3232

33-
文档
34-
---------
35-
获得更多信息:
36-
http://treefrogframework.github.io/treefrog-framework/
37-
3833
API参考
3934
-------------
4035
http://treefrogframework.org/tf_doxygen/classes.html

README.ja

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ Webサイト
3636
------
3737
https://github.com/treefrogframework/treefrog-framework/releases
3838

39-
ドキュメント
40-
----------
41-
ドキュメントは GitHub Pages で公開しています。
42-
http://treefrogframework.github.io/treefrog-framework/
43-
4439
APIリファレンス
4540
-------------
4641
http://treefrogframework.org/tf_doxygen/classes.html

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,15 @@ TreeFrog uses the qt qmake build system.
3232

3333
## Web Site
3434

35-
http://www.treefrogframework.org/
35+
https://www.treefrogframework.org/
3636

3737
## Releases
3838

3939
https://github.com/treefrogframework/treefrog-framework/releases
4040

41-
## Documents
42-
43-
Get additional information:
44-
http://treefrogframework.github.io/treefrog-framework/
45-
4641
## API Reference
4742

48-
http://api-reference.treefrogframework.org/annotated.html
43+
https://api-reference.treefrogframework.org/annotated.html
4944

5045
## Forum
5146

docs/ch/api-reference/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ page_id: "api-reference.00"
77

88
它是由Doxygen生成的文档。
99

10-
[TreeFrog Framework API Reference >>](http://api-reference.treefrogframework.org/annotated.html){:target="_blank"}
10+
[TreeFrog Framework API Reference >>](https://api-reference.treefrogframework.org/annotated.html){:target="_blank"}
1111

docs/ch/user-guide/controller/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public slots: // 动作(action)定义在这里
6565
6666
这些对于编程者来说, 通常意味着许多的工作和大量的代码编写. 因此, 导致的结果就是一些人编写了一些庞大而且复杂的控制器(controller). 为了防止这种情况, 请仅在模型(model)实现业务逻辑. 你应该一直保存控制器尽可能的简单.
6767
68-
一旦你明白了操作(action)如何调用的机制, 还能够通过URL客户化操作(action). 更多信息请参见[URL 路由](http://www.treefrogframework.org/documents/controller/url-routing){:target="_blank"}.
68+
一旦你明白了操作(action)如何调用的机制, 还能够通过URL客户化操作(action). 更多信息请参见[URL 路由](https://www.treefrogframework.org/documents/controller/url-routing){:target="_blank"}.
6969
7070
## 获取请求
7171

docs/ch/user-guide/generator/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@ connectOptions=
7171
| port | 端口 | 留空表示默认端口 |
7272
| userName | 用户名 | |
7373
| password | 密码 | |
74-
| connectOptions | 连接选项 | 更多信息参看Qt文档:<br>[QSqlDatabase::setConnectOptions()](http://doc.qt.io/qt-5/qsqldatabase.html){:target="_blank"} |
74+
| connectOptions | 连接选项 | 更多信息参看Qt文档:<br>[QSqlDatabase::setConnectOptions()](https://doc.qt.io/qt-6/qsqldatabase.html){:target="_blank"} |
7575

7676
</div><br>
7777

78-
如果Qt SDK没有包含数据库驱动, 将不能访问数据库. 如果还没有构建, 你必须设置好驱动. 作为替代, 你可以从[下载页](http://www.treefrogframework.org/download){:target="_blank"}下载数据库驱动, 然后安装它.
78+
如果Qt SDK没有包含数据库驱动, 将不能访问数据库. 如果还没有构建, 你必须设置好驱动. 作为替代, 你可以从[下载页](https://www.treefrogframework.org/download){:target="_blank"}下载数据库驱动, 然后安装它.
7979

8080
当你执行完生成器命令(完成上面提到的步骤), 骨架就会生成. 每条命令都应该在应用程序的根目录下执行.
8181

docs/ch/user-guide/helper-reference/logging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ FileLogger.Layout="%d %5P [%t] %m%n"
6262
```
6363

6464
当记录被生成后, 日期和时间将会插入到布局中的'%d'的位置.
65-
日期格式在FileLogger.DateTimeFormat参数定义. 可以指定的格式和QDateTime::toString()的参数是一样的. 更详细的信息请参考[Qt文档](http://doc.qt.io/qt-5/qdatetime.html){:target="_blank"}.
65+
日期格式在FileLogger.DateTimeFormat参数定义. 可以指定的格式和QDateTime::toString()的参数是一样的. 更详细的信息请参考[Qt文档](https://doc.qt.io/qt-6/qdatetime.html){:target="_blank"}.
6666

6767
```ini
6868
# 指定FileLogger的日期-时间格式, 也可以参考QDateTime类参考

docs/ch/user-guide/helper-reference/plugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ SOURCES = sampleplugin.cpp \
8484
- 使用include()包含*appbase.pri*文件是<span style="color: red">重要的</span>.
8585

8686
然后, 当你构建时, 你可以生成一个可加载的动态插件. 每次保存插件到plugin文件夹时, 不要有错误, 因为应用服务器(AP server)从这个目录加载插件.
87-
更多关于[插件系统](http://doc.qt.io/qt-5/plugins-howto.html){:target="_blank"}的详细信息请参考Qt文档.
87+
更多关于[插件系统](https://doc.qt.io/qt-6/plugins-howto.html){:target="_blank"}的详细信息请参考Qt文档.
8888

8989
## 记录器插件
9090

docs/ch/user-guide/install/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $ sudo apt-get install -y libmysqlclient-dev libpq5 libodbc1
2626
```
2727

2828
### 安装说明
29-
1. 解压已[下载](http://www.treefrogframework.org/ja/%E3%83%80%E3%82%A6%E3%83%B3%E3%83%AD%E3%83%BC%E3%83%89){:target="_blank"}的文件.
29+
1. 解压已[下载](https://www.treefrogframework.org/ja/%E3%83%80%E3%82%A6%E3%83%B3%E3%83%AD%E3%83%BC%E3%83%89){:target="_blank"}的文件.
3030

3131
以下命令应用到版本'x.x.x'.请对于的替换.
3232

0 commit comments

Comments
 (0)