The current maintainers are looking for new people to take ownership.

Even Better Select

I've created a tabbed extension for betterselect. Other than adding some new classes in PHP to what betterselect already does, it's completely driven by jquery and jquery_ui.

Organic groups e-mail blast

This module enables group admins to send e-mail blasts to group members.

Cache Heuristic

Cache Heuristic keeps track of which cache-entries are loaded a page, and bundles the cache loads by taking advantage of Cache->getMultiple(). Resulting in a reduced number of queries to the caching backend.

To enable, add to settings.php:

Drupal 6

NOTE: Requires Cache Backport

<?php
$conf['cache_backends'] = array(
  'sites/all/modules/cache_heuristic/cache_heuristic.inc'
);

$conf['cache_inc'] = 'sites/all/modules/cache_backport/cache.inc';
$conf['cache_default_class'] = 'HeuristicCache';
$conf['heuristic_cache_default_class'] = 'DrupalDatabaseCache';
?>


Drupal 7

<?php
$conf['cache_backends'] = array(
  'sites/all/modules/cache_heuristic/cache_heuristic.inc'
);

$conf['cache_default_class'] = 'HeuristicCache';
$conf['heuristic_cache_default_class'] = 'DrupalDatabaseCache';

// Example: Use memcach for the menu cache
$conf['heuristic_cache_class_cache_menu'] = 'MemCacheDrupal';
?>

Graceful caching

You can mix and match caching backends, e.g. adding graceful caching to the Drupal 7 example above using Cache Graceful


<?php
$conf['cache_backends'] = array(
'sites/all/modules/cache_graceful/cache_graceful.inc',
'sites/all/modules/cache_heuristic/cache_heuristic.inc',
);

CCK XSLT

xml_style_configuration.png

The development on that module has basically stopped, so consider to use http://drupal.org/project/xsl_formatter instead

External iFrame

Looking for new maintainer

External iFrame opens external links in an iframe with a simple banner consisting of your logo and a button to close the banner and leave your site. This module treats all absolute links outside of your site's domain and sub-domains as external links.

7.x-2.x-rc2 has been released

Organic Groups Mass Add

Overrides the internal "add users" page of Organic Groups with a more powerful alternative.

The D7 branch requires Views bulk operations.

Takes a list where each row can be either:

  1. username
  2. mail address
  3. firstname, lastname, mail address
  4. firstname, lastname, mail address, desired username

In case 1 or if there is an mail address provided, the module first checks if it matches an existing user, and adds that user to the group.

In case 2-4, if there is no matching user, the user will be created (as long as the person submitting the form has permissions to do so). Newly created users will also have a content profile node created for them if enabled (has a settings page).

The usernames are created by trying these alternatives in order:

  1. If one is provided, the suggested username
  2. The first part of the email address (everything before the @)
  3. If both firstname and lastname is provided, "F.L".
    F is x number of letters from firstname, where x starts at 1 and goes up to the full length of firstname.
    L is lastname.
  4. If firstname is provided without lastname, firstname only.
  5. If lastname is provided without firstname, lastname only.

Pages

Subscribe with RSS Subscribe to RSS - Seeking new maintainer