6b3c033f7dad4b8caccf0459762894a3f5d6f86d
[lhc/web/wiklou.git] / includes / EditPage.php
1 <?php
2 /**
3 * Contain the EditPage class
4 * @package MediaWiki
5 */
6
7 /**
8 * Splitting edit page/HTML interface from Article...
9 * The actual database and text munging is still in Article,
10 * but it should get easier to call those from alternate
11 * interfaces.
12 *
13 * @package MediaWiki
14 */
15
16 class EditPage {
17 var $mArticle;
18 var $mTitle;
19 var $mMetaData = '';
20 var $isConflict = false;
21 var $isCssJsSubpage = false;
22 var $deletedSinceEdit = false;
23 var $formtype;
24 var $firsttime;
25 var $lastDelete;
26 var $mTokenOk = true;
27
28 # Form values
29 var $save = false, $preview = false, $diff = false;
30 var $minoredit = false, $watchthis = false, $recreate = false;
31 var $textbox1 = '', $textbox2 = '', $summary = '';
32 var $edittime = '', $section = '', $starttime = '';
33 var $oldid = 0, $editintro = '', $scrolltop = null;
34
35 /**
36 * @todo document
37 * @param $article
38 */
39 function EditPage( $article ) {
40 $this->mArticle =& $article;
41 global $wgTitle;
42 $this->mTitle =& $wgTitle;
43 }
44
45 /**
46 * This is the function that extracts metadata from the article body on the first view.
47 * To turn the feature on, set $wgUseMetadataEdit = true ; in LocalSettings
48 * and set $wgMetadataWhitelist to the *full* title of the template whitelist
49 */
50 function extractMetaDataFromArticle () {
51 global $wgUseMetadataEdit , $wgMetadataWhitelist , $wgLang ;
52 $this->mMetaData = '' ;
53 if ( !$wgUseMetadataEdit ) return ;
54 if ( $wgMetadataWhitelist == '' ) return ;
55 $s = '' ;
56 $t = $this->mArticle->getContent ( true ) ;
57
58 # MISSING : <nowiki> filtering
59
60 # Categories and language links
61 $t = explode ( "\n" , $t ) ;
62 $catlow = strtolower ( $wgLang->getNsText ( NS_CATEGORY ) ) ;
63 $cat = $ll = array() ;
64 foreach ( $t AS $key => $x )
65 {
66 $y = trim ( strtolower ( $x ) ) ;
67 while ( substr ( $y , 0 , 2 ) == '[[' )
68 {
69 $y = explode ( ']]' , trim ( $x ) ) ;
70 $first = array_shift ( $y ) ;
71 $first = explode ( ':' , $first ) ;
72 $ns = array_shift ( $first ) ;
73 $ns = trim ( str_replace ( '[' , '' , $ns ) ) ;
74 if ( strlen ( $ns ) == 2 OR strtolower ( $ns ) == $catlow )
75 {
76 $add = '[[' . $ns . ':' . implode ( ':' , $first ) . ']]' ;
77 if ( strtolower ( $ns ) == $catlow ) $cat[] = $add ;
78 else $ll[] = $add ;
79 $x = implode ( ']]' , $y ) ;
80 $t[$key] = $x ;
81 $y = trim ( strtolower ( $x ) ) ;
82 }
83 }
84 }
85 if ( count ( $cat ) ) $s .= implode ( ' ' , $cat ) . "\n" ;
86 if ( count ( $ll ) ) $s .= implode ( ' ' , $ll ) . "\n" ;
87 $t = implode ( "\n" , $t ) ;
88
89 # Load whitelist
90 $sat = array () ; # stand-alone-templates; must be lowercase
91 $wl_title = Title::newFromText ( $wgMetadataWhitelist ) ;
92 $wl_article = new Article ( $wl_title ) ;
93 $wl = explode ( "\n" , $wl_article->getContent(true) ) ;
94 foreach ( $wl AS $x )
95 {
96 $isentry = false ;
97 $x = trim ( $x ) ;
98 while ( substr ( $x , 0 , 1 ) == '*' )
99 {
100 $isentry = true ;
101 $x = trim ( substr ( $x , 1 ) ) ;
102 }
103 if ( $isentry )
104 {
105 $sat[] = strtolower ( $x ) ;
106 }
107
108 }
109
110 # Templates, but only some
111 $t = explode ( '{{' , $t ) ;
112 $tl = array () ;
113 foreach ( $t AS $key => $x )
114 {
115 $y = explode ( '}}' , $x , 2 ) ;
116 if ( count ( $y ) == 2 )
117 {
118 $z = $y[0] ;
119 $z = explode ( '|' , $z ) ;
120 $tn = array_shift ( $z ) ;
121 if ( in_array ( strtolower ( $tn ) , $sat ) )
122 {
123 $tl[] = '{{' . $y[0] . '}}' ;
124 $t[$key] = $y[1] ;
125 $y = explode ( '}}' , $y[1] , 2 ) ;
126 }
127 else $t[$key] = '{{' . $x ;
128 }
129 else if ( $key != 0 ) $t[$key] = '{{' . $x ;
130 else $t[$key] = $x ;
131 }
132 if ( count ( $tl ) ) $s .= implode ( ' ' , $tl ) ;
133 $t = implode ( '' , $t ) ;
134
135 $t = str_replace ( "\n\n\n" , "\n" , $t ) ;
136 $this->mArticle->mContent = $t ;
137 $this->mMetaData = $s ;
138 }
139
140 function submit() {
141 $this->edit();
142 }
143
144 /**
145 * This is the function that gets called for "action=edit". It
146 * sets up various member variables, then passes execution to
147 * another function, usually showEditForm()
148 *
149 * The edit form is self-submitting, so that when things like
150 * preview and edit conflicts occur, we get the same form back
151 * with the extra stuff added. Only when the final submission
152 * is made and all is well do we actually save and redirect to
153 * the newly-edited page.
154 */
155 function edit() {
156 global $wgOut, $wgUser, $wgRequest, $wgTitle;
157
158 if ( ! wfRunHooks( 'AlternateEdit', array( &$this ) ) )
159 return;
160
161 $fname = 'EditPage::edit';
162 wfProfileIn( $fname );
163 wfDebug( "$fname: enter\n" );
164
165 // this is not an article
166 $wgOut->setArticleFlag(false);
167
168 $this->importFormData( $wgRequest );
169 $this->firsttime = false;
170
171 if( $this->live ) {
172 $this->livePreview();
173 wfProfileOut( $fname );
174 return;
175 }
176
177 if ( ! $this->mTitle->userCanEdit() ) {
178 wfDebug( "$fname: user can't edit\n" );
179 $wgOut->readOnlyPage( $this->mArticle->getContent( true ), true );
180 wfProfileOut( $fname );
181 return;
182 }
183 wfDebug( "$fname: Checking blocks\n" );
184 if ( !$this->preview && !$this->diff && $wgUser->isBlockedFrom( $this->mTitle, !$this->save ) ) {
185 # When previewing, don't check blocked state - will get caught at save time.
186 # Also, check when starting edition is done against slave to improve performance.
187 wfDebug( "$fname: user is blocked\n" );
188 $this->blockedIPpage();
189 wfProfileOut( $fname );
190 return;
191 }
192 if ( !$wgUser->isAllowed('edit') ) {
193 if ( $wgUser->isAnon() ) {
194 wfDebug( "$fname: user must log in\n" );
195 $this->userNotLoggedInPage();
196 wfProfileOut( $fname );
197 return;
198 } else {
199 wfDebug( "$fname: read-only page\n" );
200 $wgOut->readOnlyPage( $this->mArticle->getContent( true ), true );
201 wfProfileOut( $fname );
202 return;
203 }
204 }
205 if ( wfReadOnly() ) {
206 wfDebug( "$fname: read-only mode is engaged\n" );
207 if( $this->save || $this->preview ) {
208 $this->formtype = 'preview';
209 } else if ( $this->diff ) {
210 $this->formtype = 'diff';
211 } else {
212 $wgOut->readOnlyPage( $this->mArticle->getContent( true ) );
213 wfProfileOut( $fname );
214 return;
215 }
216 } else {
217 if ( $this->save ) {
218 $this->formtype = 'save';
219 } else if ( $this->preview ) {
220 $this->formtype = 'preview';
221 } else if ( $this->diff ) {
222 $this->formtype = 'diff';
223 } else { # First time through
224 $this->firsttime = true;
225 if( $this->previewOnOpen() ) {
226 $this->formtype = 'preview';
227 } else {
228 $this->extractMetaDataFromArticle () ;
229 $this->formtype = 'initial';
230 }
231 }
232 }
233
234 wfProfileIn( "$fname-business-end" );
235
236 $this->isConflict = false;
237 // css / js subpages of user pages get a special treatment
238 $this->isCssJsSubpage = $wgTitle->isCssJsSubpage();
239
240 /* Notice that we can't use isDeleted, because it returns true if article is ever deleted
241 * no matter it's current state
242 */
243 $this->deletedSinceEdit = false;
244 if ( $this->edittime != '' ) {
245 /* Note that we rely on logging table, which hasn't been always there,
246 * but that doesn't matter, because this only applies to brand new
247 * deletes. This is done on every preview and save request. Move it further down
248 * to only perform it on saves
249 */
250 if ( $this->mTitle->isDeleted() ) {
251 $this->lastDelete = $this->getLastDelete();
252 if ( !is_null($this->lastDelete) ) {
253 $deletetime = $this->lastDelete->log_timestamp;
254 if ( ($deletetime - $this->starttime) > 0 ) {
255 $this->deletedSinceEdit = true;
256 }
257 }
258 }
259 }
260
261 if(!$this->mTitle->getArticleID() && ('initial' == $this->formtype || $this->firsttime )) { # new article
262 $this->showIntro();
263 }
264 if( $this->mTitle->isTalkPage() ) {
265 $wgOut->addWikiText( wfMsg( 'talkpagetext' ) );
266 }
267
268 # Attempt submission here. This will check for edit conflicts,
269 # and redundantly check for locked database, blocked IPs, etc.
270 # that edit() already checked just in case someone tries to sneak
271 # in the back door with a hand-edited submission URL.
272
273 if ( 'save' == $this->formtype ) {
274 if ( !$this->attemptSave() ) {
275 wfProfileOut( "$fname-business-end" );
276 wfProfileOut( $fname );
277 return;
278 }
279 }
280
281 # First time through: get contents, set time for conflict
282 # checking, etc.
283 if ( 'initial' == $this->formtype || $this->firsttime ) {
284 $this->initialiseForm();
285 }
286
287 $this->showEditForm();
288 wfProfileOut( "$fname-business-end" );
289 wfProfileOut( $fname );
290 }
291
292 /**
293 * Return true if this page should be previewed when the edit form
294 * is initially opened.
295 * @return bool
296 * @access private
297 */
298 function previewOnOpen() {
299 global $wgUser;
300 return $wgUser->getOption( 'previewonfirst' ) ||
301 ( $this->mTitle->getNamespace() == NS_CATEGORY &&
302 !$this->mTitle->exists() );
303 }
304
305 /**
306 * @todo document
307 */
308 function importFormData( &$request ) {
309 global $wgLang ;
310 $fname = 'EditPage::importFormData';
311 wfProfileIn( $fname );
312
313 if( $request->wasPosted() ) {
314 # These fields need to be checked for encoding.
315 # Also remove trailing whitespace, but don't remove _initial_
316 # whitespace from the text boxes. This may be significant formatting.
317 $this->textbox1 = $this->safeUnicodeInput( $request, 'wpTextbox1' );
318 $this->textbox2 = $this->safeUnicodeInput( $request, 'wpTextbox2' );
319 $this->mMetaData = rtrim( $request->getText( 'metadata' ) );
320 # Truncate for whole multibyte characters. +5 bytes for ellipsis
321 $this->summary = $wgLang->truncate( $request->getText( 'wpSummary' ), 250 );
322
323 $this->edittime = $request->getVal( 'wpEdittime' );
324 $this->starttime = $request->getVal( 'wpStarttime' );
325
326 $this->scrolltop = $request->getIntOrNull( 'wpScrolltop' );
327
328 if( is_null( $this->edittime ) ) {
329 # If the form is incomplete, force to preview.
330 wfDebug( "$fname: Form data appears to be incomplete\n" );
331 wfDebug( "POST DATA: " . var_export( $_POST, true ) . "\n" );
332 $this->preview = true;
333 } else {
334 $this->preview = $request->getCheck( 'wpPreview' );
335 $this->diff = $request->getCheck( 'wpDiff' );
336
337 if( !$this->preview ) {
338 if ( $this->tokenOk( $request ) ) {
339 # Some browsers will not report any submit button
340 # if the user hits enter in the comment box.
341 # The unmarked state will be assumed to be a save,
342 # if the form seems otherwise complete.
343 wfDebug( "$fname: Passed token check.\n" );
344 } else {
345 # Page might be a hack attempt posted from
346 # an external site. Preview instead of saving.
347 wfDebug( "$fname: Failed token check; forcing preview\n" );
348 $this->preview = true;
349 }
350 }
351 }
352 $this->save = ! ( $this->preview OR $this->diff );
353 if( !preg_match( '/^\d{14}$/', $this->edittime )) {
354 $this->edittime = null;
355 }
356
357 if( !preg_match( '/^\d{14}$/', $this->starttime )) {
358 $this->starttime = null;
359 }
360
361 $this->recreate = $request->getCheck( 'wpRecreate' );
362
363 $this->minoredit = $request->getCheck( 'wpMinoredit' );
364 $this->watchthis = $request->getCheck( 'wpWatchthis' );
365 } else {
366 # Not a posted form? Start with nothing.
367 wfDebug( "$fname: Not a posted form.\n" );
368 $this->textbox1 = '';
369 $this->textbox2 = '';
370 $this->mMetaData = '';
371 $this->summary = '';
372 $this->edittime = '';
373 $this->starttime = wfTimestampNow();
374 $this->preview = false;
375 $this->save = false;
376 $this->diff = false;
377 $this->minoredit = false;
378 $this->watchthis = false;
379 $this->recreate = false;
380 }
381
382 $this->oldid = $request->getInt( 'oldid' );
383
384 # Section edit can come from either the form or a link
385 $this->section = $request->getVal( 'wpSection', $request->getVal( 'section' ) );
386
387 $this->live = $request->getCheck( 'live' );
388 $this->editintro = $request->getText( 'editintro' );
389
390 wfProfileOut( $fname );
391 }
392
393 /**
394 * Make sure the form isn't faking a user's credentials.
395 *
396 * @param WebRequest $request
397 * @return bool
398 * @access private
399 */
400 function tokenOk( &$request ) {
401 global $wgUser;
402 if( $wgUser->isAnon() ) {
403 # Anonymous users may not have a session
404 # open. Don't tokenize.
405 $this->mTokenOk = true;
406 } else {
407 $this->mTokenOk = $wgUser->matchEditToken( $request->getVal( 'wpEditToken' ) );
408 }
409 return $this->mTokenOk;
410 }
411
412 function showIntro() {
413 global $wgOut, $wgUser;
414 $addstandardintro=true;
415 if($this->editintro) {
416 $introtitle=Title::newFromText($this->editintro);
417 if(isset($introtitle) && $introtitle->userCanRead()) {
418 $rev=Revision::newFromTitle($introtitle);
419 if($rev) {
420 $wgOut->addWikiText($rev->getText());
421 $addstandardintro=false;
422 }
423 }
424 }
425 if($addstandardintro) {
426 if ( $wgUser->isLoggedIn() )
427 $wgOut->addWikiText( wfMsg( 'newarticletext' ) );
428 else
429 $wgOut->addWikiText( wfMsg( 'newarticletextanon' ) );
430 }
431 }
432
433 /**
434 * Attempt submission
435 * @return bool false if output is done, true if the rest of the form should be displayed
436 */
437 function attemptSave() {
438 global $wgSpamRegex, $wgFilterCallback, $wgUser, $wgOut;
439
440 $fname = 'EditPage::attemptSave';
441 wfProfileIn( $fname );
442 wfProfileIn( "$fname-checks" );
443
444 # Reintegrate metadata
445 if ( $this->mMetaData != '' ) $this->textbox1 .= "\n" . $this->mMetaData ;
446 $this->mMetaData = '' ;
447
448 # Check for spam
449 if ( $wgSpamRegex && preg_match( $wgSpamRegex, $this->textbox1, $matches ) ) {
450 $this->spamPage ( $matches[0] );
451 wfProfileOut( "$fname-checks" );
452 wfProfileOut( $fname );
453 return false;
454 }
455 if ( $wgFilterCallback && $wgFilterCallback( $this->mTitle, $this->textbox1, $this->section ) ) {
456 # Error messages or other handling should be performed by the filter function
457 wfProfileOut( $fname );
458 wfProfileOut( "$fname-checks" );
459 return false;
460 }
461 if ( !wfRunHooks( 'EditFilter', array( &$this, $this->textbox1, $this->section ) ) ) {
462 # Error messages or other handling should be performed by the filter function
463 wfProfileOut( $fname );
464 wfProfileOut( "$fname-checks" );
465 return false;
466 }
467 if ( $wgUser->isBlockedFrom( $this->mTitle, false ) ) {
468 # Check block state against master, thus 'false'.
469 $this->blockedIPpage();
470 wfProfileOut( "$fname-checks" );
471 wfProfileOut( $fname );
472 return false;
473 }
474
475 if ( !$wgUser->isAllowed('edit') ) {
476 if ( $wgUser->isAnon() ) {
477 $this->userNotLoggedInPage();
478 wfProfileOut( "$fname-checks" );
479 wfProfileOut( $fname );
480 return false;
481 }
482 else {
483 $wgOut->readOnlyPage();
484 wfProfileOut( "$fname-checks" );
485 wfProfileOut( $fname );
486 return false;
487 }
488 }
489
490 if ( wfReadOnly() ) {
491 $wgOut->readOnlyPage();
492 wfProfileOut( "$fname-checks" );
493 wfProfileOut( $fname );
494 return false;
495 }
496 if ( $wgUser->pingLimiter() ) {
497 $wgOut->rateLimited();
498 wfProfileOut( "$fname-checks" );
499 wfProfileOut( $fname );
500 return false;
501 }
502
503 # If the article has been deleted while editing, don't save it without
504 # confirmation
505 if ( $this->deletedSinceEdit && !$this->recreate ) {
506 wfProfileOut( "$fname-checks" );
507 wfProfileOut( $fname );
508 return true;
509 }
510
511 wfProfileOut( "$fname-checks" );
512
513 # If article is new, insert it.
514 $aid = $this->mTitle->getArticleID( GAID_FOR_UPDATE );
515 if ( 0 == $aid ) {
516 # Don't save a new article if it's blank.
517 if ( ( '' == $this->textbox1 ) ) {
518 $wgOut->redirect( $this->mTitle->getFullURL() );
519 wfProfileOut( $fname );
520 return false;
521 }
522
523 $isComment=($this->section=='new');
524 $this->mArticle->insertNewArticle( $this->textbox1, $this->summary,
525 $this->minoredit, $this->watchthis, false, $isComment);
526
527 wfProfileOut( $fname );
528 return false;
529 }
530
531 # Article exists. Check for edit conflict.
532
533 $this->mArticle->clear(); # Force reload of dates, etc.
534 $this->mArticle->forUpdate( true ); # Lock the article
535
536 if( ( $this->section != 'new' ) &&
537 ($this->mArticle->getTimestamp() != $this->edittime ) )
538 {
539 $this->isConflict = true;
540 }
541 $userid = $wgUser->getID();
542
543 if ( $this->isConflict) {
544 wfDebug( "EditPage::editForm conflict! getting section '$this->section' for time '$this->edittime' (article time '" .
545 $this->mArticle->getTimestamp() . "'\n" );
546 $text = $this->mArticle->replaceSection( $this->section, $this->textbox1, $this->summary, $this->edittime);
547 }
548 else {
549 wfDebug( "EditPage::editForm getting section '$this->section'\n" );
550 $text = $this->mArticle->replaceSection( $this->section, $this->textbox1, $this->summary);
551 }
552 if( is_null( $text ) ) {
553 wfDebug( "EditPage::editForm activating conflict; section replace failed.\n" );
554 $this->isConflict = true;
555 $text = $this->textbox1;
556 }
557
558 # Suppress edit conflict with self, except for section edits where merging is required.
559 if ( ( $this->section == '' ) && ( 0 != $userid ) && ( $this->mArticle->getUser() == $userid ) ) {
560 wfDebug( "Suppressing edit conflict, same user.\n" );
561 $this->isConflict = false;
562 } else {
563 # switch from section editing to normal editing in edit conflict
564 if($this->isConflict) {
565 # Attempt merge
566 if( $this->mergeChangesInto( $text ) ){
567 // Successful merge! Maybe we should tell the user the good news?
568 $this->isConflict = false;
569 wfDebug( "Suppressing edit conflict, successful merge.\n" );
570 } else {
571 $this->section = '';
572 $this->textbox1 = $text;
573 wfDebug( "Keeping edit conflict, failed merge.\n" );
574 }
575 }
576 }
577
578 if ( $this->isConflict ) {
579 wfProfileOut( $fname );
580 return true;
581 }
582
583 # All's well
584 wfProfileIn( "$fname-sectionanchor" );
585 $sectionanchor = '';
586 if( $this->section == 'new' ) {
587 if( $this->summary != '' ) {
588 $sectionanchor = $this->sectionAnchor( $this->summary );
589 }
590 } elseif( $this->section != '' ) {
591 # Try to get a section anchor from the section source, redirect to edited section if header found
592 # XXX: might be better to integrate this into Article::replaceSection
593 # for duplicate heading checking and maybe parsing
594 $hasmatch = preg_match( "/^ *([=]{1,6})(.*?)(\\1) *\\n/i", $this->textbox1, $matches );
595 # we can't deal with anchors, includes, html etc in the header for now,
596 # headline would need to be parsed to improve this
597 if($hasmatch and strlen($matches[2]) > 0) {
598 $sectionanchor = $this->sectionAnchor( $matches[2] );
599 }
600 }
601 wfProfileOut( "$fname-sectionanchor" );
602
603 // Save errors may fall down to the edit form, but we've now
604 // merged the section into full text. Clear the section field
605 // so that later submission of conflict forms won't try to
606 // replace that into a duplicated mess.
607 $this->textbox1 = $text;
608 $this->section = '';
609
610 # update the article here
611 if( $this->mArticle->updateArticle( $text, $this->summary, $this->minoredit,
612 $this->watchthis, '', $sectionanchor ) ) {
613 wfProfileOut( $fname );
614 return false;
615 } else {
616 $this->isConflict = true;
617 }
618 wfProfileOut( $fname );
619 return true;
620 }
621
622 /**
623 * Initialise form fields in the object
624 * Called on the first invocation, e.g. when a user clicks an edit link
625 */
626 function initialiseForm() {
627 $this->edittime = $this->mArticle->getTimestamp();
628 $this->textbox1 = $this->mArticle->getContent( true );
629 $this->summary = '';
630 wfProxyCheck();
631 }
632
633 /**
634 * Send the edit form and related headers to $wgOut
635 * @param $formCallback Optional callable that takes an OutputPage
636 * parameter; will be called during form output
637 * near the top, for captchas and the like.
638 */
639 function showEditForm( $formCallback=null ) {
640 global $wgOut, $wgUser, $wgAllowAnonymousMinor, $wgLang, $wgContLang;
641
642 $fname = 'EditPage::showEditForm';
643 wfProfileIn( $fname );
644
645 $sk =& $wgUser->getSkin();
646
647 $wgOut->setRobotpolicy( 'noindex,nofollow' );
648
649 # Enabled article-related sidebar, toplinks, etc.
650 $wgOut->setArticleRelated( true );
651
652 if ( $this->isConflict ) {
653 $s = wfMsg( 'editconflict', $this->mTitle->getPrefixedText() );
654 $wgOut->setPageTitle( $s );
655 $wgOut->addWikiText( wfMsg( 'explainconflict' ) );
656
657 $this->textbox2 = $this->textbox1;
658 $this->textbox1 = $this->mArticle->getContent( true );
659 $this->edittime = $this->mArticle->getTimestamp();
660 } else {
661
662 if( $this->section != '' ) {
663 if( $this->section == 'new' ) {
664 $s = wfMsg('editingcomment', $this->mTitle->getPrefixedText() );
665 } else {
666 $s = wfMsg('editingsection', $this->mTitle->getPrefixedText() );
667 if( !$this->preview && !$this->diff ) {
668 preg_match( "/^(=+)(.+)\\1/mi",
669 $this->textbox1,
670 $matches );
671 if( !empty( $matches[2] ) ) {
672 $this->summary = "/* ". trim($matches[2])." */ ";
673 }
674 }
675 }
676 } else {
677 $s = wfMsg( 'editing', $this->mTitle->getPrefixedText() );
678 }
679 $wgOut->setPageTitle( $s );
680 if ( !$this->checkUnicodeCompliantBrowser() ) {
681 $this->mArticle->setOldSubtitle();
682 $wgOut->addWikiText( wfMsg( 'nonunicodebrowser') );
683 }
684 if ( isset( $this->mArticle )
685 && isset( $this->mArticle->mRevision )
686 && !$this->mArticle->mRevision->isCurrent() ) {
687 $this->mArticle->setOldSubtitle();
688 $wgOut->addWikiText( wfMsg( 'editingold' ) );
689 }
690 }
691
692 if( wfReadOnly() ) {
693 $wgOut->addWikiText( wfMsg( 'readonlywarning' ) );
694 } else if ( $this->isCssJsSubpage and 'preview' != $this->formtype) {
695 $wgOut->addWikiText( wfMsg( 'usercssjsyoucanpreview' ));
696 }
697 if( $this->mTitle->isProtected('edit') ) {
698 $wgOut->addWikiText( wfMsg( 'protectedpagewarning' ) );
699 }
700
701 $kblength = (int)(strlen( $this->textbox1 ) / 1024);
702 if( $kblength > 29 ) {
703 $wgOut->addWikiText( wfMsg( 'longpagewarning', $wgLang->formatNum( $kblength ) ) );
704 }
705
706 $rows = $wgUser->getOption( 'rows' );
707 $cols = $wgUser->getOption( 'cols' );
708
709 $ew = $wgUser->getOption( 'editwidth' );
710 if ( $ew ) $ew = " style=\"width:100%\"";
711 else $ew = '';
712
713 $q = 'action=submit';
714 #if ( "no" == $redirect ) { $q .= "&redirect=no"; }
715 $action = $this->mTitle->escapeLocalURL( $q );
716
717 $summary = wfMsg('summary');
718 $subject = wfMsg('subject');
719 $minor = wfMsg('minoredit');
720 $watchthis = wfMsg ('watchthis');
721 $save = wfMsg('savearticle');
722 $prev = wfMsg('showpreview');
723 $diff = wfMsg('showdiff');
724
725 $cancel = $sk->makeKnownLink( $this->mTitle->getPrefixedText(),
726 wfMsg('cancel') );
727 $edithelpurl = $sk->makeInternalOrExternalUrl( wfMsg( 'edithelppage' ));
728 $edithelp = '<a target="helpwindow" href="'.$edithelpurl.'">'.
729 htmlspecialchars( wfMsg( 'edithelp' ) ).'</a> '.
730 htmlspecialchars( wfMsg( 'newwindow' ) );
731
732 global $wgRightsText;
733 $copywarn = "<div id=\"editpage-copywarn\">\n" .
734 wfMsg( $wgRightsText ? 'copyrightwarning' : 'copyrightwarning2',
735 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]',
736 $wgRightsText ) . "\n</div>";
737
738 if( $wgUser->getOption('showtoolbar') and !$this->isCssJsSubpage ) {
739 # prepare toolbar for edit buttons
740 $toolbar = $this->getEditToolbar();
741 } else {
742 $toolbar = '';
743 }
744
745 // activate checkboxes if user wants them to be always active
746 if( !$this->preview && !$this->diff ) {
747 if( $wgUser->getOption( 'watchdefault' ) ) $this->watchthis = true;
748 if( $wgUser->getOption( 'minordefault' ) ) $this->minoredit = true;
749
750 // activate checkbox also if user is already watching the page,
751 // require wpWatchthis to be unset so that second condition is not
752 // checked unnecessarily
753 if( !$this->watchthis && $this->mTitle->userIsWatching() ) $this->watchthis = true;
754 }
755
756 $minoredithtml = '';
757
758 if ( $wgUser->isLoggedIn() || $wgAllowAnonymousMinor ) {
759 $minoredithtml =
760 "<input tabindex='3' type='checkbox' value='1' name='wpMinoredit'".($this->minoredit?" checked='checked'":"").
761 " accesskey='".wfMsg('accesskey-minoredit')."' id='wpMinoredit' />".
762 "<label for='wpMinoredit' title='".wfMsg('tooltip-minoredit')."'>{$minor}</label>";
763 }
764
765 $watchhtml = '';
766
767 if ( $wgUser->isLoggedIn() ) {
768 $watchhtml = "<input tabindex='4' type='checkbox' name='wpWatchthis'".
769 ($this->watchthis?" checked='checked'":"").
770 " accesskey=\"".htmlspecialchars(wfMsg('accesskey-watch'))."\" id='wpWatchthis' />".
771 "<label for='wpWatchthis' title=\"" .
772 htmlspecialchars(wfMsg('tooltip-watch'))."\">{$watchthis}</label>";
773 }
774
775 $checkboxhtml = $minoredithtml . $watchhtml;
776
777 if ( 'preview' == $this->formtype && $wgUser->getOption( 'previewontop' ) ) {
778 $this->showPreview();
779 }
780 if ( 'diff' == $this->formtype ) {
781 if ( $wgUser->getOption('previewontop' ) ) {
782 $wgOut->addHTML( $this->getDiff() );
783 }
784 }
785
786
787 # if this is a comment, show a subject line at the top, which is also the edit summary.
788 # Otherwise, show a summary field at the bottom
789 $summarytext = htmlspecialchars( $wgContLang->recodeForEdit( $this->summary ) ); # FIXME
790 if( $this->section == 'new' ) {
791 $commentsubject="<span id='wpSummaryLabel'><label for='wpSummary'>{$subject}:</label></span> <div class='editOptions'><input tabindex='1' type='text' value=\"$summarytext\" name='wpSummary' id='wpSummary' maxlength='200' size='60' /><br />";
792 $editsummary = '';
793 } else {
794 $commentsubject = '';
795 $editsummary="<span id='wpSummaryLabel'><label for='wpSummary'>{$summary}:</label></span> <div class='editOptions'><input tabindex='2' type='text' value=\"$summarytext\" name='wpSummary' id='wpSummary' maxlength='200' size='60' /><br />";
796 }
797
798 # Set focus to the edit box on load, except on preview or diff, where it would interfere with the display
799 if( !$this->preview && !$this->diff ) {
800 $wgOut->setOnloadHandler( 'document.editform.wpTextbox1.focus()' );
801 }
802 $templates = $this->getTemplatesUsed();
803
804 global $wgLivePreview;
805 if ( $wgLivePreview ) {
806 $liveOnclick = $this->doLivePreviewScript();
807 } else {
808 $liveOnclick = '';
809 }
810
811 global $wgUseMetadataEdit ;
812 if ( $wgUseMetadataEdit ) {
813 $metadata = $this->mMetaData ;
814 $metadata = htmlspecialchars( $wgContLang->recodeForEdit( $metadata ) ) ;
815 $helppage = Title::newFromText( wfMsg( "metadata_page" ) ) ;
816 $top = wfMsg( 'metadata', $helppage->getInternalURL() );
817 $metadata = $top . "<textarea name='metadata' rows='3' cols='{$cols}'{$ew}>{$metadata}</textarea>" ;
818 }
819 else $metadata = "" ;
820
821 $hidden = '';
822 $recreate = '';
823 if ($this->deletedSinceEdit) {
824 if ( 'save' != $this->formtype ) {
825 $wgOut->addWikiText( wfMsg('deletedwhileediting'));
826 } else {
827 // Hide the toolbar and edit area, use can click preview to get it back
828 // Add an confirmation checkbox and explanation.
829 $toolbar = '';
830 $hidden = 'type="hidden" style="display:none;"';
831 $recreate = $wgOut->parse( wfMsg( 'confirmrecreate', $this->lastDelete->user_name , $this->lastDelete->log_comment ));
832 $recreate .=
833 "<br /><input tabindex='1' type='checkbox' value='1' name='wpRecreate' id='wpRecreate' />".
834 "<label for='wpRecreate' title='".wfMsg('tooltip-recreate')."'>". wfMsg('recreate')."</label>";
835 }
836 }
837
838 $safemodehtml = $this->checkUnicodeCompliantBrowser()
839 ? ""
840 : "<input type='hidden' name=\"safemode\" value='1' />\n";
841
842 $wgOut->addHTML( <<<END
843 {$toolbar}
844 <form id="editform" name="editform" method="post" action="$action"
845 enctype="multipart/form-data">
846 END
847 );
848 if( is_callable( $formCallback ) ) {
849 call_user_func_array( $formCallback, array( &$wgOut ) );
850 }
851 $wgOut->addHTML( <<<END
852 $recreate
853 {$commentsubject}
854 <textarea tabindex='1' accesskey="," name="wpTextbox1" id="wpTextbox1" rows='{$rows}'
855 cols='{$cols}'{$ew} $hidden>
856 END
857 . htmlspecialchars( $this->safeUnicodeOutput( $this->textbox1 ) ) .
858 "
859 </textarea><br />
860 {$metadata}
861 {$editsummary}
862 {$checkboxhtml}
863 {$safemodehtml}
864 <div class='editButtons'>
865 <input tabindex='5' id='wpSave' type='submit' value=\"{$save}\" name=\"wpSave\" accesskey=\"".wfMsg('accesskey-save')."\"".
866 " title=\"".wfMsg('tooltip-save')."\"/>
867 <input tabindex='6' id='wpPreview' type='submit' $liveOnclick value=\"{$prev}\" name=\"wpPreview\" accesskey=\"".wfMsg('accesskey-preview')."\"".
868 " title=\"".wfMsg('tooltip-preview')."\"/>
869 <input tabindex='7' id='wpDiff' type='submit' value=\"{$diff}\" name=\"wpDiff\" accesskey=\"".wfMsg('accesskey-diff')."\"".
870 " title=\"".wfMsg('tooltip-diff')."\"/> <span class='editHelp'>{$cancel} | {$edithelp}</span></div>
871 </div>
872 <div class='templatesUsed'>
873 {$templates}
874 </div>
875 " );
876 $wgOut->addWikiText( $copywarn );
877 $wgOut->addHTML( "
878 <input type='hidden' value=\"" . htmlspecialchars( $this->section ) . "\" name=\"wpSection\" />
879 <input type='hidden' value=\"{$this->starttime}\" name=\"wpStarttime\" />\n
880 <input type='hidden' value=\"{$this->edittime}\" name=\"wpEdittime\" />\n
881 <input type='hidden' value=\"{$this->scrolltop}\" name=\"wpScrolltop\" id=\"wpScrolltop\" />\n" );
882
883 if ( $wgUser->isLoggedIn() ) {
884 /**
885 * To make it harder for someone to slip a user a page
886 * which submits an edit form to the wiki without their
887 * knowledge, a random token is associated with the login
888 * session. If it's not passed back with the submission,
889 * we won't save the page, or render user JavaScript and
890 * CSS previews.
891 */
892 $token = htmlspecialchars( $wgUser->editToken() );
893 $wgOut->addHTML( "\n<input type='hidden' value=\"$token\" name=\"wpEditToken\" />\n" );
894 }
895
896
897 if ( $this->isConflict ) {
898 require_once( "DifferenceEngine.php" );
899 $wgOut->addWikiText( '==' . wfMsg( "yourdiff" ) . '==' );
900
901 $de = new DifferenceEngine( $this->mTitle );
902 $de->setText( $this->textbox2, $this->textbox1 );
903 $de->showDiff( wfMsg( "yourtext" ), wfMsg( "storedversion" ) );
904
905 $wgOut->addWikiText( '==' . wfMsg( "yourtext" ) . '==' );
906 $wgOut->addHTML( "<textarea tabindex=6 id='wpTextbox2' name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}' wrap='virtual'>"
907 . htmlspecialchars( $this->safeUnicodeOutput( $this->textbox2 ) ) . "\n</textarea>" );
908 }
909 $wgOut->addHTML( "</form>\n" );
910 if ( $this->formtype == 'preview' && !$wgUser->getOption( 'previewontop' ) ) {
911 $this->showPreview();
912 }
913 if ( $this->formtype == 'diff' && !$wgUser->getOption( 'previewontop' ) ) {
914 #$wgOut->addHTML( '<div id="wikiPreview">' . $difftext . '</div>' );
915 $wgOut->addHTML( $this->getDiff() );
916 }
917
918 wfProfileOut( $fname );
919 }
920
921 /**
922 * Append preview output to $wgOut.
923 * Includes category rendering if this is a category page.
924 * @access private
925 */
926 function showPreview() {
927 global $wgOut;
928 $wgOut->addHTML( '<div id="wikiPreview">' );
929 if($this->mTitle->getNamespace() == NS_CATEGORY) {
930 $this->mArticle->openShowCategory();
931 }
932 $previewOutput = $this->getPreviewText();
933 $wgOut->addHTML( $previewOutput );
934 if($this->mTitle->getNamespace() == NS_CATEGORY) {
935 $this->mArticle->closeShowCategory();
936 }
937 $wgOut->addHTML( "<br style=\"clear:both;\" />\n" );
938 $wgOut->addHTML( '</div>' );
939 }
940
941 /**
942 * Prepare a list of templates used by this page. Returns HTML.
943 */
944 function getTemplatesUsed() {
945 global $wgUser;
946
947 $fname = 'EditPage::getTemplatesUsed';
948 wfProfileIn( $fname );
949
950 $sk =& $wgUser->getSkin();
951
952 $templates = '';
953 $articleTemplates = $this->mArticle->getUsedTemplates();
954 if ( count( $articleTemplates ) > 0 ) {
955 $templates = '<br />'. wfMsg( 'templatesused' ) . '<ul>';
956 foreach ( $articleTemplates as $tpl ) {
957 if ( $titleObj = Title::makeTitle( NS_TEMPLATE, $tpl ) ) {
958 $templates .= '<li>' . $sk->makeLinkObj( $titleObj ) . '</li>';
959 }
960 }
961 $templates .= '</ul>';
962 }
963 wfProfileOut( $fname );
964 return $templates;
965 }
966
967 /**
968 * Live Preview lets us fetch rendered preview page content and
969 * add it to the page without refreshing the whole page.
970 * If not supported by the browser it will fall through to the normal form
971 * submission method.
972 *
973 * This function outputs a script tag to support live preview, and
974 * returns an onclick handler which should be added to the attributes
975 * of the preview button
976 */
977 function doLivePreviewScript() {
978 global $wgStylePath, $wgJsMimeType, $wgOut;
979 $wgOut->addHTML( '<script type="'.$wgJsMimeType.'" src="' .
980 htmlspecialchars( $wgStylePath . '/common/preview.js' ) .
981 '"></script>' . "\n" );
982 $liveAction = $wgTitle->getLocalUrl( 'action=submit&wpPreview=true&live=true' );
983 return 'onclick="return !livePreview('.
984 'getElementById(\'wikiPreview\'),' .
985 'editform.wpTextbox1.value,' .
986 htmlspecialchars( '"' . $liveAction . '"' ) . ')"';
987 }
988
989 function getLastDelete() {
990 $dbr =& wfGetDB( DB_SLAVE );
991 $fname = 'EditPage::getLastDelete';
992 $res = $dbr->select(
993 array( 'logging', 'user' ),
994 array( 'log_type',
995 'log_action',
996 'log_timestamp',
997 'log_user',
998 'log_namespace',
999 'log_title',
1000 'log_comment',
1001 'log_params',
1002 'user_name', ),
1003 array( 'log_namespace' => $this->mTitle->getNamespace(),
1004 'log_title' => $this->mTitle->getDBkey(),
1005 'log_type' => 'delete',
1006 'log_action' => 'delete',
1007 'user_id=log_user' ),
1008 $fname,
1009 array( 'LIMIT' => 1, 'ORDER BY' => 'log_timestamp DESC' ) );
1010
1011 if($dbr->numRows($res) == 1) {
1012 while ( $x = $dbr->fetchObject ( $res ) )
1013 $data = $x;
1014 $dbr->freeResult ( $res ) ;
1015 } else {
1016 $data = null;
1017 }
1018 return $data;
1019 }
1020
1021 /**
1022 * @todo document
1023 */
1024 function getPreviewText() {
1025 global $wgOut, $wgUser, $wgTitle, $wgParser, $wgAllowDiffPreview, $wgEnableDiffPreviewPreference;
1026
1027 $fname = 'EditPage::getPreviewText';
1028 wfProfileIn( $fname );
1029
1030 if ( $this->mTokenOk ) {
1031 $msg = 'previewnote';
1032 } else {
1033 $msg = 'session_fail_preview';
1034 }
1035 $previewhead = '<h2>' . htmlspecialchars( wfMsg( 'preview' ) ) . "</h2>\n" .
1036 "<div class='previewnote'>" . $wgOut->parse( wfMsg( $msg ) ) . "</div>\n";
1037 if ( $this->isConflict ) {
1038 $previewhead.='<h2>' . htmlspecialchars( wfMsg( 'previewconflict' ) ) . "</h2>\n";
1039 }
1040
1041 $parserOptions = ParserOptions::newFromUser( $wgUser );
1042 $parserOptions->setEditSection( false );
1043
1044 # don't parse user css/js, show message about preview
1045 # XXX: stupid php bug won't let us use $wgTitle->isCssJsSubpage() here
1046
1047 if ( $this->isCssJsSubpage ) {
1048 if(preg_match("/\\.css$/", $wgTitle->getText() ) ) {
1049 $previewtext = wfMsg('usercsspreview');
1050 } else if(preg_match("/\\.js$/", $wgTitle->getText() ) ) {
1051 $previewtext = wfMsg('userjspreview');
1052 }
1053 $parserOutput = $wgParser->parse( $previewtext , $wgTitle, $parserOptions );
1054 $wgOut->addHTML( $parserOutput->mText );
1055 wfProfileOut( $fname );
1056 return $previewhead;
1057 } else {
1058 # if user want to see preview when he edit an article
1059 if( $wgUser->getOption('previewonfirst') and ($this->textbox1 == '')) {
1060 $this->textbox1 = $this->mArticle->getContent(true);
1061 }
1062
1063 $toparse = $this->textbox1;
1064
1065 # If we're adding a comment, we need to show the
1066 # summary as the headline
1067 if($this->section=="new" && $this->summary!="") {
1068 $toparse="== {$this->summary} ==\n\n".$toparse;
1069 }
1070
1071 if ( $this->mMetaData != "" ) $toparse .= "\n" . $this->mMetaData ;
1072
1073 $parserOutput = $wgParser->parse( $this->mArticle->preSaveTransform( $toparse ) ."\n\n",
1074 $wgTitle, $parserOptions );
1075
1076 $previewHTML = $parserOutput->mText;
1077
1078 $wgOut->addCategoryLinks($parserOutput->getCategoryLinks());
1079 $wgOut->addLanguageLinks($parserOutput->getLanguageLinks());
1080
1081 wfProfileOut( $fname );
1082 return $previewhead . $previewHTML;
1083 }
1084 }
1085
1086 /**
1087 * @todo document
1088 */
1089 function blockedIPpage() {
1090 global $wgOut, $wgUser, $wgContLang;
1091
1092 $wgOut->setPageTitle( wfMsg( 'blockedtitle' ) );
1093 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1094 $wgOut->setArticleRelated( false );
1095
1096 $id = $wgUser->blockedBy();
1097 $reason = $wgUser->blockedFor();
1098 $ip = wfGetIP();
1099
1100 if ( is_numeric( $id ) ) {
1101 $name = User::whoIs( $id );
1102 } else {
1103 $name = $id;
1104 }
1105 $link = '[[' . $wgContLang->getNsText( NS_USER ) .
1106 ":{$name}|{$name}]]";
1107
1108 $wgOut->addWikiText( wfMsg( 'blockedtext', $link, $reason, $ip, $name ) );
1109 $wgOut->returnToMain( false );
1110 }
1111
1112 /**
1113 * @todo document
1114 */
1115 function userNotLoggedInPage() {
1116 global $wgOut;
1117
1118 $wgOut->setPageTitle( wfMsg( 'whitelistedittitle' ) );
1119 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1120 $wgOut->setArticleRelated( false );
1121
1122 $wgOut->addWikiText( wfMsg( 'whitelistedittext' ) );
1123 $wgOut->returnToMain( false );
1124 }
1125
1126 /**
1127 * @todo document
1128 */
1129 function spamPage ( $match = false )
1130 {
1131 global $wgOut;
1132 $wgOut->setPageTitle( wfMsg( 'spamprotectiontitle' ) );
1133 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1134 $wgOut->setArticleRelated( false );
1135
1136 $wgOut->addWikiText( wfMsg( 'spamprotectiontext' ) );
1137 if ( $match ) {
1138 $wgOut->addWikiText( wfMsg( 'spamprotectionmatch', "<nowiki>{$match}</nowiki>" ) );
1139 }
1140 $wgOut->returnToMain( false );
1141 }
1142
1143 /**
1144 * @access private
1145 * @todo document
1146 */
1147 function mergeChangesInto( &$editText ){
1148 $fname = 'EditPage::mergeChangesInto';
1149 wfProfileIn( $fname );
1150
1151 $db =& wfGetDB( DB_MASTER );
1152
1153 // This is the revision the editor started from
1154 $baseRevision = Revision::loadFromTimestamp(
1155 $db, $this->mArticle->mTitle, $this->edittime );
1156 if( is_null( $baseRevision ) ) {
1157 wfProfileOut( $fname );
1158 return false;
1159 }
1160 $baseText = $baseRevision->getText();
1161
1162 // The current state, we want to merge updates into it
1163 $currentRevision = Revision::loadFromTitle(
1164 $db, $this->mArticle->mTitle );
1165 if( is_null( $currentRevision ) ) {
1166 wfProfileOut( $fname );
1167 return false;
1168 }
1169 $currentText = $currentRevision->getText();
1170
1171 if( wfMerge( $baseText, $editText, $currentText, $result ) ){
1172 $editText = $result;
1173 wfProfileOut( $fname );
1174 return true;
1175 } else {
1176 wfProfileOut( $fname );
1177 return false;
1178 }
1179 }
1180
1181 /**
1182 * Check if the browser is on a blacklist of user-agents known to
1183 * mangle UTF-8 data on form submission. Returns true if Unicode
1184 * should make it through, false if it's known to be a problem.
1185 * @return bool
1186 * @access private
1187 */
1188 function checkUnicodeCompliantBrowser() {
1189 global $wgBrowserBlackList;
1190 if( empty( $_SERVER["HTTP_USER_AGENT"] ) ) {
1191 // No User-Agent header sent? Trust it by default...
1192 return true;
1193 }
1194 $currentbrowser = $_SERVER["HTTP_USER_AGENT"];
1195 foreach ( $wgBrowserBlackList as $browser ) {
1196 if ( preg_match($browser, $currentbrowser) ) {
1197 return false;
1198 }
1199 }
1200 return true;
1201 }
1202
1203 /**
1204 * Format an anchor fragment as it would appear for a given section name
1205 * @param string $text
1206 * @return string
1207 * @access private
1208 */
1209 function sectionAnchor( $text ) {
1210 $headline = Sanitizer::decodeCharReferences( $text );
1211 # strip out HTML
1212 $headline = preg_replace( '/<.*?' . '>/', '', $headline );
1213 $headline = trim( $headline );
1214 $sectionanchor = '#' . urlencode( str_replace( ' ', '_', $headline ) );
1215 $replacearray = array(
1216 '%3A' => ':',
1217 '%' => '.'
1218 );
1219 return str_replace(
1220 array_keys( $replacearray ),
1221 array_values( $replacearray ),
1222 $sectionanchor );
1223 }
1224
1225 /**
1226 * Shows a bulletin board style toolbar for common editing functions.
1227 * It can be disabled in the user preferences.
1228 * The necessary JavaScript code can be found in style/wikibits.js.
1229 */
1230 function getEditToolbar() {
1231 global $wgStylePath, $wgLang, $wgMimeType, $wgJsMimeType;
1232
1233 /**
1234 * toolarray an array of arrays which each include the filename of
1235 * the button image (without path), the opening tag, the closing tag,
1236 * and optionally a sample text that is inserted between the two when no
1237 * selection is highlighted.
1238 * The tip text is shown when the user moves the mouse over the button.
1239 *
1240 * Already here are accesskeys (key), which are not used yet until someone
1241 * can figure out a way to make them work in IE. However, we should make
1242 * sure these keys are not defined on the edit page.
1243 */
1244 $toolarray=array(
1245 array( 'image'=>'button_bold.png',
1246 'open' => "\'\'\'",
1247 'close' => "\'\'\'",
1248 'sample'=> wfMsg('bold_sample'),
1249 'tip' => wfMsg('bold_tip'),
1250 'key' => 'B'
1251 ),
1252 array( 'image'=>'button_italic.png',
1253 'open' => "\'\'",
1254 'close' => "\'\'",
1255 'sample'=> wfMsg('italic_sample'),
1256 'tip' => wfMsg('italic_tip'),
1257 'key' => 'I'
1258 ),
1259 array( 'image'=>'button_link.png',
1260 'open' => '[[',
1261 'close' => ']]',
1262 'sample'=> wfMsg('link_sample'),
1263 'tip' => wfMsg('link_tip'),
1264 'key' => 'L'
1265 ),
1266 array( 'image'=>'button_extlink.png',
1267 'open' => '[',
1268 'close' => ']',
1269 'sample'=> wfMsg('extlink_sample'),
1270 'tip' => wfMsg('extlink_tip'),
1271 'key' => 'X'
1272 ),
1273 array( 'image'=>'button_headline.png',
1274 'open' => "\\n== ",
1275 'close' => " ==\\n",
1276 'sample'=> wfMsg('headline_sample'),
1277 'tip' => wfMsg('headline_tip'),
1278 'key' => 'H'
1279 ),
1280 array( 'image'=>'button_image.png',
1281 'open' => '[['.$wgLang->getNsText(NS_IMAGE).":",
1282 'close' => ']]',
1283 'sample'=> wfMsg('image_sample'),
1284 'tip' => wfMsg('image_tip'),
1285 'key' => 'D'
1286 ),
1287 array( 'image' =>'button_media.png',
1288 'open' => '[['.$wgLang->getNsText(NS_MEDIA).':',
1289 'close' => ']]',
1290 'sample'=> wfMsg('media_sample'),
1291 'tip' => wfMsg('media_tip'),
1292 'key' => 'M'
1293 ),
1294 array( 'image' =>'button_math.png',
1295 'open' => "\\<math\\>",
1296 'close' => "\\</math\\>",
1297 'sample'=> wfMsg('math_sample'),
1298 'tip' => wfMsg('math_tip'),
1299 'key' => 'C'
1300 ),
1301 array( 'image' =>'button_nowiki.png',
1302 'open' => "\\<nowiki\\>",
1303 'close' => "\\</nowiki\\>",
1304 'sample'=> wfMsg('nowiki_sample'),
1305 'tip' => wfMsg('nowiki_tip'),
1306 'key' => 'N'
1307 ),
1308 array( 'image' =>'button_sig.png',
1309 'open' => '--~~~~',
1310 'close' => '',
1311 'sample'=> '',
1312 'tip' => wfMsg('sig_tip'),
1313 'key' => 'Y'
1314 ),
1315 array( 'image' =>'button_hr.png',
1316 'open' => "\\n----\\n",
1317 'close' => '',
1318 'sample'=> '',
1319 'tip' => wfMsg('hr_tip'),
1320 'key' => 'R'
1321 )
1322 );
1323 $toolbar ="<script type='$wgJsMimeType'>\n/*<![CDATA[*/\n";
1324
1325 $toolbar.="document.writeln(\"<div id='toolbar'>\");\n";
1326 foreach($toolarray as $tool) {
1327
1328 $image=$wgStylePath.'/common/images/'.$tool['image'];
1329 $open=$tool['open'];
1330 $close=$tool['close'];
1331 $sample = wfEscapeJsString( $tool['sample'] );
1332
1333 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
1334 // Older browsers show a "speedtip" type message only for ALT.
1335 // Ideally these should be different, realistically they
1336 // probably don't need to be.
1337 $tip = wfEscapeJsString( $tool['tip'] );
1338
1339 #$key = $tool["key"];
1340
1341 $toolbar.="addButton('$image','$tip','$open','$close','$sample');\n";
1342 }
1343
1344 $toolbar.="document.writeln(\"</div>\");\n";
1345 $toolbar.="/*]]>*/\n</script>";
1346 return $toolbar;
1347 }
1348
1349 /**
1350 * Output preview text only. This can be sucked into the edit page
1351 * via JavaScript, and saves the server time rendering the skin as
1352 * well as theoretically being more robust on the client (doesn't
1353 * disturb the edit box's undo history, won't eat your text on
1354 * failure, etc).
1355 *
1356 * @todo This doesn't include category or interlanguage links.
1357 * Would need to enhance it a bit, maybe wrap them in XML
1358 * or something... that might also require more skin
1359 * initialization, so check whether that's a problem.
1360 */
1361 function livePreview() {
1362 global $wgOut;
1363 $wgOut->disable();
1364 header( 'Content-type: text/xml' );
1365 header( 'Cache-control: no-cache' );
1366 # FIXME
1367 echo $this->getPreviewText( false, false );
1368 }
1369
1370
1371 /**
1372 * Get a diff between the current contents of the edit box and the
1373 * version of the page we're editing from.
1374 *
1375 * If this is a section edit, we'll replace the section as for final
1376 * save and then make a comparison.
1377 *
1378 * @return string HTML
1379 */
1380 function getDiff() {
1381 global $wgUser;
1382
1383 require_once( 'DifferenceEngine.php' );
1384 $oldtext = $this->mArticle->fetchContent();
1385 $newtext = $this->mArticle->replaceSection(
1386 $this->section, $this->textbox1, $this->summary, $this->edittime );
1387 $oldtitle = wfMsg( 'currentrev' );
1388 $newtitle = wfMsg( 'yourtext' );
1389 if ( $oldtext !== false || $newtext != '' ) {
1390 $de = new DifferenceEngine( $this->mTitle );
1391 $de->setText( $oldtext, $newtext );
1392 $difftext = $de->getDiff( $oldtitle, $newtitle );
1393 } else {
1394 $difftext = '';
1395 }
1396
1397 return '<div id="wikiDiff">' . $difftext . '</div>';
1398 }
1399
1400 /**
1401 * Filter an input field through a Unicode de-armoring process if it
1402 * came from an old browser with known broken Unicode editing issues.
1403 *
1404 * @param WebRequest $request
1405 * @param string $field
1406 * @return string
1407 * @access private
1408 */
1409 function safeUnicodeInput( $request, $field ) {
1410 $text = rtrim( $request->getText( $field ) );
1411 return $request->getBool( 'safemode' )
1412 ? $this->unmakesafe( $text )
1413 : $text;
1414 }
1415
1416 /**
1417 * Filter an output field through a Unicode armoring process if it is
1418 * going to an old browser with known broken Unicode editing issues.
1419 *
1420 * @param string $text
1421 * @return string
1422 * @access private
1423 */
1424 function safeUnicodeOutput( $text ) {
1425 global $wgContLang;
1426 $codedText = $wgContLang->recodeForEdit( $text );
1427 return $this->checkUnicodeCompliantBrowser()
1428 ? $codedText
1429 : $this->makesafe( $codedText );
1430 }
1431
1432 /**
1433 * A number of web browsers are known to corrupt non-ASCII characters
1434 * in a UTF-8 text editing environment. To protect against this,
1435 * detected browsers will be served an armored version of the text,
1436 * with non-ASCII chars converted to numeric HTML character references.
1437 *
1438 * Preexisting such character references will have a 0 added to them
1439 * to ensure that round-trips do not alter the original data.
1440 *
1441 * @param string $invalue
1442 * @return string
1443 * @access private
1444 */
1445 function makesafe( $invalue ) {
1446 // Armor existing references for reversability.
1447 $invalue = strtr( $invalue, array( "&#x" => "&#x0" ) );
1448
1449 $bytesleft = 0;
1450 $result = "";
1451 $working = 0;
1452 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
1453 $bytevalue = ord( $invalue{$i} );
1454 if( $bytevalue <= 0x7F ) { //0xxx xxxx
1455 $result .= chr( $bytevalue );
1456 $bytesleft = 0;
1457 } elseif( $bytevalue <= 0xBF ) { //10xx xxxx
1458 $working = $working << 6;
1459 $working += ($bytevalue & 0x3F);
1460 $bytesleft--;
1461 if( $bytesleft <= 0 ) {
1462 $result .= "&#x" . strtoupper( dechex( $working ) ) . ";";
1463 }
1464 } elseif( $bytevalue <= 0xDF ) { //110x xxxx
1465 $working = $bytevalue & 0x1F;
1466 $bytesleft = 1;
1467 } elseif( $bytevalue <= 0xEF ) { //1110 xxxx
1468 $working = $bytevalue & 0x0F;
1469 $bytesleft = 2;
1470 } else { //1111 0xxx
1471 $working = $bytevalue & 0x07;
1472 $bytesleft = 3;
1473 }
1474 }
1475 return $result;
1476 }
1477
1478 /**
1479 * Reverse the previously applied transliteration of non-ASCII characters
1480 * back to UTF-8. Used to protect data from corruption by broken web browsers
1481 * as listed in $wgBrowserBlackList.
1482 *
1483 * @param string $invalue
1484 * @return string
1485 * @access private
1486 */
1487 function unmakesafe( $invalue ) {
1488 $result = "";
1489 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
1490 if( ( substr( $invalue, $i, 3 ) == "&#x" ) && ( $invalue{$i+3} != '0' ) ) {
1491 $i += 3;
1492 $hexstring = "";
1493 do {
1494 $hexstring .= $invalue{$i};
1495 $i++;
1496 } while( ctype_xdigit( $invalue{$i} ) && ( $i < strlen( $invalue ) ) );
1497
1498 // Do some sanity checks. These aren't needed for reversability,
1499 // but should help keep the breakage down if the editor
1500 // breaks one of the entities whilst editing.
1501 if ((substr($invalue,$i,1)==";") and (strlen($hexstring) <= 6)) {
1502 $codepoint = hexdec($hexstring);
1503 $result .= codepointToUtf8( $codepoint );
1504 } else {
1505 $result .= "&#x" . $hexstring . substr( $invalue, $i, 1 );
1506 }
1507 } else {
1508 $result .= substr( $invalue, $i, 1 );
1509 }
1510 }
1511 // reverse the transform that we made for reversability reasons.
1512 return strtr( $result, array( "&#x0" => "&#x" ) );
1513 }
1514
1515
1516 }
1517
1518 ?>