|
|
|
Found 7 records.
Errata ID: 3042
Status: Verified
Type: Technical
Reported By: Christian Mollekopf
Date Reported: 2011-12-07
Verifier Name: Peter Saint-Andre
Date Verified: 2012-02-09
Section Appendix A says:
# 3.6.6 Alarm Component
component-valarm = element valarm {
audioprop | dispprop | emailprop
}
type-audioprop = element properties {
property-action &
property-trigger &
(property-duration, property-repeat)? &
property-attach?
}
type-dispprop = element properties {
property-action &
property-description &
property-trigger &
property-summary &
property-attendee+ &
(property-duration, property-repeat)? &
property-attach*
}
type-emailprop = element properties {
property-action &
property-description &
property-trigger &
(property-duration, property-repeat)?
}
It should say:
# 3.6.6 Alarm Component
component-valarm = element valarm {
type-audioprop | type-dispprop | type-emailprop
}
type-audioprop = element properties {
property-action &
property-trigger &
(property-duration, property-repeat)? &
property-attach?
}
type-emailprop = element properties {
property-action &
property-description &
property-trigger &
property-summary &
property-attendee+ &
(property-duration, property-repeat)? &
property-attach*
}
type-dispprop = element properties {
property-action &
property-description &
property-trigger &
(property-duration, property-repeat)?
}
Notes:
* the alarm properties lack the "type-"
* dispprop and emailprop have been exchanged
Errata ID: 3050
Status: Verified
Type: Technical
Reported By: Christian Mollekopf
Date Reported: 2011-12-13
Verifier Name: Peter Saint-Andre
Date Verified: 2012-02-09
Section Appendix A says:
type-bysecond = element bysecond {
xsd:positiveInteger
}
type-byminute = element byminute {
xsd:positiveInteger
}
type-byhour = element byhour {
xsd:positiveInteger
}
It should say:
type-bysecond = element bysecond {
xsd:nonNegativeInteger
}
type-byminute = element byminute {
xsd:nonNegativeInteger
}
type-byhour = element byhour {
xsd:nonNegativeInteger
}
Notes:
Those values can be 0 (per RFC 5545) and xsd:positiveInteger doesn't allow that.
Errata ID: 2929
Status: Verified
Type: Editorial
Reported By: Philipp Kewisch
Date Reported: 2011-08-10
Verifier Name: Peter Saint-Andre
Date Verified: 2011-08-12
Section B.2.1. says:
VERSION:2.0 PRODID:-//Example Corp.//Example Client//EN BEGIN:VTIMEZONE
It should say:
BEGIN:VCALENDAR VERSION:2.0 PRODID:-//Example Inc.//Example Client//EN BEGIN:VTIMEZONE
Notes:
Example Inc. is used in all examples, especially in Section B.2.2, the matching XML Data. Also, the BEGIN:VCALENDAR is missing.
Errata ID: 3315
Status: Held for Document Update
Type: Technical
Reported By: Norman Walsh
Date Reported: 2012-08-12
Held for Document Update by: Barry Leiba
Section Appendix A says:
type-until = element until {
type-date |
type-date-time
}
It should say:
???
Notes:
The type-date and type-date-time patterns are undefined in the schema.
Errata ID: 3316
Status: Held for Document Update
Type: Technical
Reported By: Norman Walsh
Date Reported: 2012-08-12
Held for Document Update by: Barry Leiba
Section Appendix A says:
type-byday = element byday {
xsd:integer?,
type-weekday
}
It should say:
???
Notes:
That's not a valid RELAX NG pattern. It's an attempt to group "string" and "data" patterns.
Errata ID: 2938
Status: Held for Document Update
Type: Editorial
Reported By: Hamish Lawson
Date Reported: 2011-08-15
Held for Document Update by: Peter Saint-Andre
Section 3.4.1.2 says:
These are an IC:latitude element and an IC:longitude element, each of which contains float values.
It should say:
These are an IC:latitude element and an IC:longitude element, each of which contains a float value.
Notes:
The existing text erroneously suggests that multiple values could be contained by each element.
Errata ID: 3314
Status: Held for Document Update
Type: Editorial
Reported By: Norman Walsh
Date Reported: 2012-08-12
Held for Document Update by: Barry Leiba
Section Appendix A says:
# 3.6.5 Time Zone Component
component-vtimezone = element vtimezone {
element properties {
property-tzid &
property-last-mod? &
property-tzuurl?
},
It should say:
# 3.6.5 Time Zone Component
component-vtimezone = element vtimezone {
element properties {
property-tzid &
property-last-mod? &
property-tzurl?
},
Notes:
The property-tzurl pattern name is misspelled.