Index: branches/wmf/1.19wmf1/extensions/ArticleFeedbackv5/ArticleFeedbackv5.i18n.php |
— | — | @@ -145,6 +145,7 @@ |
146 | 146 | 'articlefeedbackv5-mask-text-hidden' => 'This post was hidden by an authorized editor', |
147 | 147 | 'articlefeedbackv5-mask-text-oversight' => 'This post was oversighted by an authorized editor', |
148 | 148 | 'articlefeedbackv5-mask-postnumber' => 'Post #$1', |
| 149 | + 'articlefeedbackv5-special-disclaimer' => 'This is a prototype. Please do not use it unless you have been invited to.', |
149 | 150 | |
150 | 151 | /* Special page flyover panels */ |
151 | 152 | /* Hide this post panel */ |
Index: branches/wmf/1.19wmf1/extensions/ArticleFeedbackv5/modules/jquery.articleFeedbackv5/jquery.articleFeedbackv5.special.css |
— | — | @@ -19,6 +19,11 @@ |
20 | 20 | top: 1.3em; |
21 | 21 | left: 3em; |
22 | 22 | } |
| 23 | +.articlefeedbackv5-special-disclaimer { |
| 24 | + font-size: 1.125em; |
| 25 | + color: red; |
| 26 | + font-weight: bold; |
| 27 | +} |
23 | 28 | #articleFeedbackv5-header-wrap { |
24 | 29 | margin: 0 0 10px; |
25 | 30 | } |
Index: branches/wmf/1.19wmf1/extensions/ArticleFeedbackv5/SpecialArticleFeedbackv5.php |
— | — | @@ -190,6 +190,13 @@ |
191 | 191 | ), $this->msg( 'articlefeedbackv5-beta-notice' )->text() ) |
192 | 192 | . Html::element( 'div', array( 'class' => 'float-clear' ) ) |
193 | 193 | ); |
| 194 | + |
| 195 | + // Temporary "This is a prototype" disclaimer text |
| 196 | + $out->addHTML( |
| 197 | + Html::element( 'div', array( |
| 198 | + 'class' => 'articlefeedbackv5-special-disclaimer' |
| 199 | + ), $this->msg( 'articlefeedbackv5-special-disclaimer' )->text() ) |
| 200 | + ); |
194 | 201 | |
195 | 202 | $out->addHtml( |
196 | 203 | Html::element( |