Aleksander Machniak
2013-03-01 a6fd1578c3535b423e663ec910056413610a800b
Better @package/@subpackage assignment
4 files modified
33 ■■■■■ changed files
program/lib/Roundcube/html.php 27 ●●●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_base_replacer.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_browser.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/rcube_content_filter.php 2 ●●● patch | view | raw | blame | history
program/lib/Roundcube/html.php
@@ -21,7 +21,7 @@
 * Class for HTML code creation
 *
 * @package    Framework
 * @subpackage HTML
 * @subpackage View
 */
class html
{
@@ -340,7 +340,8 @@
/**
 * Class to create an HTML input field
 *
 * @package HTML
 * @package    Framework
 * @subpackage View
 */
class html_inputfield extends html
{
@@ -396,7 +397,8 @@
/**
 * Class to create an HTML password field
 *
 * @package HTML
 * @package    Framework
 * @subpackage View
 */
class html_passwordfield extends html_inputfield
{
@@ -406,9 +408,9 @@
/**
 * Class to create an hidden HTML input field
 *
 * @package HTML
 * @package    Framework
 * @subpackage View
 */
class html_hiddenfield extends html
{
    protected $tagname = 'input';
@@ -456,7 +458,8 @@
/**
 * Class to create HTML radio buttons
 *
 * @package HTML
 * @package    Framework
 * @subpackage View
 */
class html_radiobutton extends html_inputfield
{
@@ -486,7 +489,8 @@
/**
 * Class to create HTML checkboxes
 *
 * @package HTML
 * @package    Framework
 * @subpackage View
 */
class html_checkbox extends html_inputfield
{
@@ -516,7 +520,8 @@
/**
 * Class to create an HTML textarea
 *
 * @package HTML
 * @package    Framework
 * @subpackage View
 */
class html_textarea extends html
{
@@ -574,7 +579,8 @@
 * print $select->show('CH');
 * </pre>
 *
 * @package HTML
 * @package    Framework
 * @subpackage View
 */
class html_select extends html
{
@@ -639,7 +645,8 @@
/**
 * Class to build an HTML table
 *
 * @package HTML
 * @package    Framework
 * @subpackage View
 */
class html_table extends html
{
program/lib/Roundcube/rcube_base_replacer.php
@@ -21,7 +21,7 @@
 * using a predefined base
 *
 * @package    Framework
 * @subpackage Core
 * @subpackage Utils
 * @author     Thomas Bruederli <roundcube@gmail.com>
 */
class rcube_base_replacer
program/lib/Roundcube/rcube_browser.php
@@ -20,7 +20,7 @@
 * Provide details about the client's browser based on the User-Agent header
 *
 * @package    Framework
 * @subpackage Core
 * @subpackage Utils
 */
class rcube_browser
{
program/lib/Roundcube/rcube_content_filter.php
@@ -20,7 +20,7 @@
 * PHP stream filter to detect html/javascript code in attachments
 *
 * @package    Framework
 * @subpackage Core
 * @subpackage Utils
 */
class rcube_content_filter extends php_user_filter
{