Skip to content

话题的合并 & 取消合并

Zhipeng Liu edited this page Jul 14, 2015 · 2 revisions

话题 A 合并到话题 B

  • 问题:A 下的所有直接问题转移到 B,并标记 QuestionTopic.from_merge = True
  • 子话题:A 下的所有直接子话题转移到 B,并标记 TopicClosure.from_merge = True
  • 关注者:A 的所有关注者也同时关注 B,并标记 FollowTopic.from_merge = True
  • 同义词:A.name 作为同义词添加到 B,并标记 TopicSynonym.from_merge = True

在日常操作中:

  • 新建问题时,若添加 A,则自动添加 B,并标记 from_merge
  • 编辑问题的话题时,若添加 A,则自动添加 B,并标记 from_merge;若移除 A,则移除已标记 from_merge 的 B
  • 为 A 添加直接子话题时,自动为 B 添加,并标记 from_merge;从 A 移除子话题时,从 B 移除已标记 from_merge 的子话题
  • 关注话题 A 时,自动关注 B,并标记 from_merge;取消关注 A 时,则取消关注已标记 from_merge 的 B

话题 A 从 B 取消合并

  • 问题:移除 B 下标记为 from_merge 的所有问题
  • 子话题:移除 B 下标记为 from_merge 的所有直接子话题
  • 关注者:移除 B 下标记为 from_merge 的所有关注者
  • 同义词:移除 B 下标记为 from_merge 的所有同义词

注:若 A 合并到 B,则 A 仅出现在:

  1. 问题的所有话题
  2. B 的话题管理页

其他地方均不再出现。

测试

Clone this wiki locally