Adding upstream version 3.10.8.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
37e9b6d587
commit
03bfe4079e
356 changed files with 28857 additions and 0 deletions
3
f3/file_format_testdata/ci/bad.json
Normal file
3
f3/file_format_testdata/ci/bad.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"index": "Unknown"
|
||||
}
|
3
f3/file_format_testdata/ci/good.json
Normal file
3
f3/file_format_testdata/ci/good.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"index": "Forgejo Actions"
|
||||
}
|
7
f3/file_format_testdata/comment/bad.json
Normal file
7
f3/file_format_testdata/comment/bad.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"index": "5",
|
||||
"poster_id": "1",
|
||||
"created": "AAAAAAAAA",
|
||||
"updated": "1986-04-12T23:20:50.52Z",
|
||||
"content": "comment_content_5"
|
||||
}
|
14
f3/file_format_testdata/comment/good.json
Normal file
14
f3/file_format_testdata/comment/good.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"index": "5",
|
||||
"poster_id": "/user/1",
|
||||
"created": "1985-04-12T23:20:50.52Z",
|
||||
"updated": "1986-04-12T23:20:50.52Z",
|
||||
"content": "comment_content_5",
|
||||
"reactions": [
|
||||
{
|
||||
"index": "8",
|
||||
"user_id": "/user/23",
|
||||
"content": "laugh"
|
||||
}
|
||||
]
|
||||
}
|
20
f3/file_format_testdata/issue/bad.json
Normal file
20
f3/file_format_testdata/issue/bad.json
Normal file
|
@ -0,0 +1,20 @@
|
|||
{
|
||||
"poster_id": "/forge/users/1",
|
||||
"title": "title_a",
|
||||
"content": "content_a",
|
||||
"milestone": "../../milestones/23",
|
||||
"state": "closed",
|
||||
"is_locked": false,
|
||||
"created": "1985-04-12T23:20:50.52Z",
|
||||
"updated": "1986-04-12T23:20:50.52Z",
|
||||
"closed": null,
|
||||
"due": "1986-04-12",
|
||||
"labels": [
|
||||
"../../labels/435"
|
||||
],
|
||||
"reactions": null,
|
||||
"assignees": [
|
||||
"/forge/users/1",
|
||||
"/forge/users/2"
|
||||
]
|
||||
}
|
21
f3/file_format_testdata/issue/good.json
Normal file
21
f3/file_format_testdata/issue/good.json
Normal file
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"index": "1",
|
||||
"poster_id": "/forge/users/1",
|
||||
"title": "title_a",
|
||||
"content": "content_a",
|
||||
"milestone": "../../milestones/23",
|
||||
"state": "closed",
|
||||
"is_locked": false,
|
||||
"created": "1985-04-12T23:20:50.52Z",
|
||||
"updated": "1986-04-12T23:20:50.52Z",
|
||||
"closed": "1986-04-12T23:20:50.52Z",
|
||||
"due": "1986-04-12",
|
||||
"labels": [
|
||||
"../../labels/435"
|
||||
],
|
||||
"reactions": [],
|
||||
"assignees": [
|
||||
"/forge/users/1",
|
||||
"/forge/users/2"
|
||||
]
|
||||
}
|
7
f3/file_format_testdata/label/bad.json
Normal file
7
f3/file_format_testdata/label/bad.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"index": "1",
|
||||
"name": "label1",
|
||||
"description": "label1 description",
|
||||
"color": "ffffff",
|
||||
"exclusive": "CCCCCCCC"
|
||||
}
|
7
f3/file_format_testdata/label/good.json
Normal file
7
f3/file_format_testdata/label/good.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"index": "1",
|
||||
"name": "label1",
|
||||
"description": "label1 description",
|
||||
"color": "ffffff",
|
||||
"exclusive": false
|
||||
}
|
2
f3/file_format_testdata/milestone/bad.json
Normal file
2
f3/file_format_testdata/milestone/bad.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
10
f3/file_format_testdata/milestone/good.json
Normal file
10
f3/file_format_testdata/milestone/good.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"index": "1",
|
||||
"title": "title_a",
|
||||
"description": "description_a",
|
||||
"deadline": "1988-04-12T23:20:50.52Z",
|
||||
"created": "1985-04-12T23:20:50.52Z",
|
||||
"updated": "1986-04-12T23:20:50.52Z",
|
||||
"closed": "1987-04-12T23:20:50.52Z",
|
||||
"state": "closed"
|
||||
}
|
2
f3/file_format_testdata/organization/bad.json
Normal file
2
f3/file_format_testdata/organization/bad.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
5
f3/file_format_testdata/organization/good.json
Normal file
5
f3/file_format_testdata/organization/good.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"index": "9",
|
||||
"name": "orgunique",
|
||||
"full_name": "Org Unique"
|
||||
}
|
28
f3/file_format_testdata/project/bad.json
Normal file
28
f3/file_format_testdata/project/bad.json
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"index": "1",
|
||||
"name": "projectname",
|
||||
"is_private": false,
|
||||
"is_mirror": false,
|
||||
"description": "project description",
|
||||
"default_branch": "main",
|
||||
"repositories": [
|
||||
{
|
||||
"name": "vcs",
|
||||
"vcs": "hg"
|
||||
},
|
||||
{
|
||||
"name": "vcs.wiki"
|
||||
}
|
||||
],
|
||||
"archived": true,
|
||||
"archived_at": "1987-04-12T23:20:50.52Z",
|
||||
"created": "1985-04-12T23:20:50.52Z",
|
||||
"updated": "1986-04-12T23:20:50.52Z",
|
||||
"url": "https://example.com",
|
||||
"stars": "BBBBBB",
|
||||
"has_ci": true,
|
||||
"has_issues": true,
|
||||
"has_packages": true,
|
||||
"has_pull_requests": true,
|
||||
"has_wiki": true
|
||||
}
|
28
f3/file_format_testdata/project/good.json
Normal file
28
f3/file_format_testdata/project/good.json
Normal file
|
@ -0,0 +1,28 @@
|
|||
{
|
||||
"index": "1",
|
||||
"name": "projectname",
|
||||
"is_private": false,
|
||||
"is_mirror": false,
|
||||
"description": "project description",
|
||||
"default_branch": "main",
|
||||
"repositories": [
|
||||
{
|
||||
"name": "vcs",
|
||||
"vcs": "hg"
|
||||
},
|
||||
{
|
||||
"name": "vcs.wiki"
|
||||
}
|
||||
],
|
||||
"archived": true,
|
||||
"archived_at": "1987-04-12T23:20:50.52Z",
|
||||
"created": "1985-04-12T23:20:50.52Z",
|
||||
"updated": "1986-04-12T23:20:50.52Z",
|
||||
"url": "https://example.com",
|
||||
"stars": 20,
|
||||
"has_ci": true,
|
||||
"has_issues": true,
|
||||
"has_packages": true,
|
||||
"has_pull_requests": true,
|
||||
"has_wiki": true
|
||||
}
|
2
f3/file_format_testdata/pullrequest/bad.json
Normal file
2
f3/file_format_testdata/pullrequest/bad.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
32
f3/file_format_testdata/pullrequest/good.json
Normal file
32
f3/file_format_testdata/pullrequest/good.json
Normal file
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"index": "1",
|
||||
"poster_id": "/forgejo/users/1",
|
||||
"title": "title_a",
|
||||
"content": "content_a",
|
||||
"milestone": "../../milestones/5",
|
||||
"state": "closed",
|
||||
"is_locked": false,
|
||||
"created": "1985-04-12T23:20:50.52Z",
|
||||
"updated": "1986-04-12T23:20:50.52Z",
|
||||
"closed": "1986-04-12T23:20:50.52Z",
|
||||
"labels": [
|
||||
"../../labels/435"
|
||||
],
|
||||
"reactions": [],
|
||||
"assignees": [],
|
||||
"merged": false,
|
||||
"merged_time": "1986-04-12T23:20:50.52Z",
|
||||
"merged_commit_sha": "shashasha",
|
||||
"head": {
|
||||
"clone_url": "head_clone_url",
|
||||
"ref": "head_branch",
|
||||
"sha": "head_sha",
|
||||
"repository": "/forge/user/1/projects/2/repositories/vcs"
|
||||
},
|
||||
"base": {
|
||||
"clone_url": "base_clone_url",
|
||||
"ref": "base_branch",
|
||||
"sha": "base _sha",
|
||||
"repository": "/forge/user/3/projects/4/repositories/vcs"
|
||||
}
|
||||
}
|
2
f3/file_format_testdata/reaction/bad.json
Normal file
2
f3/file_format_testdata/reaction/bad.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
5
f3/file_format_testdata/reaction/good.json
Normal file
5
f3/file_format_testdata/reaction/good.json
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"index": "8",
|
||||
"user_id": "/forge/users/912",
|
||||
"content": "laugh"
|
||||
}
|
2
f3/file_format_testdata/release/bad.json
Normal file
2
f3/file_format_testdata/release/bad.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
11
f3/file_format_testdata/release/good.json
Normal file
11
f3/file_format_testdata/release/good.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"index": "123",
|
||||
"tag_name": "v12",
|
||||
"target_commitish": "stable",
|
||||
"name": "v12 name",
|
||||
"body": "v12 body",
|
||||
"draft": false,
|
||||
"prerelease": false,
|
||||
"publisher_id": "/forgejo/user/1",
|
||||
"created": "1985-04-12T23:20:50.52Z"
|
||||
}
|
2
f3/file_format_testdata/releaseasset/bad.json
Normal file
2
f3/file_format_testdata/releaseasset/bad.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
11
f3/file_format_testdata/releaseasset/good.json
Normal file
11
f3/file_format_testdata/releaseasset/good.json
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"index": "5",
|
||||
"name": "asset_5",
|
||||
"content_type": "application/zip",
|
||||
"size": 50,
|
||||
"download_count": 10,
|
||||
"download_url": "http://example.com/something",
|
||||
"created": "1985-04-12T23:20:50.52Z",
|
||||
"updated": "1986-04-12T23:20:50.52Z",
|
||||
"sha256": "4c5b2f412017de78124ae3a063d08e76566eea0cba6deb2533fb176d816a54fc"
|
||||
}
|
2
f3/file_format_testdata/repository/bad.json
Normal file
2
f3/file_format_testdata/repository/bad.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
4
f3/file_format_testdata/repository/good.json
Normal file
4
f3/file_format_testdata/repository/good.json
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"name": "vcs.wiki",
|
||||
"vcs": "fossil"
|
||||
}
|
3
f3/file_format_testdata/review/bad.json
Normal file
3
f3/file_format_testdata/review/bad.json
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
}
|
||||
|
12
f3/file_format_testdata/review/good.json
Normal file
12
f3/file_format_testdata/review/good.json
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"index": "1",
|
||||
"reviewer_id": "/forge/user/50",
|
||||
"official": false,
|
||||
"commit_id": "shashashasha",
|
||||
"content": "cover review comment",
|
||||
"created_at": "1985-04-12T23:20:50.52Z",
|
||||
"state": "PENDING",
|
||||
"dissmissed": false,
|
||||
"stale": false
|
||||
}
|
||||
|
2
f3/file_format_testdata/reviewcomment/bad.json
Normal file
2
f3/file_format_testdata/reviewcomment/bad.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
14
f3/file_format_testdata/reviewcomment/good.json
Normal file
14
f3/file_format_testdata/reviewcomment/good.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"index": "100",
|
||||
"content": "review comment",
|
||||
"tree_path": "dir/file1.txt",
|
||||
"diff_hunk": "@@hunkhunk",
|
||||
"line": 1,
|
||||
"lines_count": 1,
|
||||
"commit_id": "shashashasha",
|
||||
"poster_id": "/forge/users/10",
|
||||
"reactions": [],
|
||||
"created_at": "1985-04-12T23:20:50.52Z",
|
||||
"updated_at": "1985-04-12T23:20:50.52Z",
|
||||
"resolver": "/forge/users/10"
|
||||
}
|
4
f3/file_format_testdata/topic.json
Normal file
4
f3/file_format_testdata/topic.json
Normal file
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"index": "1",
|
||||
"name": "category1"
|
||||
}
|
2
f3/file_format_testdata/user/bad.json
Normal file
2
f3/file_format_testdata/user/bad.json
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
8
f3/file_format_testdata/user/good.json
Normal file
8
f3/file_format_testdata/user/good.json
Normal file
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"index": "7",
|
||||
"name": "User Name One",
|
||||
"email": "user1@example.com",
|
||||
"username": "user1",
|
||||
"password": "gloxKainlo",
|
||||
"admin": false
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue