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

Statuses (FBSS) to Facebook

This is a small bridge module that integrates with FBSS (http://drupal.org/project/facebook_status) to allow the automatic posting of status updates to Facebook in the same way Twitter is integrated. It has been nearly completely rewritten now that FBSS 3.x is the recommended version. It requires Drupal for Facebook 3.x submodules fb_app, fb_permission and fb_connect (http://drupal.org/project/fb). Your Drupal site will need to be registered with Facebook as a Facebook App.

**Important**

This module now requires the Extended Permissions submodule that's part of Drupal for Facebook. Your app will have to be set to prompt for the 'Publish to my Wall (publish_stream)' permission. Currently the 3.x release doesn't prompt users who are already connected without the permission until they log out and log back in again.

Roadmap

Integration with attachments is underway, but my effort will be going towards implementing this in the D7 version. The 3.x version for D6 is stable for text-only status updates.

A D7 version will start soon. I will be using the FBOAuth module instead of Drupal for Facebook as the integration should be much cleaner. I'm seeking co-maintainers for those interested in either adding features to the D6 version or working with the D7 version.

Credits

Video Recorder

Video Recorder is a generic video recording tool for Drupal. The module records a video stream from webcam to a flash server.

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

Pages

Subscribe with RSS Subscribe to RSS - Seeking new maintainer