Skip to content

Commit

Permalink
- Add separate pagesize setting for mail messages and contacts (#1488…
Browse files Browse the repository at this point in the history
…269)
  • Loading branch information
alecpl committed Dec 29, 2011
1 parent 81c2ce9 commit 08ffd93
Show file tree
Hide file tree
Showing 13 changed files with 104 additions and 66 deletions.
1 change: 1 addition & 0 deletions CHANGELOG
@@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================

- Add separate pagesize setting for mail messages and contacts (#1488269)
- Fix handling of INBOX's subfolders in special folders config (#1488279)
- Add ifModule statement for setting Options -Indexes in .htaccess file (#1488274)
- Fix crashes with eAccelerator (#1488256)
Expand Down
7 changes: 5 additions & 2 deletions config/main.inc.php.dist
Expand Up @@ -654,8 +654,11 @@ $rcmail_config['default_charset'] = 'ISO-8859-1';
// skin name: folder from skins/
$rcmail_config['skin'] = 'default';

// show up to X items in list view
$rcmail_config['pagesize'] = 40;
// show up to X items in messages list view
$rcmail_config['mail_pagesize'] = 50;

// show up to X items in contacts list view
$rcmail_config['addressbook_pagesize'] = 50;

// use this timezone to display date/time
$rcmail_config['timezone'] = 'auto';
Expand Down
27 changes: 23 additions & 4 deletions installer/config.php
Expand Up @@ -524,15 +524,34 @@
<p class="hint">Enter a URL relative to the document root of this Roundcube installation.</p>
</dd>

<dt class="propname">pagesize <span class="userconf">*</span></dt>
<dt class="propname">mail_pagesize <span class="userconf">*</span></dt>
<dd>
<?php

$input_pagesize = new html_inputfield(array('name' => '_pagesize', 'size' => 6, 'id' => "cfgpagesize"));
echo $input_pagesize->show($RCI->getprop('pagesize'));
$pagesize = $RCI->getprop('mail_pagesize');
if (!$pagesize) {
$pagesize = $RCI->getprop('pagesize');
}
$input_pagesize = new html_inputfield(array('name' => '_mail_pagesize', 'size' => 6, 'id' => "cfgmailpagesize"));
echo $input_pagesize->show($pagesize);

?>
<div>Show up to X items in the mail messages list view.</div>
</dd>

<dt class="propname">addressbook_pagesize <span class="userconf">*</span></dt>
<dd>
<?php

$pagesize = $RCI->getprop('addressbook_pagesize');
if (!$pagesize) {
$pagesize = $RCI->getprop('pagesize');
}
$input_pagesize = new html_inputfield(array('name' => '_addressbook_pagesize', 'size' => 6, 'id' => "cfgabookpagesize"));
echo $input_pagesize->show($pagesize);

?>
<div>Show up to X items in list view.</div>
<div>Show up to X items in the contacts list view.</div>
</dd>

<dt class="propname">prefer_html <span class="userconf">*</span></dt>
Expand Down
7 changes: 4 additions & 3 deletions installer/rcube_install.php
Expand Up @@ -40,14 +40,15 @@ class rcube_install
'multiple_identities' => 'identities_level',
'addrbook_show_images' => 'show_images',
'imap_root' => 'imap_ns_personal',
'pagesize' => 'mail_pagesize',
);

// these config options are required for a working system
var $required_config = array(
'db_dsnw', 'db_table_contactgroups', 'db_table_contactgroupmembers',
'des_key', 'session_lifetime',
);

/**
* Constructor
*/
Expand Down Expand Up @@ -169,7 +170,7 @@ function create_config($which, $force = false)
if (count($value) <= 1)
$value = $value[0];
}
else if ($prop == 'pagesize') {
else if ($prop == 'mail_pagesize' || $prop == 'addressbook_pagesize') {
$value = max(2, intval($value));
}
else if ($prop == 'smtp_user' && !empty($_POST['_smtp_user_u'])) {
Expand Down
12 changes: 8 additions & 4 deletions program/include/rcmail.php
Expand Up @@ -598,23 +598,27 @@ public function imap_init($connect = false)
$this->imap->skip_deleted = $this->config->get('skip_deleted');

// enable caching of imap data
$imap_cache = $this->config->get('imap_cache');
$imap_cache = $this->config->get('imap_cache');
$messages_cache = $this->config->get('messages_cache');
// for backward compatybility
if ($imap_cache === null && $messages_cache === null && $this->config->get('enable_caching')) {
$imap_cache = 'db';
$messages_cache = true;
}

if ($imap_cache)
$this->imap->set_caching($imap_cache);
if ($messages_cache)
$this->imap->set_messages_caching(true);

// set pagesize from config
$this->imap->set_pagesize($this->config->get('pagesize', 50));
$pagesize = $this->config->get('mail_pagesize');
if (!$pagesize) {
$pagesize = $this->config->get('pagesize', 50);
}
$this->imap->set_pagesize($pagesize);

// Setting root and delimiter before establishing the connection
// can save time detecting them using NAMESPACE and LIST
// set connection options
$options = array(
'auth_type' => $this->config->get('imap_auth_type', 'check'),
'auth_cid' => $this->config->get('imap_auth_cid'),
Expand Down
10 changes: 0 additions & 10 deletions program/js/app.js
Expand Up @@ -5658,16 +5658,6 @@ function rcube_webmail()
}
};

this.toggle_prefer_html = function(checkbox)
{
$('#rcmfd_show_images').prop('disabled', !checkbox.checked).val(0);
};

this.toggle_preview_pane = function(checkbox)
{
$('#rcmfd_preview_pane_mark_read').prop('disabled', !checkbox.checked);
};

// display fetched raw headers
this.set_headers = function(content)
{
Expand Down
1 change: 0 additions & 1 deletion program/localization/en_US/labels.inc
Expand Up @@ -412,7 +412,6 @@ $labels['mainoptions'] = 'Main Options';
$labels['section'] = 'Section';
$labels['maintenance'] = 'Maintenance';
$labels['newmessage'] = 'New Message';
$labels['listoptions'] = 'List Options';
$labels['signatureoptions'] = 'Signature Options';
$labels['whenreplying'] = 'When replying';
$labels['replytopposting'] = 'start new message above original';
Expand Down
12 changes: 6 additions & 6 deletions program/steps/addressbook/delete.inc
Expand Up @@ -103,20 +103,20 @@ if (($search_request = $_REQUEST['_search']) && isset($_SESSION['search'][$searc

// create resultset object
$count = count($records);
$first = ($page-1) * $CONFIG['pagesize'];
$first = ($page-1) * $PAGE_SIZE;
$result = new rcube_result_set($count, $first);

// get records from the next page to add to the list
$pages = ceil((count($records) + $delcnt) / $CONFIG['pagesize']);
$pages = ceil((count($records) + $delcnt) / $PAGE_SIZE);
if ($_GET['_from'] != 'show' && $pages > 1 && $page < $pages) {
// sort the records
ksort($records, SORT_LOCALE_STRING);

$first += $CONFIG['pagesize'];
$first += $PAGE_SIZE;
// create resultset object
$res = new rcube_result_set($count, $first - $delcnt);

if ($CONFIG['pagesize'] < $count) {
if ($PAGE_SIZE < $count) {
$records = array_slice($records, $first - $delcnt, $delcnt);
}

Expand All @@ -132,15 +132,15 @@ else {
$result = $CONTACTS->count();

// get records from the next page to add to the list
$pages = ceil(($result->count + $delcnt) / $CONFIG['pagesize']);
$pages = ceil(($result->count + $delcnt) / $PAGE_SIZE);
if ($_GET['_from'] != 'show' && $pages > 1 && $page < $pages) {
$CONTACTS->set_page($page);
$records = $CONTACTS->list_records(null, -$delcnt);
}
}

// update message count display
$OUTPUT->set_env('pagecount', ceil($result->count / $CONFIG['pagesize']));
$OUTPUT->set_env('pagecount', ceil($result->count / $PAGE_SIZE));
$OUTPUT->command('set_rowcount', rcmail_get_rowcount_text($result));

if (!empty($_SESSION['contact_undo'])) {
Expand Down
12 changes: 8 additions & 4 deletions program/steps/addressbook/func.inc
Expand Up @@ -56,6 +56,10 @@ $CONTACT_COLTYPES = array(
// TODO: define fields for vcards like GEO, KEY
);

$PAGE_SIZE = $RCMAIL->config->get('addressbook_pagesize');
if (!$PAGE_SIZE) {
$PAGE_SIZE = $RCMAIL->config->get('pagesize', 50);
}

// Addressbook UI
if (!$RCMAIL->action && !$OUTPUT->ajax_call) {
Expand Down Expand Up @@ -108,15 +112,15 @@ if ($undo = $_SESSION['contact_undo']) {
// instantiate a contacts object according to the given source
function rcmail_contact_source($source=null, $init_env=false, $writable=false)
{
global $RCMAIL, $OUTPUT, $CONFIG, $CONTACT_COLTYPES;
global $RCMAIL, $OUTPUT, $CONTACT_COLTYPES, $PAGE_SIZE;

if (!strlen($source)) {
$source = get_input_value('_source', RCUBE_INPUT_GPC);
}

// Get object
$CONTACTS = $RCMAIL->get_address_book($source, $writable);
$CONTACTS->set_pagesize($CONFIG['pagesize']);
$CONTACTS->set_pagesize($PAGE_SIZE);

// set list properties and session vars
if (!empty($_GET['_page']))
Expand Down Expand Up @@ -391,7 +395,7 @@ function rcmail_rowcount_display($attrib)

function rcmail_get_rowcount_text($result=null)
{
global $CONTACTS, $CONFIG;
global $CONTACTS, $PAGE_SIZE;

// read nr of contacts
if (!$result) {
Expand All @@ -405,7 +409,7 @@ function rcmail_get_rowcount_text($result=null)
'name' => $_SESSION['contactcountdisplay'] ? $_SESSION['contactcountdisplay'] : 'contactsfromto',
'vars' => array(
'from' => $result->first + 1,
'to' => min($result->count, $result->first + $CONFIG['pagesize']),
'to' => min($result->count, $result->first + $PAGE_SIZE),
'count' => $result->count)
));

Expand Down
12 changes: 6 additions & 6 deletions program/steps/addressbook/list.inc
Expand Up @@ -56,13 +56,13 @@ if (!empty($_REQUEST['_search']) && isset($_SESSION['search'][$_REQUEST['_search
ksort($records, SORT_LOCALE_STRING);

// create resultset object
$count = count($records);
$first = ($page-1) * $CONFIG['pagesize'];
$count = count($records);
$first = ($page-1) * $PAGE_SIZE;
$result = new rcube_result_set($count, $first);

// we need only records for current page
if ($CONFIG['pagesize'] < $count) {
$records = array_slice($records, $first, $CONFIG['pagesize']);
if ($PAGE_SIZE < $count) {
$records = array_slice($records, $first, $PAGE_SIZE);
}

$result->records = array_values($records);
Expand All @@ -73,15 +73,15 @@ else {

// get contacts for this user
$result = $CONTACTS->list_records(array('name'));

if (!$result->count && $result->searchonly) {
$OUTPUT->show_message('contactsearchonly', 'notice');
$OUTPUT->command('command', 'advanced-search');
}
}

// update message count display
$OUTPUT->set_env('pagecount', ceil($result->count / $CONFIG['pagesize']));
$OUTPUT->set_env('pagecount', ceil($result->count / $PAGE_SIZE));
$OUTPUT->command('set_rowcount', rcmail_get_rowcount_text($result));

// create javascript list
Expand Down
8 changes: 4 additions & 4 deletions program/steps/addressbook/search.inc
Expand Up @@ -88,7 +88,7 @@ $OUTPUT->send('contactsearch');

function rcmail_contact_search()
{
global $RCMAIL, $OUTPUT, $CONFIG, $SEARCH_MODS_DEFAULT;
global $RCMAIL, $OUTPUT, $SEARCH_MODS_DEFAULT, $PAGE_SIZE;

$adv = isset($_POST['_adv']);
$sid = get_input_value('_sid', RCUBE_INPUT_GET);
Expand Down Expand Up @@ -198,8 +198,8 @@ function rcmail_contact_search()
$result = new rcube_result_set($count);

// cut first-page records
if ($CONFIG['pagesize'] < $count) {
$records = array_slice($records, 0, $CONFIG['pagesize']);
if ($PAGE_SIZE < $count) {
$records = array_slice($records, 0, $PAGE_SIZE);
}

$result->records = array_values($records);
Expand Down Expand Up @@ -228,7 +228,7 @@ function rcmail_contact_search()

// update message count display
$OUTPUT->command('set_env', 'search_request', $search_request);
$OUTPUT->command('set_env', 'pagecount', ceil($result->count / $CONFIG['pagesize']));
$OUTPUT->command('set_env', 'pagecount', ceil($result->count / $PAGE_SIZE));
$OUTPUT->command('set_rowcount', rcmail_get_rowcount_text($result));
// Re-set current source
$OUTPUT->command('set_env', 'search_id', $sid);
Expand Down
38 changes: 25 additions & 13 deletions program/steps/settings/func.inc
Expand Up @@ -157,7 +157,6 @@ function rcmail_user_prefs($current=null)

$blocks = array(
'main' => array('name' => Q(rcube_label('mainoptions'))),
'list' => array('name' => Q(rcube_label('listoptions'))),
);

// language selection
Expand All @@ -175,7 +174,7 @@ function rcmail_user_prefs($current=null)
);
}

// show page size selection
// timezone selection
if (!isset($no_override['timezone'])) {
$field_id = 'rcmfd_timezone';
$select_timezone = new html_select(array('name' => '_timezone', 'id' => $field_id,
Expand Down Expand Up @@ -276,17 +275,6 @@ function rcmail_user_prefs($current=null)
);
}

// show page size selection
if (!isset($no_override['pagesize'])) {
$field_id = 'rcmfd_pgsize';
$input_pagesize = new html_inputfield(array('name' => '_pagesize', 'id' => $field_id, 'size' => 5));

$blocks['list']['options']['pagesize'] = array(
'title' => html::label($field_id, Q(rcube_label('pagesize'))),
'content' => $input_pagesize->show($config['pagesize']),
);
}

// show drop-down for available skins
if (!isset($no_override['skin'])) {
$skins = rcmail_get_skins();
Expand Down Expand Up @@ -378,6 +366,17 @@ function rcmail_user_prefs($current=null)
);
}

// show page size selection
if (!isset($no_override['pagesize'])) {
$field_id = 'rcmfd_pagesize';
$input_pagesize = new html_inputfield(array('name' => '_pagesize', 'id' => $field_id, 'size' => 5));

$blocks['main']['options']['pagesize'] = array(
'title' => html::label($field_id, Q(rcube_label('pagesize'))),
'content' => $input_pagesize->show($config['pagesize']),
);
}

if (!isset($no_override['keep_alive'])) {
$field_id = 'rcmfd_keep_alive';
$select_keep_alive = new html_select(array('name' => '_keep_alive', 'id' => $field_id));
Expand Down Expand Up @@ -690,6 +689,19 @@ function rcmail_user_prefs($current=null)
);
}

// show addressbook page size selection
if (!isset($no_override['addressbook_pagesize'])) {
$field_id = 'rcmfd_addressbook_pagesize';
$input_pagesize = new html_inputfield(array('name' => '_addressbook_pagesize', 'id' => $field_id, 'size' => 5));

$size = $config['addressbook_pagesize'] ? $config['addressbook_pagesize'] : $config['pagesize'];

$blocks['main']['options']['pagesize'] = array(
'title' => html::label($field_id, Q(rcube_label('pagesize'))),
'content' => $input_pagesize->show((int)$size),
);
}

break;

// Special IMAP folders
Expand Down

0 comments on commit 08ffd93

Please sign in to comment.