Considered feature-complete by its maintainers.

Fast node access rebuild

This module was designed to solve the specific problem of rebuilding the node access table quickly.
This task would sometimes take the standard Drupal system tens of hours on sites with hundreds of thousands of nodes. Add to this, the fact that the standard drupal node access rebuild removes all access entries before rebuilding, and this can cause a site to be unavailable for many hours if the permissions have to be rebuilt.

The principle of this module is that this process can be sped up by making multiple simultaneous javascript calls to a rebuild script, which processes mutliples nodes at a time.
By adjusting the javascript request interval and the number of nodes to process per request, the module can be tuned for a specific site to make enough concurrent requests to provide a significant speed boost over serial processing, while not overloading the server.
Like the built-in drupal rebuild, the browser page must be left open during the rebuild, as the progress to completion is handled by client-side javascript.

The module works by returning a count of nodes (possibly matching a set of optional filters), calculating the highest and lowest node id within that set, then calculating the range between these. It then divides this range into blocks of node ids, according to the number per block setting on the administration page.

Smiley Slider

Smiley Slider

This is an API module; it just provides a new form element type for use in
other modules. Just set '#type' => 'smileyslider' and optionally set the
#range to a positive integer (it defaults to 10) and the value of the
element when submitted will be an integer between 0 and the #range,
indicating the user's happiness. For example:

  $form['smiley'] = array(
    '#type' => 'smileyslider', // required
    '#range' => 100, // defaults to 10
    '#title' => t('Happiness'), // only shows for users with JS disabled
    '#required' => TRUE,
    '#default_value' => rand(0, 100), // random amount of happiness
  );

Because it only provides a new form element type, this module has no effect on
your site by itself. Another module has to use the form element type.

Meetup Events

The Meetup Events module provides a way to automatically sync events created in your drupal site to meetup.com.

Gallery Link

Gallery Link

Gallery Link provides a field formatter for image fields. You can display images as gallery triggered by a link. You can also use a token for the trigger text.

View Mode Tooltip

This module let's you use an entity view mode as a tooltip. By default it works with fields of type "text".

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only