[Pkg-owncloud-commits] [php-sabre-vobject] 09/16: Merge branch '3.4'

David Prévot taffit at moszumanska.debian.org
Tue Jan 5 03:10:29 UTC 2016


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch master
in repository php-sabre-vobject.

commit 329eb68b8709f921f0f3ba75271e4838e53e561c
Merge: e1de18a 05e0d78
Author: Evert Pot <me at evertpot.com>
Date:   Thu Dec 31 13:10:23 2015 -0500

    Merge branch '3.4'

 CHANGELOG.md                                        | 9 ++++++++-
 LICENSE                                             | 2 +-
 lib/Cli.php                                         | 2 +-
 lib/Component.php                                   | 2 +-
 lib/Component/Available.php                         | 2 +-
 lib/Component/VAlarm.php                            | 2 +-
 lib/Component/VAvailability.php                     | 2 +-
 lib/Component/VCalendar.php                         | 2 +-
 lib/Component/VCard.php                             | 2 +-
 lib/Component/VEvent.php                            | 2 +-
 lib/Component/VFreeBusy.php                         | 2 +-
 lib/Component/VJournal.php                          | 2 +-
 lib/Component/VTimeZone.php                         | 2 +-
 lib/Component/VTodo.php                             | 2 +-
 lib/DateTimeParser.php                              | 2 +-
 lib/Document.php                                    | 2 +-
 lib/ElementList.php                                 | 2 +-
 lib/EofException.php                                | 2 +-
 lib/FreeBusyGenerator.php                           | 2 +-
 lib/ITip/Broker.php                                 | 2 +-
 lib/ITip/ITipException.php                          | 2 +-
 lib/ITip/Message.php                                | 2 +-
 lib/ITip/SameOrganizerForAllComponentsException.php | 2 +-
 lib/Node.php                                        | 2 +-
 lib/Parameter.php                                   | 2 +-
 lib/ParseException.php                              | 2 +-
 lib/Parser/Json.php                                 | 2 +-
 lib/Parser/MimeDir.php                              | 2 +-
 lib/Parser/Parser.php                               | 2 +-
 lib/Property.php                                    | 2 +-
 lib/Property/Binary.php                             | 2 +-
 lib/Property/Boolean.php                            | 2 +-
 lib/Property/FlatText.php                           | 2 +-
 lib/Property/FloatValue.php                         | 2 +-
 lib/Property/ICalendar/CalAddress.php               | 2 +-
 lib/Property/ICalendar/Date.php                     | 2 +-
 lib/Property/ICalendar/DateTime.php                 | 2 +-
 lib/Property/ICalendar/Duration.php                 | 2 +-
 lib/Property/ICalendar/Period.php                   | 2 +-
 lib/Property/ICalendar/Recur.php                    | 2 +-
 lib/Property/IntegerValue.php                       | 2 +-
 lib/Property/Text.php                               | 2 +-
 lib/Property/Time.php                               | 2 +-
 lib/Property/Unknown.php                            | 2 +-
 lib/Property/Uri.php                                | 2 +-
 lib/Property/UtcOffset.php                          | 2 +-
 lib/Property/VCard/Date.php                         | 2 +-
 lib/Property/VCard/DateAndOrTime.php                | 2 +-
 lib/Property/VCard/DateTime.php                     | 2 +-
 lib/Property/VCard/LanguageTag.php                  | 2 +-
 lib/Property/VCard/TimeStamp.php                    | 2 +-
 lib/Reader.php                                      | 2 +-
 lib/Recur/EventIterator.php                         | 2 +-
 lib/Recur/NoInstancesException.php                  | 2 +-
 lib/Recur/RDateIterator.php                         | 2 +-
 lib/Recur/RRuleIterator.php                         | 2 +-
 lib/StringUtil.php                                  | 2 +-
 lib/TimeZoneUtil.php                                | 2 +-
 lib/UUIDUtil.php                                    | 2 +-
 lib/VCardConverter.php                              | 2 +-
 lib/Version.php                                     | 2 +-
 lib/timezonedata/exchangezones.php                  | 2 +-
 lib/timezonedata/lotuszones.php                     | 2 +-
 lib/timezonedata/php-bc.php                         | 2 +-
 lib/timezonedata/php-workaround.php                 | 2 +-
 lib/timezonedata/windowszones.php                   | 2 +-
 66 files changed, 73 insertions(+), 66 deletions(-)

