Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15426788
D16898.id40677.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D16898.id40677.diff
View Options
diff --git a/src/applications/calendar/controller/PhabricatorCalendarExportICSController.php b/src/applications/calendar/controller/PhabricatorCalendarExportICSController.php
--- a/src/applications/calendar/controller/PhabricatorCalendarExportICSController.php
+++ b/src/applications/calendar/controller/PhabricatorCalendarExportICSController.php
@@ -82,6 +82,9 @@
$saved->setParameter('rangeEnd', null);
$saved->setParameter('upcoming', null);
+ // The "month" and "day" display modes imply time ranges.
+ $saved->setParameter('display', 'list');
+
$query = $engine->buildQueryFromSavedQuery($saved);
$events = $query
diff --git a/src/applications/calendar/query/PhabricatorCalendarEventQuery.php b/src/applications/calendar/query/PhabricatorCalendarEventQuery.php
--- a/src/applications/calendar/query/PhabricatorCalendarEventQuery.php
+++ b/src/applications/calendar/query/PhabricatorCalendarEventQuery.php
@@ -172,7 +172,6 @@
}
$raw_limit = $this->getRawResultLimit();
-
if (!$raw_limit && !$this->rangeEnd) {
throw new Exception(
pht(
diff --git a/src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php b/src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php
--- a/src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php
+++ b/src/applications/calendar/query/PhabricatorCalendarEventSearchEngine.php
@@ -82,6 +82,18 @@
);
}
+ public function buildQueryFromSavedQuery(PhabricatorSavedQuery $saved) {
+ $query = parent::buildQueryFromSavedQuery($saved);
+
+ // If this is an export query for generating an ".ics" file, don't
+ // build ghost events.
+ if ($saved->getParameter('export')) {
+ $query->setGenerateGhosts(false);
+ }
+
+ return $query;
+ }
+
protected function buildQueryFromParameters(array $map) {
$query = $this->newQuery();
$viewer = $this->requireViewer();
@@ -125,13 +137,7 @@
$query->withImportSourcePHIDs($map['importSourcePHIDs']);
}
- // Generate ghosts (and ignore stub events) if we aren't querying for
- // specific events or exporting.
- if (!empty($map['export'])) {
- // This is a specific mode enabled by event exports.
- $query
- ->withIsStub(false);
- } else if (!$map['ids'] && !$map['phids']) {
+ if (!$map['ids'] && !$map['phids']) {
$query
->withIsStub(false)
->setGenerateGhosts(true);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 24, 10:50 AM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7386745
Default Alt Text
D16898.id40677.diff (2 KB)
Attached To
Mode
D16898: Fix a couple of calendar export daterange issues
Attached
Detach File
Event Timeline
Log In to Comment