重写政策
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }

中站的重写政策没必要改,除非你要改时间和下面的discord。

本政策旨在规范网站中的重写流程,并在全中文维基范围内强制执行。所有欲重写文章的网站成员应仔细阅读以下内容,严格按照以下规则规范重写行为。

0 必要的解释

0.1 什么是重写?

重写,就是曾经在本维基存在过的页面因各种原因删除或在特定情形下归档后,由那个页面原作者(或原合著者之一)以外的人基于原本的文章之中心思想或多个元素进行再撰写,并在网站上发布再撰写完成的文本的过程。根据上述定义,原作者(或原合著者之一)提出的重写申请将被拒绝,他们只需重写重发即可。

0.2 本政策规范什么?

由以上解释,自然看出重写一篇文章分为以下基本过程:

  • 确定要重写的文章。
  • 基于以上文章再撰写一篇新文。
  • 将新文在网站上发布。

本政策将规范这三个基本动作,并说明必要的规则和流程。

0.3 所有重写都遵循一样的步骤吗?

由于网站中存在几种不同类型的重写,不区分它们而撰写出一篇通顺的政策是不可能的,因此本政策将采取以下结构。首先,解答第一个问题(确定要重写的文章),并在此答案中将文章的重写划分为几个不同的类型;之后,据这些类型分别解释第二个和第三个问题。

1 第一个问题:确定要重写的文章

以下将逐个列出能够被重写的文章有哪几种。

  • 在网站上因达删除线而进入删除倒计时的文章
  • 已从网站中完全删除的文章
  • 其他语言站点,特别是英文站点,已被完全删除(且没有被重写,或重写长期无进度)的文章
  • 其他职员认定可被重写的文章

2 第二个和第三个问题:再撰写和再发布

2.0 标准重写流程

标准重写流程,是指按照以下步骤进行的重写行为。所有重写行为都基于标准重写流程,并有步骤的删减。为了简化描述,首先交待标准重写流程。

2.0.1 取得合适的授权

你需要联系你想要重写的文章的所有原作者,并取得他们对你重写的认可。从法律上来说,重写文章是基于原文的一种演绎行为,根据CC BY-SA 3.0协议,你只需对原作者予以适当的署名即可;然而,出于对网站作者的尊重,我们仍然要求你取得原作者的授权。

2.0.2 取得职员的同意

在取得原作者认可的前提下,将原作者许可的所有证据,例如聊天记录或书面许可等,私讯或通过QQ、Discord1提交给一名职员。通常情况下,只要有原作者的许可,重写申请将直接通过。

2.0.3 完成重写

此步骤没有特别的流程可说。值得注意的是,除非原作者事先要求保留作品中的某些要素,否则重写完全交由重写者定夺。然而,如果职员发现重写与原文完全风马牛不相及而仅仅是申请来“抢编号”“蹭热度”的,那么会给予重写者适当的惩罚。

2.0.4 取得职员的发布许可并发布

一次重写完成后,重写者需通知职员并将稿件提交给职员审查。2重写者需要合适地标注其完成的重写稿件,确保包含以下内容:

  • 重写原文的作者,作为合著或者演绎源标注出。
  • 重写者的Wikidot名,或者如果实际重写者不具有Wikidot账号或其有其他心仪的署名,合适的不引起混淆的笔名。
  • 其他必要的重写备注。

满足审查要求的重写稿被认为是可以发布的。

2.1 进入删除倒计时的文章

情形2.1是遵守标准重写流程的重写对象。进入删除倒计时的文章,将会在讨论区由职员发布以下职员帖 - 删除宣告

由于条目的分数为-X分,现根据删帖政策,宣告将删除此页:
[删除倒计时]
如果你不是作者又想要重写该条目,请在此帖回复申请。请先取得作者的同意,并将原文的源代码复制至沙盒里。除非你是工作人员,否则请勿就申请重写以外的范围回复此帖。

因此,欲于此情况下申请重写者只需在完成步骤2.0.1后回复该职员帖表明重写意愿,并在回帖中或另行私讯职员递交重写许可证据,即视为完成步骤2.0.2。特别地,步骤2.0.2可以改为在重写者提出重写申请后,原作者在该讨论区的另一处表明许可重写的意图和对象。

职员批准重写后,将修改上述职员帖为职员帖 - 重写,并把内容改为:

本文正在重写中。重写倒计时如下。
[重写倒计时]

原文相应地撤去待删除而加上重写中标签。注意原文重写中不适用于此情形,那只用于翻译作品在原语言站点被重写的情形。

