Changeset d062dbe in github


Ignore:
Timestamp:
Apr 23, 2010 10:25:28 AM (3 years ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
63bff1d
Parents:
d824aca
Message:

Add class docuumentation blocks and make phpdoc work again

Files:
8 edited

Legend:

Unmodified
Added
Removed
  • bin/makedoc.sh

    r396afd4 rd062dbe  
    1 #!/usr/bin/env bash 
     1#!/bin/sh 
    22 
    3 if [ -z "$SSH_TTY" ] 
    4 then 
    5   if [ -z "$DEV_TTY" ] 
    6   then 
    7     echo "Not on the shell." 
    8     exit 1 
    9   fi 
    10 fi 
    11  
    12 TITLE="RoundCube Classes" 
     3TITLE="Roundcube Classes" 
    134PACKAGES="Core" 
    145 
  • program/include/rcube_imap.php

    rd824aca rd062dbe  
    2727 * @package    Mail 
    2828 * @author     Thomas Bruederli <roundcube@gmail.com> 
    29  * @version    1.6 
     29 * @author     Aleksander Machniak <alec@alec.pl>  
     30 * @version    2.0 
    3031 */ 
    3132class rcube_imap 
  • program/include/rcube_imap_generic.php

    r1820932 rd062dbe  
    2727 
    2828 
     29/** 
     30 * Struct representing an e-mail message header 
     31 * 
     32 * @package    Mail 
     33 * @author     Aleksander Machniak <alec@alec.pl>  
     34 */ 
    2935class rcube_mail_header 
    3036{ 
     
    7177} 
    7278 
     79/** 
     80 * PHP based wrapper class to connect to an IMAP server 
     81 * 
     82 * @package    Mail 
     83 * @author     Aleksander Machniak <alec@alec.pl>  
     84 */ 
    7385class rcube_imap_generic 
    7486{ 
  • program/include/rcube_mime_struct.php

    r70318e5 rd062dbe  
    2424*/ 
    2525 
    26                      
     26/** 
     27 * Helper class to process IMAP's BODYSTRUCTURE string 
     28 * 
     29 * @package    Mail 
     30 * @author     Aleksander Machniak <alec@alec.pl> 
     31 */ 
    2732class rcube_mime_struct 
    2833{ 
  • program/include/rcube_plugin.php

    rb545d3e rd062dbe  
    2323 * Plugin interface class 
    2424 * 
    25  * @package Core 
     25 * @package PluginAPI 
    2626 */ 
    2727abstract class rcube_plugin 
  • program/include/rcube_plugin_api.php

    r929a508 rd062dbe  
    2323 * The plugin loader and global API 
    2424 * 
    25  * @package Core 
     25 * @package PluginAPI 
    2626 */ 
    2727class rcube_plugin_api 
  • program/include/rcube_session.php

    r929a508 rd062dbe  
    66 |                                                                       | 
    77 | This file is part of the RoundCube Webmail client                     | 
    8  | Copyright (C) 2005-2009, RoundCube Dev. - Switzerland                 | 
     8 | Copyright (C) 2005-2010, RoundCube Dev. - Switzerland                 | 
    99 | Licensed under the GNU GPL                                            | 
    1010 |                                                                       | 
     
    2121*/ 
    2222 
     23/** 
     24 * Class to provide database supported session storage 
     25 * 
     26 * @package    Core 
     27 * @author     Thomas Bruederli <roundcube@gmail.com> 
     28 * @author     Aleksander Machniak <alec@alec.pl> 
     29 */ 
    2330class rcube_session 
    2431{ 
  • program/include/rcube_smtp.php

    rb579f42 rd062dbe  
    66 |                                                                       | 
    77 | This file is part of the RoundCube Webmail client                     | 
    8  | Copyright (C) 2005-2007, RoundCube Dev. - Switzerland                 | 
     8 | Copyright (C) 2005-2010, RoundCube Dev. - Switzerland                 | 
    99 | Licensed under the GNU GPL                                            | 
    1010 |                                                                       | 
     
    2323define('SMTP_MIME_CRLF', "\r\n"); 
    2424 
    25 class rcube_smtp { 
     25/** 
     26 * Class to provide SMTP functionality using PEAR Net_SMTP 
     27 * 
     28 * @package    Mail 
     29 * @author     Thomas Bruederli <roundcube@gmail.com> 
     30 * @author     Aleksander Machniak <alec@alec.pl> 
     31 */ 
     32class rcube_smtp 
     33{ 
    2634 
    2735  private $conn = null; 
     
    125133        $this->response[] .= 'Authentication failure: ' . $result->getMessage() . ' (Code: ' . $result->getCode() . ')'; 
    126134        $this->reset(); 
    127         $this->disconnect(); 
     135        $this->disconnect(); 
    128136        return false; 
    129137      } 
Note: See TracChangeset for help on using the changeset viewer.