Skip to content

Commit 2af486e

Browse files
authored
Initial commit
0 parents  commit 2af486e

10 files changed

Lines changed: 632 additions & 0 deletions

File tree

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Call Worktree Update
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
workflow_dispatch:
7+
8+
jobs:
9+
call_reusable_workflow:
10+
uses: HITSZ-OpenAuto/repos-management/.github/workflows/reusable_worktree_generate.yml@main
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
15+
with:
16+
# trigger_page_build == true only when pushing to main branch
17+
trigger_page_build: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
18+
19+
secrets:
20+
PAT: ${{ secrets.PERSONAL_ACCESS_TOKEN }}

LICENSE

Lines changed: 437 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# CODE1234 - 课程中文名称
2+
<!-- TOML-META: repo_type="normal" -->
3+
4+
在这里填写课程的简要介绍。
5+
可以换行。
6+
7+
## 授课教师
8+
9+
<!-- TOML-LECTURERS: part="intro" -->
10+
11+
<!-- TOML-ITEM: id="lecturers-intro-1" -->
12+
13+
教师团队总体介绍。
14+
人数: 3人
15+
16+
> 文 / 管理员,2025-01
17+
18+
<!-- TOML-ITEM: id="lecturers-intro-2" -->
19+
20+
研究方向: 机器学习、计算机视觉
21+
22+
> 文 / 管理员,2025-01
23+
24+
<!-- TOML-LECTURERS: part="items" -->
25+
- 教师A
26+
<!-- TOML-ITEM: id="review-教师A-1" -->
27+
- 教师评价内容。
28+
- 可以多行。
29+
> 文 / [昵称](https://github.com/xxx),2025-03
30+
<!-- TOML-ITEM: id="review-教师A-2" -->
31+
- 另一条评价
32+
> 文 / 匿名,2025-01
33+
- 教师B
34+
<!-- TOML-ITEM: id="review-教师B-1" -->
35+
- 教师B的评价
36+
> 文 / 学生,2024-12
37+
<!-- TOML-LECTURERS: part="summary" -->
38+
39+
<!-- TOML-ITEM: id="lecturers-summary-1" -->
40+
41+
教师团队总结。
42+
整体教学水平较高。
43+
44+
> 文 / 管理员,2025-01
45+
46+
<!-- TOML-ITEM: id="lecturers-summary-2" -->
47+
48+
建议: 尽早选课,晚了好老师就没了
49+
50+
## 考核方式
51+
<!-- TOML-SECTION: title="考核方式" -->
52+
53+
<!-- TOML-ITEM: id="item-考核方式-1" -->
54+
55+
• 平时成绩: 30%
56+
• 期中考试: 30%
57+
• 期末考试: 40%
58+
59+
> 文 / 昵称A,2025-03
60+
61+
<!-- TOML-ITEM: id="item-考核方式-2" -->
62+
63+
• 2024年: 期末 60% + 平时 40%
64+
65+
> 文 / 昵称B,2024-01
66+
67+
## 学习资料
68+
<!-- TOML-SECTION: title="学习资料" -->
69+
70+
<!-- TOML-ITEM: id="item-学习资料-1" -->
71+
72+
• 教材: 《书名》
73+
• 参考资料链接

assignments/.gitkeep

Whitespace-only changes.

exams/.gitkeep

Whitespace-only changes.

labs/.gitkeep

Whitespace-only changes.

notes/.gitkeep

Whitespace-only changes.

readme.toml

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
# 课程名称
2+
course_name = "课程中文名称"
3+
4+
# 仓库类型: normal | multi-project
5+
repo_type = "normal"
6+
7+
# 课程代码 (用于检索)
8+
course_code = "CODE1234"
9+
10+
# 课程简介
11+
description = """
12+
在这里填写课程的简要介绍。
13+
可以换行。
14+
"""
15+
16+
# ===== 章节列表 =====
17+
[[sections]]
18+
title = "考核方式"
19+
20+
# 第一条内容
21+
[[sections.items]]
22+
content = """
23+
• 平时成绩: 30%
24+
• 期中考试: 30%
25+
• 期末考试: 40%
26+
"""
27+
# author 是可选的
28+
author = { name = "昵称A", date = "2025-03" }
29+
30+
# 第二条内容(同一章节下多条)
31+
[[sections.items]]
32+
content = """
33+
• 2024年: 期末 60% + 平时 40%
34+
"""
35+
author = { name = "昵称B", date = "2024-01" }
36+
37+
[[sections]]
38+
title = "学习资料"
39+
40+
[[sections.items]]
41+
content = """
42+
• 教材: 《书名》
43+
• 参考资料链接
44+
"""
45+
46+
# ===== 教师评价 (新 schema) =====
47+
# 顺序: lecturers.intro → lecturers.items → lecturers.summary
48+
[lecturers]
49+
50+
# 教师简介 (在教师列表之前,可以多条)
51+
[[lecturers.intro]]
52+
content = """
53+
教师团队总体介绍。
54+
人数: 3人
55+
"""
56+
author = { name = "管理员", date = "2025-01" }
57+
58+
[[lecturers.intro]]
59+
content = """
60+
研究方向: 机器学习、计算机视觉
61+
"""
62+
author = { name = "管理员", date = "2025-01" }
63+
64+
# 教师列表
65+
[[lecturers.items]]
66+
name = "教师A"
67+
68+
[[lecturers.items.reviews]]
69+
content = """
70+
教师评价内容。
71+
可以多行。
72+
"""
73+
author = { name = "昵称", link = "https://github.com/xxx", date = "2025-03" }
74+
75+
[[lecturers.items.reviews]]
76+
content = "另一条评价"
77+
author = { name = "匿名", date = "2025-01" }
78+
79+
[[lecturers.items]]
80+
name = "教师B"
81+
82+
[[lecturers.items.reviews]]
83+
content = "教师B的评价"
84+
author = { name = "学生", date = "2024-12" }
85+
86+
# 教师总结 (在教师列表之后,可以多条)
87+
[[lecturers.summary]]
88+
content = """
89+
教师团队总结。
90+
整体教学水平较高。
91+
"""
92+
author = { name = "管理员", date = "2025-01" }
93+
94+
[[lecturers.summary]]
95+
content = """
96+
建议: 尽早选课,晚了好老师就没了
97+
"""

slides/.gitkeep

Whitespace-only changes.

tag.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
### 这是供前端页面自动生成索引的文件。保存时请删除此行注释! ###
2+
category: 必修/限选/跨专业选修/选修/本研共通/文理通识/归档
3+
module: 实践课程体系/控制理论与控制工程/机器人与智能系统/智能检测(仅有限选课有此字段)
4+
semester: 第x学年x季(示例:第一学年秋季 / 第一学年春季)【需保留学期间的空格】
5+
name: (示例)大学物理实验

0 commit comments

Comments
 (0)