Please update info file in HEAD according to new Druapl 6 .info standard (dependencies) as attached below.

CommentFileSizeAuthor
event_info.patch324 bytesmiro_dietiker
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

miro_dietiker’s picture

Status: Active » Needs review

Please review and commit.

miro_dietiker’s picture

Status: Needs review » Active

Well.. after checking the code it doesn't look like there's a working D6 version.
This branch is not ready to use.

It should be inactivated or we need something like a description about its state...

We've finally migrated to date.module as cck field, added a start field with optional end date and added calendar.module to bring in a great calendar views support. No more event.module needed.
The only thing to do is "manual" data migration from {event} to CCK field (field_date) which can be done with a single SQL query.
Something like:

UPDATE content_type_event AS ce
LEFT JOIN event AS e
ON e.vid=ce.vid
SET ce.field_date_value = e.date_start,
ce.field_date_value2 = e.date_end

The SQL is not yet exactly confirmed to work, but we've done something similar successfully.

Have fun migrating! Hope it helps.

crystaldawn’s picture

Status: Active » Closed (fixed)

I've uploaded a new development snapshot that closes all of the drupal 6 / views API 2 problems. Closing all issues related to this problem.