Index: branches/liquidthreads/math/texutil.ml |
— | — | @@ -466,6 +466,8 @@ |
467 | 467 | | "\\left" -> LEFT |
468 | 468 | | "\\right" -> RIGHT |
469 | 469 | | "\\hat" -> FUN_AR1 "\\hat " |
| 470 | + | "\\hline" -> LITERAL (TEX_ONLY "\\hline ") |
| 471 | + | "\\vline" -> LITERAL (TEX_ONLY "\\vline ") |
470 | 472 | | "\\widehat" -> LITERAL (TEX_ONLY "\\widehat ") |
471 | 473 | | "\\overline" -> LITERAL (TEX_ONLY "\\overline ") |
472 | 474 | | "\\overbrace" -> LITERAL (TEX_ONLY "\\overbrace ") |
— | — | @@ -702,7 +704,13 @@ |
703 | 705 | | "\\nLeftrightarrow" -> (tex_use_ams (); LITERAL (TEX_ONLY "\\nLeftrightarrow ")) |
704 | 706 | | "\\mathit" -> (tex_use_ams (); FUN_AR1hf ("\\mathit ", FONTFORCE_IT)) |
705 | 707 | | "\\mathrm" -> (tex_use_ams (); FUN_AR1hf ("\\mathrm ", FONTFORCE_RM)) |
| 708 | + | "\\mathord" -> (tex_use_ams (); FUN_AR1 "\\mathord ") |
706 | 709 | | "\\mathop" -> (tex_use_ams (); FUN_AR1 "\\mathop ") |
| 710 | + | "\\mathbin" -> (tex_use_ams (); FUN_AR1 "\\mathbin ") |
| 711 | + | "\\mathrel" -> (tex_use_ams (); FUN_AR1 "\\mathrel ") |
| 712 | + | "\\mathopen" -> (tex_use_ams (); FUN_AR1 "\\mathopen ") |
| 713 | + | "\\mathclose" -> (tex_use_ams (); FUN_AR1 "\\mathclose ") |
| 714 | + | "\\mathpunct" -> (tex_use_ams (); FUN_AR1 "\\mathpunct ") |
707 | 715 | | "\\boldsymbol" -> (tex_use_ams (); FUN_AR1 "\\boldsymbol ") |
708 | 716 | | "\\bold" -> (tex_use_ams (); FUN_AR1 "\\mathbf ") |
709 | 717 | | "\\Bbb" -> (tex_use_ams (); FUN_AR1 "\\mathbb ") |
Index: branches/liquidthreads/includes/QueryPage.php |
— | — | @@ -332,6 +332,8 @@ |
333 | 333 | $num = $dbr->numRows($res); |
334 | 334 | |
335 | 335 | $this->preprocessResults( $dbr, $res ); |
| 336 | + |
| 337 | + $wgOut->addHtml( XML::openElement( 'div', array('class' => 'mw-spcontent') ) ); |
336 | 338 | |
337 | 339 | # Top header and navigation |
338 | 340 | if( $shownavigation ) { |
— | — | @@ -346,6 +348,7 @@ |
347 | 349 | # No results to show, so don't bother with "showing X of Y" etc. |
348 | 350 | # -- just let the user know and give up now |
349 | 351 | $wgOut->addHtml( '<p>' . wfMsgHtml( 'specialpage-empty' ) . '</p>' ); |
| 352 | + $wgOut->addHtml( XML::closeElement( 'div' ) ); |
350 | 353 | return; |
351 | 354 | } |
352 | 355 | } |
— | — | @@ -364,6 +367,8 @@ |
365 | 368 | if( $shownavigation ) { |
366 | 369 | $wgOut->addHtml( '<p>' . $paging . '</p>' ); |
367 | 370 | } |
| 371 | + |
| 372 | + $wgOut->addHtml( XML::closeElement( 'div' ) ); |
368 | 373 | |
369 | 374 | return $num; |
370 | 375 | } |
— | — | @@ -427,11 +432,11 @@ |
428 | 433 | } |
429 | 434 | |
430 | 435 | function openList( $offset ) { |
431 | | - return "<ol start='" . ( $offset + 1 ) . "' class='special'>"; |
| 436 | + return "\n<ol start='" . ( $offset + 1 ) . "' class='special'>\n"; |
432 | 437 | } |
433 | 438 | |
434 | 439 | function closeList() { |
435 | | - return '</ol>'; |
| 440 | + return "</ol>\n"; |
436 | 441 | } |
437 | 442 | |
438 | 443 | /** |
Index: branches/liquidthreads/languages/Names.php |
— | — | @@ -91,6 +91,7 @@ |
92 | 92 | 'gu' => 'ગુજરાતી', # Gujarati |
93 | 93 | 'gv' => 'Gaelg', # Manx |
94 | 94 | 'ha' => 'هَوُسَ', # Hausa |
| 95 | + 'hak' => 'Hak-kâ-fâ', # Hakka |
95 | 96 | 'haw' => 'Hawai`i', # Hawaiian |
96 | 97 | 'he' => 'עברית', # Hebrew |
97 | 98 | 'hi' => 'हिन्दी', # Hindi |
Index: branches/liquidthreads/RELEASE-NOTES |
— | — | @@ -87,6 +87,8 @@ |
88 | 88 | entries. |
89 | 89 | * (bug 7432) Change language name for Aromanian (roa-rup) |
90 | 90 | * (bug 908) Unexistent special pages now generate a red link. |
| 91 | +* (bug 7899) Added \hline and \vline to the list of allowed TeX commands |
| 92 | +* (bug 7993) support mathematical symbol classes |
91 | 93 | |
92 | 94 | == MediaWiki API changes since 1.10 == |
93 | 95 | |
Property changes on: branches/liquidthreads |
___________________________________________________________________ |
Modified: svnmerge-integrated |
94 | 96 | - /trunk/phase3:1-22457 |
95 | 97 | + /trunk/phase3:1-22483 |