Skip to content

Commit 4a2f272

Browse files
committed
Change from miloyip/rapidjson to Tencent/rapidjson
1 parent 2a53253 commit 4a2f272

21 files changed

+78
-78
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414
- CCACHE_MAXSIZE=100M
1515
- ARCH_FLAGS_x86='-m32' # #266: don't use SSE on 32-bit
1616
- ARCH_FLAGS_x86_64='-msse4.2' # use SSE4.2 on 64-bit
17-
- GITHUB_REPO='miloyip/rapidjson'
17+
- GITHUB_REPO='Tencent/rapidjson'
1818
- secure: "HrsaCb+N66EG1HR+LWH1u51SjaJyRwJEDzqJGYMB7LJ/bfqb9mWKF1fLvZGk46W5t7TVaXRDD5KHFx9DPWvKn4gRUVkwTHEy262ah5ORh8M6n/6VVVajeV/AYt2C0sswdkDBDO4Xq+xy5gdw3G8s1A4Inbm73pUh+6vx+7ltBbk="
1919

2020
before_install:

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
109109
## [1.0.0] - 2015-04-22
110110

111111
### Added
112-
* 100% [Coverall](https://coveralls.io/r/miloyip/rapidjson?branch=master) coverage.
112+
* 100% [Coverall](https://coveralls.io/r/Tencent/rapidjson?branch=master) coverage.
113113
* Version macros (#311)
114114

115115
### Fixed
@@ -151,8 +151,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
151151

152152
## 0.1 - 2011-11-18
153153

154-
[Unreleased]: https://github.com/miloyip/rapidjson/compare/v1.1.0...HEAD
155-
[1.1.0]: https://github.com/miloyip/rapidjson/compare/v1.0.2...v1.1.0
156-
[1.0.2]: https://github.com/miloyip/rapidjson/compare/v1.0.1...v1.0.2
157-
[1.0.1]: https://github.com/miloyip/rapidjson/compare/v1.0.0...v1.0.1
158-
[1.0.0]: https://github.com/miloyip/rapidjson/compare/v1.0-beta...v1.0.0
154+
[Unreleased]: https://github.com/Tencent/rapidjson/compare/v1.1.0...HEAD
155+
[1.1.0]: https://github.com/Tencent/rapidjson/compare/v1.0.2...v1.1.0
156+
[1.0.2]: https://github.com/Tencent/rapidjson/compare/v1.0.1...v1.0.2
157+
[1.0.1]: https://github.com/Tencent/rapidjson/compare/v1.0.0...v1.0.1
158+
[1.0.0]: https://github.com/Tencent/rapidjson/compare/v1.0-beta...v1.0.0

RapidJSON.pc.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@ includedir=@INCLUDE_INSTALL_DIR@
33
Name: @PROJECT_NAME@
44
Description: A fast JSON parser/generator for C++ with both SAX/DOM style API
55
Version: @LIB_VERSION_STRING@
6-
URL: https://github.com/miloyip/rapidjson
6+
URL: https://github.com/Tencent/rapidjson
77
Cflags: -I${includedir}

doc/faq.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
4. Is RapidJSON free?
2020

21-
Yes, it is free under MIT license. It can be used in commercial applications. Please check the details in [license.txt](https://github.com/miloyip/rapidjson/blob/master/license.txt).
21+
Yes, it is free under MIT license. It can be used in commercial applications. Please check the details in [license.txt](https://github.com/Tencent/rapidjson/blob/master/license.txt).
2222

2323
5. Is RapidJSON small? What are its dependencies?
2424

@@ -44,7 +44,7 @@
4444

4545
10. How RapidJSON is tested?
4646

47-
RapidJSON contains a unit test suite for automatic testing. [Travis](https://travis-ci.org/miloyip/rapidjson/)(for Linux) and [AppVeyor](https://ci.appveyor.com/project/miloyip/rapidjson/)(for Windows) will compile and run the unit test suite for all modifications. The test process also uses Valgrind (in Linux) to detect memory leaks.
47+
RapidJSON contains a unit test suite for automatic testing. [Travis](https://travis-ci.org/Tencent/rapidjson/)(for Linux) and [AppVeyor](https://ci.appveyor.com/project/Tencent/rapidjson/)(for Windows) will compile and run the unit test suite for all modifications. The test process also uses Valgrind (in Linux) to detect memory leaks.
4848

4949
11. Is RapidJSON well documented?
5050

@@ -70,7 +70,7 @@
7070

7171
3. Does RapidJSON support relaxed syntax?
7272

73-
Currently no. RapidJSON only support the strict standardized format. Support on related syntax is under discussion in this [issue](https://github.com/miloyip/rapidjson/issues/36).
73+
Currently no. RapidJSON only support the strict standardized format. Support on related syntax is under discussion in this [issue](https://github.com/Tencent/rapidjson/issues/36).
7474

7575
## DOM and SAX
7676

doc/faq.zh-cn.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
4. RapidJSON 是免费的么?
2020

21-
是的,它在 MIT 特許條款下免费。它可用于商业软件。详情请参看 [license.txt](https://github.com/miloyip/rapidjson/blob/master/license.txt)
21+
是的,它在 MIT 特許條款下免费。它可用于商业软件。详情请参看 [license.txt](https://github.com/Tencent/rapidjson/blob/master/license.txt)
2222

2323
5. RapidJSON 很小么?它有何依赖?
2424

@@ -44,7 +44,7 @@
4444

4545
10. RapidJSON 是如何被测试的?
4646

47-
RapidJSON 包含一组单元测试去执行自动测试。[Travis](https://travis-ci.org/miloyip/rapidjson/)(供 Linux 平台)及 [AppVeyor](https://ci.appveyor.com/project/miloyip/rapidjson/)(供 Windows 平台)会对所有修改进行编译及执行单元测试。在 Linux 下还会使用 Valgrind 去检测内存泄漏。
47+
RapidJSON 包含一组单元测试去执行自动测试。[Travis](https://travis-ci.org/Tencent/rapidjson/)(供 Linux 平台)及 [AppVeyor](https://ci.appveyor.com/project/Tencent/rapidjson/)(供 Windows 平台)会对所有修改进行编译及执行单元测试。在 Linux 下还会使用 Valgrind 去检测内存泄漏。
4848

4949
11. RapidJSON 是否有完整的文档?
5050

@@ -70,7 +70,7 @@
7070

7171
3. RapidJSON 是否支持宽松的语法?
7272

73-
现时不支持。RapidJSON 只支持严格的标准格式。宽松语法现时在这 [issue](https://github.com/miloyip/rapidjson/issues/36) 中进行讨论。
73+
现时不支持。RapidJSON 只支持严格的标准格式。宽松语法现时在这 [issue](https://github.com/Tencent/rapidjson/issues/36) 中进行讨论。
7474

7575
## DOM 与 SAX
7676

doc/features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* Single line (`// ...`) and multiple line (`/* ... */`) comments (`kParseCommentsFlag`).
3030
* Trailing commas at the end of objects and arrays (`kParseTrailingCommasFlag`).
3131
* `NaN`, `Inf`, `Infinity`, `-Inf` and `-Infinity` as `double` values (`kParseNanAndInfFlag`)
32-
* [NPM compliant](http://github.com/miloyip/rapidjson/blob/master/doc/npm.md).
32+
* [NPM compliant](http://github.com/Tencent/rapidjson/blob/master/doc/npm.md).
3333

3434
## Unicode
3535

doc/features.zh-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* 单行(`// ...`)及多行(`/* ... */`) 注释 (`kParseCommentsFlag`)。
3030
* 在对象和数组结束前含逗号 (`kParseTrailingCommasFlag`)。
3131
* `NaN``Inf``Infinity``-Inf``-Infinity` 作为 `double` 值 (`kParseNanAndInfFlag`)
32-
* [NPM 兼容](https://github.com/miloyip/rapidjson/blob/master/doc/npm.md).
32+
* [NPM 兼容](https://github.com/Tencent/rapidjson/blob/master/doc/npm.md).
3333

3434
## Unicode
3535

doc/internals.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ In [Intel® 64 and IA-32 Architectures Optimization Reference Manual
214214
215215
This is not feasible as RapidJSON should not enforce such requirement.
216216

217-
To fix this issue, currently the routine process bytes up to the next aligned address. After tha, use aligned read to perform SIMD processing. Also see [#85](https://github.com/miloyip/rapidjson/issues/85).
217+
To fix this issue, currently the routine process bytes up to the next aligned address. After tha, use aligned read to perform SIMD processing. Also see [#85](https://github.com/Tencent/rapidjson/issues/85).
218218

219219
## Local Stream Copy {#LocalStreamCopy}
220220

doc/internals.zh-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ void SkipWhitespace(InputStream& s) {
214214
215215
对于 RapidJSON 来说,这显然是不可行的,因为 RapidJSON 不应当强迫用户进行内存对齐。
216216

217-
为了修复这个问题,当前的代码会先按字节处理直到下一个对齐的地址。在这之后,使用对齐读取来进行 SIMD 处理。见 [#85](https://github.com/miloyip/rapidjson/issues/85)
217+
为了修复这个问题,当前的代码会先按字节处理直到下一个对齐的地址。在这之后,使用对齐读取来进行 SIMD 处理。见 [#85](https://github.com/Tencent/rapidjson/issues/85)
218218

219219
## 局部流拷贝 {#LocalStreamCopy}
220220

doc/misc/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</head>
1919
<body>
2020
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
21-
<div id="topbanner"><a href="https://github.com/miloyip/rapidjson" title="RapidJSON GitHub"><i class="githublogo"></i></a></div>
21+
<div id="topbanner"><a href="https://github.com/Tencent/rapidjson" title="RapidJSON GitHub"><i class="githublogo"></i></a></div>
2222
$searchbox
2323
<!--END TITLEAREA-->
2424
<!-- end header part -->

0 commit comments

Comments
 (0)