* (bug 153) Adjust thumbnail size calculations to match consistently;
[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 $wgOut->addWikiText( wfMsg( 'nonunicodebrowser') );
682 }
683 if ( isset( $this->mArticle )
684 && isset( $this->mArticle->mRevision )
685 && !$this->mArticle->mRevision->isCurrent() ) {
686 $this->mArticle->setOldSubtitle( $this->mArticle->mRevision->getId() );
687 $wgOut->addWikiText( wfMsg( 'editingold' ) );
688 }
689 }
690
691 if( wfReadOnly() ) {
692 $wgOut->addWikiText( wfMsg( 'readonlywarning' ) );
693 } else if ( $this->isCssJsSubpage and 'preview' != $this->formtype) {
694 $wgOut->addWikiText( wfMsg( 'usercssjsyoucanpreview' ));
695 }
696 if( $this->mTitle->isProtected('edit') ) {
697 $wgOut->addWikiText( wfMsg( 'protectedpagewarning' ) );
698 }
699
700 $kblength = (int)(strlen( $this->textbox1 ) / 1024);
701 if( $kblength > 29 ) {
702 $wgOut->addWikiText( wfMsg( 'longpagewarning', $wgLang->formatNum( $kblength ) ) );
703 }
704
705 $rows = $wgUser->getOption( 'rows' );
706 $cols = $wgUser->getOption( 'cols' );
707
708 $ew = $wgUser->getOption( 'editwidth' );
709 if ( $ew ) $ew = " style=\"width:100%\"";
710 else $ew = '';
711
712 $q = 'action=submit';
713 #if ( "no" == $redirect ) { $q .= "&redirect=no"; }
714 $action = $this->mTitle->escapeLocalURL( $q );
715
716 $summary = wfMsg('summary');
717 $subject = wfMsg('subject');
718 $minor = wfMsg('minoredit');
719 $watchthis = wfMsg ('watchthis');
720 $save = wfMsg('savearticle');
721 $prev = wfMsg('showpreview');
722 $diff = wfMsg('showdiff');
723
724 $cancel = $sk->makeKnownLink( $this->mTitle->getPrefixedText(),
725 wfMsg('cancel') );
726 $edithelpurl = $sk->makeInternalOrExternalUrl( wfMsg( 'edithelppage' ));
727 $edithelp = '<a target="helpwindow" href="'.$edithelpurl.'">'.
728 htmlspecialchars( wfMsg( 'edithelp' ) ).'</a> '.
729 htmlspecialchars( wfMsg( 'newwindow' ) );
730
731 global $wgRightsText;
732 $copywarn = "<div id=\"editpage-copywarn\">\n" .
733 wfMsg( $wgRightsText ? 'copyrightwarning' : 'copyrightwarning2',
734 '[[' . wfMsgForContent( 'copyrightpage' ) . ']]',
735 $wgRightsText ) . "\n</div>";
736
737 if( $wgUser->getOption('showtoolbar') and !$this->isCssJsSubpage ) {
738 # prepare toolbar for edit buttons
739 $toolbar = $this->getEditToolbar();
740 } else {
741 $toolbar = '';
742 }
743
744 // activate checkboxes if user wants them to be always active
745 if( !$this->preview && !$this->diff ) {
746 if( $wgUser->getOption( 'watchdefault' ) ) $this->watchthis = true;
747 if( $wgUser->getOption( 'minordefault' ) ) $this->minoredit = true;
748
749 // activate checkbox also if user is already watching the page,
750 // require wpWatchthis to be unset so that second condition is not
751 // checked unnecessarily
752 if( !$this->watchthis && $this->mTitle->userIsWatching() ) $this->watchthis = true;
753 }
754
755 $minoredithtml = '';
756
757 if ( $wgUser->isLoggedIn() || $wgAllowAnonymousMinor ) {
758 $minoredithtml =
759 "<input tabindex='3' type='checkbox' value='1' name='wpMinoredit'".($this->minoredit?" checked='checked'":"").
760 " accesskey='".wfMsg('accesskey-minoredit')."' id='wpMinoredit' />".
761 "<label for='wpMinoredit' title='".wfMsg('tooltip-minoredit')."'>{$minor}</label>";
762 }
763
764 $watchhtml = '';
765
766 if ( $wgUser->isLoggedIn() ) {
767 $watchhtml = "<input tabindex='4' type='checkbox' name='wpWatchthis'".
768 ($this->watchthis?" checked='checked'":"").
769 " accesskey=\"".htmlspecialchars(wfMsg('accesskey-watch'))."\" id='wpWatchthis' />".
770 "<label for='wpWatchthis' title=\"" .
771 htmlspecialchars(wfMsg('tooltip-watch'))."\">{$watchthis}</label>";
772 }
773
774 $checkboxhtml = $minoredithtml . $watchhtml;
775
776 if ( 'preview' == $this->formtype && $wgUser->getOption( 'previewontop' ) ) {
777 $this->showPreview();
778 }
779 if ( 'diff' == $this->formtype ) {
780 if ( $wgUser->getOption('previewontop' ) ) {
781 $wgOut->addHTML( $this->getDiff() );
782 }
783 }
784
785
786 # if this is a comment, show a subject line at the top, which is also the edit summary.
787 # Otherwise, show a summary field at the bottom
788 $summarytext = htmlspecialchars( $wgContLang->recodeForEdit( $this->summary ) ); # FIXME
789 if( $this->section == 'new' ) {
790 $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 />";
791 $editsummary = '';
792 } else {
793 $commentsubject = '';
794 $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 />";
795 }
796
797 # Set focus to the edit box on load, except on preview or diff, where it would interfere with the display
798 if( !$this->preview && !$this->diff ) {
799 $wgOut->setOnloadHandler( 'document.editform.wpTextbox1.focus()' );
800 }
801 $templates = $this->getTemplatesUsed();
802
803 global $wgLivePreview;
804 if ( $wgLivePreview ) {
805 $liveOnclick = $this->doLivePreviewScript();
806 } else {
807 $liveOnclick = '';
808 }
809
810 global $wgUseMetadataEdit ;
811 if ( $wgUseMetadataEdit ) {
812 $metadata = $this->mMetaData ;
813 $metadata = htmlspecialchars( $wgContLang->recodeForEdit( $metadata ) ) ;
814 $helppage = Title::newFromText( wfMsg( "metadata_page" ) ) ;
815 $top = wfMsg( 'metadata', $helppage->getInternalURL() );
816 $metadata = $top . "<textarea name='metadata' rows='3' cols='{$cols}'{$ew}>{$metadata}</textarea>" ;
817 }
818 else $metadata = "" ;
819
820 $hidden = '';
821 $recreate = '';
822 if ($this->deletedSinceEdit) {
823 if ( 'save' != $this->formtype ) {
824 $wgOut->addWikiText( wfMsg('deletedwhileediting'));
825 } else {
826 // Hide the toolbar and edit area, use can click preview to get it back
827 // Add an confirmation checkbox and explanation.
828 $toolbar = '';
829 $hidden = 'type="hidden" style="display:none;"';
830 $recreate = $wgOut->parse( wfMsg( 'confirmrecreate', $this->lastDelete->user_name , $this->lastDelete->log_comment ));
831 $recreate .=
832 "<br /><input tabindex='1' type='checkbox' value='1' name='wpRecreate' id='wpRecreate' />".
833 "<label for='wpRecreate' title='".wfMsg('tooltip-recreate')."'>". wfMsg('recreate')."</label>";
834 }
835 }
836
837 $safemodehtml = $this->checkUnicodeCompliantBrowser()
838 ? ""
839 : "<input type='hidden' name=\"safemode\" value='1' />\n";
840
841 $wgOut->addHTML( <<<END
842 {$toolbar}
843 <form id="editform" name="editform" method="post" action="$action"
844 enctype="multipart/form-data">
845 END
846 );
847 if( is_callable( $formCallback ) ) {
848 call_user_func_array( $formCallback, array( &$wgOut ) );
849 }
850
851 // Put these up at the top to ensure they aren't lost on early form submission
852 $wgOut->addHTML( "
853 <input type='hidden' value=\"" . htmlspecialchars( $this->section ) . "\" name=\"wpSection\" />
854 <input type='hidden' value=\"{$this->starttime}\" name=\"wpStarttime\" />\n
855 <input type='hidden' value=\"{$this->edittime}\" name=\"wpEdittime\" />\n
856 <input type='hidden' value=\"{$this->scrolltop}\" name=\"wpScrolltop\" id=\"wpScrolltop\" />\n" );
857
858 $wgOut->addHTML( <<<END
859 $recreate
860 {$commentsubject}
861 <textarea tabindex='1' accesskey="," name="wpTextbox1" id="wpTextbox1" rows='{$rows}'
862 cols='{$cols}'{$ew} $hidden>
863 END
864 . htmlspecialchars( $this->safeUnicodeOutput( $this->textbox1 ) ) .
865 "
866 </textarea>
867
868 " );
869
870 $wgOut->addWikiText( $copywarn );
871
872 $wgOut->addHTML( "
873 {$metadata}
874 {$editsummary}
875 {$checkboxhtml}
876 {$safemodehtml}
877 ");
878
879 $wgOut->addHTML( "
880 <div class='editButtons'>
881 <input tabindex='5' id='wpSave' type='submit' value=\"{$save}\" name=\"wpSave\" accesskey=\"".wfMsg('accesskey-save')."\"".
882 " title=\"".wfMsg('tooltip-save')."\"/>
883 <input tabindex='6' id='wpPreview' type='submit' $liveOnclick value=\"{$prev}\" name=\"wpPreview\" accesskey=\"".wfMsg('accesskey-preview')."\"".
884 " title=\"".wfMsg('tooltip-preview')."\"/>
885 <input tabindex='7' id='wpDiff' type='submit' value=\"{$diff}\" name=\"wpDiff\" accesskey=\"".wfMsg('accesskey-diff')."\"".
886 " title=\"".wfMsg('tooltip-diff')."\"/> <span class='editHelp'>{$cancel} | {$edithelp}</span></div>
887 </div>
888 " );
889
890 $wgOut->addWikiText( wfMsgForContent( 'edittools' ) );
891
892 $wgOut->addHTML( "
893 <div class='templatesUsed'>
894 {$templates}
895 </div>
896 " );
897
898 if ( $wgUser->isLoggedIn() ) {
899 /**
900 * To make it harder for someone to slip a user a page
901 * which submits an edit form to the wiki without their
902 * knowledge, a random token is associated with the login
903 * session. If it's not passed back with the submission,
904 * we won't save the page, or render user JavaScript and
905 * CSS previews.
906 */
907 $token = htmlspecialchars( $wgUser->editToken() );
908 $wgOut->addHTML( "\n<input type='hidden' value=\"$token\" name=\"wpEditToken\" />\n" );
909 }
910
911
912 if ( $this->isConflict ) {
913 require_once( "DifferenceEngine.php" );
914 $wgOut->addWikiText( '==' . wfMsg( "yourdiff" ) . '==' );
915
916 $de = new DifferenceEngine( $this->mTitle );
917 $de->setText( $this->textbox2, $this->textbox1 );
918 $de->showDiff( wfMsg( "yourtext" ), wfMsg( "storedversion" ) );
919
920 $wgOut->addWikiText( '==' . wfMsg( "yourtext" ) . '==' );
921 $wgOut->addHTML( "<textarea tabindex=6 id='wpTextbox2' name=\"wpTextbox2\" rows='{$rows}' cols='{$cols}' wrap='virtual'>"
922 . htmlspecialchars( $this->safeUnicodeOutput( $this->textbox2 ) ) . "\n</textarea>" );
923 }
924 $wgOut->addHTML( "</form>\n" );
925 if ( $this->formtype == 'preview' && !$wgUser->getOption( 'previewontop' ) ) {
926 $this->showPreview();
927 }
928 if ( $this->formtype == 'diff' && !$wgUser->getOption( 'previewontop' ) ) {
929 #$wgOut->addHTML( '<div id="wikiPreview">' . $difftext . '</div>' );
930 $wgOut->addHTML( $this->getDiff() );
931 }
932
933 wfProfileOut( $fname );
934 }
935
936 /**
937 * Append preview output to $wgOut.
938 * Includes category rendering if this is a category page.
939 * @access private
940 */
941 function showPreview() {
942 global $wgOut;
943 $wgOut->addHTML( '<div id="wikiPreview">' );
944 if($this->mTitle->getNamespace() == NS_CATEGORY) {
945 $this->mArticle->openShowCategory();
946 }
947 $previewOutput = $this->getPreviewText();
948 $wgOut->addHTML( $previewOutput );
949 if($this->mTitle->getNamespace() == NS_CATEGORY) {
950 $this->mArticle->closeShowCategory();
951 }
952 $wgOut->addHTML( "<br style=\"clear:both;\" />\n" );
953 $wgOut->addHTML( '</div>' );
954 }
955
956 /**
957 * Prepare a list of templates used by this page. Returns HTML.
958 */
959 function getTemplatesUsed() {
960 global $wgUser;
961
962 $fname = 'EditPage::getTemplatesUsed';
963 wfProfileIn( $fname );
964
965 $sk =& $wgUser->getSkin();
966
967 $templates = '';
968 $articleTemplates = $this->mArticle->getUsedTemplates();
969 if ( count( $articleTemplates ) > 0 ) {
970 $templates = '<br />'. wfMsg( 'templatesused' ) . '<ul>';
971 foreach ( $articleTemplates as $tpl ) {
972 if ( $titleObj = Title::makeTitle( NS_TEMPLATE, $tpl ) ) {
973 $templates .= '<li>' . $sk->makeLinkObj( $titleObj ) . '</li>';
974 }
975 }
976 $templates .= '</ul>';
977 }
978 wfProfileOut( $fname );
979 return $templates;
980 }
981
982 /**
983 * Live Preview lets us fetch rendered preview page content and
984 * add it to the page without refreshing the whole page.
985 * If not supported by the browser it will fall through to the normal form
986 * submission method.
987 *
988 * This function outputs a script tag to support live preview, and
989 * returns an onclick handler which should be added to the attributes
990 * of the preview button
991 */
992 function doLivePreviewScript() {
993 global $wgStylePath, $wgJsMimeType, $wgOut;
994 $wgOut->addHTML( '<script type="'.$wgJsMimeType.'" src="' .
995 htmlspecialchars( $wgStylePath . '/common/preview.js' ) .
996 '"></script>' . "\n" );
997 $liveAction = $wgTitle->getLocalUrl( 'action=submit&wpPreview=true&live=true' );
998 return 'onclick="return !livePreview('.
999 'getElementById(\'wikiPreview\'),' .
1000 'editform.wpTextbox1.value,' .
1001 htmlspecialchars( '"' . $liveAction . '"' ) . ')"';
1002 }
1003
1004 function getLastDelete() {
1005 $dbr =& wfGetDB( DB_SLAVE );
1006 $fname = 'EditPage::getLastDelete';
1007 $res = $dbr->select(
1008 array( 'logging', 'user' ),
1009 array( 'log_type',
1010 'log_action',
1011 'log_timestamp',
1012 'log_user',
1013 'log_namespace',
1014 'log_title',
1015 'log_comment',
1016 'log_params',
1017 'user_name', ),
1018 array( 'log_namespace' => $this->mTitle->getNamespace(),
1019 'log_title' => $this->mTitle->getDBkey(),
1020 'log_type' => 'delete',
1021 'log_action' => 'delete',
1022 'user_id=log_user' ),
1023 $fname,
1024 array( 'LIMIT' => 1, 'ORDER BY' => 'log_timestamp DESC' ) );
1025
1026 if($dbr->numRows($res) == 1) {
1027 while ( $x = $dbr->fetchObject ( $res ) )
1028 $data = $x;
1029 $dbr->freeResult ( $res ) ;
1030 } else {
1031 $data = null;
1032 }
1033 return $data;
1034 }
1035
1036 /**
1037 * @todo document
1038 */
1039 function getPreviewText() {
1040 global $wgOut, $wgUser, $wgTitle, $wgParser, $wgAllowDiffPreview, $wgEnableDiffPreviewPreference;
1041
1042 $fname = 'EditPage::getPreviewText';
1043 wfProfileIn( $fname );
1044
1045 if ( $this->mTokenOk ) {
1046 $msg = 'previewnote';
1047 } else {
1048 $msg = 'session_fail_preview';
1049 }
1050 $previewhead = '<h2>' . htmlspecialchars( wfMsg( 'preview' ) ) . "</h2>\n" .
1051 "<div class='previewnote'>" . $wgOut->parse( wfMsg( $msg ) ) . "</div>\n";
1052 if ( $this->isConflict ) {
1053 $previewhead.='<h2>' . htmlspecialchars( wfMsg( 'previewconflict' ) ) . "</h2>\n";
1054 }
1055
1056 $parserOptions = ParserOptions::newFromUser( $wgUser );
1057 $parserOptions->setEditSection( false );
1058
1059 # don't parse user css/js, show message about preview
1060 # XXX: stupid php bug won't let us use $wgTitle->isCssJsSubpage() here
1061
1062 if ( $this->isCssJsSubpage ) {
1063 if(preg_match("/\\.css$/", $wgTitle->getText() ) ) {
1064 $previewtext = wfMsg('usercsspreview');
1065 } else if(preg_match("/\\.js$/", $wgTitle->getText() ) ) {
1066 $previewtext = wfMsg('userjspreview');
1067 }
1068 $parserOutput = $wgParser->parse( $previewtext , $wgTitle, $parserOptions );
1069 $wgOut->addHTML( $parserOutput->mText );
1070 wfProfileOut( $fname );
1071 return $previewhead;
1072 } else {
1073 # if user want to see preview when he edit an article
1074 if( $wgUser->getOption('previewonfirst') and ($this->textbox1 == '')) {
1075 $this->textbox1 = $this->mArticle->getContent(true);
1076 }
1077
1078 $toparse = $this->textbox1;
1079
1080 # If we're adding a comment, we need to show the
1081 # summary as the headline
1082 if($this->section=="new" && $this->summary!="") {
1083 $toparse="== {$this->summary} ==\n\n".$toparse;
1084 }
1085
1086 if ( $this->mMetaData != "" ) $toparse .= "\n" . $this->mMetaData ;
1087
1088 $parserOutput = $wgParser->parse( $this->mArticle->preSaveTransform( $toparse ) ."\n\n",
1089 $wgTitle, $parserOptions );
1090
1091 $previewHTML = $parserOutput->mText;
1092
1093 $wgOut->addCategoryLinks($parserOutput->getCategoryLinks());
1094 $wgOut->addLanguageLinks($parserOutput->getLanguageLinks());
1095
1096 wfProfileOut( $fname );
1097 return $previewhead . $previewHTML;
1098 }
1099 }
1100
1101 /**
1102 * @todo document
1103 */
1104 function blockedIPpage() {
1105 global $wgOut, $wgUser, $wgContLang;
1106
1107 $wgOut->setPageTitle( wfMsg( 'blockedtitle' ) );
1108 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1109 $wgOut->setArticleRelated( false );
1110
1111 $id = $wgUser->blockedBy();
1112 $reason = $wgUser->blockedFor();
1113 $ip = wfGetIP();
1114
1115 if ( is_numeric( $id ) ) {
1116 $name = User::whoIs( $id );
1117 } else {
1118 $name = $id;
1119 }
1120 $link = '[[' . $wgContLang->getNsText( NS_USER ) .
1121 ":{$name}|{$name}]]";
1122
1123 $wgOut->addWikiText( wfMsg( 'blockedtext', $link, $reason, $ip, $name ) );
1124 $wgOut->returnToMain( false );
1125 }
1126
1127 /**
1128 * @todo document
1129 */
1130 function userNotLoggedInPage() {
1131 global $wgOut;
1132
1133 $wgOut->setPageTitle( wfMsg( 'whitelistedittitle' ) );
1134 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1135 $wgOut->setArticleRelated( false );
1136
1137 $wgOut->addWikiText( wfMsg( 'whitelistedittext' ) );
1138 $wgOut->returnToMain( false );
1139 }
1140
1141 /**
1142 * @todo document
1143 */
1144 function spamPage ( $match = false )
1145 {
1146 global $wgOut;
1147 $wgOut->setPageTitle( wfMsg( 'spamprotectiontitle' ) );
1148 $wgOut->setRobotpolicy( 'noindex,nofollow' );
1149 $wgOut->setArticleRelated( false );
1150
1151 $wgOut->addWikiText( wfMsg( 'spamprotectiontext' ) );
1152 if ( $match ) {
1153 $wgOut->addWikiText( wfMsg( 'spamprotectionmatch', "<nowiki>{$match}</nowiki>" ) );
1154 }
1155 $wgOut->returnToMain( false );
1156 }
1157
1158 /**
1159 * @access private
1160 * @todo document
1161 */
1162 function mergeChangesInto( &$editText ){
1163 $fname = 'EditPage::mergeChangesInto';
1164 wfProfileIn( $fname );
1165
1166 $db =& wfGetDB( DB_MASTER );
1167
1168 // This is the revision the editor started from
1169 $baseRevision = Revision::loadFromTimestamp(
1170 $db, $this->mArticle->mTitle, $this->edittime );
1171 if( is_null( $baseRevision ) ) {
1172 wfProfileOut( $fname );
1173 return false;
1174 }
1175 $baseText = $baseRevision->getText();
1176
1177 // The current state, we want to merge updates into it
1178 $currentRevision = Revision::loadFromTitle(
1179 $db, $this->mArticle->mTitle );
1180 if( is_null( $currentRevision ) ) {
1181 wfProfileOut( $fname );
1182 return false;
1183 }
1184 $currentText = $currentRevision->getText();
1185
1186 if( wfMerge( $baseText, $editText, $currentText, $result ) ){
1187 $editText = $result;
1188 wfProfileOut( $fname );
1189 return true;
1190 } else {
1191 wfProfileOut( $fname );
1192 return false;
1193 }
1194 }
1195
1196 /**
1197 * Check if the browser is on a blacklist of user-agents known to
1198 * mangle UTF-8 data on form submission. Returns true if Unicode
1199 * should make it through, false if it's known to be a problem.
1200 * @return bool
1201 * @access private
1202 */
1203 function checkUnicodeCompliantBrowser() {
1204 global $wgBrowserBlackList;
1205 if( empty( $_SERVER["HTTP_USER_AGENT"] ) ) {
1206 // No User-Agent header sent? Trust it by default...
1207 return true;
1208 }
1209 $currentbrowser = $_SERVER["HTTP_USER_AGENT"];
1210 foreach ( $wgBrowserBlackList as $browser ) {
1211 if ( preg_match($browser, $currentbrowser) ) {
1212 return false;
1213 }
1214 }
1215 return true;
1216 }
1217
1218 /**
1219 * Format an anchor fragment as it would appear for a given section name
1220 * @param string $text
1221 * @return string
1222 * @access private
1223 */
1224 function sectionAnchor( $text ) {
1225 $headline = Sanitizer::decodeCharReferences( $text );
1226 # strip out HTML
1227 $headline = preg_replace( '/<.*?' . '>/', '', $headline );
1228 $headline = trim( $headline );
1229 $sectionanchor = '#' . urlencode( str_replace( ' ', '_', $headline ) );
1230 $replacearray = array(
1231 '%3A' => ':',
1232 '%' => '.'
1233 );
1234 return str_replace(
1235 array_keys( $replacearray ),
1236 array_values( $replacearray ),
1237 $sectionanchor );
1238 }
1239
1240 /**
1241 * Shows a bulletin board style toolbar for common editing functions.
1242 * It can be disabled in the user preferences.
1243 * The necessary JavaScript code can be found in style/wikibits.js.
1244 */
1245 function getEditToolbar() {
1246 global $wgStylePath, $wgLang, $wgMimeType, $wgJsMimeType;
1247
1248 /**
1249 * toolarray an array of arrays which each include the filename of
1250 * the button image (without path), the opening tag, the closing tag,
1251 * and optionally a sample text that is inserted between the two when no
1252 * selection is highlighted.
1253 * The tip text is shown when the user moves the mouse over the button.
1254 *
1255 * Already here are accesskeys (key), which are not used yet until someone
1256 * can figure out a way to make them work in IE. However, we should make
1257 * sure these keys are not defined on the edit page.
1258 */
1259 $toolarray=array(
1260 array( 'image'=>'button_bold.png',
1261 'open' => "\'\'\'",
1262 'close' => "\'\'\'",
1263 'sample'=> wfMsg('bold_sample'),
1264 'tip' => wfMsg('bold_tip'),
1265 'key' => 'B'
1266 ),
1267 array( 'image'=>'button_italic.png',
1268 'open' => "\'\'",
1269 'close' => "\'\'",
1270 'sample'=> wfMsg('italic_sample'),
1271 'tip' => wfMsg('italic_tip'),
1272 'key' => 'I'
1273 ),
1274 array( 'image'=>'button_link.png',
1275 'open' => '[[',
1276 'close' => ']]',
1277 'sample'=> wfMsg('link_sample'),
1278 'tip' => wfMsg('link_tip'),
1279 'key' => 'L'
1280 ),
1281 array( 'image'=>'button_extlink.png',
1282 'open' => '[',
1283 'close' => ']',
1284 'sample'=> wfMsg('extlink_sample'),
1285 'tip' => wfMsg('extlink_tip'),
1286 'key' => 'X'
1287 ),
1288 array( 'image'=>'button_headline.png',
1289 'open' => "\\n== ",
1290 'close' => " ==\\n",
1291 'sample'=> wfMsg('headline_sample'),
1292 'tip' => wfMsg('headline_tip'),
1293 'key' => 'H'
1294 ),
1295 array( 'image'=>'button_image.png',
1296 'open' => '[['.$wgLang->getNsText(NS_IMAGE).":",
1297 'close' => ']]',
1298 'sample'=> wfMsg('image_sample'),
1299 'tip' => wfMsg('image_tip'),
1300 'key' => 'D'
1301 ),
1302 array( 'image' =>'button_media.png',
1303 'open' => '[['.$wgLang->getNsText(NS_MEDIA).':',
1304 'close' => ']]',
1305 'sample'=> wfMsg('media_sample'),
1306 'tip' => wfMsg('media_tip'),
1307 'key' => 'M'
1308 ),
1309 array( 'image' =>'button_math.png',
1310 'open' => "\\<math\\>",
1311 'close' => "\\</math\\>",
1312 'sample'=> wfMsg('math_sample'),
1313 'tip' => wfMsg('math_tip'),
1314 'key' => 'C'
1315 ),
1316 array( 'image' =>'button_nowiki.png',
1317 'open' => "\\<nowiki\\>",
1318 'close' => "\\</nowiki\\>",
1319 'sample'=> wfMsg('nowiki_sample'),
1320 'tip' => wfMsg('nowiki_tip'),
1321 'key' => 'N'
1322 ),
1323 array( 'image' =>'button_sig.png',
1324 'open' => '--~~~~',
1325 'close' => '',
1326 'sample'=> '',
1327 'tip' => wfMsg('sig_tip'),
1328 'key' => 'Y'
1329 ),
1330 array( 'image' =>'button_hr.png',
1331 'open' => "\\n----\\n",
1332 'close' => '',
1333 'sample'=> '',
1334 'tip' => wfMsg('hr_tip'),
1335 'key' => 'R'
1336 )
1337 );
1338 $toolbar ="<script type='$wgJsMimeType'>\n/*<![CDATA[*/\n";
1339
1340 $toolbar.="document.writeln(\"<div id='toolbar'>\");\n";
1341 foreach($toolarray as $tool) {
1342
1343 $image=$wgStylePath.'/common/images/'.$tool['image'];
1344 $open=$tool['open'];
1345 $close=$tool['close'];
1346 $sample = wfEscapeJsString( $tool['sample'] );
1347
1348 // Note that we use the tip both for the ALT tag and the TITLE tag of the image.
1349 // Older browsers show a "speedtip" type message only for ALT.
1350 // Ideally these should be different, realistically they
1351 // probably don't need to be.
1352 $tip = wfEscapeJsString( $tool['tip'] );
1353
1354 #$key = $tool["key"];
1355
1356 $toolbar.="addButton('$image','$tip','$open','$close','$sample');\n";
1357 }
1358
1359 $toolbar.="document.writeln(\"</div>\");\n";
1360 $toolbar.="/*]]>*/\n</script>";
1361 return $toolbar;
1362 }
1363
1364 /**
1365 * Output preview text only. This can be sucked into the edit page
1366 * via JavaScript, and saves the server time rendering the skin as
1367 * well as theoretically being more robust on the client (doesn't
1368 * disturb the edit box's undo history, won't eat your text on
1369 * failure, etc).
1370 *
1371 * @todo This doesn't include category or interlanguage links.
1372 * Would need to enhance it a bit, maybe wrap them in XML
1373 * or something... that might also require more skin
1374 * initialization, so check whether that's a problem.
1375 */
1376 function livePreview() {
1377 global $wgOut;
1378 $wgOut->disable();
1379 header( 'Content-type: text/xml' );
1380 header( 'Cache-control: no-cache' );
1381 # FIXME
1382 echo $this->getPreviewText( false, false );
1383 }
1384
1385
1386 /**
1387 * Get a diff between the current contents of the edit box and the
1388 * version of the page we're editing from.
1389 *
1390 * If this is a section edit, we'll replace the section as for final
1391 * save and then make a comparison.
1392 *
1393 * @return string HTML
1394 */
1395 function getDiff() {
1396 global $wgUser;
1397
1398 require_once( 'DifferenceEngine.php' );
1399 $oldtext = $this->mArticle->fetchContent();
1400 $newtext = $this->mArticle->replaceSection(
1401 $this->section, $this->textbox1, $this->summary, $this->edittime );
1402 $oldtitle = wfMsg( 'currentrev' );
1403 $newtitle = wfMsg( 'yourtext' );
1404 if ( $oldtext !== false || $newtext != '' ) {
1405 $de = new DifferenceEngine( $this->mTitle );
1406 $de->setText( $oldtext, $newtext );
1407 $difftext = $de->getDiff( $oldtitle, $newtitle );
1408 } else {
1409 $difftext = '';
1410 }
1411
1412 return '<div id="wikiDiff">' . $difftext . '</div>';
1413 }
1414
1415 /**
1416 * Filter an input field through a Unicode de-armoring process if it
1417 * came from an old browser with known broken Unicode editing issues.
1418 *
1419 * @param WebRequest $request
1420 * @param string $field
1421 * @return string
1422 * @access private
1423 */
1424 function safeUnicodeInput( $request, $field ) {
1425 $text = rtrim( $request->getText( $field ) );
1426 return $request->getBool( 'safemode' )
1427 ? $this->unmakesafe( $text )
1428 : $text;
1429 }
1430
1431 /**
1432 * Filter an output field through a Unicode armoring process if it is
1433 * going to an old browser with known broken Unicode editing issues.
1434 *
1435 * @param string $text
1436 * @return string
1437 * @access private
1438 */
1439 function safeUnicodeOutput( $text ) {
1440 global $wgContLang;
1441 $codedText = $wgContLang->recodeForEdit( $text );
1442 return $this->checkUnicodeCompliantBrowser()
1443 ? $codedText
1444 : $this->makesafe( $codedText );
1445 }
1446
1447 /**
1448 * A number of web browsers are known to corrupt non-ASCII characters
1449 * in a UTF-8 text editing environment. To protect against this,
1450 * detected browsers will be served an armored version of the text,
1451 * with non-ASCII chars converted to numeric HTML character references.
1452 *
1453 * Preexisting such character references will have a 0 added to them
1454 * to ensure that round-trips do not alter the original data.
1455 *
1456 * @param string $invalue
1457 * @return string
1458 * @access private
1459 */
1460 function makesafe( $invalue ) {
1461 // Armor existing references for reversability.
1462 $invalue = strtr( $invalue, array( "&#x" => "&#x0" ) );
1463
1464 $bytesleft = 0;
1465 $result = "";
1466 $working = 0;
1467 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
1468 $bytevalue = ord( $invalue{$i} );
1469 if( $bytevalue <= 0x7F ) { //0xxx xxxx
1470 $result .= chr( $bytevalue );
1471 $bytesleft = 0;
1472 } elseif( $bytevalue <= 0xBF ) { //10xx xxxx
1473 $working = $working << 6;
1474 $working += ($bytevalue & 0x3F);
1475 $bytesleft--;
1476 if( $bytesleft <= 0 ) {
1477 $result .= "&#x" . strtoupper( dechex( $working ) ) . ";";
1478 }
1479 } elseif( $bytevalue <= 0xDF ) { //110x xxxx
1480 $working = $bytevalue & 0x1F;
1481 $bytesleft = 1;
1482 } elseif( $bytevalue <= 0xEF ) { //1110 xxxx
1483 $working = $bytevalue & 0x0F;
1484 $bytesleft = 2;
1485 } else { //1111 0xxx
1486 $working = $bytevalue & 0x07;
1487 $bytesleft = 3;
1488 }
1489 }
1490 return $result;
1491 }
1492
1493 /**
1494 * Reverse the previously applied transliteration of non-ASCII characters
1495 * back to UTF-8. Used to protect data from corruption by broken web browsers
1496 * as listed in $wgBrowserBlackList.
1497 *
1498 * @param string $invalue
1499 * @return string
1500 * @access private
1501 */
1502 function unmakesafe( $invalue ) {
1503 $result = "";
1504 for( $i = 0; $i < strlen( $invalue ); $i++ ) {
1505 if( ( substr( $invalue, $i, 3 ) == "&#x" ) && ( $invalue{$i+3} != '0' ) ) {
1506 $i += 3;
1507 $hexstring = "";
1508 do {
1509 $hexstring .= $invalue{$i};
1510 $i++;
1511 } while( ctype_xdigit( $invalue{$i} ) && ( $i < strlen( $invalue ) ) );
1512
1513 // Do some sanity checks. These aren't needed for reversability,
1514 // but should help keep the breakage down if the editor
1515 // breaks one of the entities whilst editing.
1516 if ((substr($invalue,$i,1)==";") and (strlen($hexstring) <= 6)) {
1517 $codepoint = hexdec($hexstring);
1518 $result .= codepointToUtf8( $codepoint );
1519 } else {
1520 $result .= "&#x" . $hexstring . substr( $invalue, $i, 1 );
1521 }
1522 } else {
1523 $result .= substr( $invalue, $i, 1 );
1524 }
1525 }
1526 // reverse the transform that we made for reversability reasons.
1527 return strtr( $result, array( "&#x0" => "&#x" ) );
1528 }
1529
1530
1531 }
1532
1533 ?>