diff --cc CHANGELOG.md
index af08b14,82b1d47..de3bff8
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@@ -1,100 -1,14 +1,107 @@@
  ChangeLog
  =========
  
 +4.0.1 (201?-??-??)
 +------------------
 +
 +* #284: When generating `CANCEL` iTip messages, we now include `DTEND`.
 +  (@kewisch)
 +
 +
 +4.0.0 (2015-12-11)
 +------------------
 +
 +* #274: When creating new vCards, the default vCard version is now 4.0.
 +* #275: `VEVENT`, `VTODO` and `VCARD` now automatically get a `UID` and
 +  `DTSTAMP` property if this was not already specified.
 +* `ParseException` now extends `\Exception`.
 +* `Sabre\VObject\Reader::read` now has a `$charset` argument.
 +* #272: `Sabre\VObject\Recur\EventIterator::$maxInstances` is now
 +  `Sabre\VObject\Settings::$maxRecurrences` and is also honored by the
 +  FreeBusyGenerator.
 +* #278: `expand()` did not work correctly on events with sub-components.
 +
 +
 +4.0.0-beta1 (2015-12-02)
 +------------------------
 +
 +* #258: Support for expanding events that use `RDATE`. (@jabdoa2)
 +* #258: Correctly support TZID for events that use `RDATE`. (@jabdoa2)
 +* #240: `Component\VCalendar::expand()` now returns a new expanded `VCalendar`
 +  object, instead of editing the existing `VCalendar` in-place. This is a BC
 +  break.
 +* #265: Using the new `InvalidDataException` in place of
 +  `InvalidArgumentException` and `LogicException` in all places where we fail
 +  because there was something wrong with input data.
 +* #227: Always add `VALUE=URI` to `PHOTO` properties.
 +* #235: Always add `VALUE=URI` to `URL` properties.
 +* It's now possible to override which class is used instead of
 +  `Component\VCalendar` or `Component\VCard` during parsing.
 +* #263: Lots of small cleanups. (@jakobsack)
 +* #220: Automatically stop recurring after 3500 recurrences.
 +* #41: Allow user to set different encoding than UTF-8 when decoding vCards.
 +* #41: Support the `ENCODING` parameter from vCard 2.1.
 +  Both ISO-8859-1 and Windows-1252 are currently supported.
 +* #185: Fix encoding/decoding of `TIME` values in jCal/jCard.
 +
 +
 +4.0.0-alpha2 (2015-09-04)
 +-------------------------
 +
 +* Updated windows timezone file to support new mexican timezone.
 +* #239: Added a `BirthdayCalendarGenerator`. (@DominikTo)
 +* #250: `isInTimeRange()` now considers the timezone for floating dates and
 +  times. (@armin-hackmann)
 +* Added a duplicate vcard merging tool for the command line.
 +* #253: `isInTimeRange()` now correctly handles events that throw the
 +  `NoInstancesException` exception. (@migrax, @DominikTo)
 +* #254: The parser threw an `E_NOTICE` for certain invalid objects. It now
 +  correctly throws a `ParseException`.
 +
 +
 +4.0.0-alpha1 (2015-07-17)
 +-------------------------
 +
 +* sabre/vobject now requires PHP 5.5.
 +* #244: PHP7 support.
 +* Lots of speedups and reduced memory usage!
 +* #160: Support for xCal a.k.a. RFC6321! (@Hywan)
 +* #192: Support for xCard a.k.a. RFC6351! (@Hywan)
 +* #139: We now accept `DateTimeInterface` wherever it accepted `DateTime`
 +   before in arguments. This means that either `DateTime` or
 +  `DateTimeImmutable` may be used everywhere.
 +* #242: Full support for the `VAVAILABILITY` component, and calculating
 +  `VFREEBUSY` based on `VAVAILABILITY` data.
 +* #186: Fixing conversion of `UTC-OFFSET` properties when going back and
 +  forward between jCal and iCalendar.
 +* Properties, Components and Parameters now implement PHP's `JsonSerializable`
 +  interface.
 +* #139: We now _always_ return `DateTimeImmutable` from any method. This could
 +  potentially have big implications if you manipulate Date objects anywhere.
 +* #161: Simplified `ElementList` by extending `ArrayIterator`.
 +* Removed `RecurrenceIterator` (use Recur\EventIterator instead).
 +* Now using php-cs-fixer to automatically enforce and correct CS.
 +* #233: The `+00:00` timezone is now recognized as UTC. (@c960657)
 +* #237: Added a `destroy()` method to all documents. This method breaks any
 +  circular references, allowing PHP to free up memory.
 +* #197: Made accessing properties and objects by their name a lot faster. This
 +  especially helps objects that have a lot of sub-components or properties,
 +  such as large iCalendar objects.
 +* #197: The `$children` property on components has been changed from `public`
 +  to `protected`. Use the `children()` method instead to get a flat list of
 +  objects.
 +* #244: The `Float` and `Integer` classes have been renamed to `FloatValue`
 +  and `IntegerValue` to allow PHP 7 compatibility.
 +
 +
