Function: icalendar-match-attach-property
icalendar-match-attach-property is a byte-compiled function defined in
icalendar-parser.el.gz.
Signature
(icalendar-match-attach-property LIMIT)
Documentation
Matcher for icalendar-attach property.
(Defined by icalendar-define-property.)
Source Code
;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
;;;; Section 3.8:
;;;;; Section 3.8.1: Descriptive Component Properties
(ical:define-property ical:attach "ATTACH"
"Attachment.
This property specifies a file attached to an iCalendar
component, either via a URI, or as encoded binary data. In
`icalendar-valarm' components, it is used to specify the
notification sent by the alarm."
;; Groups 11, 12 are used in ical:uri
(or (group-n 13 ical:uri)
(group-n 14 ical:binary))
:default-type ical:uri
:other-types (ical:binary)
:child-spec (:zero-or-one (ical:fmttypeparam
ical:valuetypeparam
ical:encodingparam)
:zero-or-more (ical:otherparam))
:other-validator ical:attach-validator
:link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.1.1")