2010-12-14 16:26:35 +00:00
|
|
|
<?php
|
|
|
|
|
|
2010-12-28 18:17:16 +00:00
|
|
|
class XmlTest extends MediaWikiTestCase {
|
2011-05-01 19:32:49 +00:00
|
|
|
|
2012-10-08 10:56:20 +00:00
|
|
|
protected function setUp() {
|
2012-10-08 10:59:55 +00:00
|
|
|
parent::setUp();
|
2011-12-01 00:40:56 +00:00
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
$langObj = Language::factory( 'en' );
|
|
|
|
|
$langObj->setNamespaces( array(
|
2012-01-21 22:26:14 +00:00
|
|
|
-2 => 'Media',
|
|
|
|
|
-1 => 'Special',
|
2013-02-14 11:56:23 +00:00
|
|
|
0 => '',
|
|
|
|
|
1 => 'Talk',
|
|
|
|
|
2 => 'User',
|
|
|
|
|
3 => 'User_talk',
|
|
|
|
|
4 => 'MyWiki',
|
|
|
|
|
5 => 'MyWiki_Talk',
|
|
|
|
|
6 => 'File',
|
|
|
|
|
7 => 'File_talk',
|
|
|
|
|
8 => 'MediaWiki',
|
|
|
|
|
9 => 'MediaWiki_talk',
|
|
|
|
|
10 => 'Template',
|
|
|
|
|
11 => 'Template_talk',
|
|
|
|
|
100 => 'Custom',
|
|
|
|
|
101 => 'Custom_talk',
|
2012-01-27 13:00:26 +00:00
|
|
|
) );
|
2011-12-01 00:40:56 +00:00
|
|
|
|
2012-10-08 10:59:55 +00:00
|
|
|
$this->setMwGlobals( array(
|
|
|
|
|
'wgLang' => $langObj,
|
2012-12-09 10:47:03 +00:00
|
|
|
'wgWellFormedXml' => true,
|
2012-10-08 10:59:55 +00:00
|
|
|
) );
|
2011-05-01 19:32:49 +00:00
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::expandAttributes
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
public function testExpandAttributes() {
|
2013-02-14 11:56:23 +00:00
|
|
|
$this->assertNull( Xml::expandAttributes( null ),
|
2010-12-14 16:26:35 +00:00
|
|
|
'Converting a null list of attributes'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals( '', Xml::expandAttributes( array() ),
|
|
|
|
|
'Converting an empty list of attributes'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::expandAttributes
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
public function testExpandAttributesException() {
|
2013-02-14 11:56:23 +00:00
|
|
|
$this->setExpectedException( 'MWException' );
|
|
|
|
|
Xml::expandAttributes( 'string' );
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::element
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testElementOpen() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element>',
|
|
|
|
|
Xml::element( 'element', null, null ),
|
|
|
|
|
'Opening element with no attributes'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::element
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testElementEmpty() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element />',
|
|
|
|
|
Xml::element( 'element', null, '' ),
|
|
|
|
|
'Terminated empty element'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::input
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testElementInputCanHaveAValueOfZero() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<input name="name" value="0" />',
|
|
|
|
|
Xml::input( 'name', false, 0 ),
|
|
|
|
|
'Input with a value of 0 (bug 23797)'
|
|
|
|
|
);
|
|
|
|
|
}
|
2013-02-14 11:56:23 +00:00
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::element
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testElementEscaping() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element>hello <there> you & you</element>',
|
|
|
|
|
Xml::element( 'element', null, 'hello <there> you & you' ),
|
|
|
|
|
'Element with no attributes and content that needs escaping'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::escapeTagsOnly
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
public function testEscapeTagsOnly() {
|
|
|
|
|
$this->assertEquals( '"><', Xml::escapeTagsOnly( '"><' ),
|
|
|
|
|
'replace " > and < with their HTML entitites'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::element
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testElementAttributes() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element key="value" <>="<>">',
|
|
|
|
|
Xml::element( 'element', array( 'key' => 'value', '<>' => '<>' ), null ),
|
|
|
|
|
'Element attributes, keys are not escaped'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::openElement
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testOpenElement() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<element k="v">',
|
|
|
|
|
Xml::openElement( 'element', array( 'k' => 'v' ) ),
|
|
|
|
|
'openElement() shortcut'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::closeElement
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testCloseElement() {
|
|
|
|
|
$this->assertEquals( '</element>', Xml::closeElement( 'element' ), 'closeElement() shortcut' );
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::dateMenu
|
|
|
|
|
*/
|
2013-02-14 11:56:23 +00:00
|
|
|
public function testDateMenu() {
|
|
|
|
|
$curYear = intval( gmdate( 'Y' ) );
|
|
|
|
|
$prevYear = $curYear - 1;
|
2011-02-06 22:10:48 +00:00
|
|
|
|
2013-02-14 11:56:23 +00:00
|
|
|
$curMonth = intval( gmdate( 'n' ) );
|
2011-02-06 22:10:48 +00:00
|
|
|
$prevMonth = $curMonth - 1;
|
2013-02-14 11:56:23 +00:00
|
|
|
if ( $prevMonth == 0 ) {
|
|
|
|
|
$prevMonth = 12;
|
|
|
|
|
}
|
2011-02-06 22:10:48 +00:00
|
|
|
$nextMonth = $curMonth + 1;
|
2013-02-14 11:56:23 +00:00
|
|
|
if ( $nextMonth == 13 ) {
|
|
|
|
|
$nextMonth = 1;
|
|
|
|
|
}
|
2011-02-06 22:10:48 +00:00
|
|
|
|
2011-02-06 21:23:12 +00:00
|
|
|
$this->assertEquals(
|
2012-09-22 02:10:56 +00:00
|
|
|
'<label for="year">From year (and earlier):</label> <input id="year" maxlength="4" size="7" type="number" value="2011" name="year" /> <label for="month">From month (and earlier):</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">all</option>' . "\n" .
|
2013-02-14 11:56:23 +00:00
|
|
|
'<option value="1">January</option>' . "\n" .
|
|
|
|
|
'<option value="2" selected="">February</option>' . "\n" .
|
|
|
|
|
'<option value="3">March</option>' . "\n" .
|
|
|
|
|
'<option value="4">April</option>' . "\n" .
|
|
|
|
|
'<option value="5">May</option>' . "\n" .
|
|
|
|
|
'<option value="6">June</option>' . "\n" .
|
|
|
|
|
'<option value="7">July</option>' . "\n" .
|
|
|
|
|
'<option value="8">August</option>' . "\n" .
|
|
|
|
|
'<option value="9">September</option>' . "\n" .
|
|
|
|
|
'<option value="10">October</option>' . "\n" .
|
|
|
|
|
'<option value="11">November</option>' . "\n" .
|
|
|
|
|
'<option value="12">December</option></select>',
|
2011-02-06 21:23:12 +00:00
|
|
|
Xml::dateMenu( 2011, 02 ),
|
|
|
|
|
"Date menu for february 2011"
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
2012-09-22 02:10:56 +00:00
|
|
|
'<label for="year">From year (and earlier):</label> <input id="year" maxlength="4" size="7" type="number" value="2011" name="year" /> <label for="month">From month (and earlier):</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">all</option>' . "\n" .
|
2013-02-14 11:56:23 +00:00
|
|
|
'<option value="1">January</option>' . "\n" .
|
|
|
|
|
'<option value="2">February</option>' . "\n" .
|
|
|
|
|
'<option value="3">March</option>' . "\n" .
|
|
|
|
|
'<option value="4">April</option>' . "\n" .
|
|
|
|
|
'<option value="5">May</option>' . "\n" .
|
|
|
|
|
'<option value="6">June</option>' . "\n" .
|
|
|
|
|
'<option value="7">July</option>' . "\n" .
|
|
|
|
|
'<option value="8">August</option>' . "\n" .
|
|
|
|
|
'<option value="9">September</option>' . "\n" .
|
|
|
|
|
'<option value="10">October</option>' . "\n" .
|
|
|
|
|
'<option value="11">November</option>' . "\n" .
|
|
|
|
|
'<option value="12">December</option></select>',
|
|
|
|
|
Xml::dateMenu( 2011, -1 ),
|
2011-02-06 21:23:12 +00:00
|
|
|
"Date menu with negative month for 'All'"
|
|
|
|
|
);
|
2011-02-06 22:10:48 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
Xml::dateMenu( $curYear, $curMonth ),
|
2013-02-14 11:56:23 +00:00
|
|
|
Xml::dateMenu( '', $curMonth ),
|
2011-02-06 22:10:48 +00:00
|
|
|
"Date menu year is the current one when not specified"
|
|
|
|
|
);
|
2011-12-01 00:40:56 +00:00
|
|
|
|
2012-09-23 08:15:20 +00:00
|
|
|
$wantedYear = $nextMonth == 1 ? $curYear : $prevYear;
|
2011-12-01 14:40:11 +00:00
|
|
|
$this->assertEquals(
|
2012-09-23 08:15:20 +00:00
|
|
|
Xml::dateMenu( $wantedYear, $nextMonth ),
|
2011-02-06 22:10:48 +00:00
|
|
|
Xml::dateMenu( '', $nextMonth ),
|
|
|
|
|
"Date menu next month is 11 months ago"
|
2011-12-01 14:40:11 +00:00
|
|
|
);
|
2011-02-06 22:10:48 +00:00
|
|
|
|
|
|
|
|
$this->assertEquals(
|
2012-09-22 02:10:56 +00:00
|
|
|
'<label for="year">From year (and earlier):</label> <input id="year" maxlength="4" size="7" type="number" name="year" /> <label for="month">From month (and earlier):</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">all</option>' . "\n" .
|
2013-02-14 11:56:23 +00:00
|
|
|
'<option value="1">January</option>' . "\n" .
|
|
|
|
|
'<option value="2">February</option>' . "\n" .
|
|
|
|
|
'<option value="3">March</option>' . "\n" .
|
|
|
|
|
'<option value="4">April</option>' . "\n" .
|
|
|
|
|
'<option value="5">May</option>' . "\n" .
|
|
|
|
|
'<option value="6">June</option>' . "\n" .
|
|
|
|
|
'<option value="7">July</option>' . "\n" .
|
|
|
|
|
'<option value="8">August</option>' . "\n" .
|
|
|
|
|
'<option value="9">September</option>' . "\n" .
|
|
|
|
|
'<option value="10">October</option>' . "\n" .
|
|
|
|
|
'<option value="11">November</option>' . "\n" .
|
|
|
|
|
'<option value="12">December</option></select>',
|
2011-12-01 00:40:56 +00:00
|
|
|
Xml::dateMenu( '', '' ),
|
2011-02-06 22:10:48 +00:00
|
|
|
"Date menu with neither year or month"
|
|
|
|
|
);
|
2011-02-06 21:23:12 +00:00
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::textarea
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testTextareaNoContent() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<textarea name="name" id="name" cols="40" rows="5"></textarea>',
|
|
|
|
|
Xml::textarea( 'name', '' ),
|
|
|
|
|
'textarea() with not content'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::textarea
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testTextareaAttribs() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<textarea name="name" id="name" cols="20" rows="10"><txt></textarea>',
|
|
|
|
|
Xml::textarea( 'name', '<txt>', 20, 10 ),
|
|
|
|
|
'textarea() with custom attribs'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::label
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testLabelCreation() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for="id">name</label>',
|
|
|
|
|
Xml::label( 'name', 'id' ),
|
|
|
|
|
'label() with no attribs'
|
|
|
|
|
);
|
|
|
|
|
}
|
2013-02-14 11:56:23 +00:00
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::label
|
|
|
|
|
*/
|
2011-06-23 20:05:32 +00:00
|
|
|
function testLabelAttributeCanOnlyBeClassOrTitle() {
|
2010-12-14 16:26:35 +00:00
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for="id">name</label>',
|
|
|
|
|
Xml::label( 'name', 'id', array( 'generated' => true ) ),
|
|
|
|
|
'label() can not be given a generated attribute'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for="id" class="nice">name</label>',
|
|
|
|
|
Xml::label( 'name', 'id', array( 'class' => 'nice' ) ),
|
|
|
|
|
'label() can get a class attribute'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
2011-06-23 20:05:32 +00:00
|
|
|
'<label for="id" title="nice tooltip">name</label>',
|
|
|
|
|
Xml::label( 'name', 'id', array( 'title' => 'nice tooltip' ) ),
|
|
|
|
|
'label() can get a title attribute'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for="id" class="nice" title="nice tooltip">name</label>',
|
2010-12-14 16:26:35 +00:00
|
|
|
Xml::label( 'name', 'id', array(
|
2013-02-14 11:56:23 +00:00
|
|
|
'generated' => true,
|
|
|
|
|
'class' => 'nice',
|
|
|
|
|
'title' => 'nice tooltip',
|
|
|
|
|
'anotherattr' => 'value',
|
2010-12-14 16:26:35 +00:00
|
|
|
)
|
|
|
|
|
),
|
2011-06-23 20:05:32 +00:00
|
|
|
'label() skip all attributes but "class" and "title"'
|
2010-12-14 16:26:35 +00:00
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::languageSelector
|
|
|
|
|
*/
|
2012-05-10 19:46:14 +00:00
|
|
|
function testLanguageSelector() {
|
|
|
|
|
$select = Xml::languageSelector( 'en', true, null,
|
|
|
|
|
array( 'id' => 'testlang' ), wfMessage( 'yourlanguage' ) );
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'<label for="testlang">Language:</label>',
|
|
|
|
|
$select[0]
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::escapeJsString
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testEscapeJsStringSpecialChars() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'\\\\\r\n',
|
|
|
|
|
Xml::escapeJsString( "\\\r\n" ),
|
|
|
|
|
'escapeJsString() with special characters'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::encodeJsVar
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testEncodeJsVarBoolean() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'true',
|
|
|
|
|
Xml::encodeJsVar( true ),
|
|
|
|
|
'encodeJsVar() with boolean'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::encodeJsVar
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testEncodeJsVarNull() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'null',
|
|
|
|
|
Xml::encodeJsVar( null ),
|
|
|
|
|
'encodeJsVar() with null'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::encodeJsVar
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testEncodeJsVarArray() {
|
|
|
|
|
$this->assertEquals(
|
2012-01-30 19:40:20 +00:00
|
|
|
'["a",1]',
|
2010-12-14 16:26:35 +00:00
|
|
|
Xml::encodeJsVar( array( 'a', 1 ) ),
|
|
|
|
|
'encodeJsVar() with array'
|
|
|
|
|
);
|
|
|
|
|
$this->assertEquals(
|
2012-01-30 19:40:20 +00:00
|
|
|
'{"a":"a","b":1}',
|
2010-12-14 16:26:35 +00:00
|
|
|
Xml::encodeJsVar( array( 'a' => 'a', 'b' => 1 ) ),
|
|
|
|
|
'encodeJsVar() with associative array'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::encodeJsVar
|
|
|
|
|
*/
|
2010-12-14 16:26:35 +00:00
|
|
|
function testEncodeJsVarObject() {
|
|
|
|
|
$this->assertEquals(
|
2012-01-30 19:40:20 +00:00
|
|
|
'{"a":"a","b":1}',
|
2010-12-14 16:26:35 +00:00
|
|
|
Xml::encodeJsVar( (object)array( 'a' => 'a', 'b' => 1 ) ),
|
|
|
|
|
'encodeJsVar() with object'
|
|
|
|
|
);
|
|
|
|
|
}
|
2011-02-14 00:54:40 +00:00
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::encodeJsVar
|
|
|
|
|
*/
|
2011-02-14 00:54:40 +00:00
|
|
|
function testEncodeJsVarInt() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'123456',
|
|
|
|
|
Xml::encodeJsVar( 123456 ),
|
|
|
|
|
'encodeJsVar() with int'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::encodeJsVar
|
|
|
|
|
*/
|
2011-02-14 00:54:40 +00:00
|
|
|
function testEncodeJsVarFloat() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'1.23456',
|
|
|
|
|
Xml::encodeJsVar( 1.23456 ),
|
|
|
|
|
'encodeJsVar() with float'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::encodeJsVar
|
|
|
|
|
*/
|
2011-02-14 00:54:40 +00:00
|
|
|
function testEncodeJsVarIntString() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'"123456"',
|
|
|
|
|
Xml::encodeJsVar( '123456' ),
|
|
|
|
|
'encodeJsVar() with int-like string'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-21 08:46:11 +00:00
|
|
|
/**
|
|
|
|
|
* @covers Xml::encodeJsVar
|
|
|
|
|
*/
|
2011-02-14 00:54:40 +00:00
|
|
|
function testEncodeJsVarFloatString() {
|
|
|
|
|
$this->assertEquals(
|
|
|
|
|
'"1.23456"',
|
|
|
|
|
Xml::encodeJsVar( '1.23456' ),
|
|
|
|
|
'encodeJsVar() with float-like string'
|
|
|
|
|
);
|
|
|
|
|
}
|
2010-12-14 16:26:35 +00:00
|
|
|
}
|