Changeset 4542

Show
Ignore:
Timestamp:
06/22/08 02:31:23 (13 months ago)
Author:
jwage
Message:

Initial entry of cookbook.

Location:
branches/0.11
Files:
6 added
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/manual/index.php

    r2963 r4542  
    137137} 
    138138 
     139$wiki = Text_Wiki::singleton('Doc'); 
     140$wiki->setFormatConf('Xhtml', 'translate', HTML_SPECIALCHARS); 
     141 
    139142// Temporary directory used by cache and LaTeX to Pdf conversion 
    140143$tempDir = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'tmp'; 
     
    162165// If table of contents was not cached, parse it from documentation files 
    163166if ( ! $toc instanceof Sensei_Doc_Toc) { 
    164     $toc = new Sensei_Doc_Toc('docs/en.txt'); 
     167    $toc = new Sensei_Doc_Toc('docs/ja.txt'); 
    165168    $cache->save($toc, 'toc'); 
    166169}