- 3.4.7 (2015-09-04)
+ 3.4.8 (201?-??-??)
+ ------------------
+ 
+ * #284: When generating `CANCEL` iTip messages, we now include `DTEND`.
+   (@kewisch).
+ 
+ 
+ 3.4.7 (2015-09-05)
  ------------------
  
  * #253: Handle `isInTimeRange` for recurring events that have 0 valid
diff --cc lib/Version.php
index 5494806,070fbdf..ccdffbe
--- a/lib/Version.php
+++ b/lib/Version.php
@@@ -3,9 -3,9 +3,9 @@@
  namespace Sabre\VObject;
  
  /**
 - * This class contains the version number for the VObject package
 + * This class contains the version number for the VObject package.
   *
-  * @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/).
+  * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
   * @author Evert Pot (http://evertpot.com/)
   * @license http://sabre.io/license/ Modified BSD License
   */
diff --cc lib/timezonedata/exchangezones.php
index 131c901,9ff1d08..3813835
--- a/lib/timezonedata/exchangezones.php
+++ b/lib/timezonedata/exchangezones.php
@@@ -8,86 -8,86 +8,86 @@@
   * Correct timezones deduced with help from:
   * http://en.wikipedia.org/wiki/List_of_tz_database_time_zones
   *
-  * @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/).
+  * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
   * @license http://sabre.io/license/ Modified BSD License
   */
 -return array(
 -    'Universal Coordinated Time' => 'UTC',
 -    'Casablanca, Monrovia' => 'Africa/Casablanca',
 -    'Greenwich Mean Time: Dublin, Edinburgh, Lisbon, London' => 'Europe/Lisbon',
 -    'Greenwich Mean Time; Dublin, Edinburgh, London' =>  'Europe/London',
 -    'Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna' => 'Europe/Berlin',
 -    'Belgrade, Pozsony, Budapest, Ljubljana, Prague' => 'Europe/Prague',
 -    'Brussels, Copenhagen, Madrid, Paris' => 'Europe/Paris',
 -    'Paris, Madrid, Brussels, Copenhagen' => 'Europe/Paris',
 -    'Prague, Central Europe' => 'Europe/Prague',
 -    'Sarajevo, Skopje, Sofija, Vilnius, Warsaw, Zagreb' => 'Europe/Sarajevo',
 -    'West Central Africa' => 'Africa/Luanda', // This was a best guess
 -    'Athens, Istanbul, Minsk' => 'Europe/Athens',
 -    'Bucharest' => 'Europe/Bucharest',
 -    'Cairo' => 'Africa/Cairo',
 -    'Harare, Pretoria' => 'Africa/Harare',
 -    'Helsinki, Riga, Tallinn' => 'Europe/Helsinki',
 -    'Israel, Jerusalem Standard Time' => 'Asia/Jerusalem',
 -    'Baghdad' => 'Asia/Baghdad',
 -    'Arab, Kuwait, Riyadh' => 'Asia/Kuwait',
 -    'Moscow, St. Petersburg, Volgograd' => 'Europe/Moscow',
 -    'East Africa, Nairobi' => 'Africa/Nairobi',
 -    'Tehran' => 'Asia/Tehran',
 -    'Abu Dhabi, Muscat' => 'Asia/Muscat', // Best guess
 -    'Baku, Tbilisi, Yerevan' => 'Asia/Baku',
 -    'Kabul' => 'Asia/Kabul',
 -    'Ekaterinburg' => 'Asia/Yekaterinburg',
 -    'Islamabad, Karachi, Tashkent' => 'Asia/Karachi',
 +return [
 +    'Universal Coordinated Time'                               => 'UTC',
 +    'Casablanca, Monrovia'                                     => 'Africa/Casablanca',
 +    'Greenwich Mean Time: Dublin, Edinburgh, Lisbon, London'   => 'Europe/Lisbon',
 +    'Greenwich Mean Time; Dublin, Edinburgh, London'           => 'Europe/London',
 +    'Amsterdam, Berlin, Bern, Rome, Stockholm, Vienna'         => 'Europe/Berlin',
 +    'Belgrade, Pozsony, Budapest, Ljubljana, Prague'           => 'Europe/Prague',
 +    'Brussels, Copenhagen, Madrid, Paris'                      => 'Europe/Paris',
 +    'Paris, Madrid, Brussels, Copenhagen'                      => 'Europe/Paris',
 +    'Prague, Central Europe'                                   => 'Europe/Prague',
 +    'Sarajevo, Skopje, Sofija, Vilnius, Warsaw, Zagreb'        => 'Europe/Sarajevo',
 +    'West Central Africa'                                      => 'Africa/Luanda', // This was a best guess
 +    'Athens, Istanbul, Minsk'                                  => 'Europe/Athens',
 +    'Bucharest'                                                => 'Europe/Bucharest',
 +    'Cairo'                                                    => 'Africa/Cairo',
 +    'Harare, Pretoria'                                         => 'Africa/Harare',
 +    'Helsinki, Riga, Tallinn'                                  => 'Europe/Helsinki',
 +    'Israel, Jerusalem Standard Time'                          => 'Asia/Jerusalem',
 +    'Baghdad'                                                  => 'Asia/Baghdad',
 +    'Arab, Kuwait, Riyadh'                                     => 'Asia/Kuwait',
 +    'Moscow, St. Petersburg, Volgograd'                        => 'Europe/Moscow',
 +    'East Africa, Nairobi'                                     => 'Africa/Nairobi',
 +    'Tehran'                                                   => 'Asia/Tehran',
 +    'Abu Dhabi, Muscat'                                        => 'Asia/Muscat', // Best guess
 +    'Baku, Tbilisi, Yerevan'                                   => 'Asia/Baku',
 +    'Kabul'                                                    => 'Asia/Kabul',
 +    'Ekaterinburg'                                             => 'Asia/Yekaterinburg',
 +    'Islamabad, Karachi, Tashkent'                             => 'Asia/Karachi',
      'Kolkata, Chennai, Mumbai, New Delhi, India Standard Time' => 'Asia/Calcutta',
 -    'Kathmandu, Nepal' => 'Asia/Kathmandu',
 -    'Almaty, Novosibirsk, North Central Asia' => 'Asia/Almaty',
 -    'Astana, Dhaka' => 'Asia/Dhaka',
 -    'Sri Jayawardenepura, Sri Lanka' => 'Asia/Colombo',
 -    'Rangoon' => 'Asia/Rangoon',
 -    'Bangkok, Hanoi, Jakarta' => 'Asia/Bangkok',
 -    'Krasnoyarsk' => 'Asia/Krasnoyarsk',
 -    'Beijing, Chongqing, Hong Kong SAR, Urumqi' => 'Asia/Shanghai',
 -    'Irkutsk, Ulaan Bataar' => 'Asia/Irkutsk',
 -    'Kuala Lumpur, Singapore' => 'Asia/Singapore',
 -    'Perth, Western Australia' => 'Australia/Perth',
 -    'Taipei' => 'Asia/Taipei',
 -    'Osaka, Sapporo, Tokyo' => 'Asia/Tokyo',
 -    'Seoul, Korea Standard time' => 'Asia/Seoul',
 -    'Yakutsk' => 'Asia/Yakutsk',
 -    'Adelaide, Central Australia' => 'Australia/Adelaide',
 -    'Darwin' => 'Australia/Darwin',
 -    'Brisbane, East Australia' => 'Australia/Brisbane',
 -    'Canberra, Melbourne, Sydney, Hobart (year 2000 only)' => 'Australia/Sydney',
 -    'Guam, Port Moresby' => 'Pacific/Guam',
 -    'Hobart, Tasmania' => 'Australia/Hobart',
 -    'Vladivostok' => 'Asia/Vladivostok',
 -    'Magadan, Solomon Is., New Caledonia' => 'Asia/Magadan',
 -    'Auckland, Wellington' => 'Pacific/Auckland',
 -    'Fiji Islands, Kamchatka, Marshall Is.' => 'Pacific/Fiji',
 -    'Nuku\'alofa, Tonga' => 'Pacific/Tongatapu',
 -    'Azores' => 'Atlantic/Azores',
 -    'Cape Verde Is.' => 'Atlantic/Cape_Verde',
 -    'Mid-Atlantic' => 'America/Noronha',
 -    'Brasilia' => 'America/Sao_Paulo', // Best guess
 -    'Buenos Aires' => 'America/Argentina/Buenos_Aires',
 -    'Greenland' => 'America/Godthab',
 -    'Newfoundland' => 'America/St_Johns',
 -    'Atlantic Time (Canada)' => 'America/Halifax',
 -    'Caracas, La Paz' => 'America/Caracas',
 -    'Santiago' => 'America/Santiago',
 -    'Bogota, Lima, Quito' => 'America/Bogota',
 -    'Eastern Time (US & Canada)' => 'America/New_York',
 -    'Indiana (East)' => 'America/Indiana/Indianapolis',
 -    'Central America' => 'America/Guatemala',
 -    'Central Time (US & Canada)' => 'America/Chicago',
 -    'Mexico City, Tegucigalpa' => 'America/Mexico_City',
 -    'Saskatchewan' => 'America/Edmonton',
 -    'Arizona' => 'America/Phoenix',
 -    'Mountain Time (US & Canada)' => 'America/Denver', // Best guess
 -    'Pacific Time (US & Canada); Tijuana' => 'America/Los_Angeles', // Best guess
 -    'Alaska' => 'America/Anchorage',
 -    'Hawaii' => 'Pacific/Honolulu',
 -    'Midway Island, Samoa' => 'Pacific/Midway',
 -    'Eniwetok, Kwajalein, Dateline Time' => 'Pacific/Kwajalein',
 -);
 +    'Kathmandu, Nepal'                                         => 'Asia/Kathmandu',
 +    'Almaty, Novosibirsk, North Central Asia'                  => 'Asia/Almaty',
 +    'Astana, Dhaka'                                            => 'Asia/Dhaka',
 +    'Sri Jayawardenepura, Sri Lanka'                           => 'Asia/Colombo',
 +    'Rangoon'                                                  => 'Asia/Rangoon',
 +    'Bangkok, Hanoi, Jakarta'                                  => 'Asia/Bangkok',
 +    'Krasnoyarsk'                                              => 'Asia/Krasnoyarsk',
 +    'Beijing, Chongqing, Hong Kong SAR, Urumqi'                => 'Asia/Shanghai',
 +    'Irkutsk, Ulaan Bataar'                                    => 'Asia/Irkutsk',
 +    'Kuala Lumpur, Singapore'                                  => 'Asia/Singapore',
 +    'Perth, Western Australia'                                 => 'Australia/Perth',
 +    'Taipei'                                                   => 'Asia/Taipei',
 +    'Osaka, Sapporo, Tokyo'                                    => 'Asia/Tokyo',
 +    'Seoul, Korea Standard time'                               => 'Asia/Seoul',
 +    'Yakutsk'                                                  => 'Asia/Yakutsk',
 +    'Adelaide, Central Australia'                              => 'Australia/Adelaide',
 +    'Darwin'                                                   => 'Australia/Darwin',
 +    'Brisbane, East Australia'                                 => 'Australia/Brisbane',
 +    'Canberra, Melbourne, Sydney, Hobart (year 2000 only)'     => 'Australia/Sydney',
 +    'Guam, Port Moresby'                                       => 'Pacific/Guam',
 +    'Hobart, Tasmania'                                         => 'Australia/Hobart',
 +    'Vladivostok'                                              => 'Asia/Vladivostok',
 +    'Magadan, Solomon Is., New Caledonia'                      => 'Asia/Magadan',
 +    'Auckland, Wellington'                                     => 'Pacific/Auckland',
 +    'Fiji Islands, Kamchatka, Marshall Is.'                    => 'Pacific/Fiji',
 +    'Nuku\'alofa, Tonga'                                       => 'Pacific/Tongatapu',
 +    'Azores'                                                   => 'Atlantic/Azores',
 +    'Cape Verde Is.'                                           => 'Atlantic/Cape_Verde',
 +    'Mid-Atlantic'                                             => 'America/Noronha',
 +    'Brasilia'                                                 => 'America/Sao_Paulo', // Best guess
 +    'Buenos Aires'                                             => 'America/Argentina/Buenos_Aires',
 +    'Greenland'                                                => 'America/Godthab',
 +    'Newfoundland'                                             => 'America/St_Johns',
 +    'Atlantic Time (Canada)'                                   => 'America/Halifax',
 +    'Caracas, La Paz'                                          => 'America/Caracas',
 +    'Santiago'                                                 => 'America/Santiago',
 +    'Bogota, Lima, Quito'                                      => 'America/Bogota',
 +    'Eastern Time (US & Canada)'                               => 'America/New_York',
 +    'Indiana (East)'                                           => 'America/Indiana/Indianapolis',
 +    'Central America'                                          => 'America/Guatemala',
 +    'Central Time (US & Canada)'                               => 'America/Chicago',
 +    'Mexico City, Tegucigalpa'                                 => 'America/Mexico_City',
 +    'Saskatchewan'                                             => 'America/Edmonton',
 +    'Arizona'                                                  => 'America/Phoenix',
 +    'Mountain Time (US & Canada)'                              => 'America/Denver', // Best guess
 +    'Pacific Time (US & Canada); Tijuana'                      => 'America/Los_Angeles', // Best guess
 +    'Alaska'                                                   => 'America/Anchorage',
 +    'Hawaii'                                                   => 'Pacific/Honolulu',
 +    'Midway Island, Samoa'                                     => 'Pacific/Midway',
 +    'Eniwetok, Kwajalein, Dateline Time'                       => 'Pacific/Kwajalein',
 +];
