1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
--TEST--
Example numbering 001 - indexing and rendering examples with and without an xml:id
--FILE--
<?php
namespace phpdotnet\phd;
require_once __DIR__ . "/setup.php";
$xml_file = __DIR__ . "/data/example_numbering_001.xml";
$config->setForce_index(true);
$config->setXml_file($xml_file);
$indexRepository = new IndexRepository(new \SQLite3(":memory:"));
$indexRepository->init();
$config->set_indexcache($indexRepository);
$index = new TestIndex($indexRepository, $config, $outputHandler);
$render = new TestRender(new Reader($outputHandler), $config, null, $index);
$render->run();
$indexes = array_keys($index->getNfo());
echo "Indexes stored:\n";
var_dump($indexes);
$format = new TestGenericChunkedXHTML($config, $outputHandler);
$render = new TestRender(new Reader($outputHandler), $config, $format);
$render->run();
?>
--EXPECT--
Indexes stored:
array(6) {
[0]=>
string(17) "example-numbering"
[1]=>
string(9) "example-1"
[2]=>
string(9) "example-2"
[3]=>
string(16) "third-example-id"
[4]=>
string(9) "example-4"
[5]=>
string(9) "example-5"
}
Filename: example-numbering.html
Content:
<div id="example-numbering" class="chapter">
<div class="section">
<div class="example" id="example-1">
<p><strong>Example #1 - 1. example without an xml:id</strong></p>
</div>
</div>
<div class="section">
<div class="example" id="example-2">
<p><strong>Example #2 - 2. example without an xml:id</strong></p>
</div>
</div>
<div class="section">
<div class="example" id="third-example-id">
<p><strong>Example #3 - 3. example with an xml:id</strong></p>
</div>
</div>
<div class="section">
<div class="example" id="example-4">
<p><strong>Example #4 - 4. example without an xml:id</strong></p>
</div>
</div>
<div class="section">
<div class="example" id="example-5">
<p><strong>Example #5 - 5. example without an xml:id</strong></p>
</div>
</div>
</div>
|