mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-05 16:27:38 +02:00
- two new packages... diff and utf
- only 60 chars for topic title if new post (please see changelog for explanation) - change utf8_wordwrap (had some bugs david and nils spotted - was not really functional, sorry for this. :D) git-svn-id: file:///svn/phpbb/trunk@8034 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @version $Id$
|
||||
* @copyright (c) 2006 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
@@ -25,7 +25,7 @@ if (!defined('IN_PHPBB'))
|
||||
* General API for generating and formatting diffs - the differences between
|
||||
* two sequences of strings.
|
||||
*
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*/
|
||||
class diff
|
||||
@@ -226,7 +226,7 @@ class diff
|
||||
}
|
||||
|
||||
/**
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*/
|
||||
class mapped_diff extends diff
|
||||
@@ -274,7 +274,7 @@ class mapped_diff extends diff
|
||||
}
|
||||
|
||||
/**
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*
|
||||
* @access private
|
||||
@@ -301,7 +301,7 @@ class diff_op
|
||||
}
|
||||
|
||||
/**
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*
|
||||
* @access private
|
||||
@@ -326,7 +326,7 @@ class diff_op_copy extends diff_op
|
||||
}
|
||||
|
||||
/**
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*
|
||||
* @access private
|
||||
@@ -347,7 +347,7 @@ class diff_op_delete extends diff_op
|
||||
}
|
||||
|
||||
/**
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*
|
||||
* @access private
|
||||
@@ -368,7 +368,7 @@ class diff_op_add extends diff_op
|
||||
}
|
||||
|
||||
/**
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*
|
||||
* @access private
|
||||
@@ -392,7 +392,7 @@ class diff_op_change extends diff_op
|
||||
/**
|
||||
* A class for computing three way diffs.
|
||||
*
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*/
|
||||
class diff3 extends diff
|
||||
@@ -637,7 +637,7 @@ class diff3 extends diff
|
||||
}
|
||||
|
||||
/**
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*
|
||||
* @access private
|
||||
@@ -683,7 +683,7 @@ class diff3_op
|
||||
}
|
||||
|
||||
/**
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*
|
||||
* @access private
|
||||
@@ -709,7 +709,7 @@ class diff3_op_copy extends diff3_op
|
||||
}
|
||||
|
||||
/**
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
*
|
||||
* @access private
|
||||
|
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @version $Id$
|
||||
* @copyright (c) 2006 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
@@ -41,7 +41,7 @@ if (!defined('IN_PHPBB'))
|
||||
* code was written by him, and is used/adapted with his permission.
|
||||
*
|
||||
* @author Geoffrey T. Dairiki <dairiki@dairiki.org>
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
*
|
||||
* @access private
|
||||
*/
|
||||
|
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
* @version $Id$
|
||||
* @copyright (c) 2006 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
||||
@@ -27,7 +27,7 @@ if (!defined('IN_PHPBB'))
|
||||
* This class renders the diff in classic diff format. It is intended that
|
||||
* this class be customized via inheritance, to obtain fancier outputs.
|
||||
*
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
*/
|
||||
class diff_renderer
|
||||
{
|
||||
@@ -267,7 +267,7 @@ class diff_renderer
|
||||
|
||||
/**
|
||||
* Renders a unified diff
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
*/
|
||||
class diff_renderer_unified extends diff_renderer
|
||||
{
|
||||
@@ -340,7 +340,7 @@ class diff_renderer_unified extends diff_renderer
|
||||
* This class renders diffs in the Wiki-style "inline" format.
|
||||
*
|
||||
* @author Ciprian Popovici
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
*/
|
||||
class diff_renderer_inline extends diff_renderer
|
||||
{
|
||||
@@ -503,7 +503,7 @@ class diff_renderer_inline extends diff_renderer
|
||||
* "raw" diff renderer.
|
||||
* This class could be used to output a raw unified patch file
|
||||
*
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
*/
|
||||
class diff_renderer_raw extends diff_renderer
|
||||
{
|
||||
@@ -557,7 +557,7 @@ class diff_renderer_raw extends diff_renderer
|
||||
* "chora (Horde)" diff renderer - similar style.
|
||||
* This renderer class is a modified human_readable function from the Horde Framework.
|
||||
*
|
||||
* @package phpBB3
|
||||
* @package diff
|
||||
*/
|
||||
class diff_renderer_side_by_side extends diff_renderer
|
||||
{
|
||||
|
Reference in New Issue
Block a user