diff --cc lib/timezonedata/lotuszones.php
index 7064938,19b79f9..7d0785f
--- a/lib/timezonedata/lotuszones.php
+++ b/lib/timezonedata/lotuszones.php
@@@ -2,12 -2,12 +2,12 @@@
  
  /**
   * The following list are timezone names that could be generated by
 - * Lotus / Domino
 + * Lotus / Domino.
   *
-  * @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/).
+  * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
   * @license http://sabre.io/license/ Modified BSD License
   */
 -return array(
 +return [
      'Dateline'               => 'Etc/GMT-12',
      'Samoa'                  => 'Pacific/Apia',
      'Hawaiian'               => 'Pacific/Honolulu',
diff --cc lib/timezonedata/php-bc.php
index fd56618,e9506cf..906ccb0
--- a/lib/timezonedata/php-bc.php
+++ b/lib/timezonedata/php-bc.php
@@@ -12,10 -11,10 +12,10 @@@
   * directly, we use this file because DateTimeZone::ALL_WITH_BC is not properly
   * supported by all PHP version and HHVM.
   *
-  * @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/).
+  * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
   * @license http://sabre.io/license/ Modified BSD License
   */
 -return array(
 +return [
      'Africa/Asmera',
      'Africa/Timbuktu',
      'America/Argentina/ComodRivadavia',
diff --cc lib/timezonedata/php-workaround.php
index 0a173a6,6f639a3..6b9cb6e
--- a/lib/timezonedata/php-workaround.php
+++ b/lib/timezonedata/php-workaround.php
@@@ -11,10 -10,10 +11,10 @@@
   * Some more info here:
   * http://evertpot.com/php-5-5-10-timezone-changes/
   *
-  * @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/).
+  * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
   * @license http://sabre.io/license/ Modified BSD License
   */
 -return array(
 +return [
      'CST6CDT'   => 'America/Chicago',
      'Cuba'      => 'America/Havana',
      'Egypt'     => 'Africa/Cairo',
diff --cc lib/timezonedata/windowszones.php
index d5d67c5,2d6dde6..ac69847
--- a/lib/timezonedata/windowszones.php
+++ b/lib/timezonedata/windowszones.php
@@@ -3,10 -3,10 +3,10 @@@
  /**
   * Automatically generated timezone file
   *
 - * Last update: 2015-01-30T15:01:05-05:00
 + * Last update: 2015-07-27T16:56:36-04:00
   * Source: http://unicode.org/repos/cldr/trunk/common/supplemental/windowsZones.xml
   *
-  * @copyright Copyright (C) 2011-2015 fruux GmbH (https://fruux.com/).
+  * @copyright Copyright (C) fruux GmbH (https://fruux.com/)
   * @license http://sabre.io/license/ Modified BSD License
   */
  

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/php-sabre-vobject.git



More information about the Pkg-owncloud-commits mailing list