Considered feature-complete by its maintainers.

MySQL Report

One of the standard tools used by DBAs for tuning MySQL databases is mysqlreport, a cool script written in Perl.

ImagePlacement

Allows drag'n'drop placement of Imagefield/Imagecache images into nodes by providing a "Place images" local task right beside the normal "Edit" link of a node. For the moment it is limited to floating left and right and getting placed to the top or bottom of the node's body, inserting into paragraphs will be coming soon.

Installation

  1. First follow normal module installation procedures.
  2. Modify your node.tpl.php file slightly to make the container div have a different element ID if it's a teaser or full node. Don't worry, it's pretty easy and shouldn't break your theme, if so, it's probably already broken ;) You need to add <?php if ($teaser) { print '-teaser'; } ?> in what looks like:
    <div id="node-<?php print $node->nid; ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
    

    Which becomes:

    <div id="node-<?php print $node->nid; ?><?php if ($teaser) { print '-teaser'; } ?>" class="node<?php if ($sticky) { print ' sticky'; } ?><?php if (!$status) { print ' node-unpublished'; } ?>">
    

Wysiwyg API CCK Integration

This module will not be ported to Drupal 7, because all of the problems that it solves are natively solved in Drupal 7 core and Drupal 7 Wysiwyg.

If you're using the Wysiwyg API module for a CCK text field, and you have the "number of values" for that text field set to unlimited, you may be encountering some problems:

1. When you use drag-and-drop to re-order the items, and the row you're dragging has the editor enabled, you may encounter problems depending on the editor you use. For example, with tinymce, you lose data. With fckeditor, you get slow and annoying refreshes.

2. When you click "Add another item", you lose data typed into the other items' enabled editors since the node was last saved or the editors were last disabled.

This module attempts to fix both problems. It is designed to work with the 6.x-2.0 version of the Wysiwyg API module, and has not been tested with either the 1.x or 3.x versions of Wysiwyg API. I hope that this module is short-lived and that the corresponding fixes get rolled into the Wysiwyg API module. However, I'm making it available in the meantime as its own module, so that anyone needing this functionality now can make use of it.

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only