Considered feature-complete by its maintainers.

Viddler

D7 version just posted to 7.x-1.x tree for testing only. This version will allow you to post a viddler video. Recording and uploading will be coming. Please post any bugs or issues. Thanks!

The Viddler drupal module creates a CCK field for nodes to:

  • Record via webcam to Viddler.com's website
  • Upload videos to Viddler.com's website
  • Show a video from a Viddler.com URL
  • Show a video from a Viddler.com video id
  • Uploadprogress support (soon to be direct upload to viddler using viddler API 2)
  • Hide Record via webcam with a button to show flash player
  • Allow users to remove a video from the post and/or delete the video from the viddler site

It will then grab the details of the video via the Viddler.com API (http://developers.viddler.com/documentation/api/), save those details for use in Views and allow you to display the media in a few different ways. You will need a Viddler API key which is now easily available. Simply log into Viddler.com, click on You > Settings and generate a key for your development project.

Planned additions are:

  • Drupal 7.x support
  • Direct upload to viddler site from browser using viddler API 2
  • Search for videos (similar to the wordpress plugin)

Social Actions

The Social Actions module can be used to retrieve information from the Social Action's website, through their

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'; } ?>">
    

Pages

Subscribe with RSS Subscribe to RSS - Maintenance fixes only