[Pkg-owncloud-commits] [php-sabre-vobject] 337/341: Merge tag 'upstream/4.0.0_alpha1'
David Prévot
taffit at moszumanska.debian.org
Tue Aug 11 13:36:02 UTC 2015
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 f33fdd0d5cdd8c794eca56a2c71ad4e56a3403a0
Merge: 8b3c8c5 3b4d4fb
Author: David Prévot <david at tilapin.org>
Date: Sun Jul 26 16:57:17 2015 +0200
Merge tag 'upstream/4.0.0_alpha1'
Upstream version 4.0.0~alpha1
# gpg: Signature made dim. 26 juil. 2015 16:57:10 CEST
# gpg: using RSA key 058C1CF944F6BD3C
# gpg: Good signature from "David Prévot <david at tilapin.org>"
# gpg: aka "David Prévot <davidp at altern.org>"
# gpg: aka "David Prévot <davidp at no-log.org>"
# gpg: aka "David Prévot <taffit at debian.org>"
# gpg: WARNING: This key is not certified with a trusted signature!
# gpg: There is no indication that the signature belongs to the owner.
# Primary key fingerprint: AE14 AD01 426D 2BFB 82EF 7E1E B82A 217A FDFE 09F2
# Subkey fingerprint: 7875 4D07 BC09 5C74 48F7 8D66 058C 1CF9 44F6 BD3C
.gitignore | 3 +
.travis.yml | 6 +-
ChangeLog.md => CHANGELOG.md | 37 +-
bin/bench.php | 4 +-
bin/bench_freebusygenerator.php | 62 +
bin/bench_manipulatevcard.php | 69 +
bin/fetch_windows_zones.php | 10 +-
bin/generate_vcards | 4 +-
bin/generateicalendardata.php | 27 +-
bin/rrulebench.php | 2 +-
bin/vobject | 4 +-
composer.json | 16 +-
lib/Cli.php | 160 +-
lib/Component.php | 378 ++-
lib/Component/Available.php | 68 +-
lib/Component/VAlarm.php | 48 +-
lib/Component/VAvailability.php | 101 +-
lib/Component/VCalendar.php | 268 +-
lib/Component/VCard.php | 171 +-
lib/Component/VEvent.php | 90 +-
lib/Component/VFreeBusy.php | 45 +-
lib/Component/VJournal.php | 56 +-
lib/Component/VTimeZone.php | 9 +-
lib/Component/VTodo.php | 96 +-
lib/DateTimeParser.php | 296 +-
lib/Document.php | 83 +-
lib/ElementList.php | 140 +-
lib/FreeBusyData.php | 193 ++
lib/FreeBusyGenerator.php | 371 ++-
lib/ITip/Broker.php | 270 +-
lib/ITip/Message.php | 10 +-
.../SameOrganizerForAllComponentsException.php | 2 +-
lib/Node.php | 83 +-
lib/Parameter.php | 101 +-
lib/Parser/Json.php | 47 +-
lib/Parser/MimeDir.php | 105 +-
lib/Parser/Parser.php | 15 +-
lib/Parser/XML.php | 428 +++
lib/Parser/XML/Element/KeyValue.php | 70 +
lib/Property.php | 229 +-
lib/Property/Binary.php | 27 +-
lib/Property/Boolean.php | 33 +-
lib/Property/FlatText.php | 7 +-
lib/Property/{Float.php => FloatValue.php} | 82 +-
lib/Property/ICalendar/CalAddress.php | 6 +-
lib/Property/ICalendar/Date.php | 2 +-
lib/Property/ICalendar/DateTime.php | 113 +-
lib/Property/ICalendar/Duration.php | 17 +-
lib/Property/ICalendar/Period.php | 64 +-
lib/Property/ICalendar/Recur.php | 75 +-
lib/Property/{Integer.php => IntegerValue.php} | 32 +-
lib/Property/Text.php | 190 +-
lib/Property/Time.php | 47 +-
lib/Property/Unknown.php | 16 +-
lib/Property/Uri.php | 27 +-
lib/Property/UtcOffset.php | 46 +-
lib/Property/VCard/Date.php | 14 +-
lib/Property/VCard/DateAndOrTime.php | 212 +-
lib/Property/VCard/DateTime.php | 9 +-
lib/Property/VCard/LanguageTag.php | 11 +-
lib/Property/VCard/TimeStamp.php | 35 +-
lib/Reader.php | 32 +-
lib/Recur/EventIterator.php | 82 +-
lib/Recur/RDateIterator.php | 38 +-
lib/Recur/RRuleIterator.php | 221 +-
lib/RecurrenceIterator.php | 21 -
lib/Settings.php | 39 +
lib/Splitter/ICalendar.php | 33 +-
lib/Splitter/SplitterInterface.php | 10 +-
lib/Splitter/VCard.php | 21 +-
lib/StringUtil.php | 13 +-
lib/TimeZoneUtil.php | 31 +-
lib/UUIDUtil.php | 22 +-
lib/VCardConverter.php | 103 +-
lib/Version.php | 6 +-
lib/Writer.php | 81 +
lib/timezonedata/exchangezones.php | 160 +-
lib/timezonedata/lotuszones.php | 6 +-
lib/timezonedata/php-bc.php | 7 +-
lib/timezonedata/php-workaround.php | 7 +-
lib/timezonedata/windowszones.php | 208 +-
resources/schema/xcal.rng | 1192 ++++++++
resources/schema/xcard.rng | 388 +++
tests/VObject/CliTest.php | 132 +-
tests/VObject/Component/AvailableTest.php | 73 +
tests/VObject/Component/VAlarmTest.php | 56 +-
tests/VObject/Component/VAvailabilityTest.php | 161 +-
tests/VObject/Component/VCalendarTest.php | 28 +-
tests/VObject/Component/VCardTest.php | 74 +-
tests/VObject/Component/VEventTest.php | 46 +-
tests/VObject/Component/VFreeBusyTest.php | 8 +-
tests/VObject/Component/VJournalTest.php | 35 +-
tests/VObject/Component/VTimeZoneTest.php | 7 +-
tests/VObject/Component/VTodoTest.php | 82 +-
tests/VObject/ComponentTest.php | 192 +-
tests/VObject/DateTimeParserTest.php | 656 +++--
tests/VObject/DocumentTest.php | 29 +-
tests/VObject/ElementListTest.php | 12 +-
tests/VObject/EmClientTest.php | 5 +-
tests/VObject/EmptyParameterTest.php | 12 +-
tests/VObject/EmptyValueIssueTest.php | 3 +-
tests/VObject/FreeBusyDataTest.php | 318 +++
tests/VObject/FreeBusyGeneratorTest.php | 536 +++-
tests/VObject/GoogleColonEscapingTest.php | 2 +-
tests/VObject/ITip/BrokerAttendeeReplyTest.php | 252 +-
tests/VObject/ITip/BrokerDeleteEventTest.php | 70 +-
tests/VObject/ITip/BrokerNewEventTest.php | 163 +-
tests/VObject/ITip/BrokerProcessMessageTest.php | 8 +-
tests/VObject/ITip/BrokerTester.php | 39 +-
tests/VObject/ITip/BrokerUpdateEventTest.php | 306 +--
tests/VObject/ITip/EvolutionTest.php | 26 +-
tests/VObject/ITip/MessageTest.php | 6 +-
tests/VObject/Issue26Test.php | 4 -
tests/VObject/Issue36WorkAroundTest.php | 2 +-
tests/VObject/Issue40Test.php | 6 +-
tests/VObject/JCalTest.php | 181 +-
tests/VObject/JCardTest.php | 174 +-
tests/VObject/ParameterTest.php | 58 +-
tests/VObject/Parser/JsonTest.php | 324 +--
tests/VObject/Parser/MimeDirTest.php | 2 +-
tests/VObject/Parser/QuotedPrintableTest.php | 6 +-
tests/VObject/Parser/XmlTest.php | 2892 ++++++++++++++++++++
tests/VObject/Property/BinaryTest.php | 2 +-
tests/VObject/Property/CompoundTest.php | 4 +-
tests/VObject/Property/FloatTest.php | 6 +-
.../VObject/Property/ICalendar/CalAddressTest.php | 10 +-
tests/VObject/Property/ICalendar/DateTimeTest.php | 64 +-
tests/VObject/Property/ICalendar/DurationTest.php | 4 +-
tests/VObject/Property/ICalendar/RecurTest.php | 18 +-
tests/VObject/Property/TextTest.php | 14 +-
tests/VObject/Property/VCard/DateAndOrTimeTest.php | 112 +-
tests/VObject/Property/VCard/LanguageTagTest.php | 2 +-
tests/VObject/PropertyTest.php | 135 +-
tests/VObject/ReaderTest.php | 114 +-
.../Recur/EventIterator/ByMonthInDailyTest.php | 9 +-
.../Recur/EventIterator/BySetPosHangTest.php | 9 +-
.../EventIterator/ExpandFloatingTimesTest.php | 4 +-
.../EventIterator/FifthTuesdayProblemTest.php | 2 +-
.../Recur/EventIterator/IncorrectExpandTest.php | 6 +-
.../EventIterator/InfiniteLoopProblemTest.php | 31 +-
tests/VObject/Recur/EventIterator/Issue48Test.php | 15 +-
tests/VObject/Recur/EventIterator/Issue50Test.php | 23 +-
tests/VObject/Recur/EventIterator/MainTest.php | 789 +++---
.../Recur/EventIterator/MissingOverriddenTest.php | 8 +-
.../Recur/EventIterator/NoInstancesTest.php | 2 +-
.../Recur/EventIterator/OverrideFirstEventTest.php | 4 +-
tests/VObject/Recur/RDateIteratorTest.php | 30 +-
tests/VObject/Recur/RRuleIteratorTest.php | 132 +-
tests/VObject/SlashRTest.php | 2 +-
tests/VObject/Splitter/ICalendarTest.php | 26 +-
tests/VObject/Splitter/VCardTest.php | 18 +-
tests/VObject/TestCase.php | 8 +-
tests/VObject/TimeZoneUtilTest.php | 10 +-
tests/VObject/VCardConverterTest.php | 10 +-
tests/VObject/VersionTest.php | 2 +-
tests/VObject/WriterTest.php | 41 +
tests/bootstrap.php | 8 +-
tests/phpunit.xml | 4 +-
158 files changed, 12210 insertions(+), 4417 deletions(-)
--
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