1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00
This commit is contained in:
jepso 2008-01-23 16:37:39 +00:00
parent c5e60f3e5c
commit 04d945a194
4 changed files with 81 additions and 57 deletions

View file

@ -1,27 +1,27 @@
<?php <?php
class Text_Wiki_Render_Latex_Code extends Text_Wiki_Render { class Text_Wiki_Render_Latex_Code extends Text_Wiki_Render {
/** /**
* *
* Renders a token into text matching the requested format. * Renders a token into text matching the requested format.
* *
* @access public * @access public
* *
* @param array $options The "options" portion of the token (second * @param array $options The "options" portion of the token (second
* element). * element).
* *
* @return string The text rendered from the token options. * @return string The text rendered from the token options.
* *
*/ */
function token($options) function token($options)
{ {
$text = $options['text']; $text = $options['text'];
$attr = $options['attr']; $attr = $options['attr'];
$type = strtolower($attr['type']); $type = strtolower($attr['type']);
if ($type == 'php') { if ($type == 'php') {
if (substr($options['text'], 0, 5) != '<?php') { if (substr($options['text'], 0, 5) != '<?php') {
// PHP code example: // PHP code example:
@ -29,9 +29,9 @@ class Text_Wiki_Render_Latex_Code extends Text_Wiki_Render {
$text = "<?php\n\n" . $options['text'] . "\n\n?>"; // <?php $text = "<?php\n\n" . $options['text'] . "\n\n?>"; // <?php
} }
} }
$text = "\\begin{lstlisting}\n$text\n\\end{lstlisting}\n\n"; $text = "\\begin{lstlisting}[caption={} {}]\n$text\n\\end{lstlisting}\n\n";
if ($type != '') { if ($type != '') {
$text = "\\lstset{language=$type}\n" . $text; $text = "\\lstset{language=$type}\n" . $text;
} else { } else {

View file

@ -30,7 +30,8 @@ class Text_Wiki_Render_Xhtml_Code extends Text_Wiki_Render {
'css_code' => null, // class for generic <code> 'css_code' => null, // class for generic <code>
'css_php' => null, // class for PHP <code> 'css_php' => null, // class for PHP <code>
'css_html' => null, // class for HTML <code> 'css_html' => null, // class for HTML <code>
'css_filename' => null // class for optional filename <div> 'css_filename' => null, // class for optional filename <div>
'code_begin_callback' => null
); );
/** /**
@ -47,7 +48,7 @@ class Text_Wiki_Render_Xhtml_Code extends Text_Wiki_Render {
*/ */
function token($options) function token($options)
{ {
$text = $options['text']; $text = $options['text'];
$attr = $options['attr']; $attr = $options['attr'];
$type = strtolower($attr['type']); $type = strtolower($attr['type']);
@ -104,6 +105,11 @@ class Text_Wiki_Render_Xhtml_Code extends Text_Wiki_Render {
$attr['filename'] . '</div>' . $text; $attr['filename'] . '</div>' . $text;
} }
$callback = $this->getConf('code_begin_callback');
if ($callback) {
$text = call_user_func($callback) . $text;
}
return "\n$text\n\n"; return "\n$text\n\n";
} }
} }

View file

@ -46,6 +46,10 @@ p, ul, ol, dl {
font-size: small; font-size: small;
} }
p.caption {
font-style: italic;
}
dd { dd {
margin-bottom: 0.5em; margin-bottom: 0.5em;
} }
@ -110,7 +114,7 @@ pre {
color: black; color: black;
background-color: #f7f7f7; background-color: #f7f7f7;
border: 1px solid #d7d7d7; border: 1px solid #d7d7d7;
/* Pup's Box Flow Hack, Rev 2 */ /* Pup's Box Flow Hack, Rev 2 */
overflow/**/: auto; overflow/**/: auto;
\height: 1%; \height: 1%;
@ -120,9 +124,9 @@ pre {
pre, x:-moz-any-link { pre, x:-moz-any-link {
/* overflow: auto causes artefacts */ /* overflow: auto causes artefacts */
overflow: hidden; overflow: hidden;
/* prevents text to be hidden by wrapping it */ /* prevents text to be hidden by wrapping it */
white-space: -moz-pre-wrap !important; white-space: -moz-pre-wrap !important;
} }
pre .default { pre .default {

View file

@ -34,28 +34,32 @@ class Sensei_Doc_Renderer_Xhtml extends Sensei_Doc_Renderer
{ {
/** /**
* Available options * Available options
* *
* (Sensei_Doc_Section|null) section : * (Sensei_Doc_Section|null) section :
* Section to be rendered. If null all sections will be rendered. * Section to be rendered. If null all sections will be rendered.
* *
* (string) url_prefix : * (string) url_prefix :
* All URLs pointing to sections will be prefixed with this. * All URLs pointing to sections will be prefixed with this.
*/ */
protected $_options = array( protected $_options = array(
'section' => null, 'section' => null,
'url_prefix' => '' 'url_prefix' => ''
); );
private $_chapter;
private $_codeListingsIndex;
public function __construct(Sensei_Doc_Toc $toc, array $options = array()) public function __construct(Sensei_Doc_Toc $toc, array $options = array())
{ {
parent::__construct($toc, $options); parent::__construct($toc, $options);
$this->_wiki->setRenderConf('xhtml', 'Doclink', 'url_callback', array(&$this, 'makeUrl')); $this->_wiki->setRenderConf('xhtml', 'Doclink', 'url_callback', array(&$this, 'makeUrl'));
$this->_wiki->setRenderConf('xhtml', 'Code', 'code_begin_callback', array(&$this, 'codeListingsNumberingCallback'));
} }
/** /**
* Renders table of contents as nested unordered lists. * Renders table of contents as nested unordered lists.
* *
* @return string rendered table of contents * @return string rendered table of contents
*/ */
public function renderToc() public function renderToc()
@ -72,7 +76,7 @@ class Sensei_Doc_Renderer_Xhtml extends Sensei_Doc_Renderer
protected function _renderToc($section) protected function _renderToc($section)
{ {
$output = ''; $output = '';
if ($section instanceof Sensei_Doc_Toc) { if ($section instanceof Sensei_Doc_Toc) {
$class = ' class="tree"'; $class = ' class="tree"';
} elseif ($section !== $this->_options['section']) { } elseif ($section !== $this->_options['section']) {
@ -80,27 +84,27 @@ class Sensei_Doc_Renderer_Xhtml extends Sensei_Doc_Renderer
} else { } else {
$class = ''; $class = '';
} }
$output .= '<ul' . $class . '>' . "\n"; $output .= '<ul' . $class . '>' . "\n";
for ($i = 0; $i < $section->count(); $i++) { for ($i = 0; $i < $section->count(); $i++) {
$child = $section->getChild($i); $child = $section->getChild($i);
$text = $child->getIndex() . ' ' . $child->getName(); $text = $child->getIndex() . ' ' . $child->getName();
$href = $this->makeUrl($child); $href = $this->makeUrl($child);
$output .= '<li><a href="' . $href . '">' . $text . '</a>'; $output .= '<li><a href="' . $href . '">' . $text . '</a>';
if ($child->count() > 0) { if ($child->count() > 0) {
$output .= "\n"; $output .= "\n";
$output .= $this->_renderToc($child); $output .= $this->_renderToc($child);
} }
$output .= '</li>' . "\n"; $output .= '</li>' . "\n";
} }
$output .= '</ul>' . "\n"; $output .= '</ul>' . "\n";
return $output; return $output;
} }
@ -113,29 +117,29 @@ class Sensei_Doc_Renderer_Xhtml extends Sensei_Doc_Renderer
public function render() public function render()
{ {
$section = $this->_options['section']; $section = $this->_options['section'];
if ($section instanceof Sensei_Doc_Section) { if ($section instanceof Sensei_Doc_Section) {
$content = $this->_renderSection($section); $content = $this->_renderSection($section);
} else { } else {
// No section was set, so let's render all sections // No section was set, so let's render all sections
$content = ''; $content = '';
for ($i = 0; $i < count($this->_toc); $i++) { for ($i = 0; $i < count($this->_toc); $i++) {
$content .= $this->_renderSection($this->_toc->getChild($i)); $content .= $this->_renderSection($this->_toc->getChild($i));
} }
} }
$output = $this->_options['template']; $output = $this->_options['template'];
$output = str_replace('%TITLE%', $this->_options['title'], $output); $output = str_replace('%TITLE%', $this->_options['title'], $output);
$output = str_replace('%AUTHOR%', $this->_options['author'], $output); $output = str_replace('%AUTHOR%', $this->_options['author'], $output);
$output = str_replace('%SUBJECT%', $this->_options['subject'], $output); $output = str_replace('%SUBJECT%', $this->_options['subject'], $output);
$output = str_replace('%KEYWORDS%', $this->_options['keywords'], $output); $output = str_replace('%KEYWORDS%', $this->_options['keywords'], $output);
$output = str_replace('%TOC%', $this->renderToc(), $output); $output = str_replace('%TOC%', $this->renderToc(), $output);
$output = str_replace('%CONTENT%', $content, $output); $output = str_replace('%CONTENT%', $content, $output);
return $output; return $output;
} }
@ -148,21 +152,23 @@ class Sensei_Doc_Renderer_Xhtml extends Sensei_Doc_Renderer
protected function _renderSection(Sensei_Doc_Section $section) protected function _renderSection(Sensei_Doc_Section $section)
{ {
$output = ''; $output = '';
$title = $section->getIndex() . ' ' . $section->getName(); $title = $section->getIndex() . ' ' . $section->getName();
$level = $section->getLevel(); $level = $section->getLevel();
if ($level === 1) { if ($level === 1) {
$class = ' class="chapter"'; $class = ' class="chapter"';
$title = 'Chapter ' . $title; $title = 'Chapter ' . $title;
$this->_chapter = $section->getIndex();
$this->_codeListingsIndex = 0;
} else { } else {
$class = ' class="section"'; $class = ' class="section"';
} }
$output .= '<div' . $class .'>' . "\n"; $output .= '<div' . $class .'>' . "\n";
$output .= "<h$level>"; $output .= "<h$level>";
if ( ! ($this->_options['section'] instanceof Sensei_Doc_Section) if ( ! ($this->_options['section'] instanceof Sensei_Doc_Section)
|| ($level > $this->_options['section']->getLevel())) { || ($level > $this->_options['section']->getLevel())) {
$anchor = $this->makeAnchor($section); $anchor = $this->makeAnchor($section);
@ -171,22 +177,22 @@ class Sensei_Doc_Renderer_Xhtml extends Sensei_Doc_Renderer
} else { } else {
$output .= $title; $output .= $title;
} }
$output .= "</h$level>"; $output .= "</h$level>";
// Transform section contents from wiki syntax to XHTML // Transform section contents from wiki syntax to XHTML
$output .= $this->_wiki->transform($section->getText()); $output .= $this->_wiki->transform($section->getText());
// Render children of this section recursively // Render children of this section recursively
for ($i = 0; $i < count($section); $i++) { for ($i = 0; $i < count($section); $i++) {
$output .= $this->_renderSection($section->getChild($i)); $output .= $this->_renderSection($section->getChild($i));
} }
$output .= '</div>' . "\n"; $output .= '</div>' . "\n";
return $output; return $output;
} }
public function makeUrl($section) public function makeUrl($section)
{ {
if ($section instanceof Sensei_Doc_Section) { if ($section instanceof Sensei_Doc_Section) {
@ -194,22 +200,22 @@ class Sensei_Doc_Renderer_Xhtml extends Sensei_Doc_Renderer
} else { } else {
$path = $section; $path = $section;
} }
$url = $this->_options['url_prefix']; $url = $this->_options['url_prefix'];
if ($this->_options['section'] instanceof Sensei_Doc_Section) { if ($this->_options['section'] instanceof Sensei_Doc_Section) {
$level = $this->_options['section']->getLevel(); $level = $this->_options['section']->getLevel();
$url .= implode(':', array_slice(explode(':', $path), 0, $level)); $url .= implode(':', array_slice(explode(':', $path), 0, $level));
} }
$anchor = $this->makeAnchor($section); $anchor = $this->makeAnchor($section);
if ($anchor !== '') { if ($anchor !== '') {
$url .= '#' . $anchor; $url .= '#' . $anchor;
} }
return $url; return $url;
} }
public function makeAnchor($section) public function makeAnchor($section)
{ {
if ($section instanceof Sensei_Doc_Section) { if ($section instanceof Sensei_Doc_Section) {
@ -217,7 +223,7 @@ class Sensei_Doc_Renderer_Xhtml extends Sensei_Doc_Renderer
} else { } else {
$path = $section; $path = $section;
} }
if ($this->_options['section'] instanceof Sensei_Doc_Section) { if ($this->_options['section'] instanceof Sensei_Doc_Section) {
$level = $this->_options['section']->getLevel(); $level = $this->_options['section']->getLevel();
return implode(':', array_slice(explode(':', $path), $level)); return implode(':', array_slice(explode(':', $path), $level));
@ -225,4 +231,12 @@ class Sensei_Doc_Renderer_Xhtml extends Sensei_Doc_Renderer
return $path; return $path;
} }
} }
public function codeListingsNumberingCallback()
{
$this->_codeListingsIndex++;
$html = '<p class="caption">Listing ' . $this->_chapter . '.'
. $this->_codeListingsIndex . "</p>\n";
return $html;
}
} }