Maintainers monitor issues, but fast responses are not guaranteed.

Add Javascript field

this module create custom field that let user add external javascript files to each node.

Passwordless login

Passwordless login provides those with administration permissions the ability to allow certain users to login with just their username.

Node Revision Bulk Delete

This small module gives an extra feature to delete manually all revisions of a specific node prior a selected one.

Iframe Field

Creates an Iframe field type fro embedding Iframes as fields

Enhanced Page Cache

Features

Attention: This module needs a core patch to work!
The core patch required for this module allows you to alter the page cache id and the page cache object.
The module uses this new functionality to provide the ability to:

  • Exclude paths from page caching
  • Use the same cache entry for http / https pages - url's are automatically rewritten to be protocol relative
  • Use custom cache expiration times
  • Use relative cache expiration times - e.g. tomorrow

Installation

  • Install as usual, see http://drupal.org/node/70151 for further information.
  • Apply core patch shipped with the module or manually change the core code
    according to the documentation of the changes in "Core Changes"
  • Enable page caching: admin/config/development/performance
    • Enable "Cache pages for anonymous users"
    • Configure the default cache lifetimes.

Core Changes

drupal_page_get_cache() in includes/bootstrap.inc

Original Code:

  $cache = cache_get($base_root . request_uri(), 'cache_page');

New Code:
<?php
$cid = $base_root . request_uri();
// Allow modules to alter the cid.
drupal_alter('page_cache_cid', $cid);

Views content breadcrumb

Views content breadcrumb

Name: Views content breadcrumb
Description: Create breadcrumb for view page and panel_pane display.
Drupal 7

Pages

Subscribe with RSS Subscribe to RSS - Minimally maintained