-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5117 from wolfsage/cassandane-tiny-strict-warnings
Cassandane::Tiny: Import strict/warnings to consumers
- Loading branch information
Showing
73 changed files
with
190 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,8 @@ | |
# | ||
|
||
package Cassandane::BuildInfo; | ||
use strict; | ||
use warnings; | ||
use JSON; | ||
|
||
use lib '.'; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,31 +53,31 @@ EOF | |
); | ||
|
||
xlog $self, "Change DURATION"; | ||
my ($href, $ical) = $create_event->(); | ||
($href, $ical) = $create_event->(); | ||
$ical =~ s/DURATION:PT1H/DURATION:PT2H/; | ||
$caldav->Request('PUT', $href, $ical, 'Content-Type' => 'text/calendar'); | ||
$self->assert_caldav_notified( | ||
{ recipient => '[email protected]', method => 'REQUEST' }, | ||
); | ||
|
||
xlog $self, "Change DTSTART TZID to different UTC offset"; | ||
my ($href, $ical) = $create_event->(); | ||
($href, $ical) = $create_event->(); | ||
$ical =~ s/Perth/Melbourne/; | ||
$caldav->Request('PUT', $href, $ical, 'Content-Type' => 'text/calendar'); | ||
$self->assert_caldav_notified( | ||
{ recipient => '[email protected]', method => 'REQUEST' }, | ||
); | ||
|
||
xlog $self, "Change TZID to same UTC offset using IANA alias"; | ||
my ($href, $ical) = $create_event->(); | ||
($href, $ical) = $create_event->(); | ||
$ical =~ s/Perth/West/; | ||
$caldav->Request('PUT', $href, $ical, 'Content-Type' => 'text/calendar'); | ||
$self->assert_caldav_notified( | ||
{ recipient => '[email protected]', method => 'REQUEST' }, | ||
); | ||
|
||
xlog $self, "Change DURATION TO DTEND"; | ||
my ($href, $ical) = $create_event->(); | ||
($href, $ical) = $create_event->(); | ||
$ical =~ s/DURATION:PT1H/DTEND;TZID=Australia\/Perth:20240925T020000/; | ||
$caldav->Request('PUT', $href, $ical, 'Content-Type' => 'text/calendar'); | ||
# Does not trigger an iTIP message, see Caldav.invite_switch_duration_to_dtend | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.