Jump to Navigation

Blog da Chuva Inc.

DrupalDay Campinas is tomorrow!

To start the new year off on right foot, we will be hosting tomorrow the first Brazilian event of 2012 – DrupalDay Campinas.

Even though the event has been announced just three weeks ago, more than 160 people signed up.

Fixing: [blocks B ] <app-admin/logrotate ("<app-admin/logrotate" is blocking sys-apps/portage)

[blocks B ] <app-admin/logrotate ("<app-admin/logrotate" is blocking sys-apps/portage)

If you ever find this error while updating portage, simply emerge logrotate BEFORE emerging portage and you will be all set. :)

DrupalCamp Foz next week

Next week, from October 19th to 21st, we will be hosting the DrupalCamp Foz, in Foz do Iguaçu, near the world-famous Iguaçu falls.

Chuva is proud to be sponsoring this event and having people both in the organizing team and presenting talks at the Camp.


Iguaçu falls

The event will take place alongside LatinoWare, one of the biggest open source events in Latin America, with more than 3.500 attendees confirmed so far. At DrupalCamp Foz, both Dries Buytaert and Ramus Lerdorf have confirmed their presence.

The event venue will be none other than the Itaipu Dam, the largest operating hydroelectric power station in the world(1) and considered one of the seven modern wonders of the world.


Itaipu Dam at Night

ze's picture

A D7 beta version for SMTP module

We've released a beta version of SMTP module for Drupal 7.

One great thing about this new version is that you no longer need to download PHPMailer separately. Almost all the work on this Drupal 7 version is due to yettin (Joakim Schramm), and it's been working like a charm.

See the release notes or download the new version.

Textimage 7.x-2.0 Alpha released!

This morning I've released an alpha version from Textimage for Drupal 7, I've also merged the github fork from the module back to our drupal.org repo.

Thanks for all textimage's contributors for working in this release, testers are welcome :)

And last but not least, I've also released a new 6.x version from Textimage, 6.x-2.2 which is mainly a bug fix release from our previous version.

Here is the changelog for both versions:

Drupal Lusófono and Drupal Latino BoF Sessions

As you know, this week we Drupalistas gather together in Croydon, London. It's a nice opportunity learn things, get along with our friends and meet new people.
To streghten our ties with the rest of the community we're organizing two BoF sessions:

ze's picture

Indigenous peoples using Drupal: Kanhgág Jógo

A few years ago, we've been "recruited" by a Linguistics professor to help build a website for the Kaingang people to use.

I've met professor Wilmar D'Angelis when I studied Linguistics at the University of Campinas, where he is a researcher on South American indigenous languages. He has worked with a lot of indigenous nations in Brazil, amongst them the Kaingangs, a nation of ~30 thousand people from Southern Brazil (mainly Paraná and Santa Catarina), part of them living in villages in the pine forests, some of them living near or in cities and towns.

There are currently a little less than 200 indigenous languages in Brazil and Kaingang language is one of the healthiest, since in many villages it's still spoken as a first language. At the same time, this group is pretty much integrated into white culture, having access to technology, computers and Internet. Of course, most of times, this "integration" is, well, less than "nice", but in recent decades there have been some positive points to mention. Namely, (i) public schools built in or nearby the villages, with some courses in native language; and (ii) open doors for many Kaingangs to take graduate in State Universities.

Thus, the question is not whether the Kaingangs will be connected Internet or not, they already are. The question is what web they will have for them, whether they will have it only in Portuguese of if they will be able to use their own language. The efforts are, therefore, towards enabling native peoples to use the Internet in native languages (and with a certain degree of autonomy).

Drupal, of course. What else?

And that's where we came aboard.

ze's picture

Drupal Summit Latino

'Tamos en Lima!

It's the last day of Drupal Summit Latino and we're here blogging directly from the UNI (by the way, what a nice acronym for a university), where people all across South and Latin America are gathered for Drupal. From Uruguay to Nicaragua, from Brazil to Spain, we're here to talk about Drupal and to do Drupal.

Backup and Migrate Dropbox released

Backup and Migrate simplifies the task of backing up your Drupal installation, it's very handy specially when you administer several Drupal installations, but sometimes you want to store you're backup outside your server.

B&M itself support several destinations (from mirroring to another MySQL database to FTP download) and now using Backup and Migrate Dropbox you can export your backups directly to your Dropbox account.

To start saving your backups to Dropbox you just need to:

Using Context 3.x and Zen 2.x together

If you're using Context module in your site, and Zen as your base theme, when you upgrade to Context 3, your site will probably broke, this can be fixed quickly by editing your template.php and add this code in your hook_blocks:

<?php
function _blocks($region, $show_blocks = NULL) {
if (module_exists("context")){

// Since Drupal 6 doesn't pass $show_blocks to theme_blocks, we manually call
// theme('blocks', NULL, $show_blocks) so that this function can remember the
// value on later calls.
static $render_sidebars = TRUE;