module
Categories: User Management
Maintenance status: Actively maintained
Development status: Under active development
Downloads: 0
created - / changed -

Will map existing users with an entry in LDAP to LDAP authentication.

module
Maintenance status: Actively maintained
Development status: Maintenance fixes only
Downloads: 1437
created - / changed -

Purpose: White list admins when they log in so they can submit html content without the cloudflare challenge screen.

module
Categories: Security
Maintenance status: Minimally maintained
Development status: Maintenance fixes only
Downloads: 879
created - / changed -

Diceware.module adds a block with diceware password samples to the site.

module
Categories: Site Navigation
Maintenance status: Actively maintained
Development status: Under active development
Downloads: 0
created - / changed -

Suri (Strict URI) is an attempt to reduce "duplicate content" on websites.

module
Categories: Filters/Editors
Maintenance status: Minimally maintained
Development status: Under active development
Downloads: 0
created - / changed -

Overview

Drupal 7

module
Categories: (нет)
Maintenance status: Minimally maintained
Development status: Under active development
Downloads: 0
created - / changed -

An alternative renderer for displaying imagefield images attached to nodes

Wrapper around the "magazine layout" algorithm described by
Harvey Kane at alistapart 2006.

This uses clever maths to shift a set of disparate images into an aesthetic grid-like rectangle.

Choose "Magazine Layout" in the "Display fields" administration for your content type on an imagefield.
That's it. The rest is done by magic.

module
Categories: Drush, Utility
Maintenance status: Actively maintained
Development status: Under active development
Downloads: 0
created - / changed -

eSync will sync code and database changes on different servers without bringing down the server. eSync will use drush commands for same. Basically its GUI Deployment process using drush.

module
Categories: Content
Maintenance status: Minimally maintained
Development status: Maintenance fixes only
Downloads: 2495
created - / changed -

Automatically (configurably) adds nodes to nodequeues.

Settings on admin/structure/nodequeue/settings.

module
Categories: Novelty
Maintenance status: Minimally maintained
Development status: Maintenance fixes only
Downloads: 788
created - / changed -

Allows you to install random modules or themes for your Drupal site.

To not be quite so evil, the module will only download modules with releases and not any dev releases.

module
Maintenance status: Minimally maintained
Development status: Maintenance fixes only
Downloads: 2643
created - / changed -

Commerce Suomen Verkkomaksut integrates Suomen Verkkomaksut payment method with Dr

module
Categories: User Management
Maintenance status: Actively maintained
Development status: Maintenance fixes only
Downloads: 7349
created - / changed -

Adds the password set form as an optional fields on the one click login.

module
Maintenance status: Minimally maintained
Development status: Under active development
Downloads: 1170
created - / changed -

This module provides access to the latest Knockout JavaScript Library

module
Categories: (нет)
Maintenance status: Actively maintained
Development status: Under active development
Downloads: 0
created - / changed -

Overview

CCTV brings IP Camera footage management (recording and retention) to Drupal.

module
Categories: Media
Maintenance status: Actively maintained
Development status: Under active development
Downloads: 0
created - / changed -

A module to add default fields to the image file entity bundle, for title, alt text and caption.
This aims to answer the use following case:

module
Categories: (нет)
Maintenance status: Minimally maintained
Development status: No further development
Downloads: 712
created - / changed -

This module allows Ubercart to process payments using the GMO Payment Gateway.

module
Categories: (нет)
Maintenance status: Actively maintained
Development status: Under active development
Downloads: 0
created - / changed -

The functionality of the D7 version of textcaptcha (formally text_capture) is different from the D5 version.

module
Maintenance status: Minimally maintained
Development status: Maintenance fixes only
Downloads: 0
created - / changed -

About

module
Maintenance status: Actively maintained
Development status: Under active development
Downloads: 0
created - / changed -

This module will transform the Default uc_catalog block into a Accordion Style menu.

module
Maintenance status: Actively maintained
Development status: Under active development
Downloads: 2214
created - / changed -

Allows your Drupal site to gather statistics on how many times your content (and other entity types) have been "shared" with social/sharing services like Twitter, Google+, Facebook, etc.

module
Categories: (нет)
Maintenance status: Actively maintained
Development status: Under active development
Downloads: 12045
created - / changed -

What this module does

This module provides a foundation for the development of Backbone.js apps with Drupal. Using this module, you can build complex interactive interfaces with little to no server side code, basic content type configurations, leveraging Drupal's field and entity types and Backbone's power on the client side.

It contains classes for working with Drupal nodes, node listings and views in Backbone Apps. Want to load a view and change the title of the first node? Here's the code:

var viewCollection = new Drupal.Backbone.Collections.NodeView();
viewCollection.viewName = 'backbone_example';
viewCollection.fetch({success: function() {
  viewCollection.at(0).set('title', 'New Title');
  viewCollection.at(0).save();
});