步骤2.0.3增加一个时间限制,如下。在重写者没有申请的情形下,重写倒计时会被设置为14日。重写者可以简要说明自己重写的内容,并提供适当的理由申请此倒计时延长适当的时间,或者请求暂留此被删除页面并停止倒计时,直到重写者能够开始动笔。申请的理由可以是:

  • 重写者欲撰写的文章篇幅较长,或十分花费精力和构思,以至于14日不足以使重写者写成一篇适当的文章。
  • 重写者患有使其无法长时间从事电子设备输入工作的疾病,或因为其他疾病正在调养,以至于其单日写作字数不能过多而无法在14日内完成重写,或无法即刻开始重写。
  • 重写者因不可抗力或外部因素(例如学业原因,或者由于身边没有电脑或外接键盘而不得不以较慢的速度使用手机输入等)而无法在14日内完成重写,或无法即刻开始重写。
  • 其他合适的理由,由职员逐案考察并答复。

除非职员一致认为可以允许,否则延长后的总重写期限不得超过60日,页面保留而不继续重写倒计时的时间不得超过30日。

满足审查要求的重写稿被认为是可以发布的。步骤2.0.4中,在职员审查通过后将删除被重写的原文,源代码存档步骤可被省略。重写者随即在原页面名下创建新页面并发布其重写稿。

2.2 已从网站中完全删除的文章

在网站中已然不存在的文章也可以被重写,但是在能够追溯的情况下,必须尽可能地取得所有原作者的授权;否则,必须得到职员的同意,方可进行重写工作。即,步骤2.0.1和步骤2.0.2将视实际情况灵活执行。

完成步骤2.0.3后依照步骤2.0.4作为正常的页面发布。

2.3 其他语言站点的文章

其他语言站点被删除的文章不得重写,除非得到了原作者的授权,或者得到了职员的批准。通常对其他语言站点文章的重写经由的审定更加复杂。若步骤2.0.1和2.0.2已被完成,则完成步骤2.0.3后,重写者只需遵照正常的步骤2.0.4将重写稿发布在新页面上。3

2.4 其他职员认定可被重写的文章

关于什么是“其他职员认定可被重写的文章”,以及这些重写所遵循的流程,将逐案单独交待给重写者。这类重写一般是职员认定一篇或一些范围外文章可被重写后,通过招募、举办竞赛或点对点联系个人的方式请求重写者对选定的文章进行重写。由非职员的个人向职员提起的范围外文章重写也可能被接受,但要视具体情况而定。

3 其他需要说明的问题

3.1 能够不得到原作者许可的重写情形

以下将列出所有可能能够不得到原作者许可的重写情形。此列表可能会随具体实践更新。

  • 原作者已离世,且其生前未曾声明反对重写或曾声明鼓励重写某篇文章。
  • 原作者已不再在后室中文维基或重写原文对应的语言站点活跃,且无法通过Wikidot、QQ、Discord等平台联系到,也无人了解其另外的社交媒体账号,且该作者在活跃期间未曾声明反对重写或曾声明鼓励重写某篇文章。
  • 原作者已被后室中文维基或重写原文对应的语言站点永久封禁。
  • 原作者虽然尚可被联系到,但其曾事先声明其所有或部分(满足条件的)文章可不经授权地被重写。

3.2 违规重写的处分

违规重写,是指跳过了步骤2.0.1、步骤2.0.2、步骤2.0.4的职员审定和(或)2.1至2.4规定的各重写流程中任何额外步骤,且这样的行为违反了以上规则且未得到职员豁免的重写行为。这些行为将根据具体的严重程度,导致以下处分之一:

  • 勒令修改
  • 全篇重写稿重新撰写
  • 删除重写
  • 删除重写并剥夺重写资格
  • 以上任一处分之一并附加警告至移除成员资格不等的处分

3.3 重写完的新文进入待删除的情形

如果重写完的新文质量不尽人意,以至于其进入待删除阶段,那么该重写者失去原文的重写资格。4情形2.1将因此自然转变为情形2.2,情形2.2、2.3和2.4不变。

若有新的重写者,必须走过完整的重写流程才行。新的重写者可以基于待删除的重写完成的新文进行重写,也可以基于被重写的原文进行再重写。对于前者,必须同时取得原作者以及待删除的重写的作者的同意。

3.4 可供参考的署名模板

本文为[文章名]的重写。关于作品的有关信息如下:

原文作者:
重写者:
备注:

本文为[文章名]的重写。关于作品的有关信息如下:
> **原文作者:**
> **重写者:**
> **备注:**
除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License