From f634f8b8a69271b14cff032ab49e47f9b0408290 Mon Sep 17 00:00:00 2001 From: Robert Rollins Date: Fri, 6 Mar 2015 10:54:30 -0800 Subject: [PATCH] Changed some documentation. --- date_ical.module | 2 +- includes/date_ical_plugin_row_ical_entity.inc | 4 ++-- includes/date_ical_plugin_style_ical_feed.inc | 2 +- libraries/ParserVcalendar.inc | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/date_ical.module b/date_ical.module index f9c314f..530b283 100644 --- a/date_ical.module +++ b/date_ical.module @@ -10,7 +10,7 @@ * value of the iCal feeds created by Date iCal. It's primarily used for * debugging. */ -define('DATE_ICAL_VERSION', '3.3'); +define('DATE_ICAL_VERSION', '3.4-dev'); /** * Exception class for generic exceptions thrown by this module. diff --git a/includes/date_ical_plugin_row_ical_entity.inc b/includes/date_ical_plugin_row_ical_entity.inc index 0c664da..c2b108a 100644 --- a/includes/date_ical_plugin_row_ical_entity.inc +++ b/includes/date_ical_plugin_row_ical_entity.inc @@ -67,9 +67,9 @@ class date_ical_plugin_row_ical_entity extends views_plugin_row { // The surrounding
ensures that the settings dialog expands. '#prefix' => '
', '#suffix' => '
', - '#markup' => t("Each item's Title and iCal view mode will be included as the SUMMARY and DESCRIPTION elements (respectively) in the VEVENTs output by this View. + '#markup' => t("Each item's Title will be the SUMMARY and the rendered iCal view mode will be the DESCRIPTION in the VEVENTs output by this View.
To change the iCal view mode, configure it on the 'Manage Display' page for each Content Type. - Please note that HTML will be stripped from the output (link URLs will become footnotes), to comply with iCal standards."), + Please note that all HTML will be stripped from the output, to comply with iCal standards."), ); // Build the select dropdown for the text/node_reference field that the user diff --git a/includes/date_ical_plugin_style_ical_feed.inc b/includes/date_ical_plugin_style_ical_feed.inc index fa98703..0cf5a82 100644 --- a/includes/date_ical_plugin_style_ical_feed.inc +++ b/includes/date_ical_plugin_style_ical_feed.inc @@ -405,7 +405,7 @@ class date_ical_plugin_style_ical_feed extends views_plugin_style { } } - // These steps shouldn't be run when during Preview on the View page. + // These steps shouldn't be run during Preview on the View page. if (empty($this->view->live_preview)) { // Prevent devel module from appending queries to ical export. $GLOBALS['devel_shutdown'] = FALSE; diff --git a/libraries/ParserVcalendar.inc b/libraries/ParserVcalendar.inc index 0b5d842..dd80019 100644 --- a/libraries/ParserVcalendar.inc +++ b/libraries/ParserVcalendar.inc @@ -91,7 +91,7 @@ class ParserVcalendar { $this->timezones[] = $component; } - // This content array is used by date_ical_import_component_alter() and + // This context array is used by date_ical_import_component_alter() and // date_ical_import_parsed_data_alter(). $context2 = array( 'calendar' => $this->calendar, -- GitLab