includes/wikiengine/render_xhtml.php
author Dan
Thu, 20 Aug 2009 20:01:55 -0400
changeset 1081 745200a9cc2a
parent 1078 67a4c839c7e1
child 1096 86feb1c7ca3f
permissions -rw-r--r--
Fixed some upgrade bugs; added support for choosing one's own date/time formats; rebrand as 1.1.7

<?php

/*
 * Enano - an open-source CMS capable of wiki functions, Drupal-like sidebar blocks, and everything in between
 * Copyright (C) 2006-2009 Dan Fuhry
 *
 * This program is Free Software; you can redistribute and/or modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for details.
 */

class Carpenter_Render_Xhtml
{
  public $rules = array(
    'lang'   => '',
    'templates' => '',
    'bold'   => '<strong>\\1</strong>',
    'italic' => '<em>\\1</em>',
    'underline' => '<span style="text-decoration: underline;">\\1</span>',
    'externalwithtext' => '<a href="\\1" onclick="window.open(this.href); return false;">\\2</a>',
    'externalnotext' => '<a href="\\1" onclick="window.open(this.href); return false;">\\1</a>'
  );
  
  public function heading($text, $pieces)
  {
    static $tocid = -1;
    foreach ( $pieces as $i => $piece )
    {
      $tocid++;
      $tag = '<h' . $piece['level'] . ' id="toc' . $tocid . '">';
      $tag .= trim($piece['text']);
      $tag .= '</h' . $piece['level'] . '>';
      
      $text = str_replace(Carpenter::generate_token($i), $tag, $text);
    }
    
    return $text;
  }
  
  public function multilist($text, $pieces)
  {
    foreach ( $pieces as $i => $piece )
    {
      switch($piece['type'])
      {
        case 'unordered':
        default:
          $btag = 'ul';
          $itag = 'li';
          break;
        case 'ordered':
          $btag = 'ol';
          $itag = 'li';
          break;
        case 'indent':
          $btag = 'dl';
          $itag = 'dd';
          break;
      }
      $list = "<_paragraph_bypass><$btag>\n";
      $spacing = '';
      $depth = 1;
      foreach ( $piece['items'] as $j => $item )
      {
        // most of this just goes into pretty formatting.
        // everything else goes into meeting the PITA requirement that if you're going
        // another level deep, HTML requires the next level to be INSIDE of the <dd>/<li> tag.
        $itemdepth = $item['depth'];
        if ( $itemdepth > $depth )
        {
          while ( $depth < $itemdepth )
          {
            $spacing .= '    ';
            $list .= "{$spacing}<$btag>\n";
            $depth++;
          }
        }
        else if ( $itemdepth < $depth )
        {
          while ( $depth > $itemdepth )
          {
            $list .= "{$spacing}</$btag>\n";
            $spacing = substr($spacing, 4);
            $list .= "{$spacing}</$itag>\n";
            $spacing = substr($spacing, 4);
            $depth--;
          }
        }
        $list .= "{$spacing}    <$itag>" . nl2br($item['text']);
        if ( ( isset($piece['items'][ ++$j ]) && $piece['items'][ $j ]['depth'] <= $itemdepth ) || !isset($piece['items'][ $j ]) ) 
        {
          $list .= "</$itag>\n";
        }
        else
        {
          $list .= "\n";
          $spacing .= "    ";
        }
      }
      while ( $depth > 1 )
      {
        $list .= "{$spacing}</$btag>\n";
        $spacing = substr($spacing, 4);
        $list .= "{$spacing}</$itag>\n";
        $spacing = substr($spacing, 4);
        $depth--;
      }
      $list .= "</$btag></_paragraph_bypass>\n";
      $text = str_replace(Carpenter::generate_token($i), $list, $text);
    }
    return $text;
  }
  
  public function blockquote($text)
  {
    return $text;
  }
  
  public function blockquotepost($text, $rand_id)
  {
    $text = strtr($text, array(
        "<p>{blockquote:$rand_id}<br />"  => '<blockquote>',
        "<br />\n{/blockquote:$rand_id}</p>" => '</blockquote>',
        "{blockquote:$rand_id}"  => '<blockquote>',
        "{/blockquote:$rand_id}" => '</blockquote>'
      ));
    $text = strtr($text, array(
        "<blockquote><br />" => '<blockquote>',
        "</blockquote><br />" => '</blockquote>'
      ));
    return $text;
  }
  
  public function paragraph($text, $pieces)
  {
    foreach ( $pieces as $i => $piece )
    {
      $text = str_replace(Carpenter::generate_token($i), '<p>' . nl2br($piece) . '</p>', $text);
    }
    
    return $text;
  }
}

// Alias internal link parsing to RenderMan's method
function parser_mediawiki_xhtml_internallink($text)
{
  return RenderMan::parse_internal_links($text);
}