fix: correct DDE help manual format for proper recognition#38
Merged
Conversation
Changed the title format in both English and Traditional Chinese DDE help manual files from "Desktop Environment|DDE" to "Desktop Environment|dde|" and from "桌面環境|DDE|" to "桌面環境|dde|". The format needed to be corrected so that the help system can properly recognize it as a desktop environment manual. The key change was adding the missing trailing pipe character in the English version and ensuring consistent lowercase "dde" identifier in both versions. Log: Fixed DDE help manual format for proper system recognition fix: 修正 DDE 帮助手册格式以便正确识别 将英文和繁体中文 DDE 帮助手册文件中的标题格式从 "Desktop Environment| DDE" 改为 "Desktop Environment|dde|",从 "桌面環境|DDE|" 改为 "桌面環境| dde|"。需要修正此格式以便帮助系统能够正确识别其为桌面环境手册。主要更改 是在英文版本中添加了缺失的尾部管道字符,并确保两个版本都使用一致的小写 "dde" 标识符。 Log: 修正了 DDE 帮助手册格式以便系统正确识别 PMS: BUG-355921
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates the DDE help manual titles in English and Traditional Chinese to use the correctly formatted, lowercase "dde" identifier and ensure the trailing pipe is present so the help system recognizes them as desktop environment manuals. Flow diagram for help system recognition of DDE manualsflowchart TD
A[Load help manual file] --> B[Read first heading line]
B --> C[Parse title segments split by pipe]
C --> D{Second segment equals dde?}
D -->|No| E[Manual not tagged as desktop environment]
D -->|Yes| F{Title ends with trailing pipe?}
F -->|No| E
F -->|Yes| G[Tag manual as desktop environment]
G --> H[Expose in DDE desktop environment help category]
%% Context for this PR
subgraph Before_PR[Before this PR]
C -.-> D_before{Second segment equals DDE}
D_before -->|Case mismatch| E
end
subgraph After_PR[After this PR]
C -.-> D_after{Second segment equals dde and trailing pipe present}
D_after --> G
end
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
wjyrich
approved these changes
Apr 8, 2026
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: mhduiy, wjyrich The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changed the title format in both English and Traditional Chinese DDE help manual files from "Desktop Environment|DDE" to "Desktop Environment|dde|" and from "桌面環境|DDE|" to "桌面環境|dde|". The format needed to be corrected so that the help system can properly recognize it as a desktop environment manual. The key change was adding the missing trailing pipe character in the English version and ensuring consistent lowercase "dde" identifier in both versions.
Log: Fixed DDE help manual format for proper system recognition
fix: 修正 DDE 帮助手册格式以便正确识别
将英文和繁体中文 DDE 帮助手册文件中的标题格式从 "Desktop Environment|
DDE" 改为 "Desktop Environment|dde|",从 "桌面環境|DDE|" 改为 "桌面環境| dde|"。需要修正此格式以便帮助系统能够正确识别其为桌面环境手册。主要更改
是在英文版本中添加了缺失的尾部管道字符,并确保两个版本都使用一致的小写
"dde" 标识符。
Log: 修正了 DDE 帮助手册格式以便系统正确识别
PMS: BUG-355921
Summary by Sourcery
Documentation:
ddeidentifier and required trailing separator for system recognition.