Aleksander Machniak
2012-11-21 ba6f21caeb405c7e8512a09941fefbc97286e45f
Framework files moved to lib/Roundcube
42 files renamed
2 files modified
1 files deleted
804 ■■■■■ changed files
CHANGELOG 2 ●●● patch | view | raw | blame | history
program/include/iniset.php 5 ●●●● patch | view | raw | blame | history
program/include/rcube_vcard.php 793 ●●●●● patch | view | raw | blame | history
program/lib/Roundcube/bootstrap.php 4 ●●● patch | view | raw | blame | history
program/lib/Roundcube/html.php patch | view | raw | blame | history
program/lib/Roundcube/rcube.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_addressbook.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_base_replacer.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_browser.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_cache.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_charset.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_config.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_contacts.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_content_filter.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_csv2vcard.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_db.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_db_mssql.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_db_mysql.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_db_pgsql.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_db_sqlite.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_db_sqlsrv.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_image.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_imap.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_imap_cache.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_imap_generic.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_ldap.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_message.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_message_header.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_message_part.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_mime.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_output.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_output_html.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_output_json.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_plugin.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_plugin_api.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_result_index.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_result_set.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_result_thread.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_session.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_smtp.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_spellchecker.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_storage.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_string_replacer.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_user.php patch | view | raw | blame | history
program/lib/Roundcube/rcube_utils.php patch | view | raw | blame | history
CHANGELOG
@@ -59,8 +59,8 @@
    Replace imap_init hook with storage_init (with additional 'driver' argument)
    Improved performance by caching IMAP server's capabilities in session
    Unified global functions naming (rcube_ prefix)
    Move global functions from main.inc and rcube_shared.inc into classes
    Better classes separation
    Framework files moved to lib/Roundcube
RELEASE 0.8.4
-------------
program/include/iniset.php
@@ -58,7 +58,10 @@
@set_time_limit(120);
// include Roundcube Framework
require_once INSTALL_PATH . 'program/include/bootstrap.php';
require_once 'Roundcube/bootstrap.php';
// backward compatybility (to be removed)
require_once INSTALL_PATH . 'program/include/rcmail.php';
// backward compatybility (to be removed)
require_once INSTALL_PATH . 'program/include/rcube_bc.inc';
program/include/rcube_vcard.php
File was deleted
program/lib/Roundcube/bootstrap.php
File was renamed from program/include/bootstrap.php
@@ -447,13 +447,15 @@
            '/Net_(.+)/',
            '/Auth_(.+)/',
            '/^html_.+/',
            '/^rcube(.*)/',
            '/^utf8$/',
        ),
        array(
            'Mail/\\1',
            'Net/\\1',
            'Auth/\\1',
            'html',
            'Roundcube/html',
            'Roundcube/rcube\\1',
            'utf8.class',
        ),
        $classname
program/lib/Roundcube/html.php
program/lib/Roundcube/rcube.php
program/lib/Roundcube/rcube_addressbook.php
program/lib/Roundcube/rcube_base_replacer.php
program/lib/Roundcube/rcube_browser.php
program/lib/Roundcube/rcube_cache.php
program/lib/Roundcube/rcube_charset.php
program/lib/Roundcube/rcube_config.php
program/lib/Roundcube/rcube_contacts.php
program/lib/Roundcube/rcube_content_filter.php
program/lib/Roundcube/rcube_csv2vcard.php
program/lib/Roundcube/rcube_db.php
program/lib/Roundcube/rcube_db_mssql.php
program/lib/Roundcube/rcube_db_mysql.php
program/lib/Roundcube/rcube_db_pgsql.php
program/lib/Roundcube/rcube_db_sqlite.php
program/lib/Roundcube/rcube_db_sqlsrv.php
program/lib/Roundcube/rcube_image.php
program/lib/Roundcube/rcube_imap.php
program/lib/Roundcube/rcube_imap_cache.php
program/lib/Roundcube/rcube_imap_generic.php
program/lib/Roundcube/rcube_ldap.php
program/lib/Roundcube/rcube_message.php
program/lib/Roundcube/rcube_message_header.php
program/lib/Roundcube/rcube_message_part.php
program/lib/Roundcube/rcube_mime.php
program/lib/Roundcube/rcube_output.php
program/lib/Roundcube/rcube_output_html.php
program/lib/Roundcube/rcube_output_json.php
program/lib/Roundcube/rcube_plugin.php
program/lib/Roundcube/rcube_plugin_api.php
program/lib/Roundcube/rcube_result_index.php
program/lib/Roundcube/rcube_result_set.php
program/lib/Roundcube/rcube_result_thread.php
program/lib/Roundcube/rcube_session.php
program/lib/Roundcube/rcube_smtp.php
program/lib/Roundcube/rcube_spellchecker.php
program/lib/Roundcube/rcube_storage.php
program/lib/Roundcube/rcube_string_replacer.php
program/lib/Roundcube/rcube_user.php
program/lib/Roundcube/rcube_utils.php