aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/usage
diff options
context:
space:
mode:
authortechknowlogick <techknowlogick@gitea.com>2023-10-13 15:29:18 -0400
committerGitHub <noreply@github.com>2023-10-13 19:29:18 +0000
commitc573d96b709697eb004c925bf7b9ab7568281189 (patch)
tree37fbc6e8e0d694b77dc8bdcbd5829ac6ba757caf /docs/content/usage
parentb5a4ec0fb10ed830ce8c8992a8bd0f7011bce84e (diff)
downloadgitea-c573d96b709697eb004c925bf7b9ab7568281189.tar.gz
gitea-c573d96b709697eb004c925bf7b9ab7568281189.zip
rm outdated docs from some languages (#27530)
related to #27499
Diffstat (limited to 'docs/content/usage')
-rw-r--r--docs/content/usage/_index.zh-tw.md0
-rw-r--r--docs/content/usage/authentication.zh-tw.md20
-rw-r--r--docs/content/usage/pull-request.zh-tw.md34
-rw-r--r--docs/content/usage/push.zh-tw.md67
-rw-r--r--docs/content/usage/webhooks.zh-tw.md190
5 files changed, 0 insertions, 311 deletions
diff --git a/docs/content/usage/_index.zh-tw.md b/docs/content/usage/_index.zh-tw.md
deleted file mode 100644
index e69de29bb2..0000000000
--- a/docs/content/usage/_index.zh-tw.md
+++ /dev/null
diff --git a/docs/content/usage/authentication.zh-tw.md b/docs/content/usage/authentication.zh-tw.md
deleted file mode 100644
index 88dc314914..0000000000
--- a/docs/content/usage/authentication.zh-tw.md
+++ /dev/null
@@ -1,20 +0,0 @@
----
-date: "2016-12-01T16:00:00+02:00"
-title: "認證"
-slug: "authentication"
-sidebar_position: 10
-toc: false
-draft: false
-aliases:
- - /zh-tw/authentication
-menu:
- sidebar:
- parent: "usage"
- name: "認證"
- sidebar_position: 10
- identifier: "authentication"
----
-
-# 認證
-
-## TBD
diff --git a/docs/content/usage/pull-request.zh-tw.md b/docs/content/usage/pull-request.zh-tw.md
deleted file mode 100644
index aeb5df5235..0000000000
--- a/docs/content/usage/pull-request.zh-tw.md
+++ /dev/null
@@ -1,34 +0,0 @@
----
-date: "2018-06-01T19:00:00+02:00"
-title: "合併請求"
-slug: "pull-request"
-sidebar_position: 13
-toc: false
-draft: false
-aliases:
- - /zh-tw/pull-request
-menu:
- sidebar:
- parent: "usage"
- name: "合併請求"
- sidebar_position: 13
- identifier: "pull-request"
----
-
-# 合併請求
-
-## 「還在進行中(WIP)」的合併請求
-
-將合併請求標記為還在進行中(Work In Progress, WIP)可避免意外地被合併。
-要將合併請求標記為還在進行中請在標題中使用 `WIP:` 或 `[WIP]` 前綴(不分大小寫)。這些值可在您的 `app.ini` 中設定:
-
-```ini
-[repository.pull-request]
-WORK_IN_PROGRESS_PREFIXES=WIP:,[WIP]
-```
-
-網頁提示會使用第一個值作為範例。
-
-## 合併請求範本
-
-您可以在[問題與合併請求範本](usage/issue-pull-request-templates.md)找到更多關於合併請求範本的資訊。
diff --git a/docs/content/usage/push.zh-tw.md b/docs/content/usage/push.zh-tw.md
deleted file mode 100644
index ccecbf6284..0000000000
--- a/docs/content/usage/push.zh-tw.md
+++ /dev/null
@@ -1,67 +0,0 @@
----
-date: "2020-07-06T16:00:00+02:00"
-title: "使用: Push"
-slug: "push"
-sidebar_position: 15
-toc: false
-draft: false
-aliases:
- - /zh-tw/push-options
-menu:
- sidebar:
- parent: "usage"
- name: "Push"
- sidebar_position: 15
- identifier: "push"
----
-
-There are some additional features when pushing commits to Gitea server.
-
-# Push Merge Hint
-
-When you pushing commits to a non-default branch, you will get an information from
-Gitea which is a link, you can click the link and go to a compare page. It's a quick
-way to create a pull request or a code review yourself in the Gitea UI.
-
-![Gitea Push Hint](/gitea-push-hint.png)
-
-# Push Options
-
-Gitea 從 `1.13` 版開始支援某些 [push options](https://git-scm.com/docs/git-push#Documentation/git-push.txt--oltoptiongt)
-。
-
-## 支援的 Options
-
-- `repo.private` (true|false) - 修改儲存庫的可見性。
-
- 與 push-to-create 一起使用時特別有用。
-
-- `repo.template` (true|false) - 修改儲存庫是否為範本儲存庫。
-
-以下範例修改儲存庫的可見性為公開:
-
-```shell
-git push -o repo.private=false -u origin main
-```
-
-# Push To Create
-
-Push to create is a feature that allows you to push to a repository that does not exist yet in Gitea. This is useful for automation and for allowing users to create repositories without having to go through the web interface. This feature is disabled by default.
-
-## Enabling Push To Create
-
-In the `app.ini` file, set `ENABLE_PUSH_CREATE_USER` to `true` and `ENABLE_PUSH_CREATE_ORG` to `true` if you want to allow users to create repositories in their own user account and in organizations they are a member of respectively. Restart Gitea for the changes to take effect. You can read more about these two options in the [Configuration Cheat Sheet](administration/config-cheat-sheet.md#repository-repository).
-
-## Using Push To Create
-
-Assuming you have a git repository in the current directory, you can push to a repository that does not exist yet in Gitea by running the following command:
-
-```shell
-# Add the remote you want to push to
-git remote add origin git@{domain}:{username}/{repo name that does not exist yet}.git
-
-# push to the remote
-git push -u origin main
-```
-
-This assumes you are using an SSH remote, but you can also use HTTPS remotes as well.
diff --git a/docs/content/usage/webhooks.zh-tw.md b/docs/content/usage/webhooks.zh-tw.md
deleted file mode 100644
index 666dcee83c..0000000000
--- a/docs/content/usage/webhooks.zh-tw.md
+++ /dev/null
@@ -1,190 +0,0 @@
----
-date: "2016-12-01T16:00:00+02:00"
-title: "Webhook"
-slug: "webhooks"
-sidebar_position: 30
-toc: false
-draft: false
-aliases:
- - /zh-tw/webhooks
-menu:
- sidebar:
- parent: "usage"
- name: "Webhook"
- sidebar_position: 30
- identifier: "webhooks"
----
-
-# Webhook
-
-Gitea 的儲存庫事件支援 web hook。這可以有儲存庫管理員在設定頁 `/:username/:reponame/settings/hooks` 中調整。Webhook 也可以按照組織調整或按照全系統調整。
-所有的事件推送都是 POST 請求。此方法目前被下列服務支援:
-
-- Gitea (也可以是 GET 請求)
-- Gogs
-- Slack
-- Discord
-- Dingtalk
-- Telegram
-- Microsoft Teams
-- Feishu
-- Wechatwork
-- Packagist
-
-### 事件資訊
-
-**警告**: Payload 中的 `secret` 欄位已經在 Gitea 1.13.0 棄用,並且將在 1.14.0 移除: https://github.com/go-gitea/gitea/issues/11755
-
-下面是一個將由 Gitea 發送到 Payload URL 的事件資訊的範例:
-
-```
-X-GitHub-Delivery: f6266f16-1bf3-46a5-9ea4-602e06ead473
-X-GitHub-Event: push
-X-Gogs-Delivery: f6266f16-1bf3-46a5-9ea4-602e06ead473
-X-Gogs-Event: push
-X-Gitea-Delivery: f6266f16-1bf3-46a5-9ea4-602e06ead473
-X-Gitea-Event: push
-```
-
-```json
-{
- "secret": "3gEsCfjlV2ugRwgpU#w1*WaW*wa4NXgGmpCfkbG3",
- "ref": "refs/heads/develop",
- "before": "28e1879d029cb852e4844d9c718537df08844e03",
- "after": "bffeb74224043ba2feb48d137756c8a9331c449a",
- "compare_url": "http://localhost:3000/gitea/webhooks/compare/28e1879d029cb852e4844d9c718537df08844e03...bffeb74224043ba2feb48d137756c8a9331c449a",
- "commits": [
- {
- "id": "bffeb74224043ba2feb48d137756c8a9331c449a",
- "message": "Webhooks Yay!",
- "url": "http://localhost:3000/gitea/webhooks/commit/bffeb74224043ba2feb48d137756c8a9331c449a",
- "author": {
- "name": "Gitea",
- "email": "someone@gitea.io",
- "username": "gitea"
- },
- "committer": {
- "name": "Gitea",
- "email": "someone@gitea.io",
- "username": "gitea"
- },
- "timestamp": "2017-03-13T13:52:11-04:00"
- }
- ],
- "repository": {
- "id": 140,
- "owner": {
- "id": 1,
- "login": "gitea",
- "full_name": "Gitea",
- "email": "someone@gitea.io",
- "avatar_url": "https://localhost:3000/avatars/1",
- "username": "gitea"
- },
- "name": "webhooks",
- "full_name": "gitea/webhooks",
- "description": "",
- "private": false,
- "fork": false,
- "html_url": "http://localhost:3000/gitea/webhooks",
- "ssh_url": "ssh://gitea@localhost:2222/gitea/webhooks.git",
- "clone_url": "http://localhost:3000/gitea/webhooks.git",
- "website": "",
- "stars_count": 0,
- "forks_count": 1,
- "watchers_count": 1,
- "open_issues_count": 7,
- "default_branch": "master",
- "created_at": "2017-02-26T04:29:06-05:00",
- "updated_at": "2017-03-13T13:51:58-04:00"
- },
- "pusher": {
- "id": 1,
- "login": "gitea",
- "full_name": "Gitea",
- "email": "someone@gitea.io",
- "avatar_url": "https://localhost:3000/avatars/1",
- "username": "gitea"
- },
- "sender": {
- "id": 1,
- "login": "gitea",
- "full_name": "Gitea",
- "email": "someone@gitea.io",
- "avatar_url": "https://localhost:3000/avatars/1",
- "username": "gitea"
- }
-}
-```
-
-### 範例
-
-此範例示範在發生推送事件時,如何使用 webhook 觸發 php 程式。
-使用下列參數在您的儲存庫設定 Webhook 中建立一個 Gitea webhook:
-
-- 目標 URL: http://mydomain.com/webhook.php
-- HTTP 請求方法:POST
-- POST Content Type:application/json
-- Secret:123
-- 觸發條件:推送事件
-- 啟用:勾選
-
-現在請到您的伺服器上建立 webhook.php 檔案
-
-```
-<?php
-
-$secret_key = '123';
-
-// check for POST request
-if ($_SERVER['REQUEST_METHOD'] != 'POST') {
- error_log('FAILED - not POST - '. $_SERVER['REQUEST_METHOD']);
- exit();
-}
-
-// get content type
-$content_type = isset($_SERVER['CONTENT_TYPE']) ? strtolower(trim($_SERVER['CONTENT_TYPE'])) : '';
-
-if ($content_type != 'application/json') {
- error_log('FAILED - not application/json - '. $content_type);
- exit();
-}
-
-// get payload
-$payload = trim(file_get_contents("php://input"));
-
-if (empty($payload)) {
- error_log('FAILED - no payload');
- exit();
-}
-
-// get header signature
-$header_signature = isset($_SERVER['HTTP_X_GITEA_SIGNATURE']) ? $_SERVER['HTTP_X_GITEA_SIGNATURE'] : '';
-
-if (empty($header_signature)) {
- error_log('FAILED - header signature missing');
- exit();
-}
-
-// calculate payload signature
-$payload_signature = hash_hmac('sha256', $payload, $secret_key, false);
-
-// check payload signature against header signature
-if ($header_signature !== $payload_signature) {
- error_log('FAILED - payload signature');
- exit();
-}
-
-// convert json to array
-$decoded = json_decode($payload, true);
-
-// check for json decode errors
-if (json_last_error() !== JSON_ERROR_NONE) {
- error_log('FAILED - json decode - '. json_last_error());
- exit();
-}
-
-// success, do something
-```
-
-Webhook 設定中有一個傳送測試資料按鈕,它可讓你測試您的設定並將結果顯示於最近傳送記錄。