Skip to content

Commit

Permalink
Fixed unique GUIDs, improved dependency documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
grayside committed Aug 31, 2010
1 parent 1176089 commit db096c2
Show file tree
Hide file tree
Showing 11 changed files with 378 additions and 37 deletions.
14 changes: 11 additions & 3 deletions README.mdown 100644 → 100755
Expand Up @@ -4,9 +4,17 @@ OA Feeds provides *outgoing* RSS feeds for Open Atrium. Currently supporting the
activity). This module is not related to the Feeds module or the Atrium Reader feature.

## Where to Go To See Something
1. Visit a user's profile. There is a block there.
2. Customize the dashboard at admin/settings/dashboard adding OA Feeds blocks.
3. http://example.com/dashboard/all/feed
* Visit a user's profile. There is a block there.
* Customize the dashboard at admin/settings/dashboard adding OA Feeds blocks.
* http://example.com/dashboard/all/feed

## Installation
1. Get this Feature.
2. Get views_rss. For proper activity path handling, get the patch here:
http://drupal.org/node/589904#comment-3394232

## Configuration
* Set the Site Mission Statement in admin/settings/site-information. This is used as the Feed Description.

## Architecture

Expand Down
Empty file modified grayside_oa_feeds.features.inc 100644 → 100755
Empty file.
Empty file modified grayside_oa_feeds.features.user_permission.inc 100644 → 100755
Empty file.
3 changes: 3 additions & 0 deletions grayside_oa_feeds.info 100644 → 100755
@@ -1,6 +1,9 @@
core = "6.x"
dependencies[] = "atrium_activity"
dependencies[] = "comment"
dependencies[] = "features"
dependencies[] = "og_views"
dependencies[] = "spaces"
dependencies[] = "strongarm"
dependencies[] = "tokenauth"
dependencies[] = "views_rss"
Expand Down
Empty file modified grayside_oa_feeds.install 100644 → 100755
Empty file.
Empty file modified grayside_oa_feeds.module 100644 → 100755
Empty file.
Empty file modified grayside_oa_feeds.strongarm.inc 100644 → 100755
Empty file.
32 changes: 32 additions & 0 deletions grayside_oa_feeds.views.inc
@@ -0,0 +1,32 @@
<?php
// $Id$

/**
* Implementation of hook_views_handlers().
*/
function grayside_oa_feeds_views_handlers() {
return array(
'info' => array(
'path' => drupal_get_path('module', 'grayside_oa_feeds') .'/includes',
),
'handlers' => array(
'grayside_oa_feeds_handler_field_activity_id' => array(
'parent' => 'atrium_activity_handler_field_activity',
),
),
);
}

/**
* Implementation of hook_views_data().
*/
function grayside_oa_feeds_views_data() {
$data = array();
$data['comments']['atrium_activity_id'] = array(
'real field' => 'cid',
'title' => t('Activity ID'),
'help' => t("Unique ID for a poor man's activity."),
'field' => array('handler' => 'grayside_oa_feeds_handler_field_activity_id'),
);
return $data;
}

0 comments on commit db096c2

Please sign in to comment.