=== modified file 'sites/all/modules/groupsdrupalorg/groupsorg.module'
--- sites/all/modules/groupsdrupalorg/groupsorg.module	2011-12-27 22:37:15 +0000
+++ sites/all/modules/groupsdrupalorg/groupsorg.module	2012-03-06 19:35:55 +0000
@@ -238,7 +238,7 @@
         $output .= '<p>'. t('Note that you have many more opportunities for subscription and reading if you are a logged in user to this site.  You might wish to <a href="/user/login">login</a> or <a href="/user/register">register</a> now.'). '</p>';
       }
       return $output;
-    case 'event':
+    case 'events/calendar':
       $items[] = l(t('Create an event'), 'node/add/event'). t('. You may optionally affiliate your event with groups.');
       $items[] = t('You might be interested in our site-wide <a href="!url">Ical feed</a>. Also, each group maintains its own feed. Look for the <a href="!url"><img src="/sites/all/modules/date/images/ical16x16.gif" alt="calendar icon"></a>&nbsp; in the Group Events block.', array('!url' => url('ical')));
       return (theme('item_list', $items));

=== modified file 'sites/all/themes/bluecheese/styles/styles.css'
--- sites/all/themes/bluecheese/styles/styles.css	2012-01-11 21:01:23 +0000
+++ sites/all/themes/bluecheese/styles/styles.css	2012-03-06 19:52:14 +0000
@@ -2432,3 +2432,38 @@
 .form-radios .form-item {
   margin: 0.25em 0;
 }
+
+/* GDO upcoming events styling */
+
+.view-events-frontpage .view-header {
+  margin-bottom:30px;
+}
+
+.view-events-frontpage ul {
+  list-style: none;
+  padding:3px;
+  margin-left: -26px;
+}
+
+.view-events-frontpage li {
+  width: 200px;
+  height: 90px;
+  margin: 0 5px 10px 0 !important;
+  float: left;
+}
+
+.view-events-frontpage .view-content {
+  clear: both;
+}
+
+.view-events-frontpage .field-content {
+  display: table-cell;
+}
+
+.view-events-frontpage .views-field-title {
+  font-size: 1.15em;
+}
+
+.view-events-frontpage .views-field-title-1 {
+  display: inline;
+}

=== added file 'sites/all/themes/bluecheese/views-view-field--field-start7-value.tpl.php'
--- sites/all/themes/bluecheese/views-view-field--field-start7-value.tpl.php	1970-01-01 00:00:00 +0000
+++ sites/all/themes/bluecheese/views-view-field--field-start7-value.tpl.php	2012-03-06 19:10:37 +0000
@@ -0,0 +1,35 @@
+<?php
+ /**
+ * This template is used to print a single field in a view. It is not
+ * actually used in default Views, as this is registered as a theme
+ * function which has better performance. For single overrides, the
+ * template is perfectly okay.
+ *
+ * Variables available:
+ * - $view: The view object
+ * - $field: The field handler object that can process the input
+ * - $row: The raw SQL result that can be used
+ * - $output: The processed output that will normally be used.
+ *
+ * When fetching output from the $row, this construct should be used:
+ * $data = $row->{$field->field_alias}
+ *
+ * The above will guarantee that you'll always get the correct data,
+ * regardless of any changes in the aliasing that might happen if
+ * the view is modified.
+ */
+?>
+<?php 
+  $startmonth = date("F",($row->node_data_field_start7_field_start7_value));
+  $endmonth = date("F",($row->node_data_field_start7_field_start7_value2));
+  $startmonthday = date("F j",($row->node_data_field_start7_field_start7_value));
+  $endday = date("j",($row->node_data_field_start7_field_start7_value2));
+  $endmonthday = date("F j",($row->node_data_field_start7_field_start7_value2));
+  if ($startmonthday === $endmonthday) {
+    print $startmonthday;
+  } elseif  ($startmonth === $endmonth) {
+    print ($startmonthday . " - " . $endday);
+  } else {
+    print ($startmonthday . " - " . $endmonthday);
+  }
+?>

=== added file 'sites/all/themes/bluecheese/views-view-field--new-events--title-1.tpl.php'
--- sites/all/themes/bluecheese/views-view-field--new-events--title-1.tpl.php	1970-01-01 00:00:00 +0000
+++ sites/all/themes/bluecheese/views-view-field--new-events--title-1.tpl.php	2012-03-06 19:14:33 +0000
@@ -0,0 +1,22 @@
+<?php
+  /**
+  * This template is used to print a single field in a view. It is not
+  * actually used in default Views, as this is registered as a theme
+  * function which has better performance. For single overrides, the
+  * template is perfectly okay.
+  *
+  * Variables available:
+  * - $view: The view object
+  * - $field: The field handler object that can process the input
+  * - $row: The raw SQL result that can be used
+  * - $output: The processed output that will normally be used.
+  *
+  * When fetching output from the $row, this construct should be used:
+  * $data = $row->{$field->field_alias}
+  *
+  * The above will guarantee that you'll always get the correct data,
+  * regardless of any changes in the aliasing that might happen if
+  * the view is modified.
+  */
+?>
+<?php print ('Posted in: ' . $output); ?>

