The iclendar Reference Manual

This is the iclendar Reference Manual, version 1.0.0, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Jul 15 05:23:01 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 iclendar

An iCalendar format lirbary.

Maintainer

Yukari Hafner <>

Author

Yukari Hafner <>

Home Page

https://Shinmera.github.io/iclendar/

Source Control

(GIT https://github.com/Shinmera/iclendar.git)

Bug Tracker

https://github.com/Shinmera/iclendar/issues

License

zlib

Version

1.0.0

Dependencies
  • closer-mop (system).
  • cl-base64 (system).
  • trivial-gray-streams (system).
  • documentation-utils (system).
Source

iclendar.asd.

Child Components

3 Files

Files are sorted by type and then listed depth-first from the systems components trees.


3.1 Lisp


3.1.1 iclendar/iclendar.asd

Source

iclendar.asd.

Parent Component

iclendar (system).

ASDF Systems

iclendar.


3.1.2 iclendar/package.lisp

Source

iclendar.asd.

Parent Component

iclendar (system).

Packages

iclendar.


3.1.3 iclendar/toolkit.lisp

Dependency

package.lisp (file).

Source

iclendar.asd.

Parent Component

iclendar (system).

Internals

3.1.4 iclendar/stream.lisp

Dependency

toolkit.lisp (file).

Source

iclendar.asd.

Parent Component

iclendar (system).

Public Interface
Internals

3.1.5 iclendar/protocol.lisp

Dependency

stream.lisp (file).

Source

iclendar.asd.

Parent Component

iclendar (system).

Public Interface
Internals

3.1.6 iclendar/standard-types.lisp

Dependency

protocol.lisp (file).

Source

iclendar.asd.

Parent Component

iclendar (system).

Public Interface
Internals

3.1.7 iclendar/standard-parameters.lisp

Dependency

standard-types.lisp (file).

Source

iclendar.asd.

Parent Component

iclendar (system).

Public Interface

3.1.8 iclendar/standard-properties.lisp

Dependency

standard-parameters.lisp (file).

Source

iclendar.asd.

Parent Component

iclendar (system).

Public Interface

3.1.9 iclendar/standard-components.lisp

Dependency

standard-properties.lisp (file).

Source

iclendar.asd.

Parent Component

iclendar (system).

Public Interface

3.1.10 iclendar/serializer.lisp

Dependency

standard-components.lisp (file).

Source

iclendar.asd.

Parent Component

iclendar (system).

Public Interface
Internals

s (function).


3.1.11 iclendar/documentation.lisp

Dependency

serializer.lisp (file).

Source

iclendar.asd.

Parent Component

iclendar (system).


4 Packages

Packages are listed by definition order.


4.1 iclendar

Source

package.lisp.

Nickname

org.shirakumo.iclendar

Use List

common-lisp.

Public Interface
Internals

5 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


5.1 Public Interface


5.1.1 Macros

Macro: define-component (name direct-superclasses direct-slots &rest options)

Define a new component class.

If a slot should be a property-, rather than a standard-slot, you must supply the :PROPERTY slot initarg. The :PROPERTY initarg must name a property class. Property-slots allow constraints to be enforced on their values using the :CONSTRAINT initarg. Constraints must have the following form:

CONSTRAINT ::= MULTIPLICITY | RELATION
MULTIPLICITY ::= :REQUIRED | :OPTIONAL | :MULTIPLE
RELATION ::= (and SLOT-NAME) | (not SLOT-NAME)
SLOT-NAME — The name of another property-slot on the component.

If the multiplicity is :REQUIRED, the slot may not be unbound. If it is :MULTIPLE, the slot may contain a list of property instances. If it is a relational and, the other slot must be bound as well if this slot is bound. If it is a relational not, the other slot must not be bound if this slot is bound.

See PROPERTY
See DEFINE-PROPERTY
See COMPONENT

Package

iclendar.

Source

protocol.lisp.

Macro: define-parameter ((name identifier) &body body)

Define a new property parameter.

The body may contain a plist of additional information. Currently the following keys are recognised:

:TYPE — The type of the slot’s value. Defaults to TEXT

A parameter will automatically push a reader of the same name, a writer of the name (setf NAME), and an initarg of the name but in keyword place.

See TEXT

Package

iclendar.

Source

protocol.lisp.

Macro: define-property ((name identifier) &body body)

Define a new property class.

The body may contain a plist of additional information. Currently the following keys are recognised:

TYPE — The type of the property’s value. Defaults to TEXT. PARAMETERS — The list of metadata parameters the property allows. This list should contain symbols of parameter classes.

See DEFINE-PARAMETER
See PROPERTY

Package

iclendar.

Source

protocol.lisp.


5.1.2 Ordinary functions

Reader: date-date (instance)

The day of the date.

Must be an integer in [1,31]. Defaults to the current UTC date.

See DATE

Package

iclendar.

Source

standard-types.lisp.

Target Slot

date.

Writer: (setf date-date) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

date.

Reader: date-month (instance)

The month of the date.

Must be an integer in [1,12]. Defaults to the current UTC month.

See DATE

Package

iclendar.

Source

standard-types.lisp.

Target Slot

month.

Writer: (setf date-month) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

month.

Function: date-time-date (instance)

The day of the date.

Must be an integer in [1,31]. Defaults to the current UTC date.

See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Function: (setf date-time-date) (instance)
Package

iclendar.

Source

standard-types.lisp.

Reader: date-time-hour (instance)

The hour of the time.

Must be an integer in [0,23]. Defaults to the current UTC hour.

See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Target Slot

hour.

Writer: (setf date-time-hour) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

hour.

Reader: date-time-minute (instance)

The minute of the time.

Must be an integer in [0,59]. Defaults to the current UTC minute.

See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Target Slot

minute.

Writer: (setf date-time-minute) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

minute.

Function: date-time-month (instance)

The month of the date.

Must be an integer in [1,12]. Defaults to the current UTC month.

See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Function: (setf date-time-month) (instance)
Package

iclendar.

Source

standard-types.lisp.

Reader: date-time-second (instance)

The second of the time.

Must be an integer in [0,60].
Defaults to the current UTC second.

60 is allowed to account for leap seconds.

See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Target Slot

second.

Writer: (setf date-time-second) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

second.

Reader: date-time-utc-p (instance)

Whether the time is in UTC.

Must be a boolean. Defaults to T.

See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Target Slot

utc-p.

Writer: (setf date-time-utc-p) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

utc-p.

Function: date-time-year (instance)

The year of the date.

Must be a positive integer. Defaults to the current UTC year.

See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Function: (setf date-time-year) (instance)
Package

iclendar.

Source

standard-types.lisp.

Reader: date-year (instance)

The year of the date.

Must be a positive integer. Defaults to the current UTC year.

See DATE

Package

iclendar.

Source

standard-types.lisp.

Target Slot

year.

Writer: (setf date-year) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

year.

Reader: geo-lat (instance)

Accesses the latitude of the location as a float.

Must be a FLOAT.

See GEO

Package

iclendar.

Source

standard-types.lisp.

Target Slot

lat.

Writer: (setf geo-lat) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

lat.

Reader: geo-lng (instance)

Accesses the longitude of the location as a float.

Must be a FLOAT.

See GEO

Package

iclendar.

Source

standard-types.lisp.

Target Slot

lng.

Writer: (setf geo-lng) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

lng.

Function: make-date (&key year month date)

Create a fresh date instance.

See DATE

Package

iclendar.

Source

standard-types.lisp.

Function: make-date-time (&key year month date hour minute second utc-p)

Create a fresh date-time instance.

See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Function: make-geo (lat lng)

Create a fresh geo instance.

See GEO

Package

iclendar.

Source

standard-types.lisp.

Function: make-period (start limit)

Create a fresh period instance.

See PERIOD

Package

iclendar.

Source

standard-types.lisp.

Function: make-recurrence (frequency &key end-date count interval by-seconds by-minutes by-hours by-days by-month-days by-year-days by-weeks by-months by-set-pos week-start)

Create a fresh recurrence instance.

See RECURRENCE

Package

iclendar.

Source

standard-types.lisp.

Function: make-time-span (&key week hour minute second day inc-p)

Create a fresh time-span instance.

See TIME-SPAN

Package

iclendar.

Source

standard-types.lisp.

Function: make-utc-offset (&key hour minute second inc-p)

Create a fresh utc-offset instance.

See UTC-OFFSET

Package

iclendar.

Source

standard-types.lisp.

Reader: period-limit (instance)

The limit of the period.

Must be either a DATE-TIME for a specific ending date, or a TIME-SPAN for a relative duration.

See PERIOD
See DATE-TIME
See TIME-SPAN

Package

iclendar.

Source

standard-types.lisp.

Target Slot

limit.

Writer: (setf period-limit) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

limit.

Reader: period-start (instance)

The start date of the period.

Must be a DATE-TIME.

See PERIOD
See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Target Slot

start.

Writer: (setf period-start) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

start.

Reader: recurrence-by-days (instance)

A list of days by which the recurrence happens.

May be a WEEK-DAY-LIST.

See RECURRENCE
See WEEK-DAY-LIST

Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-days.

Writer: (setf recurrence-by-days) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-days.

Reader: recurrence-by-hours (instance)

A list of hours by which the recurrence happens.

May be an HOUR-LIST

See RECURRENCE
See HOUR-LIST

Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-hours.

Writer: (setf recurrence-by-hours) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-hours.

Reader: recurrence-by-minutes (instance)

A list of minutes by which the recurrence happens.

May be a MINUTE-LIST

See RECURRENCE
See MINUTE-LIST

Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-minutes.

Writer: (setf recurrence-by-minutes) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-minutes.

Reader: recurrence-by-month-days (instance)

A list of month days by which the recurrence happens.

May be a MONTH-DAY-LIST

See RECURRENCE
See MONTH-DAY-LIST

Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-month-days.

Writer: (setf recurrence-by-month-days) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-month-days.

Reader: recurrence-by-months (instance)

A list of months by which the recurrence happens.

May be a MONTH-LIST

See RECURRENCE
See MONTH-LIST

Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-months.

Writer: (setf recurrence-by-months) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-months.

Reader: recurrence-by-seconds (instance)

A list of seconds by which the recurrence happens.

May be a SECOND-LIST

See RECURRENCE
See SECOND-LIST

Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-seconds.

Writer: (setf recurrence-by-seconds) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-seconds.

Reader: recurrence-by-set-pos (instance)

A list of specific positions by which the recurrence happens.

May be a YEAR-DAY-LIST

See RECURRENCE
See YEAR-DAY-LIST

Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-set-pos.

Writer: (setf recurrence-by-set-pos) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-set-pos.

Reader: recurrence-by-weeks (instance)

A list of weeks by which the recurrence happens.

May be a WEEK-LIST

See RECURRENCE
See WEEK-LIST

Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-weeks.

Writer: (setf recurrence-by-weeks) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-weeks.

Reader: recurrence-by-year-days (instance)

A list of year days by which the recurrence happens.

May be a YEAR-DAY-LIST

See RECURRENCE
See YEAR-DAY-LIST

Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-year-days.

Writer: (setf recurrence-by-year-days) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

by-year-days.

Reader: recurrence-count (instance)

The number of times the recurrence happens.

May be a positive integer.

See RECURRENCE

Package

iclendar.

Source

standard-types.lisp.

Target Slot

count.

Writer: (setf recurrence-count) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

count.

Reader: recurrence-end-date (instance)

The end date on which the recurrence is stopped.

May be a DATE or a DATE-TIME.

See RECURRENCE
See DATE
See DATE-TIME

Package

iclendar.

Source

standard-types.lisp.

Target Slot

end-date.

Writer: (setf recurrence-end-date) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

end-date.

Reader: recurrence-frequency (instance)

The frequency by which the recurrence happens.

Must be one of :SECONDLY :MINUTELY :HOURLY :DAILY :WEEKLY :MONTHLY :YEARLY.

See RECURRENCE

Package

iclendar.

Source

standard-types.lisp.

Target Slot

frequency.

Writer: (setf recurrence-frequency) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

frequency.

Reader: recurrence-interval (instance)

The interval in which the recurrence happens.

May be a positive integer.

See RECURRENCE

Package

iclendar.

Source

standard-types.lisp.

Target Slot

interval.

Writer: (setf recurrence-interval) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

interval.

Reader: recurrence-week-start (instance)

The week day by which the recurrence starts.

May be a WEEK-DAY

See RECURRENCE
See WEEK-DAY

Package

iclendar.

Source

standard-types.lisp.

Target Slot

week-start.

Writer: (setf recurrence-week-start) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

week-start.

Function: serialize (object &optional output &key if-exists)

Serialize the given object to the specified output.

The output may be one of the following types:

STREAM — The object is serialised to the given output stream. (EQL T) — The object is serialised to *STANDARD-OUTPUT*. (OR PATHNAME STRING) — The object is serialised to the given file. The keyword argument :IF-EXISTS is passed on to OPEN. (EQL NIL) — The object is serialised to a string.

The serialisation is handled by SERIALIZE-OBJECT.

Returns the object that was passed, unless the output is NIL.

See SERIALIZE-OBJECT

Package

iclendar.

Source

serializer.lisp.

Reader: time-span-day (instance)

The number of days to span.

May be a positive integer.

See TIME-SPAN

Package

iclendar.

Source

standard-types.lisp.

Target Slot

day.

Writer: (setf time-span-day) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

day.

Reader: time-span-hour (instance)

The number of hours to span.

May be a positive integer.

See TIME-SPAN

Package

iclendar.

Source

standard-types.lisp.

Target Slot

hour.

Writer: (setf time-span-hour) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

hour.

Reader: time-span-inc-p (instance)

Whether the span is positive or negative.

Must be a boolean. Defaults to T.

See TIME-SPAN

Package

iclendar.

Source

standard-types.lisp.

Target Slot

inc-p.

Writer: (setf time-span-inc-p) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

inc-p.

Reader: time-span-minute (instance)

The number of minutes to span.

May be a positive integer.

See TIME-SPAN

Package

iclendar.

Source

standard-types.lisp.

Target Slot

minute.

Writer: (setf time-span-minute) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

minute.

Reader: time-span-second (instance)

The number of seconds to span.

May be a positive integer.

See TIME-SPAN

Package

iclendar.

Source

standard-types.lisp.

Target Slot

second.

Writer: (setf time-span-second) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

second.

Reader: time-span-week (instance)

The number of weeks to span.

May be a positive integer.

See TIME-SPAN

Package

iclendar.

Source

standard-types.lisp.

Target Slot

week.

Writer: (setf time-span-week) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

week.

Reader: utc-offset-hour (instance)

The number of hours [0,23] offset from UTC.

See UTC-OFFSET

Package

iclendar.

Source

standard-types.lisp.

Target Slot

hour.

Writer: (setf utc-offset-hour) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

hour.

Reader: utc-offset-inc-p (instance)

Whether the offset is added to UTC.

See UTC-OFFSET

Package

iclendar.

Source

standard-types.lisp.

Target Slot

inc-p.

Writer: (setf utc-offset-inc-p) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

inc-p.

Reader: utc-offset-minute (instance)

The number of minutes [0,59] offset from UTC.

See UTC-OFFSET

Package

iclendar.

Source

standard-types.lisp.

Target Slot

minute.

Writer: (setf utc-offset-minute) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

minute.

Reader: utc-offset-second (instance)

The number of seconds [0,60] offset from UTC.

See UTC-OFFSET

Package

iclendar.

Source

standard-types.lisp.

Target Slot

second.

Writer: (setf utc-offset-second) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

second.

Reader: week-day-num-week (instance)

The number of weeks to recur by.

May be an integer in [-53,53]

See WEEK-DAY-NUM

Package

iclendar.

Source

standard-types.lisp.

Target Slot

week.

Writer: (setf week-day-num-week) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

week.

Reader: week-day-num-week-day (instance)

The week day on which to recur.

Must be a WEEK-DAY

See WEEK-DAY-NUM
See WEEK-DAY

Package

iclendar.

Source

standard-types.lisp.

Target Slot

week-day.

Writer: (setf week-day-num-week-day) (instance)
Package

iclendar.

Source

standard-types.lisp.

Target Slot

week-day.


5.1.3 Generic functions

Generic Reader: action (object)

Accessor to the action of the component.

See ACTION
See ALARM

Package

iclendar.

Methods
Reader Method: action ((alarm alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

action.

Generic Writer: (setf action) (object)
Package

iclendar.

Methods
Writer Method: (setf action) ((alarm alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

action.

Generic Reader: alternate-representation (object)

This parameter links to an alternate representation of the value’s contents.

The value must be TEXT.

From RFC5545:
This parameter specifies a URI that points to an
alternate representation for a textual property value. A property specifying this parameter MUST also include a value that reflects
the default representation of the text value. The URI parameter
value MUST be specified in a quoted-string.

Note: While there is no restriction imposed on the URI schemes allowed for this parameter, Content Identifier (CID) [RFC2392],
HTTP [RFC2616], and HTTPS [RFC2818] are the URI schemes most commonly used by current implementations.

See COMMENT
See CONTACT
See DESCRIPTION
See LOCATION
See RESOURCE
See SUMMARY
See TEXT

Package

iclendar.

Methods
Reader Method: alternate-representation ((summary summary))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Reader Method: alternate-representation ((resource resource))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Reader Method: alternate-representation ((location location))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Reader Method: alternate-representation ((description description))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Reader Method: alternate-representation ((contact contact))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Reader Method: alternate-representation ((comment comment))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Generic Writer: (setf alternate-representation) (object)
Package

iclendar.

Methods
Writer Method: (setf alternate-representation) ((summary summary))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Writer Method: (setf alternate-representation) ((resource resource))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Writer Method: (setf alternate-representation) ((location location))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Writer Method: (setf alternate-representation) ((description description))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Writer Method: (setf alternate-representation) ((contact contact))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Writer Method: (setf alternate-representation) ((comment comment))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

alternate-representation.

Generic Reader: attachment (object)

Accessor to the audio clip that is played for the audio alarm.

See ATTACHMENT
See AUDIO-ALARM

Package

iclendar.

Methods
Reader Method: attachment ((audio-alarm audio-alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

attachment.

Generic Writer: (setf attachment) (object)
Package

iclendar.

Methods
Writer Method: (setf attachment) ((audio-alarm audio-alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

attachment.

Generic Reader: attachments (object)

Accessor to the attachments list of the component.

See ATTACHMENT
See DATE-COMPONENT
See EMAIL-ALARM

Package

iclendar.

Methods
Reader Method: attachments ((email-alarm email-alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

attachments.

Reader Method: attachments ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

attachments.

Generic Writer: (setf attachments) (object)
Package

iclendar.

Methods
Writer Method: (setf attachments) ((email-alarm email-alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

attachments.

Writer Method: (setf attachments) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

attachments.

Generic Reader: attendee (object)

Accessor to the attendee of the component.

See ATTENDEE
See EMAIL-ALARM

Package

iclendar.

Methods
Reader Method: attendee ((email-alarm email-alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

attendee.

Generic Writer: (setf attendee) (object)
Package

iclendar.

Methods
Writer Method: (setf attendee) ((email-alarm email-alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

attendee.

Generic Reader: attendees (object)

Accessor to the attendees list of the component.

See ATTENDEE
See CALENDAR-COMPONENT

Package

iclendar.

Methods
Reader Method: attendees ((calendar-component calendar-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

attendees.

Generic Writer: (setf attendees) (object)
Package

iclendar.

Methods
Writer Method: (setf attendees) ((calendar-component calendar-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

attendees.

Generic Reader: calendar-user-type (object)

This parameter defines the type of user of the property.

The value must be a string or one of :INDIVIDUAL :GROUP :RESOURCE :ROOM :UNKNOWN.

From RF5545:
This parameter can be specified on properties with a
CAL-ADDRESS value type. The parameter identifies the type of
calendar user specified by the property. If not specified on a
property that allows this parameter, the default is INDIVIDUAL. Applications MUST treat x-name and iana-token values they don’t
recognize the same way as they would the UNKNOWN value.

See ATTENDEE

Package

iclendar.

Methods
Reader Method: calendar-user-type ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

calendar-user-type.

Generic Writer: (setf calendar-user-type) (object)
Package

iclendar.

Methods
Writer Method: (setf calendar-user-type) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

calendar-user-type.

Generic Reader: categories (object)

Accessor to the category list of the component.

See CATEGORY
See DATE-COMPONENT

Package

iclendar.

Methods
Reader Method: categories ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

categories.

Generic Writer: (setf categories) (object)
Package

iclendar.

Methods
Writer Method: (setf categories) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

categories.

Generic Reader: classification (object)

Accessor to the classification of the component.

See CLASSIFICATION
See DATE-COMPONENT

Package

iclendar.

Methods
Reader Method: classification ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

classification.

Generic Writer: (setf classification) (object)
Package

iclendar.

Methods
Writer Method: (setf classification) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

classification.

Generic Reader: comments (object)

Accessor to the comments list of the component.

See COMMENT
See CALENDAR-COMPONENT
See TIME-ZONE-COMPONENT

Package

iclendar.

Methods
Reader Method: comments ((time-zone-component time-zone-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

comments.

Reader Method: comments ((calendar-component calendar-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

comments.

Generic Writer: (setf comments) (object)
Package

iclendar.

Methods
Writer Method: (setf comments) ((time-zone-component time-zone-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

comments.

Writer Method: (setf comments) ((calendar-component calendar-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

comments.

Generic Reader: common-name (object)

This parameter defines a common name between the property and a user.

The value must be TEXT.

From RFC5545:
This parameter can be specified on properties with a CAL-ADDRESS value type. The parameter specifies the common name to be associated with the calendar user specified by the property. The parameter value is text. The parameter value can be used for display text to be associated with the calendar address specified by the property.

See ATTENDEE
See ORGANIZER
See TEXT

Package

iclendar.

Methods
Reader Method: common-name ((organizer organizer))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

common-name.

Reader Method: common-name ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

common-name.

Generic Writer: (setf common-name) (object)
Package

iclendar.

Methods
Writer Method: (setf common-name) ((organizer organizer))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

common-name.

Writer Method: (setf common-name) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

common-name.

Generic Reader: completed (object)

Accessor to whether the component is completed or not.

See COMPLETED
See TODO

Package

iclendar.

Methods
Reader Method: completed ((todo todo))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

completed.

Generic Writer: (setf completed) (object)
Package

iclendar.

Methods
Writer Method: (setf completed) ((todo todo))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

completed.

Generic Reader: completeness (object)

Accessor to the completeness percentage of the component.

See COMPLETENESS
See TODO

Package

iclendar.

Methods
Reader Method: completeness ((todo todo))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

completeness.

Generic Writer: (setf completeness) (object)
Package

iclendar.

Methods
Writer Method: (setf completeness) ((todo todo))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

completeness.

Generic Reader: components (object)

Accesses the list of child components in the container.

See COMPONENT-CONTAINER

Package

iclendar.

Methods
Reader Method: components ((component-container component-container))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

components.

Generic Writer: (setf components) (object)
Package

iclendar.

Methods
Writer Method: (setf components) ((component-container component-container))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

components.

Generic Reader: contact (object)

Accessor to the contact of the component.

See CONTACT
See FREE/BUSY

Package

iclendar.

Methods
Reader Method: contact ((free/busy free/busy))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

contact.

Generic Writer: (setf contact) (object)
Package

iclendar.

Methods
Writer Method: (setf contact) ((free/busy free/busy))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

contact.

Generic Reader: contacts (object)

Accessor to the contacts list of the component.

See CONTACT
See DATE-COMPONENT

Package

iclendar.

Methods
Reader Method: contacts ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

contacts.

Generic Writer: (setf contacts) (object)
Package

iclendar.

Methods
Writer Method: (setf contacts) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

contacts.

Generic Reader: created (object)

Accessor to the created date of the component.

See CREATED
See DATE-COMPONENT

Package

iclendar.

Methods
Reader Method: created ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

created.

Generic Writer: (setf created) (object)
Package

iclendar.

Methods
Writer Method: (setf created) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

created.

Generic Reader: delegatee (object)

This parameter defines users to whom this property has been delegated.

The value must be an ADDRESS-LIST.

From RFC5545:
This parameter can be specified on properties with a
CAL-ADDRESS value type. This parameter specifies those calendar users whom have been delegated participation in a group-scheduled event or to-do by the calendar user specified by the property. The individual calendar address parameter values MUST each be specified in a quoted-string.

See ATTENDEE
See ADDRESS-LIST

Package

iclendar.

Methods
Reader Method: delegatee ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

delegatee.

Generic Writer: (setf delegatee) (object)
Package

iclendar.

Methods
Writer Method: (setf delegatee) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

delegatee.

Generic Reader: delegator (object)

This parameter defines users who have delegated the property.

The value must be an ADDRESS-LIST.

From RFC5545:
This parameter can be specified on properties with a CAL-ADDRESS value type. This parameter specifies those calendar users that have delegated their participation in a group-scheduled event or to-do to the calendar user specified by the property. The individual calendar address parameter values MUST each be specified in a quoted-string.

See ATTENDEE
See ADDRESS-LIST

Package

iclendar.

Methods
Reader Method: delegator ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

delegator.

Generic Writer: (setf delegator) (object)
Package

iclendar.

Methods
Writer Method: (setf delegator) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

delegator.

Generic Reader: description (object)

Accessor to the description of the component.

See DESCRIPTION
See TASK-COMPONENT
See DISPLAY-ALARM
See EMAIL-ALARM

Package

iclendar.

Methods
Reader Method: description ((email-alarm email-alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

description.

Reader Method: description ((display-alarm display-alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

description.

Reader Method: description ((task-component task-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

description.

Generic Writer: (setf description) (object)
Package

iclendar.

Methods
Writer Method: (setf description) ((email-alarm email-alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

description.

Writer Method: (setf description) ((display-alarm display-alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

description.

Writer Method: (setf description) ((task-component task-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

description.

Generic Reader: directory-entry (object)

This parameter associates a directory with the property.

The value must be a URI.

From RFC5545:
This parameter can be specified on properties with a CAL-ADDRESS value type. The parameter specifies a reference to the directory entry associated with the calendar user specified by the property. The parameter value is a URI. The URI parameter value MUST be specified in a quoted-string.

Note: While there is no restriction imposed on the URI schemes allowed for this parameter, CID [RFC2392], DATA [RFC2397], FILE [RFC1738], FTP [RFC1738], HTTP [RFC2616], HTTPS [RFC2818], LDAP [RFC4516], and MID [RFC2392] are the URI schemes most commonly used by current implementations.

See ATTENDEE
See ORGANIZER
See URI

Package

iclendar.

Methods
Reader Method: directory-entry ((organizer organizer))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

directory-entry.

Reader Method: directory-entry ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

directory-entry.

Generic Writer: (setf directory-entry) (object)
Package

iclendar.

Methods
Writer Method: (setf directory-entry) ((organizer organizer))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

directory-entry.

Writer Method: (setf directory-entry) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

directory-entry.

Generic Reader: due (object)

Accessor to the due date of the component-

See DUE
See TODO

Package

iclendar.

Methods
Reader Method: due ((todo todo))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

due.

Generic Writer: (setf due) (object)
Package

iclendar.

Methods
Writer Method: (setf due) ((todo todo))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

due.

Generic Reader: duration (object)

Accessor to the duration of the component.

See DURATION
See TASK-COMPONENT

Package

iclendar.

Methods
Reader Method: duration ((alarm alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

duration.

Reader Method: duration ((todo todo))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

duration.

Reader Method: duration ((event event))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

duration.

Reader Method: duration ((task-component task-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

duration.

Generic Writer: (setf duration) (object)
Package

iclendar.

Methods
Writer Method: (setf duration) ((alarm alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

duration.

Writer Method: (setf duration) ((todo todo))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

duration.

Writer Method: (setf duration) ((event event))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

duration.

Writer Method: (setf duration) ((task-component task-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

duration.

Generic Reader: encoding (object)

This parameter defines the encoding of the property value.

Must be one of :8BIT :BASE64.

From RFC5545:
This property parameter identifies the inline encoding
used in a property value. The default encoding is "8BIT", corresponding to a property value consisting of text. The "BASE64" encoding type corresponds to a property value encoded using the "BASE64" encoding defined in [RFC2045].

If the value type parameter is ";VALUE=BINARY", then the inline encoding parameter MUST be specified with the value ";ENCODING=BASE64".

See ATTACHMENT

Package

iclendar.

Methods
Reader Method: encoding ((attachment attachment))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

encoding.

Generic Writer: (setf encoding) (object)
Package

iclendar.

Methods
Writer Method: (setf encoding) ((attachment attachment))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

encoding.

Generic Reader: end (object)

Accessor to the end date of the component.

See END
See EVENT
See FREE/BUSY

Package

iclendar.

Methods
Reader Method: end ((free/busy free/busy))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

end.

Reader Method: end ((event event))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

end.

Generic Writer: (setf end) (object)
Package

iclendar.

Methods
Writer Method: (setf end) ((free/busy free/busy))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

end.

Writer Method: (setf end) ((event event))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

end.

Generic Reader: exception-dates (object)

Accessor to the list of exception dates of the component.

See EXCEPTION-DATE
See DATE-COMPONENT

Package

iclendar.

Methods
Reader Method: exception-dates ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

exception-dates.

Generic Writer: (setf exception-dates) (object)
Package

iclendar.

Methods
Writer Method: (setf exception-dates) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

exception-dates.

Generic Reader: format-type (object)

This parameter defines the MIME type of the property value.

Must be a mime type as a string.

From RFC5545:
This parameter can be specified on properties that are
used to reference an object. The parameter specifies the media type [RFC4288] of the referenced object. For example, on the ATTACH property, an FTP type URI value does not, by itself, necessarily convey the type of content associated with the resource. The parameter value MUST be the text for either an IANA-registered media type or a non-standard media type.

See ATTACHMENT

Package

iclendar.

Methods
Reader Method: format-type ((attachment attachment))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

format-type.

Generic Writer: (setf format-type) (object)
Package

iclendar.

Methods
Writer Method: (setf format-type) ((attachment attachment))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

format-type.

Generic Reader: free/busy-type (object)

This parameter decides whether the free/busy-duration property is free or busy.

Must be a string or one of the following: :FREE :BUSY :BUSY-UNAVAILABLE :BUSY-TENTATIVE.

From RFC5545:
This parameter specifies the free or busy time type.
The value FREE indicates that the time interval is free for
scheduling. The value BUSY indicates that the time interval is
busy because one or more events have been scheduled for that
interval. The value BUSY-UNAVAILABLE indicates that the time
interval is busy and that the interval can not be scheduled. The
value BUSY-TENTATIVE indicates that the time interval is busy
because one or more events have been tentatively scheduled for
that interval. If not specified on a property that allows this
parameter, the default is BUSY. Applications MUST treat x-name
and iana-token values they don’t recognize the same way as they
would the BUSY value.

See FREE/BUSY-PERIOD

Package

iclendar.

Methods
Reader Method: free/busy-type ((free/busy-period free/busy-period))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

free/busy-type.

Generic Writer: (setf free/busy-type) (object)
Package

iclendar.

Methods
Writer Method: (setf free/busy-type) ((free/busy-period free/busy-period))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

free/busy-type.

Generic Reader: geographic-location (object)

Accessor to the geographic location of the component.

See GEOGRAPHIC-LOCATION
See TASK-COMPONENT

Package

iclendar.

Methods
Reader Method: geographic-location ((task-component task-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

geographic-location.

Generic Writer: (setf geographic-location) (object)
Package

iclendar.

Methods
Writer Method: (setf geographic-location) ((task-component task-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

geographic-location.

Generic Function: identifier (object)

Returns the identifier of the class or object.

See PROPERTY
See COMPONENT

Package

iclendar.

Methods
Reader Method: identifier ((x-component x-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

identifier.

Method: identifier ((component component))
Source

protocol.lisp.

Method: identifier ((property property))
Source

protocol.lisp.

Reader Method: identifier ((serializable-class serializable-class))

automatically generated reader method

Source

protocol.lisp.

Target Slot

identifier.

Generic Writer: (setf identifier) (object)
Package

iclendar.

Methods
Writer Method: (setf identifier) ((x-component x-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

identifier.

Generic Reader: language (object)

This parameter defines the language of the property’s value.

Must be a TEXT.

From RFC5545:
This parameter identifies the language of the text in
the property value and of all property parameter values of the property. The value of the LANGUAGE property parameter is that defined in [RFC5646].

For transport in a MIME entity, the Content-Language header field can be used to set the default language for the entire body part. Otherwise, no default language is assumed.

See ATTENDEE
See CATEGORIES
See COMMENT
See CONTACT
See DESCRIPTION
See LOCATION
See ORGANIZER
See RESOURCE
See SUMMARY
See TZNAME
See TEXT

Package

iclendar.

Methods
Reader Method: language ((tzname tzname))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Reader Method: language ((summary summary))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Reader Method: language ((resource resource))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Reader Method: language ((organizer organizer))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Reader Method: language ((location location))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Reader Method: language ((description description))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Reader Method: language ((contact contact))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Reader Method: language ((comment comment))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Reader Method: language ((category category))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Reader Method: language ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

language.

Generic Writer: (setf language) (object)
Package

iclendar.

Methods
Writer Method: (setf language) ((tzname tzname))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Writer Method: (setf language) ((summary summary))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Writer Method: (setf language) ((resource resource))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Writer Method: (setf language) ((organizer organizer))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Writer Method: (setf language) ((location location))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Writer Method: (setf language) ((description description))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Writer Method: (setf language) ((contact contact))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Writer Method: (setf language) ((comment comment))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Writer Method: (setf language) ((category category))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Writer Method: (setf language) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

language.

Generic Reader: last-modification (object)

Accessor to the last modification date of the component.

See LAST-MODIFICATION
See DATE-COMPONENT
See TIME-ZONE

Package

iclendar.

Methods
Reader Method: last-modification ((time-zone time-zone))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

last-modification.

Reader Method: last-modification ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

last-modification.

Generic Writer: (setf last-modification) (object)
Package

iclendar.

Methods
Writer Method: (setf last-modification) ((time-zone time-zone))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

last-modification.

Writer Method: (setf last-modification) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

last-modification.

Generic Reader: location (object)

Accessor to the non-geographic location of the component.

See LOCATION
See TASK-COMPONENT

Package

iclendar.

Methods
Reader Method: location ((task-component task-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

location.

Generic Writer: (setf location) (object)
Package

iclendar.

Methods
Writer Method: (setf location) ((task-component task-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

location.

Generic Reader: membership (object)

This parameter identifies people who are a member of the property.

Must be an ADDRESS-LIST.

From RFC5545:
This parameter can be specified on properties with a CAL-ADDRESS value type. The parameter identifies the groups or list membership for the calendar user specified by the property. The parameter value is either a single calendar address in a quoted-string or a COMMA-separated list of calendar addresses, each in a quoted-string. The individual calendar address parameter values MUST each be specified in a quoted-string.

See ATTENDEE
See ADDRESS-LIST

Package

iclendar.

Methods
Reader Method: membership ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

membership.

Generic Writer: (setf membership) (object)
Package

iclendar.

Methods
Writer Method: (setf membership) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

membership.

Generic Reader: offset-from (object)

Accessor to what this component is offset from.

See OFFSET-FROM
See TIME-ZONE-COMPONENT

Package

iclendar.

Methods
Reader Method: offset-from ((time-zone-component time-zone-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

offset-from.

Generic Writer: (setf offset-from) (object)
Package

iclendar.

Methods
Writer Method: (setf offset-from) ((time-zone-component time-zone-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

offset-from.

Generic Reader: offset-to (object)

Accessor to what this component is offset to.

See OFFSET-TO
See TIME-ZONE-COMPONENT

Package

iclendar.

Methods
Reader Method: offset-to ((time-zone-component time-zone-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

offset-to.

Generic Writer: (setf offset-to) (object)
Package

iclendar.

Methods
Writer Method: (setf offset-to) ((time-zone-component time-zone-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

offset-to.

Generic Reader: organizer (object)

Accessor to the organizer of the component.

See ORGANIZER
See DATE-COMPONENT
See FREE/BUSY

Package

iclendar.

Methods
Reader Method: organizer ((free/busy free/busy))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

organizer.

Reader Method: organizer ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

organizer.

Generic Writer: (setf organizer) (object)
Package

iclendar.

Methods
Writer Method: (setf organizer) ((free/busy free/busy))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

organizer.

Writer Method: (setf organizer) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

organizer.

Generic Function: parameters (property)

Returns an alist of parameters that are defined and set on the property.

The alist has the following structure:
PARAMETERS ::= ((IDENTIFIER VALUE)*)
IDENTIFIER — The parameter’s identifier string.
VALUE — The parameter’s value.

See PROPERTY

Package

iclendar.

Methods
Method: parameters ((property property))
Source

protocol.lisp.

Generic Reader: participation-status (object)

This parameter describes the status of a participation.

Must be a string or one of :NEEDS-ACTION :ACCEPTED :DECLINED :TENTATIVE :DELEGATED :COMPLETED :IN-PROCESS.

From RFC5545:
This parameter can be specified on properties with a
CAL-ADDRESS value type. The parameter identifies the participation status for the calendar user specified by the property value. The parameter values differ depending on whether they are associated with a group-scheduled VEVENT, VTODO, or VJOURNAL. The values MUST match one of the values allowed for the given calendar component. If not specified on a property that allows this parameter, the default value is NEEDS-ACTION. Applications MUST treat x-name and iana-token values they don’t recognize the same way as they would the NEEDS-ACTION value.

See ATTENDEE

Package

iclendar.

Methods
Reader Method: participation-status ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

participation-status.

Generic Writer: (setf participation-status) (object)
Package

iclendar.

Methods
Writer Method: (setf participation-status) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

participation-status.

Generic Reader: periods (object)

Accessor to the list of free/busy periods of the component.

See FREE/BUSY-PERIOD
See FREE/BUSY

Package

iclendar.

Methods
Reader Method: periods ((free/busy free/busy))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

periods.

Generic Writer: (setf periods) (object)
Package

iclendar.

Methods
Writer Method: (setf periods) ((free/busy free/busy))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

periods.

Generic Reader: priority (object)

Accessor to the priority of the component.

See PRIORITY
See TASK-COMPONENT

Package

iclendar.

Methods
Reader Method: priority ((task-component task-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

priority.

Generic Writer: (setf priority) (object)
Package

iclendar.

Methods
Writer Method: (setf priority) ((task-component task-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

priority.

Generic Reader: product (object)

Accessor to the product ID of the calendar.

The product ID is required and should identify the product that’s emitting the calendar object.

See CALENDAR
See PRODUCT

Package

iclendar.

Methods
Reader Method: product ((calendar calendar))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

product.

Generic Writer: (setf product) (object)
Package

iclendar.

Methods
Writer Method: (setf product) ((calendar calendar))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

product.

Generic Function: properties (component)

Returns a list of property instances available in the component.

See PROPERTY
See COMPONENT

Package

iclendar.

Methods
Method: properties ((component component))
Source

protocol.lisp.

Generic Reader: recurrence-dates (object)

Accessor to the list of recurrence dates of the component.

See RECURRENCE-DATE
See DATE-COMPONENT
See TIME-ZONE-COMPONENT

Package

iclendar.

Methods
Reader Method: recurrence-dates ((time-zone-component time-zone-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

recurrence-dates.

Reader Method: recurrence-dates ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

recurrence-dates.

Generic Writer: (setf recurrence-dates) (object)
Package

iclendar.

Methods
Writer Method: (setf recurrence-dates) ((time-zone-component time-zone-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

recurrence-dates.

Writer Method: (setf recurrence-dates) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

recurrence-dates.

Generic Reader: recurrence-id (object)

Accessor to the recurrence ID of the component.

See RECURRENCE-ID
See DATE-COMPONENT

Package

iclendar.

Methods
Reader Method: recurrence-id ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

recurrence-id.

Generic Writer: (setf recurrence-id) (object)
Package

iclendar.

Methods
Writer Method: (setf recurrence-id) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

recurrence-id.

Generic Reader: recurrence-identifier-range (object)

This parameter describes the range the recurrence property affects.

Must be :THIS-AND-FUTURE.

From RFC5545:
This parameter can be specified on a property that
specifies a recurrence identifier. The parameter specifies the effective range of recurrence instances that is specified by the property. The effective range is from the recurrence identifier specified by the property. If this parameter is not specified on an allowed property, then the default range is the single instance specified by the recurrence identifier value of the property. The parameter value can only be "THISANDFUTURE" to indicate a range defined by the recurrence identifier and all subsequent instances. The value "THISANDPRIOR" is deprecated by this revision of iCalendar and MUST NOT be generated by applications.

Package

iclendar.

Methods
Reader Method: recurrence-identifier-range ((recurrence-id recurrence-id))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

recurrence-identifier-range.

Generic Writer: (setf recurrence-identifier-range) (object)
Package

iclendar.

Methods
Writer Method: (setf recurrence-identifier-range) ((recurrence-id recurrence-id))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

recurrence-identifier-range.

Generic Reader: recurrence-rule (object)

Accessor to the recurrence rule descriptor of the component.

See RECURRENCE-RULE
See DATE-COMPONENT
See TIME-ZONE-COMPONENT

Package

iclendar.

Methods
Reader Method: recurrence-rule ((time-zone-component time-zone-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

recurrence-rule.

Reader Method: recurrence-rule ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

recurrence-rule.

Generic Writer: (setf recurrence-rule) (object)
Package

iclendar.

Methods
Writer Method: (setf recurrence-rule) ((time-zone-component time-zone-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

recurrence-rule.

Writer Method: (setf recurrence-rule) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

recurrence-rule.

Accessor to the related entity of the component.

See RELATED
See DATE-COMPONENT

Package

iclendar.

Methods

automatically generated reader method

Source

standard-components.lisp.

Target Slot

related.

Package

iclendar.

Methods

automatically generated writer method

Source

standard-components.lisp.

Target Slot

related.

Generic Reader: relationship-type (object)

This parameter describes the type of relationship this property has to another calendar.

Must be a string or one of :PARENT :CHILD :SIBLING.

From RFC5545:
This parameter can be specified on a property that
references another related calendar. The parameter specifies the
hierarchical relationship type of the calendar component
referenced by the property. The parameter value can be PARENT, to
indicate that the referenced calendar component is a superior of
calendar component; CHILD to indicate that the referenced calendar
component is a subordinate of the calendar component; or SIBLING
to indicate that the referenced calendar component is a peer of
the calendar component. If this parameter is not specified on an
allowable property, the default relationship type is PARENT.
Applications MUST treat x-name and iana-token values they don’t
recognize the same way as they would the PARENT value.

See RELATED

Package

iclendar.

Methods
Reader Method: relationship-type ((related related))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

relationship-type.

Generic Writer: (setf relationship-type) (object)
Package

iclendar.

Methods
Writer Method: (setf relationship-type) ((related related))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

relationship-type.

Generic Reader: repeat (object)

Accessor to the repeat count of the component.

See REPEAT
See ALARM

Package

iclendar.

Methods
Reader Method: repeat ((alarm alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

repeat.

Generic Writer: (setf repeat) (object)
Package

iclendar.

Methods
Writer Method: (setf repeat) ((alarm alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

repeat.

Generic Reader: reply-requested (object)

This parameter describes whether a reply has been requested of the property’s users.

Must be a BOOLEAN.

From RFC5545:
This parameter can be specified on properties with a
CAL-ADDRESS value type. The parameter identifies the expectation
of a reply from the calendar user specified by the property value.
This parameter is used by the "Organizer" to request a
participation status reply from an "Attendee" of a group-scheduled
event or to-do. If not specified on a property that allows this
parameter, the default value is FALSE.

See ATTENDEE

Package

iclendar.

Methods
Reader Method: reply-requested ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

reply-requested.

Generic Writer: (setf reply-requested) (object)
Package

iclendar.

Methods
Writer Method: (setf reply-requested) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

reply-requested.

Generic Reader: request-status (object)

Accessor to the request status of the component.

See REQUEST-STATUS
See CALENDAR-COMPONENT

Package

iclendar.

Methods
Reader Method: request-status ((calendar-component calendar-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

request-status.

Generic Writer: (setf request-status) (object)
Package

iclendar.

Methods
Writer Method: (setf request-status) ((calendar-component calendar-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

request-status.

Generic Reader: resources (object)

Accessor to the list of resources of the component.

See RESOURCES
See DATE-COMPONENT

Package

iclendar.

Methods
Reader Method: resources ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

resources.

Generic Writer: (setf resources) (object)
Package

iclendar.

Methods
Writer Method: (setf resources) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

resources.

Generic Reader: role (object)

This parameter describes the role of the property’s value in relation to the component.

Must be a string or one of :CHAIR :REQ-PARTICIPANT :OPT-PARTICIPANT :NON-PARTICIPANT.

From RFC5545:
This parameter can be specified on properties with a
CAL-ADDRESS value type. The parameter specifies the participation
role for the calendar user specified by the property in the group
schedule calendar component. If not specified on a property that
allows this parameter, the default value is REQ-PARTICIPANT.
Applications MUST treat x-name and iana-token values they don’t
recognize the same way as they would the REQ-PARTICIPANT value.

See ATTENDEE

Package

iclendar.

Methods
Reader Method: role ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

role.

Generic Writer: (setf role) (object)
Package

iclendar.

Methods
Writer Method: (setf role) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

role.

Generic Reader: scale (object)

Accessor to the scale of the calendar.

See CALENDAR
See SCALE

Package

iclendar.

Methods
Reader Method: scale ((calendar calendar))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

scale.

Generic Writer: (setf scale) (object)
Package

iclendar.

Methods
Writer Method: (setf scale) ((calendar calendar))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

scale.

Generic Reader: sent-by (object)

This parameter describes who this property was sent by.

Must be an ADDRESS.

From RFC5545:
This parameter can be specified on properties with a CAL-ADDRESS value type. The parameter specifies the calendar user that is acting on behalf of the calendar user specified by the property. The parameter value MUST be a mailto URI as defined in [RFC2368]. The individual calendar address parameter values MUST each be specified in a quoted-string.

See ATTENDEE
See ORGANIZER
See ADDRESS

Package

iclendar.

Methods
Reader Method: sent-by ((organizer organizer))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

sent-by.

Reader Method: sent-by ((attendee attendee))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

sent-by.

Generic Writer: (setf sent-by) (object)
Package

iclendar.

Methods
Writer Method: (setf sent-by) ((organizer organizer))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

sent-by.

Writer Method: (setf sent-by) ((attendee attendee))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

sent-by.

Generic Reader: sequence-number (object)

Accessor to the sequence number of the component.

See SEQUENCE-NUMBER
See DATE-COMPONENT

Package

iclendar.

Methods
Reader Method: sequence-number ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

sequence-number.

Generic Writer: (setf sequence-number) (object)
Package

iclendar.

Methods
Writer Method: (setf sequence-number) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

sequence-number.

Generic Function: serialize-object (object stream)

Serialize the object to the given stream.

This function has methods for each of the standard-types, as well as for the generic property and component classes defined by the iCalendar standard. If you need special behaviour for the serialisation of a new type, property, or component, you should add appropriate methods to this function.

Always returns the object parameter.

See SERIALIZE

Package

iclendar.

Source

serializer.lisp.

Methods
Method: serialize-object :after ((component component-container) stream)
Method: serialize-object ((component component) stream)
Method: serialize-object :around ((component component) stream)
Method: serialize-object ((property attachment) stream)
Method: serialize-object ((property property) stream)
Method: serialize-object ((object geo) stream)
Method: serialize-object ((object utc-offset) stream)
Method: serialize-object ((object recurrence) stream)
Method: serialize-object ((object period) stream)
Method: serialize-object ((object time-span) stream)
Method: serialize-object ((object date-time) stream)
Method: serialize-object ((object date) stream)
Method: serialize-object ((object week-day-num) stream)
Method: serialize-object ((string string) stream)
Method: serialize-object ((symbol symbol) stream)
Method: serialize-object :around (object stream)
Generic Reader: stamp (object)

Accessor to the creation stamp of the component.

See STAMP
See CALENDAR-COMPONENT

Package

iclendar.

Methods
Reader Method: stamp ((calendar-component calendar-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

stamp.

Generic Writer: (setf stamp) (object)
Package

iclendar.

Methods
Writer Method: (setf stamp) ((calendar-component calendar-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

stamp.

Generic Reader: start (object)

Accessor to the start date of the component.

See START
See CALENDAR-COMPONENT
See TIME-ZONE-COMPONENT

Package

iclendar.

Methods
Reader Method: start ((time-zone-component time-zone-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

start.

Reader Method: start ((calendar-component calendar-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

start.

Generic Writer: (setf start) (object)
Package

iclendar.

Methods
Writer Method: (setf start) ((time-zone-component time-zone-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

start.

Writer Method: (setf start) ((calendar-component calendar-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

start.

Generic Reader: status (object)

Accessor to the status of the component.

See STATUS
See DATE-COMPONENT

Package

iclendar.

Methods
Reader Method: status ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

status.

Generic Writer: (setf status) (object)
Package

iclendar.

Methods
Writer Method: (setf status) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

status.

Generic Reader: summary (object)

Accessor to the summary of the component.

See SUMMARY
See DATE-COMPONENT
See EMAIL-ALARM

Package

iclendar.

Methods
Reader Method: summary ((email-alarm email-alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

summary.

Reader Method: summary ((date-component date-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

summary.

Generic Writer: (setf summary) (object)
Package

iclendar.

Methods
Writer Method: (setf summary) ((email-alarm email-alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

summary.

Writer Method: (setf summary) ((date-component date-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

summary.

Generic Reader: time-zone-identifier (object)

This parameter describes a time zone identifier for the property’s value.

Must be a TEXT.

From RFC5545:
This parameter MUST be specified on the DTSTART,
DTEND, DUE, EXDATE, and RDATE properties when either a
DATE-TIME or TIME value type is specified and when the value is neither a UTC or a floating time. Refer to the DATE-TIME or
TIME value type definition for a description of UTC and floating time formats. This property parameter specifies a text value
that uniquely identifies the VTIMEZONE calendar component to be used when evaluating the time portion of the property. The value of the TZID property parameter will be equal to the value of the TZID property for the matching time zone definition. An
individual VTIMEZONE calendar component MUST be specified for
each unique TZID parameter value specified in the iCalendar object.

The parameter MUST be specified on properties with a DATE-TIME value if the DATE-TIME is not either a UTC or a floating time. Failure to include and follow VTIMEZONE definitions in iCalendar objects may lead to inconsistent understanding of the local time
at any given location.

The presence of the SOLIDUS character as a prefix, indicates that this TZID represents a unique ID in a globally defined time zone registry (when such registry is defined).

Note: This document does not define a naming convention for
time zone identifiers. Implementers may want to use the naming conventions defined in existing time zone specifications such
as the public-domain TZ database [TZDB]. The specification of globally unique time zone identifiers is not addressed by this document and is left for future study.

The following are examples of this property parameter:

DTSTART;TZID=America/New_York:19980119T020000

DTEND;TZID=America/New_York:19980119T030000

The TZID property parameter MUST NOT be applied to DATE
properties and DATE-TIME or TIME properties whose time values are specified in UTC.

The use of local time in a DATE-TIME or TIME value without the
TZID property parameter is to be interpreted as floating time, regardless of the existence of VTIMEZONE calendar components in
the iCalendar object.

For more information, see the sections on the value types DATE- TIME and TIME.

See DUE
See END
See EXCEPTION-DATE
See RECURRENCE-ID
See RECURRENCE-DATE
See START
See TRIGGER
See TEXT

Package

iclendar.

Methods
Reader Method: time-zone-identifier ((trigger trigger))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Reader Method: time-zone-identifier ((start start))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Reader Method: time-zone-identifier ((recurrence-date recurrence-date))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Reader Method: time-zone-identifier ((recurrence-id recurrence-id))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Reader Method: time-zone-identifier ((exception-date exception-date))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Reader Method: time-zone-identifier ((end end))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Reader Method: time-zone-identifier ((due due))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Generic Writer: (setf time-zone-identifier) (object)
Package

iclendar.

Methods
Writer Method: (setf time-zone-identifier) ((trigger trigger))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Writer Method: (setf time-zone-identifier) ((start start))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Writer Method: (setf time-zone-identifier) ((recurrence-date recurrence-date))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Writer Method: (setf time-zone-identifier) ((recurrence-id recurrence-id))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Writer Method: (setf time-zone-identifier) ((exception-date exception-date))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Writer Method: (setf time-zone-identifier) ((end end))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Writer Method: (setf time-zone-identifier) ((due due))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

time-zone-identifier.

Generic Reader: transparency (object)

Accessor to the transparency of the component.

See TRANSPARENCY
See EVENT

Package

iclendar.

Methods
Reader Method: transparency ((event event))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

transparency.

Generic Writer: (setf transparency) (object)
Package

iclendar.

Methods
Writer Method: (setf transparency) ((event event))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

transparency.

Generic Reader: transport-method (object)

Accessor to the transport-method of the calendar.

See CALENDAR
See TRANSPORT-METHOD

Package

iclendar.

Methods
Reader Method: transport-method ((calendar calendar))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

transport-method.

Generic Writer: (setf transport-method) (object)
Package

iclendar.

Methods
Writer Method: (setf transport-method) ((calendar calendar))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

transport-method.

Generic Reader: trigger (object)

Accessor to the trigger of the component.

See TRIGGER
See ALARM

Package

iclendar.

Methods
Reader Method: trigger ((alarm alarm))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

trigger.

Generic Writer: (setf trigger) (object)
Package

iclendar.

Methods
Writer Method: (setf trigger) ((alarm alarm))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

trigger.

Generic Reader: trigger-on (object)

This parameter describes when the trigger should be applied.

Must be one of :START :END.

From RFC5545:
This parameter can be specified on properties that
specify an alarm trigger with a "DURATION" value type. The parameter specifies whether the alarm will trigger relative to the start or end of the calendar component. The parameter value START will set the alarm to trigger off the start of the calendar component; the parameter value END will set the alarm to trigger off the end of the calendar component. If the parameter is not specified on an allowable property, then the default is START.

See TRIGGER

Package

iclendar.

Methods
Reader Method: trigger-on ((trigger trigger))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

trigger-on.

Generic Writer: (setf trigger-on) (object)
Package

iclendar.

Methods
Writer Method: (setf trigger-on) ((trigger trigger))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

trigger-on.

Generic Reader: tz-names (object)

Accessor to the list of time zone names of the component.

See TZNAME
See TIME-ZONE-COMPONENT

Package

iclendar.

Methods
Reader Method: tz-names ((time-zone-component time-zone-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

tz-names.

Generic Writer: (setf tz-names) (object)
Package

iclendar.

Methods
Writer Method: (setf tz-names) ((time-zone-component time-zone-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

tz-names.

Generic Reader: uid (object)

Accessor to the component’s unique ID.

See UID
See TZID
See CALENDAR-COMPONENT
See TIME-ZONE

Package

iclendar.

Methods
Reader Method: uid ((time-zone time-zone))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

uid.

Reader Method: uid ((calendar-component calendar-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

uid.

Generic Writer: (setf uid) (object)
Package

iclendar.

Methods
Writer Method: (setf uid) ((time-zone time-zone))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

uid.

Writer Method: (setf uid) ((calendar-component calendar-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

uid.

Generic Reader: url (object)

Accessor to the component’s URL.

See URL
See TZURL
See CALENDAR-COMPONENT
See TIME-ZONE

Package

iclendar.

Methods
Reader Method: url ((time-zone time-zone))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

url.

Reader Method: url ((calendar-component calendar-component))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

url.

Generic Writer: (setf url) (object)
Package

iclendar.

Methods
Writer Method: (setf url) ((time-zone time-zone))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

url.

Writer Method: (setf url) ((calendar-component calendar-component))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

url.

Generic Reader: value (object)

Accessor to the value of a property.

See PROPERTY

Package

iclendar.

Methods
Reader Method: value ((property property))

automatically generated reader method

Source

protocol.lisp.

Target Slot

value.

Generic Writer: (setf value) (object)
Package

iclendar.

Methods
Writer Method: (setf value) ((property property))

automatically generated writer method

Source

protocol.lisp.

Target Slot

value.

Generic Reader: value-type (object)

This parameter explicitly defines the type of the property’s value.

Must be a string or one of :BINARY :BOOLEAN :CAL-ADDRESS :DATE :DATE-TIME :DURATION :FLOAT :INTEGER :PERIOD :RECUR :TEXT :TIME :URI :UTC-OFFSET.

From RFC5545:
This parameter specifies the value type and format of
the property value. The property values MUST be of a single value type. For example, a RDATE property cannot have a combination
of DATE-TIME and TIME value types.

If the property’s value is the default value type, then this parameter need not be specified. However, if the property’s default value type is overridden by some other allowable value type, then this parameter MUST be specified.

Applications MUST preserve the value data for x-name and iana- token values that they don’t recognize without attempting to interpret or parse the value data.

See ATTACHMENT
See DTEND
See EXCEPTION-DATE
See RECURRENCE-ID
See RECURRENCE-DATE
See START
See TRIGGER

Package

iclendar.

Methods
Reader Method: value-type ((trigger trigger))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

value-type.

Reader Method: value-type ((start start))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

value-type.

Reader Method: value-type ((recurrence-date recurrence-date))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

value-type.

Reader Method: value-type ((recurrence-id recurrence-id))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

value-type.

Reader Method: value-type ((exception-date exception-date))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

value-type.

Reader Method: value-type ((end end))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

value-type.

Reader Method: value-type ((due due))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

value-type.

Reader Method: value-type ((attachment attachment))

automatically generated reader method

Source

standard-properties.lisp.

Target Slot

value-type.

Generic Writer: (setf value-type) (object)
Package

iclendar.

Methods
Writer Method: (setf value-type) ((trigger trigger))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((start start))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((recurrence-date recurrence-date))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((recurrence-id recurrence-id))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((exception-date exception-date))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((end end))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((due due))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

value-type.

Writer Method: (setf value-type) ((attachment attachment))

automatically generated writer method

Source

standard-properties.lisp.

Target Slot

value-type.

Generic Reader: version (object)

Accessor to the version of the calendar.

See CALENDAR
See VERSION

Package

iclendar.

Methods
Reader Method: version ((calendar calendar))

automatically generated reader method

Source

standard-components.lisp.

Target Slot

version.

Generic Writer: (setf version) (object)
Package

iclendar.

Methods
Writer Method: (setf version) ((calendar calendar))

automatically generated writer method

Source

standard-components.lisp.

Target Slot

version.

Generic Reader: x-parameters (object)

Accesses the hash-table of additional, non-standard parameters on the property.

See PROPERTY

Package

iclendar.

Methods
Reader Method: x-parameters ((property property))

automatically generated reader method

Source

protocol.lisp.

Target Slot

x-parameters.

Generic Writer: (setf x-parameters) (object)
Package

iclendar.

Methods
Writer Method: (setf x-parameters) ((property property))

automatically generated writer method

Source

protocol.lisp.

Target Slot

x-parameters.

Generic Reader: x-properties (object)

Accesses the list of additional, non-standard properties on the component.

See COMPONENT

Package

iclendar.

Methods
Reader Method: x-properties ((component component))

automatically generated reader method

Source

protocol.lisp.

Target Slot

x-properties.

Generic Writer: (setf x-properties) (object)
Package

iclendar.

Methods
Writer Method: (setf x-properties) ((component component))

automatically generated writer method

Source

protocol.lisp.

Target Slot

x-properties.


5.1.4 Standalone methods

Method: compute-effective-slot-definition ((class component-class) id direct-slots)
Package

sb-mop.

Source

protocol.lisp.

Method: compute-effective-slot-definition ((class property-class) id direct-slots)
Package

sb-mop.

Source

protocol.lisp.

Method: direct-slot-definition-class ((class component-class) &key property name)
Package

sb-mop.

Source

protocol.lisp.

Method: direct-slot-definition-class ((class property-class) &key name)
Package

sb-mop.

Source

protocol.lisp.

Method: effective-slot-definition-class ((class component-class) &key name)
Package

sb-mop.

Source

protocol.lisp.

Method: effective-slot-definition-class ((class property-class) &key name)
Package

sb-mop.

Source

protocol.lisp.

Method: finalize-inheritance :after ((class serializable-class))
Package

sb-mop.

Source

protocol.lisp.

Method: initialize-instance :around ((slot direct-parameter-slot) &rest args)
Source

protocol.lisp.

Method: initialize-instance :around ((slot direct-property-slot) &rest args)
Source

protocol.lisp.

Method: print-object ((property property) stream)
Source

protocol.lisp.

Method: print-object ((utc-offset utc-offset) stream0)
Source

standard-types.lisp.

Method: print-object ((period period) stream0)
Source

standard-types.lisp.

Method: print-object ((time-span time-span) stream0)
Source

standard-types.lisp.

Method: print-object ((date-time date-time) stream0)
Source

standard-types.lisp.

Method: print-object ((time-zone-component time-zone-component) stream0)
Source

standard-components.lisp.

Method: print-object ((time-zone time-zone) stream0)
Source

standard-components.lisp.

Method: print-object ((todo todo) stream0)
Source

standard-components.lisp.

Method: print-object ((calendar calendar) stream0)
Source

standard-components.lisp.

Method: print-object ((date date) stream0)
Source

standard-types.lisp.

Method: print-object ((week-day-num week-day-num) stream0)
Source

standard-types.lisp.

Method: print-object ((geo geo) stream0)
Source

standard-types.lisp.

Method: print-object ((calendar-component calendar-component) stream0)
Source

standard-components.lisp.

Method: print-object ((recurrence recurrence) stream0)
Source

standard-types.lisp.

Method: print-object ((event event) stream0)
Source

standard-components.lisp.

Method: print-object ((alarm alarm) stream0)
Source

standard-components.lisp.

Method: shared-initialize :after ((component component) slots &key)
Source

protocol.lisp.

Method: shared-initialize ((class serializable-class) slot-names &key identifier)
Source

protocol.lisp.

Method: slot-makunbound-using-class :before ((class standard-class) (object standard-object) (slot property-slot))
Package

sb-mop.

Source

protocol.lisp.

Method: (setf slot-value-using-class) ((class standard-class) (object standard-object) (slot property-slot))
Package

sb-mop.

Source

protocol.lisp.

Method: (setf slot-value-using-class) :before ((class standard-class) (object standard-object) (slot property-slot))
Package

sb-mop.

Source

protocol.lisp.

Method: stream-advance-to-column ((stream icalendar-stream) column)
Package

sb-gray.

Source

stream.lisp.

Method: stream-clear-output ((stream icalendar-stream))
Package

sb-gray.

Source

stream.lisp.

Method: stream-file-position ((stream icalendar-stream))
Package

trivial-gray-streams.

Source

stream.lisp.

Method: stream-finish-output ((stream icalendar-stream))
Package

sb-gray.

Source

stream.lisp.

Method: stream-force-output ((stream icalendar-stream))
Package

sb-gray.

Source

stream.lisp.

Method: stream-fresh-line ((stream icalendar-stream))
Package

sb-gray.

Source

stream.lisp.

Method: stream-line-column ((stream icalendar-stream))
Package

sb-gray.

Source

stream.lisp.

Method: stream-start-line-p ((stream icalendar-stream))
Package

sb-gray.

Source

stream.lisp.

Method: stream-terpri ((stream icalendar-stream))
Package

sb-gray.

Source

stream.lisp.

Method: stream-write-char ((stream icalendar-stream) char)
Package

sb-gray.

Source

stream.lisp.

Method: stream-write-sequence ((stream icalendar-stream) sequence start end &key)
Package

trivial-gray-streams.

Source

stream.lisp.

Method: stream-write-string ((stream icalendar-stream) string &optional start end)
Package

sb-gray.

Source

stream.lisp.

Method: validate-superclass ((class standard-class) (super component-class))
Package

sb-mop.

Source

protocol.lisp.

Method: validate-superclass ((class component-class) (super component-class))
Package

sb-mop.

Source

protocol.lisp.

Method: validate-superclass ((class component-class) (super standard-class))
Package

sb-mop.

Source

protocol.lisp.

Method: validate-superclass ((class standard-class) (super property-class))
Package

sb-mop.

Source

protocol.lisp.

Method: validate-superclass ((class property-class) (super property-class))
Package

sb-mop.

Source

protocol.lisp.

Method: validate-superclass ((class property-class) (super standard-class))
Package

sb-mop.

Source

protocol.lisp.


5.1.5 Structures

Structure: date

Describes a specific day on the calendar.

See MAKE-DATE
See DATE-YEAR
See DATE-MONTH
See DATE-DATE

Package

iclendar.

Source

standard-types.lisp.

Direct superclasses

structure-object.

Direct subclasses

date-time.

Direct methods
Direct slots
Slot: year
Type

(integer 0)

Initform

(iclendar::c-year)

Readers

date-year.

Writers

(setf date-year).

Slot: month
Type

(integer 1 12)

Initform

(iclendar::c-month)

Readers

date-month.

Writers

(setf date-month).

Slot: date
Type

(integer 1 31)

Initform

(iclendar::c-date)

Readers

date-date.

Writers

(setf date-date).

Structure: date-time

Description of a date and time on the calendar.

From RFC5545:
If the property permits, multiple DATE-TIME values
are specified as a COMMA-separated list of values. No additional content value encoding (i.e., BACKSLASH character encoding, see Section 3.3.11) is defined for this value type.

The DATE-TIME value type is used to identify values that contain a precise calendar date and time of day. The format is based on the [ISO.8601.2004] complete representation, basic format for a calendar date and time of day. The text format is a concatenation of the date, followed by the LATIN CAPITAL LETTER T character, the time designator, followed by the time format.

The DATE-TIME value type expresses time values in three forms:

The form of date and time with UTC offset MUST NOT be used. For example, the following is not valid for a DATE-TIME value:

19980119T230000-0800 ;Invalid time format

FORM #1: DATE WITH LOCAL TIME

The date with local time form is simply a DATE-TIME value that does not contain the UTC designator nor does it reference a time zone. For example, the following represents January 18, 1998, at 11 PM:

19980118T230000

DATE-TIME values of this type are said to be floating and are not bound to any time zone in particular. They are used to represent the same hour, minute, and second value regardless of which time zone is currently being observed. For example, an event can be defined that indicates that an individual will be busy from 11:00 AM to 1:00 PM every day, no matter which time zone the person is in. In these cases, a local time can be specified. The recipient of an iCalendar object with a property value consisting of a local time, without any relative time zone information, SHOULD interpret the value as being fixed to whatever time zone the ATTENDEE is in at any given moment. This means that two Attendees, in different time zones, receiving the same event definition as a floating time, may be participating in the event at different actual times. Floating time SHOULD only be used where that is the reasonable behavior.

In most cases, a fixed time is desired. To properly communicate a fixed time in a property value, either UTC time or local time with time zone reference MUST be specified.

The use of local time in a DATE-TIME value without the TZID property parameter is to be interpreted as floating time, regardless of the existence of VTIMEZONE calendar components in the iCalendar object.

FORM #2: DATE WITH UTC TIME

The date with UTC time, or absolute time, is identified by a LATIN CAPITAL LETTER Z suffix character, the UTC designator, appended to the time value. For example, the following represents January 19, 1998, at 0700 UTC:

19980119T070000Z

The TZID property parameter MUST NOT be applied to DATE-TIME properties whose time values are specified in UTC.

FORM #3: DATE WITH LOCAL TIME AND TIME ZONE REFERENCE

The date and local time with reference to time zone information is identified by the use the TZID property parameter to reference the appropriate time zone definition. TZID is discussed in detail in Section 3.2.19. For example, the following represents 2:00 A.M. in New York on January 19, 1998:

TZID=America/New_York:19980119T020000

If, based on the definition of the referenced time zone, the local time described occurs more than once (when changing from daylight to standard time), the DATE-TIME value refers to the first occurrence of the referenced time. Thus, TZID=America/ New_York:20071104T013000 indicates November 4, 2007 at 1:30 A.M. EDT (UTC-04:00). If the local time described does not occur (when changing from standard to daylight time), the DATE-TIME value is interpreted using the UTC offset before the gap in local times. Thus, TZID=America/New_York:20070311T023000 indicates March 11, 2007 at 3:30 A.M. EDT (UTC-04:00), one hour after 1:30 A.M. EST (UTC-05:00).

A time value MUST only specify the second 60 when specifying a positive leap second. For example:

19970630T235960Z

Implementations that do not support leap seconds SHOULD interpret the second 60 as equivalent to the second 59.

See MAKE-DATE-TIME
See DATE-TIME-YEAR
See DATE-TIME-MONTH
See DATE-TIME-DATE
See DATE-TIME-HOUR
See DATE-TIME-MINUTE
See DATE-TIME-SECOND
See DATE-TIME-UTC-P

Package

iclendar.

Source

standard-types.lisp.

Direct superclasses

date.

Direct methods
Direct slots
Slot: hour
Type

(integer 0 23)

Initform

(iclendar::c-hour)

Readers

date-time-hour.

Writers

(setf date-time-hour).

Slot: minute
Type

(integer 0 59)

Initform

(iclendar::c-minute)

Readers

date-time-minute.

Writers

(setf date-time-minute).

Slot: second
Package

common-lisp.

Type

(integer 0 60)

Initform

(iclendar::c-second)

Readers

date-time-second.

Writers

(setf date-time-second).

Slot: utc-p
Type

boolean

Initform

t

Readers

date-time-utc-p.

Writers

(setf date-time-utc-p).

Structure: geo

Representation for a geographic location.

See MAKE-GEO
See GEO-LAT
See GEO-LNG

Package

iclendar.

Source

standard-types.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: lat
Type

float

Initform

0.0

Readers

geo-lat.

Writers

(setf geo-lat).

Slot: lng
Type

float

Initform

0.0

Readers

geo-lng.

Writers

(setf geo-lng).

Structure: period

Describes a period of time.

From RFC5545:
If the property permits, multiple period values are
specified by a COMMA-separated list of values. There are two forms of a period of time. First, a period of time is identified by its start and its end. This format is based on the [ISO.8601.2004] complete representation, basic format for DATE- TIME start of the period, followed by a SOLIDUS character followed by the DATE-TIME of the end of the period. The start of the period MUST be before the end of the period. Second, a period of time can also be defined by a start and a positive duration of time. The format is based on the [ISO.8601.2004] complete representation, basic format for the DATE-TIME start of the period, followed by a SOLIDUS character, followed by the [ISO.8601.2004] basic format for DURATION of the period.

See MAKE-PERIOD
See PERIOD-START
See PERIOD-LIMIT

Package

iclendar.

Source

standard-types.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: start
Type

iclendar:date-time

Readers

period-start.

Writers

(setf period-start).

Slot: limit
Type

(or iclendar:time-span iclendar:date-time)

Readers

period-limit.

Writers

(setf period-limit).

Structure: recurrence

Describes the rules for a recurring component.

From RFC5545:
This value type is a structured value consisting of a
list of one or more recurrence grammar parts. Each rule part is defined by a NAME=VALUE pair. The rule parts are separated from each other by the SEMICOLON character. The rule parts are not ordered in any particular sequence. Individual rule parts MUST only be specified once. Compliant applications MUST accept rule parts ordered in any sequence, but to ensure backward compatibility with applications that pre-date this revision of iCalendar the FREQ rule part MUST be the first rule part specified in a RECUR value.

The FREQ rule part identifies the type of recurrence rule. This rule part MUST be specified in the recurrence rule. Valid values include SECONDLY, to specify repeating events based on an interval of a second or more; MINUTELY, to specify repeating events based on an interval of a minute or more; HOURLY, to specify repeating events based on an interval of an hour or more; DAILY, to specify repeating events based on an interval of a day or more; WEEKLY, to specify repeating events based on an interval of a week or more; MONTHLY, to specify repeating events based on an interval of a month or more; and YEARLY, to specify repeating events based on an interval of a year or more.

The INTERVAL rule part contains a positive integer representing at which intervals the recurrence rule repeats. The default value is 1, meaning every second for a SECONDLY rule, every minute for a MINUTELY rule, every hour for an HOURLY rule, every day for a DAILY rule, every week for a WEEKLY rule, every month for a MONTHLY rule, and every year for a YEARLY rule. For example, within a DAILY rule, a value of 8 means every eight days.

The UNTIL rule part defines a DATE or DATE-TIME value that bounds the recurrence rule in an inclusive manner. If the value specified by UNTIL is synchronized with the specified recurrence, this DATE or DATE-TIME becomes the last instance of the recurrence. The value of the UNTIL rule part MUST have the same value type as the DTSTART property. Furthermore, if the
DTSTART property is specified as a date with local time, then
the UNTIL rule part MUST also be specified as a date with local time. If the DTSTART property is specified as a date with UTC time or a date with local time and time zone reference, then the UNTIL rule part MUST be specified as a date with UTC time. In the case of the STANDARD and DAYLIGHT sub-components the UNTIL
rule part MUST always be specified as a date with UTC time. If specified as a DATE-TIME value, then it MUST be specified in a UTC time format. If not present, and the COUNT rule part is also not present, the RRULE is considered to repeat forever.

The COUNT rule part defines the number of occurrences at which to range-bound the recurrence. The DTSTART property value always counts as the first occurrence.

The BYSECOND rule part specifies a COMMA-separated list of seconds within a minute. Valid values are 0 to 60. The BYMINUTE rule part specifies a COMMA-separated list of minutes within an hour. Valid values are 0 to 59. The BYHOUR rule part specifies a COMMA- separated list of hours of the day. Valid values are 0 to 23. The BYSECOND, BYMINUTE and BYHOUR rule parts MUST NOT be specified when the associated DTSTART property has a DATE value type.
These rule parts MUST be ignored in RECUR value that violate the above requirement (e.g., generated by applications that pre-date this revision of iCalendar).

The BYDAY rule part specifies a COMMA-separated list of days of the week; SU indicates Sunday; MO indicates Monday; TU indicates Tuesday; WE indicates Wednesday; TH indicates Thursday; FR indicates Friday; and SA indicates Saturday.

Each BYDAY value can also be preceded by a positive (+n) or negative (-n) integer. If present, this indicates the nth occurrence of a specific day within the MONTHLY or YEARLY RRULE.

For example, within a MONTHLY rule, +1MO (or simply 1MO) represents the first Monday within the month, whereas -1MO represents the last Monday of the month. The numeric value in a BYDAY rule part with the FREQ rule part set to YEARLY corresponds to an offset within the month when the BYMONTH rule part is present, and corresponds to an offset within the year when the BYWEEKNO or BYMONTH rule parts are present. If an integer modifier is not present, it means all days of this type within the specified frequency. For example, within a MONTHLY rule, MO represents all Mondays within the month. The BYDAY rule part MUST NOT be specified with a numeric value when the FREQ rule part is not set to MONTHLY or YEARLY. Furthermore, the BYDAY rule part MUST NOT be specified with a numeric value with the FREQ rule part set to YEARLY when the BYWEEKNO rule part is specified.

The BYMONTHDAY rule part specifies a COMMA-separated list of days of the month. Valid values are 1 to 31 or -31 to -1. For example, -10 represents the tenth to the last day of the month. The BYMONTHDAY rule part MUST NOT be specified when the FREQ rule part is set to WEEKLY.

The BYYEARDAY rule part specifies a COMMA-separated list of days of the year. Valid values are 1 to 366 or -366 to -1. For example, -1 represents the last day of the year (December 31st) and -306 represents the 306th to the last day of the year (March 1st). The BYYEARDAY rule part MUST NOT be specified when the FREQ rule part is set to DAILY, WEEKLY, or MONTHLY.

The BYWEEKNO rule part specifies a COMMA-separated list of ordinals specifying weeks of the year. Valid values are 1 to 53 or -53 to -1. This corresponds to weeks according to week numbering as defined in [ISO.8601.2004]. A week is defined as a seven day period, starting on the day of the week defined to be the week start (see WKST). Week number one of the calendar year is the first week that contains at least four (4) days in that calendar year. This rule part MUST NOT be used when the FREQ rule part is set to anything other than YEARLY. For example, 3 represents the third week of the year.

Note: Assuming a Monday week start, week 53 can only occur when Thursday is January 1 or if it is a leap year and Wednesday is January 1.

The BYMONTH rule part specifies a COMMA-separated list of months of the year. Valid values are 1 to 12.

The WKST rule part specifies the day on which the workweek starts. Valid values are MO, TU, WE, TH, FR, SA, and SU. This is

significant when a WEEKLY RRULE has an interval greater than 1, and a BYDAY rule part is specified. This is also significant when in a YEARLY RRULE when a BYWEEKNO rule part is specified. The default value is MO.

The BYSETPOS rule part specifies a COMMA-separated list of values that corresponds to the nth occurrence within the set of recurrence instances specified by the rule. BYSETPOS operates on a set of recurrence instances in one interval of the recurrence rule. For example, in a WEEKLY rule, the interval would be one week A set of recurrence instances starts at the beginning of the interval defined by the FREQ rule part. Valid values are 1 to 366 or -366 to -1. It MUST only be used in conjunction with another BYxxx rule part. For example the last work day of the month could be represented as:

FREQ=MONTHLY;BYDAY=MO,TU,WE,TH,FR;BYSETPOS=-1

Each BYSETPOS value can include a positive (+n) or negative (-n) integer. If present, this indicates the nth occurrence of the specific occurrence within the set of occurrences specified by the rule.

Recurrence rules may generate recurrence instances with an invalid date (e.g., February 30) or nonexistent local time (e.g., 1:30 AM on a day where the local time is moved forward by an hour at 1:00 AM). Such recurrence instances MUST be ignored and MUST NOT be counted as part of the recurrence set.

Information, not contained in the rule, necessary to determine the various recurrence instance start time and dates are derived from the Start Time (DTSTART) component attribute. For example, FREQ=YEARLY;BYMONTH=1 doesn’t specify a specific day within the month or a time. This information would be the same as what is specified for DTSTART.

BYxxx rule parts modify the recurrence in some manner. BYxxx rule parts for a period of time that is the same or greater than the frequency generally reduce or limit the number of occurrences of the recurrence generated. For example, FREQ=DAILY;BYMONTH=1 reduces the number of recurrence instances from all days (if BYMONTH rule part is not present) to all days in January. BYxxx rule parts for a period of time less than the frequency generally increase or expand the number of occurrences of the recurrence. For example, FREQ=YEARLY;BYMONTH=1,2 increases the number of
days within the yearly recurrence set from 1 (if BYMONTH rule part is not present) to 2.

If multiple BYxxx rule parts are specified, then after evaluating the specified FREQ and INTERVAL rule parts, the BYxxx rule parts are applied to the current set of evaluated occurrences in the following order: BYMONTH, BYWEEKNO, BYYEARDAY, BYMONTHDAY, BYDAY, BYHOUR, BYMINUTE, BYSECOND and BYSETPOS; then COUNT and UNTIL are evaluated.

The table below summarizes the dependency of BYxxx rule part expand or limit behavior on the FREQ rule part value.

The term N/A means that the corresponding BYxxx rule part MUST NOT be used with the corresponding FREQ value.

BYDAY has some special behavior depending on the FREQ value and this is described in separate notes below the table.

+———-+——–+——–+——-+——-+——+——-+——+ | |SECONDLY|MINUTELY|HOURLY |DAILY |WEEKLY|MONTHLY|YEARLY| +———-+——–+——–+——-+——-+——+——-+——+ |BYMONTH |Limit |Limit |Limit |Limit |Limit |Limit |Expand| +———-+——–+——–+——-+——-+——+——-+——+ |BYWEEKNO |N/A |N/A |N/A |N/A |N/A |N/A |Expand| +———-+——–+——–+——-+——-+——+——-+——+ |BYYEARDAY |Limit |Limit |Limit |N/A |N/A |N/A |Expand| +———-+——–+——–+——-+——-+——+——-+——+ |BYMONTHDAY|Limit |Limit |Limit |Limit |N/A |Expand |Expand| +———-+——–+——–+——-+——-+——+——-+——+ |BYDAY |Limit |Limit |Limit |Limit |Expand|Note 1 |Note 2| +———-+——–+——–+——-+——-+——+——-+——+ |BYHOUR |Limit |Limit |Limit |Expand |Expand|Expand |Expand| +———-+——–+——–+——-+——-+——+——-+——+ |BYMINUTE |Limit |Limit |Expand |Expand |Expand|Expand |Expand| +———-+——–+——–+——-+——-+——+——-+——+ |BYSECOND |Limit |Expand |Expand |Expand |Expand|Expand |Expand| +———-+——–+——–+——-+——-+——+——-+——+ |BYSETPOS |Limit |Limit |Limit |Limit |Limit |Limit |Limit | +———-+——–+——–+——-+——-+——+——-+——+

Note 1: Limit if BYMONTHDAY is present; otherwise, special expand for MONTHLY.

Note 2: Limit if BYYEARDAY or BYMONTHDAY is present; otherwise, special expand for WEEKLY if BYWEEKNO present; otherwise, special expand for MONTHLY if BYMONTH present; otherwise, special expand for YEARLY.

Here is an example of evaluating multiple BYxxx rule parts.

DTSTART;TZID=America/New_York:19970105T083000 RRULE:FREQ=YEARLY;INTERVAL=2;BYMONTH=1;BYDAY=SU;BYHOUR=8,9; BYMINUTE=30

First, the INTERVAL=2 would be applied to FREQ=YEARLY to
arrive at every other year. Then, BYMONTH=1 would be applied
to arrive at every January, every other year. Then, BYDAY=SU would be applied to arrive at every Sunday in January, every other year. Then, BYHOUR=8,9 would be applied to arrive at
every Sunday in January at 8 AM and 9 AM, every other year.
Then, BYMINUTE=30 would be applied to arrive at every Sunday in January at 8:30 AM and 9:30 AM, every other year. Then, lacking information from RRULE, the second is derived from DTSTART, to end up in every Sunday in January at 8:30:00 AM and 9:30:00 AM, every other year. Similarly, if the BYMINUTE, BYHOUR, BYDAY, BYMONTHDAY, or BYMONTH rule part were missing, the appropriate minute, hour, day, or month would have been retrieved from the DTSTART property.

If the computed local start time of a recurrence instance does not exist, or occurs more than once, for the specified time zone, the time of the recurrence instance is interpreted in the same manner as an explicit DATE-TIME value describing that date and time, as specified in Section 3.3.5.

No additional content value encoding (i.e., BACKSLASH character encoding, see Section 3.3.11) is defined for this value type.

See MAKE-RECURRENCE
See RECURRENCE-FREQUENCY
See RECURRENCE-END-DATE
See RECURRENCE-COUNT
See RECURRENCE-INTERVAL
See RECURRENCE-BY-SECONDS
See RECURRENCE-BY-MINUTES
See RECURRENCE-BY-HOURS
See RECURRENCE-BY-DAYS
See RECURRENCE-BY-MONTH-DAYS
See RECURRENCE-BY-YEAR-DAYS
See RECURRENCE-BY-WEEKS
See RECURRENCE-BY-MONTHS
See RECURRENCE-BY-SET-POS
See RECURRENCE-WEEK-START

Package

iclendar.

Source

standard-types.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: frequency
Type

(member :secondly :minutely :hourly :daily :weekly :monthly :yearly)

Readers

recurrence-frequency.

Writers

(setf recurrence-frequency).

Slot: end-date
Type

(or null iclendar:date iclendar:date-time)

Readers

recurrence-end-date.

Writers

(setf recurrence-end-date).

Slot: count
Package

common-lisp.

Type

(or null (integer 0))

Readers

recurrence-count.

Writers

(setf recurrence-count).

Slot: interval
Type

(or null (integer 0))

Readers

recurrence-interval.

Writers

(setf recurrence-interval).

Slot: by-seconds
Type

iclendar:second-list

Readers

recurrence-by-seconds.

Writers

(setf recurrence-by-seconds).

Slot: by-minutes
Type

iclendar:minute-list

Readers

recurrence-by-minutes.

Writers

(setf recurrence-by-minutes).

Slot: by-hours
Type

iclendar:hour-list

Readers

recurrence-by-hours.

Writers

(setf recurrence-by-hours).

Slot: by-days
Type

iclendar:week-day-list

Readers

recurrence-by-days.

Writers

(setf recurrence-by-days).

Slot: by-month-days
Type

iclendar:month-day-list

Readers

recurrence-by-month-days.

Writers

(setf recurrence-by-month-days).

Slot: by-year-days
Type

iclendar:year-day-list

Readers

recurrence-by-year-days.

Writers

(setf recurrence-by-year-days).

Slot: by-weeks
Type

iclendar:week-list

Readers

recurrence-by-weeks.

Writers

(setf recurrence-by-weeks).

Slot: by-months
Type

iclendar:month-list

Readers

recurrence-by-months.

Writers

(setf recurrence-by-months).

Slot: by-set-pos
Type

iclendar:year-day-list

Readers

recurrence-by-set-pos.

Writers

(setf recurrence-by-set-pos).

Slot: week-start
Type

(or null iclendar:week-day)

Readers

recurrence-week-start.

Writers

(setf recurrence-week-start).

Structure: time-span

Describes a span of time.

From RFC5545:
If the property permits, multiple duration values are specified by a COMMA-separated list of values. The format is based on the [ISO.8601.2004] complete representation basic format with designators for the duration of time. The format can represent nominal durations (weeks and days) and accurate durations (hours, minutes, and seconds). Note that unlike [ISO.8601.2004], this value type doesn’t support the Y and M designators to specify durations in terms of years and months.

The duration of a week or a day depends on its position in the calendar. In the case of discontinuities in the time scale, such as the change from standard time to daylight time and back, the computation of the exact duration requires the subtraction or addition of the change of duration of the discontinuity. Leap seconds MUST NOT be considered when computing an exact duration. When computing an exact duration, the greatest order time components MUST be added first, that is, the number of days MUST be added first, followed by the number of hours, number of minutes, and number of seconds.

Negative durations are typically used to schedule an alarm to trigger before an associated time (see Section 3.8.6.3).

No additional content value encoding (i.e., BACKSLASH character encoding, see Section 3.3.11) are defined for this value type.

See MAKE-TIME-SPAN
See TIME-SPAN-WEEK
See TIME-SPAN-HOUR
See TIME-SPAN-MINUTE
See TIME-SPAN-SECOND
See TIME-SPAN-DAY
See TIME-SPAN-INC-P

Package

iclendar.

Source

standard-types.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: week
Type

(or null (integer 0))

Readers

time-span-week.

Writers

(setf time-span-week).

Slot: hour
Type

(or null (integer 0))

Readers

time-span-hour.

Writers

(setf time-span-hour).

Slot: minute
Type

(or null (integer 0))

Readers

time-span-minute.

Writers

(setf time-span-minute).

Slot: second
Package

common-lisp.

Type

(or null (integer 0))

Readers

time-span-second.

Writers

(setf time-span-second).

Slot: day
Type

(or null (integer 0))

Readers

time-span-day.

Writers

(setf time-span-day).

Slot: inc-p
Type

boolean

Initform

t

Readers

time-span-inc-p.

Writers

(setf time-span-inc-p).

Structure: utc-offset

Representation of a time-zone offset from UTC.

From RFC5545:
The PLUS SIGN character MUST be specified for positive
UTC offsets (i.e., ahead of UTC). The HYPHEN-MINUS character MUST be specified for negative UTC offsets (i.e., behind of UTC). The value of -0000 and -000000 are not allowed. The time-second, if present, MUST NOT be 60; if absent, it defaults to zero.

No additional content value encoding (i.e., BACKSLASH character encoding, see Section 3.3.11) is defined for this value type.

See MAKE-UTC-OFFSET
See UTC-OFFSET-HOUR
See UTC-OFFSET-MINUTE
See UTC-OFFSET-SECOND
See UTC-OFFSET-INC-P

Package

iclendar.

Source

standard-types.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: hour
Type

(integer 0 23)

Initform

0

Readers

utc-offset-hour.

Writers

(setf utc-offset-hour).

Slot: minute
Type

(integer 0 59)

Initform

0

Readers

utc-offset-minute.

Writers

(setf utc-offset-minute).

Slot: second
Package

common-lisp.

Type

(integer 0 60)

Initform

0

Readers

utc-offset-second.

Writers

(setf utc-offset-second).

Slot: inc-p
Type

boolean

Initform

t

Readers

utc-offset-inc-p.

Writers

(setf utc-offset-inc-p).

Structure: week-day-num

Type for a week-day recurrence constraint.

See MAKE-WEEK-DAY-NUM
See WEEK-DAY-NUM-WEEK
See WEEK-DAY-NUM-WEEK-DAY

Package

iclendar.

Source

standard-types.lisp.

Direct superclasses

structure-object.

Direct methods
Direct slots
Slot: week
Type

(or null (integer -53 53))

Readers

week-day-num-week.

Writers

(setf week-day-num-week).

Slot: week-day
Type

iclendar:week-day

Readers

week-day-num-week-day.

Writers

(setf week-day-num-week-day).


5.1.6 Classes

Class: action

Describes the action that should be taken when the alarm is signalled.

From RFC5545:
Each VALARM calendar component has a particular type
of action with which it is associated. This property specifies the type of action. Applications MUST ignore alarms with x-name and iana-token values they don’t recognize.

See PROPERTY

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:text

Class: alarm

Component to describe an alert or alarm that should be sent out.

Since there are three distinct grouping of properties for alarms in a calendar, in iClendar the alarms are split into three distinct subclasses:

AUDIO-ALARM
DISPLAY-ALARM
EMAIL-ALARM

You should use these classes instead of the ALARM superclass.

From RFC5545:
A VALARM calendar component is a grouping of
component properties that is a reminder or alarm for an event or a to-do. For example, it may be used to define a reminder for a pending event or an overdue to-do.

The VALARM calendar component MUST include the ACTION and
TRIGGER properties. The ACTION property further constrains
the VALARM calendar component in the following ways:

When the action is AUDIO, the alarm can also include one and
only one ATTACH property, which MUST point to a sound resource, which is rendered when the alarm is triggered.

When the action is DISPLAY, the alarm MUST also include a DESCRIPTION property, which contains the text to be displayed
when the alarm is triggered.

When the action is EMAIL, the alarm MUST include a DESCRIPTION property, which contains the text to be used as the message body,
a SUMMARY property, which contains the text to be used as the message subject, and one or more ATTENDEE properties, which
contain the email address of attendees to receive the message. It can also include one or more ATTACH properties, which are
intended to be sent as message attachments. When the alarm is triggered, the email message is sent.

The VALARM calendar component MUST only appear within either a VEVENT or VTODO calendar component. VALARM calendar
components cannot be nested. Multiple mutually independent
VALARM calendar components can be specified for a single
VEVENT or VTODO calendar component.

The TRIGGER property specifies when the alarm will be triggered.
The TRIGGER property specifies a duration prior to the start of
an event or a to-do. The TRIGGER edge may be explicitly set to
be relative to the START or END of the event or to-do with the RELATED parameter of the TRIGGER property. The TRIGGER
property value type can alternatively be set to an absolute
calendar date with UTC time.

In an alarm set to trigger on the START of an event or to-do,
the DTSTART property MUST be present in the associated event or to-do. In an alarm in a VEVENT calendar component set to
trigger on the END of the event, either the DTEND property
MUST be present, or the DTSTART and DURATION properties MUST
both be present. In an alarm in a VTODO calendar component set
to trigger on the END of the to-do, either the DUE property
MUST be present, or the DTSTART and DURATION properties MUST
both be present.

The alarm can be defined such that it triggers repeatedly. A definition of an alarm with a repeating trigger MUST include both the DURATION and REPEAT properties. The DURATION property
specifies the delay period, after which the alarm will repeat.
The REPEAT property specifies the number of additional
repetitions that the alarm will be triggered. This repetition
count is in addition to the initial triggering of the alarm. Both of these properties MUST be present in order to specify a
repeating alarm. If one of these two properties is absent, then
the alarm will not repeat beyond the initial trigger.

The ACTION property is used within the VALARM calendar
component to specify the type of action invoked when the alarm is triggered. The VALARM properties provide enough information for
a specific action to be invoked. It is typically the
responsibility of a Calendar User Agent (CUA) to deliver the
alarm in the specified fashion. An ACTION property value of
AUDIO specifies an alarm that causes a sound to be played to alert the user; DISPLAY specifies an alarm that causes a text message to be displayed to the user; and EMAIL specifies an alarm that causes an electronic email message to be delivered to one or more email addresses.

In an AUDIO alarm, if the optional ATTACH property is included,
it MUST specify an audio sound resource. The intention is that
the sound will be played as the alarm effect. If an ATTACH
property is specified that does not refer to a sound resource, or
if the specified sound resource cannot be rendered (because its format is unsupported, or because it cannot be retrieved), then
the CUA or other entity responsible for playing the sound may
choose a fallback action, such as playing a built-in default
sound, or playing no sound at all.

In a DISPLAY alarm, the intended alarm effect is for the text
value of the DESCRIPTION property to be displayed to the user.

In an EMAIL alarm, the intended alarm effect is for an email
message to be composed and delivered to all the addresses
specified by the ATTENDEE properties in the VALARM calendar component. The DESCRIPTION property of the VALARM calendar component MUST be used as the body text of the message, and the SUMMARY property MUST be used as the subject text. Any ATTACH properties in the VALARM calendar component SHOULD be sent as attachments to the message.

Note: Implementations should carefully consider whether they accept alarm components from untrusted sources, e.g., when importing calendar objects from external sources. One
reasonable policy is to always ignore alarm components that the calendar user has not set herself, or at least ask for confirmation in such a case.

See ACTION
See TRIGGER
See DURATION
See REPEAT
See COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses

component.

Direct subclasses
Direct methods
Direct slots
Slot: action
Initargs

:action

Readers

action.

Writers

(setf action).

Slot: trigger
Initargs

:trigger

Readers

trigger.

Writers

(setf trigger).

Slot: duration
Initargs

:duration

Readers

duration.

Writers

(setf duration).

Slot: repeat
Initargs

:repeat

Readers

repeat.

Writers

(setf repeat).

Class: alternate-representation
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote text)
:identifieraltrep
Class: attachment

This property describes a file attachment to the component.

Must be an ATTACHMENT-VALUE

From RFC5545:
This property is used in VEVENT, VTODO, and
VJOURNAL calendar components to associate a resource (e.g., document) with the calendar component. This property is used in VALARM calendar components to specify an audio sound resource or an email message attachment. This property can be specified as a URI pointing to a resource or as inline binary encoded content.

When this property is specified as inline binary encoded content, calendar applications MAY attempt to guess the media type of the resource via inspection of its content if and only if the media type of the resource is not given by the FMTTYPE parameter. If the media type remains unknown, calendar applications SHOULD treat it as type "application/octet-stream".

See PROPERTY
See ENCODING
See VALUE-TYPE
See FORMAT-TYPE
See ATTACHMENT-VALUE

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:attachment-value

Slot: encoding
Type

(member :8bit :base64)

Initargs

:encoding

Readers

encoding.

Writers

(setf encoding).

Slot: value-type
Type

(or string (member :binary :boolean :cal-address :date :date-time :duration :float :integer :period :recur :text :time :uri :utc-offset))

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: format-type
Type

string

Initargs

:format-type

Readers

format-type.

Writers

(setf format-type).

Class: attendee

This property describes a person who attends the calendar’s event.

Must be an ADDRESS.

From RFC5545:
This property MUST only be specified within calendar components to specify participants, non-participants, and the chair of a group-scheduled calendar entity. The property is specified within an EMAIL category of the VALARM calendar component to specify an email address that is to receive the email type of iCalendar alarm.

The property parameter CN is for the common or displayable name associated with the calendar address; ROLE, for the intended role that the attendee will have in the calendar component; PARTSTAT, for the status of the attendee’s participation; RSVP, for indicating whether the favor of a reply is requested; CUTYPE, to indicate the type of calendar user; MEMBER, to indicate the groups that the attendee belongs to; DELEGATED-TO, to indicate the calendar users that the original request was delegated to; and DELEGATED-FROM, to indicate whom the request was delegated from; SENT-BY, to indicate whom is acting on behalf of the ATTENDEE; and DIR, to indicate the URI that points to the directory information corresponding to the attendee. These property parameters can be specified on an ATTENDEE property in either a VEVENT, VTODO, or VJOURNAL calendar component. They MUST NOT be specified in an ATTENDEE property in a VFREEBUSY or VALARM calendar component. If the

LANGUAGE property parameter is specified, the identified language applies to the CN parameter.

A recipient delegated a request MUST inherit the RSVP and ROLE values from the attendee that delegated the request to them.

Multiple attendees can be specified by including multiple ATTENDEE properties within the calendar component.

See PROPERTY
See LANGUAGE
See CALENDAR-USER-TYPE
See MEMBERSHIP
See ROLE
See PARTICIPATION-STATUS
See REPLY-REQUESTED
See DELEGATEE
See DELEGATOR
See SENT-BY
See COMMON-NAME
See DIRECTORY-ENTRY
See ADDRESS

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:address

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Slot: calendar-user-type
Type

(or string (member :individual :group :resource :room :unknown))

Initargs

:calendar-user-type

Readers

calendar-user-type.

Writers

(setf calendar-user-type).

Slot: membership
Type

iclendar:address-list

Initargs

:membership

Readers

membership.

Writers

(setf membership).

Slot: role
Type

(or string (member :chair :req-participant :opt-participant :non-participant))

Initargs

:role

Readers

role.

Writers

(setf role).

Slot: participation-status
Type

(or string (member :needs-action :accepted :declined :tentative :delegated :completed :in-process))

Initargs

:participation-status

Readers

participation-status.

Writers

(setf participation-status).

Slot: reply-requested
Type

boolean

Initargs

:reply-requested

Readers

reply-requested.

Writers

(setf reply-requested).

Slot: delegatee
Type

iclendar:address-list

Initargs

:delegatee

Readers

delegatee.

Writers

(setf delegatee).

Slot: delegator
Type

iclendar:address-list

Initargs

:delegator

Readers

delegator.

Writers

(setf delegator).

Slot: sent-by
Type

iclendar:address

Initargs

:sent-by

Readers

sent-by.

Writers

(setf sent-by).

Slot: common-name
Type

iclendar:text

Initargs

:common-name

Readers

common-name.

Writers

(setf common-name).

Slot: directory-entry
Type

iclendar:uri

Initargs

:directory-entry

Readers

directory-entry.

Writers

(setf directory-entry).

Class: audio-alarm

An alarm that plays an audio clip.

See ATTACHMENT
See ALARM

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: attachment
Initargs

:attachment

Readers

attachment.

Writers

(setf attachment).

Class: calendar

The calendar object is the top-level object in an iCalendar stream.

It defines the base iCalendar metadata and contains other child components that make up the actual data. The version parameter defaults to "2.0", corresponding to RFC5545’s version.

See PRODUCT
See SCALE
See TRANSPORT-METHOD
See VERSION
See COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct methods
Direct Default Initargs
InitargValue
:version2.0
Direct slots
Slot: product
Initargs

:product

Readers

product.

Writers

(setf product).

Slot: scale
Initargs

:scale

Readers

scale.

Writers

(setf scale).

Slot: transport-method
Initargs

:transport-method

Readers

transport-method.

Writers

(setf transport-method).

Slot: version
Initargs

:version

Readers

version.

Writers

(setf version).

Class: calendar-component

This is a mixin class for common properties in subclasses.

The required STAMP and UID fields are automatically filled with default values:

STAMP – (ICLENDAR:MAKE-DATE-TIME)
UID – (ICLENDAR::MAKE-UID)

MAKE-UID returns a random UUID-like string.

See ATTENDEES
See COMMENTS
See REQUEST-STATUS
See STAMP
See START
See UID
See URL
See COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses

component.

Direct subclasses
Direct methods
Direct Default Initargs
InitargValue
:stamp(make-date-time)
:uid(make-uid)
Direct slots
Slot: attendees
Initargs

:attendees

Readers

attendees.

Writers

(setf attendees).

Slot: comments
Initargs

:comments

Readers

comments.

Writers

(setf comments).

Slot: request-status
Initargs

:request-status

Readers

request-status.

Writers

(setf request-status).

Slot: stamp
Initargs

:stamp

Readers

stamp.

Writers

(setf stamp).

Slot: start
Initargs

:start

Readers

start.

Writers

(setf start).

Slot: uid
Initargs

:uid

Readers

uid.

Writers

(setf uid).

Slot: url
Initargs

:url

Readers

url.

Writers

(setf url).

Class: calendar-user-type
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote (or string (member individual group resource room unknown)))
:identifiercutype
Class: category

This property describes a category of the component.

Must be a TEXT.

From RFC5545:
This property is used to specify categories or subtypes
of the calendar component. The categories are useful in searching for a calendar component of a particular type and category. Within the VEVENT, VTODO, or VJOURNAL calendar components, more than one category can be specified as a COMMA-separated list of categories.

See PROPERTY
See LANGUAGE
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:text

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Class: classification

This property describes the classification/confidentiality of an entry.

Must be a string or one of :PUBLIC :PRIVATE :CONFIDENTIAL.

From RFC5545:
An access classification is only one component of the
general security system within a calendar application. It provides a method of capturing the scope of the access the calendar owner intends for information within an individual calendar entry. The access classification of an individual iCalendar component is useful when measured along with the other security components of a calendar system (e.g., calendar user authentication, authorization, access rights, access role, etc.). Hence, the semantics of the individual access classifications cannot be completely defined by this memo alone. Additionally, due to the blind nature of most exchange processes using this memo, these access classifications cannot serve as an enforcement statement for a system receiving an iCalendar object. Rather, they provide a method for capturing the intention of the calendar owner for the access to the calendar component. If not specified in a component that allows this property, the default value is PUBLIC. Applications MUST treat x-name and iana-token values they don’t recognize the same way as they would the PRIVATE value.

See PROPERTY

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

(or string (member :public :private :confitential))

Class: comment

This property is used to specify a comment to the calendar user.

Must be a TEXT.

See PROPERTY
See ALTERNATE-REPRESENTATION
See LANGUAGE
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:text

Slot: alternate-representation
Type

iclendar:text

Initargs

:alternate-representation

Readers

alternate-representation.

Writers

(setf alternate-representation).

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Class: common-name
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote text)
:identifiercn
Class: completed

This property defines the date and time that a to-do was actually completed.

Must be a DATE-TIME.

See PROPERTY
See DATE-TIME

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:date-time

Class: completeness

This property describes the percentage of completeness of the component.

Must be an integer in [0,100].

From RFC5545:
The property value is a positive integer between 0 and
100. A value of 0 indicates the to-do has not yet been started.
A value of 100 indicates that the to-do has been completed. Integer values in between indicate the percent partially complete.

When a to-do is assigned to multiple individuals, the property value indicates the percent complete for that portion of the to-do assigned to the assignee or delegatee. For example, if a to-do is assigned to both individuals A and B. A reply from A with a percent complete of 70 indicates that A has completed 70% of
the to-do assigned to them. A reply from B with a percent complete of 50 indicates B has completed 50% of the to-do
assigned to them.

See PROPERTY

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

(integer 0 100)

Class: component

Base class of calendar components.

Components are property containers. Some components may also contain child- components. A component may have either standard-slots, or property-slots. Property slots will always contain, if bound, either a single property instance or a list of property instances depending on the slot’s constraint.
A property slot can be set with either a property instance directly, or with the value of a property instance. The value will automatically be encapsulated in an appropriate property instance. Property slots are type and constraint checked.

See X-PROPERTIES
See IDENTIFIER
See PROPERTIES
See DEFINE-COMPONENT

Package

iclendar.

Source

protocol.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: x-properties
Initargs

:x-properties

Readers

x-properties.

Writers

(setf x-properties).

Class: component-container

Superclass for classes that can contain child-components.

See COMPONENTS

Package

iclendar.

Source

standard-components.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: components
Initargs

:components

Readers

components.

Writers

(setf components).

Class: contact

This property describes a representative contact person.

Must be a TEXT.

From RFC5545:
The property value consists of textual contact
information. An alternative representation for the property value can also be specified that refers to a URI pointing to an alternate form, such as a vCard [RFC2426], for the contact information.

See PROPERTY
See ALTERNATE-REPRESENTATION
See LANGUAGE
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:text

Slot: alternate-representation
Type

iclendar:text

Initargs

:alternate-representation

Readers

alternate-representation.

Writers

(setf alternate-representation).

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Class: created

This property describes the creation time of the component.

Must be a DATE-TIME.

From RFC5545:
This property specifies the date and time that the
calendar information was created by the calendar user agent in the calendar store.

See PROPERTY
See DATE-TIME

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:date-time

Class: date-component

This is a mixin class for common properties in subclasses.

See ATTACHMENTS
See CATEGORIES
See CLASSIFICATION
See CONTACTS
See CREATED
See EXCEPTION-DATES
See LAST-MODIFICATION
See ORGANIZER
See RECURRENCE-ID
See RECURRENCE-DATES
See RECURRENCE-RULE
See RELATED
See RESOURCES
See SEQUENCE-NUMBER
See STATUS
See SUMMARY
See CALENDAR-COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct subclasses
Direct methods
Direct slots
Slot: attachments
Initargs

:attachments

Readers

attachments.

Writers

(setf attachments).

Slot: categories
Initargs

:categories

Readers

categories.

Writers

(setf categories).

Slot: classification
Initargs

:classification

Readers

classification.

Writers

(setf classification).

Slot: contacts
Initargs

:contacts

Readers

contacts.

Writers

(setf contacts).

Slot: created
Initargs

:created

Readers

created.

Writers

(setf created).

Slot: exception-dates
Initargs

:exception-dates

Readers

exception-dates.

Writers

(setf exception-dates).

Slot: last-modification
Initargs

:last-modification

Readers

last-modification.

Writers

(setf last-modification).

Slot: organizer
Initargs

:organizer

Readers

organizer.

Writers

(setf organizer).

Slot: recurrence-id
Initargs

:recurrence-id

Readers

recurrence-id.

Writers

(setf recurrence-id).

Slot: recurrence-dates
Initargs

:recurrence-dates

Readers

recurrence-dates.

Writers

(setf recurrence-dates).

Slot: recurrence-rule
Initargs

:recurrence-rule

Readers

recurrence-rule.

Writers

(setf recurrence-rule).

Initargs

:related

Readers

related.

Writers

(setf related).

Slot: resources
Initargs

:resources

Readers

resources.

Writers

(setf resources).

Slot: sequence-number
Initargs

:sequence-number

Readers

sequence-number.

Writers

(setf sequence-number).

Slot: status
Initargs

:status

Readers

status.

Writers

(setf status).

Slot: summary
Initargs

:summary

Readers

summary.

Writers

(setf summary).

Class: delegatee
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote address-list)
:identifierdelegated-to
Class: delegator
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote address-list)
:identifierdelegated-from
Class: description

This property describes a human-readable description of the component.

Must be a TEXT.

From RFC5545:
This property is used in the VEVENT and VTODO to
capture lengthy textual descriptions associated with the activity.

This property is used in the VJOURNAL calendar component to capture one or more textual journal entries.

This property is used in the VALARM calendar component to capture the display text for a DISPLAY category of alarm, and to capture the body text for an EMAIL category of alarm.

See PROPERTY
See ALTERNATE-REPRESENTATION
See LANGUAGE
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:text

Slot: alternate-representation
Type

iclendar:text

Initargs

:alternate-representation

Readers

alternate-representation.

Writers

(setf alternate-representation).

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Class: directory-entry
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote uri)
:identifierdir
Class: display-alarm

An alarm that displays a note.

See DESCRIPTION
See ALARM

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: description
Initargs

:description

Readers

description.

Writers

(setf description).

Class: due

This property describes a due date for the component.

Must be a DATE-TIME or a DATE.

From RFC5545:
This property defines the date and time before which a
to-do is expected to be completed. For cases where this property is specified in a VTODO calendar component that also specifies a DTSTART property, the value type of this property MUST be the same as the DTSTART property, and the value of this property MUST be later in time than the value of the DTSTART property. Furthermore, this property MUST be specified as a date with local time if and only if the DTSTART property is also specified as a date with local time.

See PROPERTY
See VALUE-TYPE
See TIME-ZONE-IDENTIFIER
See DATE
See DATE-TIME

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

(or iclendar:date-time iclendar:date)

Slot: value-type
Type

(or string (member :binary :boolean :cal-address :date :date-time :duration :float :integer :period :recur :text :time :uri :utc-offset))

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: time-zone-identifier
Type

iclendar:text

Initargs

:time-zone-identifier

Readers

time-zone-identifier.

Writers

(setf time-zone-identifier).

Class: duration

This property describes a runtime duration of the component.

Must be a TIME-SPAN.

From RFC5545:
In a VEVENT calendar component the property may be
used to specify a duration of the event, instead of an explicit end DATE-TIME. In a VTODO calendar component the property may be used to specify a duration for the to-do, instead of an explicit due DATE-TIME. In a VALARM calendar component the property may be used to specify the delay period prior to repeating an alarm. When the DURATION property relates to a DTSTART property that is specified as a DATE value, then the DURATION property MUST be specified as a dur-day or dur-week value.

See PROPERTY
See TIME-SPAN

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:time-span

Class: email-alarm

An alarm that sends an email.

See ATTACHMENTS
See ATTENDEE
See DESCRIPTION
See SUMMARY
See ALARM

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: attachments
Initargs

:attachments

Readers

attachments.

Writers

(setf attachments).

Slot: attendee
Initargs

:attendee

Readers

attendee.

Writers

(setf attendee).

Slot: description
Initargs

:description

Readers

description.

Writers

(setf description).

Slot: summary
Initargs

:summary

Readers

summary.

Writers

(setf summary).

Class: encoding
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote (member 8bit base64))
:identifierencoding
Class: end

This property describes an end date for the component.

Must be a DATE-TIME or a DATE.

From RFC5545:
Within the VEVENT calendar component, this property
defines the date and time by which the event ends. The value type of this property MUST be the same as the DTSTART property, and its value MUST be later in time than the value of the DTSTART property. Furthermore, this property MUST be specified as a date with local time if and only if the DTSTART property is also specified as a date with local time.

Within the VFREEBUSY calendar component, this property defines the end date and time for the free or busy time information. The time MUST be specified in the UTC time format. The value MUST be later in time than the value of the DTSTART property.

See PROPERTY
See VALUE-TYPE
See TIME-ZONE-IDENTIFIER
See DATE-TIME
See DATE

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

(or iclendar:date-time iclendar:date)

Slot: value-type
Type

(or string (member :binary :boolean :cal-address :date :date-time :duration :float :integer :period :recur :text :time :uri :utc-offset))

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: time-zone-identifier
Type

iclendar:text

Initargs

:time-zone-identifier

Readers

time-zone-identifier.

Writers

(setf time-zone-identifier).

Class: event

Component for a generic event kind of object in a calendar.

From RFC5545:
A VEVENT calendar component is a grouping of
component properties, possibly including VALARM calendar components, that represents a scheduled amount of time on a calendar. For example, it can be an activity; such as a one-hour long, department meeting from 8:00 AM to 9:00 AM, tomorrow. Generally, an event will take up time on an individual calendar. Hence, the event will appear as an opaque interval in a search for busy time. Alternately, the event can have its Time Transparency set to TRANSPARENT in order to prevent blocking of the event in searches for busy time.

The VEVENT is also the calendar component used to specify an anniversary or daily reminder within a calendar. These events have a DATE value type for the DTSTART property instead of the default value type of DATE-TIME. If such a VEVENT has a DTEND property, it MUST be specified as a DATE value also. The anniversary type of VEVENT can span more than one date (i.e., DTEND property value is set to a calendar date after the DTSTART property value). If such a VEVENT has a DURATION property, it MUST be specified as a dur-day or dur-week value.

The DTSTART property for a VEVENT specifies the inclusive start of the event. For recurring events, it also specifies the very first instance in the recurrence set. The DTEND property for a VEVENT calendar component specifies the non-inclusive end of the event. For cases where a VEVENT calendar component specifies a DTSTART property with a DATE value type but no DTEND nor DURATION property, the event’s duration is taken to be one day. For cases where a VEVENT calendar component specifies a DTSTART property with a DATE-TIME value type but no DTEND property, the event ends on the same calendar date and time of day specified by the DTSTART property.

The VEVENT calendar component cannot be nested within another calendar component. However, VEVENT calendar components can be related to each other or to a VTODO or to a VJOURNAL calendar component with the RELATED-TO property.

See TRANSPARENCY
See END
See DURATION
See TASK-COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: transparency
Initargs

:transparency

Readers

transparency.

Writers

(setf transparency).

Slot: end
Initargs

:end

Readers

end.

Writers

(setf end).

Slot: duration
Initargs

:duration

Readers

duration.

Writers

(setf duration).

Class: exception-date

This property describes an exceptional date on which the component does not recur.

Must be a DATE-TIME or a DATE.

From RFC5545:
The exception dates, if specified, are used in
computing the recurrence set. The recurrence set is the complete
set of recurrence instances for a calendar component. The
recurrence set is generated by considering the initial DTSTART
property along with the RRULE, RDATE, and EXDATE properties
contained within the recurring component. The DTSTART property
defines the first instance in the recurrence set. The DTSTART
property value SHOULD match the pattern of the recurrence rule, if specified. The recurrence set generated with a DTSTART property
value that doesn’t match the pattern of the rule is undefined.
The final recurrence set is generated by gathering all of the
start DATE-TIME values generated by any of the specified RRULE
and RDATE properties, and then excluding any start DATE-TIME
values specified by EXDATE properties. This implies that start
DATE-TIME values specified by EXDATE properties take precedence
over those specified by inclusion properties (i.e., RDATE and
RRULE). When duplicate instances are generated by the RRULE
and RDATE properties, only one recurrence is considered.
Duplicate instances are ignored.

The EXDATE property can be used to exclude the value specified
in DTSTART. However, in such cases, the original DTSTART date
MUST still be maintained by the calendaring and scheduling system
because the original DTSTART value has inherent usage
dependencies by other properties such as the RECURRENCE-ID.

See PROPERTY
See VALUE-TYPE
See TIME-ZONE-IDENTIFIER
See DATE-TIME
See DATE

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

(or iclendar:date-time iclendar:date)

Slot: value-type
Type

(or string (member :binary :boolean :cal-address :date :date-time :duration :float :integer :period :recur :text :time :uri :utc-offset))

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: time-zone-identifier
Type

iclendar:text

Initargs

:time-zone-identifier

Readers

time-zone-identifier.

Writers

(setf time-zone-identifier).

Class: format-type
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote string)
:identifierfmttype
Class: free/busy

Component to describe a region of time during which a person is free or busy.

From RFC5545:
A VFREEBUSY calendar component is a grouping of
component properties that represents either a request for free or
busy time information, a reply to a request for free or busy time information, or a published set of busy time information.

When used to request free/busy time information, the ATTENDEE
property specifies the calendar users whose free/busy time is
being requested; the ORGANIZER property specifies the calendar
user who is requesting the free/busy time; the DTSTART and
DTEND properties specify the window of time for which the free/
busy time is being requested; the UID and DTSTAMP properties
are specified to assist in proper sequencing of multiple free/busy
time requests.

When used to reply to a request for free/busy time, the ATTENDEE property specifies the calendar user responding to the free/busy
time request; the ORGANIZER property specifies the calendar user
that originally requested the free/busy time; the FREEBUSY
property specifies the free/busy time information (if it exists);
and the UID and DTSTAMP properties are specified to assist in
proper sequencing of multiple free/busy time replies.

When used to publish busy time, the ORGANIZER property specifies
the calendar user associated with the published busy time; the
DTSTART and DTEND properties specify an inclusive time window
that surrounds the busy time information; the FREEBUSY property specifies the published busy time information; and the DTSTAMP
property specifies the DATE-TIME that iCalendar object was
created.

The VFREEBUSY calendar component cannot be nested within another calendar component. Multiple VFREEBUSY calendar components can
be specified within an iCalendar object. This permits the
grouping of free/busy information into logical collections, such
as monthly groups of busy time information.

The VFREEBUSY calendar component is intended for use in
iCalendar object methods involving requests for free time,
requests for busy time, requests for both free and busy, and the associated replies.

Free/Busy information is represented with the FREEBUSY property.
This property provides a terse representation of time periods.
One or more FREEBUSY properties can be specified in the
VFREEBUSY calendar component.

When present in a VFREEBUSY calendar component, the DTSTART
and DTEND properties SHOULD be specified prior to any FREEBUSY properties.

The recurrence properties (RRULE, RDATE, EXDATE) are not
permitted within a VFREEBUSY calendar component. Any recurring
events are resolved into their individual busy time periods using
the FREEBUSY property.

See END
See PERIODS
See ORGANIZER
See CONTACT
See CALENDAR-COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: end
Initargs

:end

Readers

end.

Writers

(setf end).

Slot: periods
Initargs

:periods

Readers

periods.

Writers

(setf periods).

Slot: organizer
Initargs

:organizer

Readers

organizer.

Writers

(setf organizer).

Slot: contact
Initargs

:contact

Readers

contact.

Writers

(setf contact).

Class: free/busy-period

This property describes a free or busy time period.

Must be a PERIOD.

From RFC5545:
These time periods can be specified as either a start
and end DATE-TIME or a start DATE-TIME and DURATION. The date and time MUST be a UTC time format.

FREEBUSY properties within the VFREEBUSY calendar component SHOULD be sorted in ascending order, based on start time and then end time, with the earliest periods first.

The FREEBUSY property can specify more than one value, separated by the COMMA character. In such cases, the FREEBUSY property values MUST all be of the same FBTYPE property parameter type (e.g., all values of a particular FBTYPE listed together in a single property).

See PROPERTY
See FREE/BUSY-TYPE
See PERIOD

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:period

Slot: free/busy-type
Type

(or string (member :free :busy :busy-unavailable :busy-tentative))

Initargs

:free/busy-type

Readers

free/busy-type.

Writers

(setf free/busy-type).

Class: free/busy-type
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote (or string (member free busy busy-unavailable busy-tentative)))
:identifierfbtype
Class: geographic-location

This property describes a geographic location where the component takes place.

Must be a GEO.

From RFC5545:
This property value specifies latitude and longitude,
in that order (i.e., LAT LON ordering). The longitude
represents the location east or west of the prime meridian as a
positive or negative real number, respectively. The longitude and latitude values MAY be specified up to six decimal places, which
will allow for accuracy to within one meter of geographical
position. Receiving applications MUST accept values of this
precision and MAY truncate values of greater precision.

Values for latitude and longitude shall be expressed as decimal fractions of degrees. Whole degrees of latitude shall be
represented by a two-digit decimal number ranging from 0 through
90. Whole degrees of longitude shall be represented by a decimal
number ranging from 0 through 180. When a decimal fraction of a
degree is specified, it shall be separated from the whole number
of degrees by a decimal point.

Latitudes north of the equator shall be specified by a plus sign
(+), or by the absence of a minus sign (-), preceding the digits designating degrees. Latitudes south of the Equator shall be
designated by a minus sign (-) preceding the digits designating
degrees. A point on the Equator shall be assigned to the Northern Hemisphere.

Longitudes east of the prime meridian shall be specified by a plus
sign (+), or by the absence of a minus sign (-), preceding the
digits designating degrees. Longitudes west of the meridian shall
be designated by minus sign (-) preceding the digits designating degrees. A point on the prime meridian shall be assigned to the
Eastern Hemisphere. A point on the 180th meridian shall be
assigned to the Western Hemisphere. One exception to this last convention is permitted. For the special condition of describing
a band of latitude around the earth, the East Bounding Coordinate
data element shall be assigned the value +180 (180) degrees.

Any spatial address with a latitude of +90 (90) or -90 degrees
will specify the position at the North or South Pole,
respectively. The component for longitude may have any legal
value.

With the exception of the special condition described above, this
form is specified in [ANSI INCITS 61-1986].

The simple formula for converting degrees-minutes-seconds into
decimal degrees is:

decimal = degrees + minutes/60 + seconds/3600.

See PROPERTY
See GEO

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:geo

Class: journal

Component describing a generic journal entry in a calendar.

From RFC5545:
A VJOURNAL calendar component is a grouping of
component properties that represent one or more descriptive text notes associated with a particular calendar date. The DTSTART property is used to specify the calendar date with which the journal entry is associated. Generally, it will have a DATE value data type, but it can also be used to specify a DATE-TIME value data type. Examples of a journal entry include a daily record of a legislative body or a journal entry of individual telephone contacts for the day or an ordered list of accomplishments for the day. The VJOURNAL calendar component can also be used to associate a document with a calendar date.

The VJOURNAL calendar component does not take up time on a calendar. Hence, it does not play a role in free or busy time searches – it is as though it has a time transparency value of TRANSPARENT. It is transparent to any such searches.

The VJOURNAL calendar component cannot be nested within another calendar component. However, VJOURNAL calendar components can be related to each other or to a VEVENT or to a VTODO calendar component, with the RELATED-TO property.

See DATE-COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Class: language
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote text)
:identifierlanguage
Class: last-modification

This property specifies the date and time that the information associated with the calendar component was last revised in the calendar store.

Must be a DATE-TIME

See PROPERTY
See DATE-TIME

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:date-time

Class: location

This property describes a physical location where the component takes place.

Must be a TEXT.

From RFC5545:
Specific venues such as conference or meeting rooms may
be explicitly specified using this property. An alternate representation may be specified that is a URI that points to
directory information with more structured specification of the location. For example, the alternate representation may specify either an LDAP URL [RFC4516] pointing to an LDAP server entry or a
CID URL [RFC2392] pointing to a MIME body part containing a Virtual-Information Card (vCard) [RFC2426] for the location.

See PROPERTY
See ALTERNATE-REPRESENTATION
See LANGUAGE
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:text

Slot: alternate-representation
Type

iclendar:text

Initargs

:alternate-representation

Readers

alternate-representation.

Writers

(setf alternate-representation).

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Class: membership
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote address-list)
:identifiermember
Class: offset-from

This property describes where the time zone is offset from.

Must be an UTC-OFFSET.

From RFC5545:
This property specifies the offset that is in use prior
to this time observance. It is used to calculate the absolute time at which the transition to a given observance takes place. This property MUST only be specified in a VTIMEZONE calendar component. A VTIMEZONE calendar component MUST include this property. The property value is a signed numeric indicating the number of hours and possibly minutes from UTC. Positive numbers represent time zones east of the prime meridian, or ahead of UTC. Negative numbers represent time zones west of the prime meridian, or behind UTC.

See PROPERTY
See UTC-OFFSET

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:utc-offset

Class: offset-to

This property describes where the time zone is offset to.

From RFC5545:
This property specifies the offset that is in use in
this time zone observance. It is used to calculate the absolute time for the new observance. The property value is a signed numeric indicating the number of hours and possibly minutes from UTC. Positive numbers represent time zones east of the prime meridian, or ahead of UTC. Negative numbers represent time zones west of the prime meridian, or behind UTC.

See PROPERTY
See UTC-OFFSET

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:utc-offset

Class: organizer

This property describes the organizer of the component.

Must be an ADDRESS.

From RFC5545:
This property is specified within the VEVENT,
VTODO, and VJOURNAL calendar components to specify the organizer of a group-scheduled calendar entity. The property is specified within the VFREEBUSY calendar component to specify the calendar user requesting the free or busy time. When publishing a VFREEBUSY calendar component, the property is used to specify the calendar that the published busy time came from.

The property has the property parameters CN, for specifying the common or display name associated with the Organizer, DIR, for specifying a pointer to the directory information associated with the Organizer, SENT-BY, for specifying another calendar user that is acting on behalf of the Organizer. The non-standard parameters may also be specified on this property. If the LANGUAGE property parameter is specified, the identified language applies to the CN parameter value.

See PROPERTY
See LANGUAGE
See COMMON-NAME
See DIRECTORY-ENTRY
See SENT-BY
See ADDRESS

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:address

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Slot: common-name
Type

iclendar:text

Initargs

:common-name

Readers

common-name.

Writers

(setf common-name).

Slot: directory-entry
Type

iclendar:uri

Initargs

:directory-entry

Readers

directory-entry.

Writers

(setf directory-entry).

Slot: sent-by
Type

iclendar:address

Initargs

:sent-by

Readers

sent-by.

Writers

(setf sent-by).

Class: participation-status
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote (or string (member needs-action accepted declined tentative delegated completed in-process)))
:identifierpartstat
Class: priority

This property describes the priority of the component.

Must be an integer in [0,9].

From RFC5545:
This priority is specified as an integer in the range 0
to 9. A value of 0 specifies an undefined priority. A value of 1 is the highest priority. A value of 2 is the second highest priority. Subsequent numbers specify a decreasing ordinal priority. A value of 9 is the lowest priority.

A CUA with a three-level priority scheme of HIGH, MEDIUM, and LOW is mapped into this property such that a property value in the range of 1 to 4 specifies HIGH priority. A value of 5 is the normal or MEDIUM priority. A value in the range of 6 to 9 is LOW priority.

A CUA with a priority schema of A1, A2, A3, B1, B2, ...,
C3 is mapped into this property such that a property value of 1 specifies A1, a property value of 2 specifies A2, a property value of 3 specifies A3, and so forth up to a property value of 9 specifies C3.

Other integer values are reserved for future use.

Within a VEVENT calendar component, this property specifies a priority for the event. This property may be useful when more than one event is scheduled for a given time period.

Within a VTODO calendar component, this property specified a priority for the to-do. This property is useful in prioritizing multiple action items for a given time period.

See PROPERTY

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

(integer 0 9)

Class: product

This property defines the calendar’s producer.

Must be a TEXT.

From RFC5545:
The vendor of the implementation SHOULD assure that
this is a globally unique identifier; using some technique such as an FPI value, as defined in [ISO.9070.1991].

This property SHOULD NOT be used to alter the interpretation of an iCalendar object beyond the semantics specified in this memo. For example, it is not to be used to further the understanding of non- standard properties.

See PROPERTY
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:text

Class: property

Base class for properties.

A property definition is the container for a property’s value and its metadata parameters. The constraints a property might have are instead defined on the container.

If a property’s slot name names a parameter class, the slot is turned into a parameter slot.

See VALUE
See PARAMETERS
See IDENTIFIER
See X-PARAMETERS
See DEFINE-PROPERTY

Package

iclendar.

Source

protocol.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: value
Type

iclendar:text

Initargs

:value

Readers

value.

Writers

(setf value).

Slot: x-parameters
Initform

(make-hash-table :test (quote equalp))

Initargs

:x-parameters

Readers

x-parameters.

Writers

(setf x-parameters).

Class: recurrence-date

This property describes a specific date on which the component recurs.

Must be a DATE-TIME or DATE.

From RFC5545:
This property can appear along with the RRULE
property to define an aggregate set of repeating occurrences. When they both appear in a recurring component, the recurrence

instances are defined by the union of occurrences defined by both the RDATE and RRULE.

The recurrence dates, if specified, are used in computing the recurrence set. The recurrence set is the complete set of recurrence instances for a calendar component. The recurrence set is generated by considering the initial DTSTART property along with the RRULE, RDATE, and EXDATE properties contained
within the recurring component. The DTSTART property defines the first instance in the recurrence set. The DTSTART property value SHOULD match the pattern of the recurrence rule, if specified. The recurrence set generated with a DTSTART property value that doesn’t match the pattern of the rule is undefined. The final recurrence set is generated by gathering all of the start DATE-TIME values generated by any of the specified RRULE and RDATE properties, and then excluding any start DATE-TIME values specified by EXDATE properties. This implies that start DATE-TIME values specified by EXDATE properties take precedence over those specified by inclusion properties (i.e., RDATE and RRULE). Where duplicate instances are generated by the RRULE and RDATE properties, only one recurrence is considered. Duplicate instances are ignored.

See PROPERTY
See VALUE-TYPE
See TIME-ZONE-IDENTIFIER
See DATE
See DATE-TIME

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

(or iclendar:date-time iclendar:date)

Slot: value-type
Type

(or string (member :binary :boolean :cal-address :date :date-time :duration :float :integer :period :recur :text :time :uri :utc-offset))

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: time-zone-identifier
Type

iclendar:text

Initargs

:time-zone-identifier

Readers

time-zone-identifier.

Writers

(setf time-zone-identifier).

Class: recurrence-id

This property allows referencing a specific recurrence date.

Must be a DATE-TIME or a DATE.

From RFC5545:
The full range of calendar components specified by a recurrence set is referenced by referring to just the UID property value corresponding to the calendar component. The RECURRENCE-ID property allows the reference to an individual instance within the recurrence set.

If the value of the DTSTART property is a DATE type value, then the value MUST be the calendar date for the recurrence instance.

The DATE-TIME value is set to the time when the original recurrence instance would occur; meaning that if the intent is to change a Friday meeting to Thursday, the DATE-TIME is still set to the original Friday meeting.

The RECURRENCE-ID property is used in conjunction with the UID and SEQUENCE properties to identify a particular instance of a recurring event, to-do, or journal. For a given pair of UID and SEQUENCE property values, the RECURRENCE-ID value for a recurrence instance is fixed.

The RANGE parameter is used to specify the effective range of recurrence instances from the instance specified by the RECURRENCE-ID property value. The value for the range parameter can only be THISANDFUTURE to indicate a range defined by the given recurrence instance and all subsequent instances. Subsequent instances are determined by their RECURRENCE-ID value and not their current scheduled start time. Subsequent instances defined in separate components are not impacted by the given recurrence instance. When the given recurrence instance is rescheduled, all subsequent instances are also rescheduled by the same time difference. For instance, if the given recurrence instance is rescheduled to start 2 hours later, then all subsequent instances are also rescheduled 2 hours later.

Similarly, if the duration of the given recurrence instance is modified, then all subsequence instances are also modified to have this same duration.

Note: The RANGE parameter may not be appropriate to reschedule specific subsequent instances of complex recurring calendar component. Assuming an unbounded recurring calendar component scheduled to occur on Mondays and Wednesdays, the RANGE parameter could not be used to reschedule only the future Monday instances to occur on Tuesday instead. In such cases, the calendar application could simply truncate the unbounded recurring calendar component (i.e., with the COUNT or UNTIL rule parts), and create two new unbounded recurring calendar components for the future instances.

See PROPERTY
See VALUE-TYPE
See TIME-ZONE-IDENTIFIER
See RECURRENCE-IDENTIFIER-RANGE
See DATE
See DATE-TIME

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

(or iclendar:date-time iclendar:date)

Slot: value-type
Type

(or string (member :binary :boolean :cal-address :date :date-time :duration :float :integer :period :recur :text :time :uri :utc-offset))

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: time-zone-identifier
Type

iclendar:text

Initargs

:time-zone-identifier

Readers

time-zone-identifier.

Writers

(setf time-zone-identifier).

Slot: recurrence-identifier-range
Type

(member :this-and-future)

Initargs

:recurrence-identifier-range

Readers

recurrence-identifier-range.

Writers

(setf recurrence-identifier-range).

Class: recurrence-identifier-range
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote (member this-and-future))
:identifierrange
Class: recurrence-rule

This property describes a generic rule by which the component recurs.

Must be a RECURRENCE.

From RFC5545:
The recurrence rule, if specified, is used in computing
the recurrence set. The recurrence set is the complete set of recurrence instances for a calendar component. The recurrence set is generated by considering the initial DTSTART property along with the RRULE, RDATE, and EXDATE properties contained
within the recurring component. The DTSTART property defines the first instance in the recurrence set. The DTSTART property value SHOULD be synchronized with the recurrence rule, if specified. The recurrence set generated with a DTSTART property value not synchronized with the recurrence rule is undefined. The final recurrence set is generated by gathering all of the start DATE-TIME values generated by any of the specified RRULE and RDATE properties, and then excluding any start DATE-TIME values specified by EXDATE properties. This implies that start DATE- TIME values specified by EXDATE properties take precedence over those specified by inclusion properties (i.e., RDATE and RRULE). Where duplicate instances are generated by the RRULE and RDATE properties, only one recurrence is considered. Duplicate instances are ignored.

The DTSTART property specified within the iCalendar object defines the first instance of the recurrence. In most cases, a DTSTART property of DATE-TIME value type used with a recurrence rule, should be specified as a date with local time and time zone reference to make sure all the recurrence instances start at the same local time regardless of time zone changes.

If the duration of the recurring component is specified with the DTEND or DUE property, then the same exact duration will apply to all the members of the generated recurrence set. Else, if the duration of the recurring component is specified with the DURATION property, then the same nominal duration will apply to all the members of the generated recurrence set and the exact duration of each recurrence instance will depend on its specific start time. For example, recurrence instances of a nominal duration of one day will have an exact duration of more or less than 24 hours on a day where a time zone shift occurs. The duration of a specific recurrence may be modified in an exception component or simply by using an RDATE property of PERIOD value type.

See PROPERTY
See RECURRENCE

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:recurrence

This property defines a related component.

Must be a TEXT.

From RFC5545:
The property value consists of the persistent, globally
unique identifier of another calendar component. This value would be represented in a calendar component by the UID property.

By default, the property value points to another calendar component that has a PARENT relationship to the referencing object. The RELTYPE property parameter is used to either explicitly state the default PARENT relationship type to the referenced calendar component or to override the default PARENT relationship type and specify either a CHILD or SIBLING relationship. The PARENT relationship indicates that the calendar component is a subordinate of the referenced calendar component. The CHILD relationship indicates that the calendar component is a superior of the referenced calendar component. The SIBLING relationship indicates that the calendar component is a peer of the referenced calendar component.

Changes to a calendar component referenced by this property can have an implicit impact on the related calendar component. For example, if a group event changes its start or end date or time, then the related, dependent events will need to have their start and end dates changed in a corresponding way. Similarly, if a PARENT calendar component is cancelled or deleted, then there is an implied impact to the related CHILD calendar components. This property is intended only to provide information on the relationship of calendar components. It is up to the target calendar system to maintain any property implications of this relationship.

See PROPERTY
See RELATIONSHIP-TYPE
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:text

Slot: relationship-type
Type

(or string (member :parent :child :sibling))

Initargs

:relationship-type

Readers

relationship-type.

Writers

(setf relationship-type).

Class: relationship-type
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote (or string (member parent child sibling)))
:identifierreltype
Class: repeat

This property defines the number of times the component’s action is repeated.

Must be a positive integer.

From RFC5545:
This property defines the number of times an alarm
should be repeated after its initial trigger. If the alarm
triggers more than once, then this property MUST be specified
along with the DURATION property.

See PROPERTY

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

(integer 0)

Class: reply-requested
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote boolean)
:identifierrsvp
Class: request-status

This property describes the status of the component’s requested action.

Must be a TEXT.

See PROPERTY
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:text

Class: resource

This property defines the equipment or resources anticipated for an activity specified by a calendar component.

Must be a TEXT.

See PROPERTY
See ALTERNATE-REPRESENTATION
See LANGUAGE
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:text

Slot: alternate-representation
Type

iclendar:text

Initargs

:alternate-representation

Readers

alternate-representation.

Writers

(setf alternate-representation).

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Class: role
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote (or string (member chair req-participant opt-participant non-participant)))
:identifierrole
Class: scale

This property defines the calendar’s scaling.

Must be a TEXT.

From RFC5545:
This memo is based on the Gregorian calendar scale.
The Gregorian calendar scale is assumed if this property is not specified in the iCalendar object. It is expected that other calendar scales will be defined in other specifications or by future versions of this memo.

See PROPERTY
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:text

Class: sent-by
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote address)
:identifiersent-by
Class: sequence-number

This property defines the sequence number of the component.

Must be a positive integer.

From RFC5545:
When a calendar component is created, its sequence
number is 0. It is monotonically incremented by the "Organizer’s" CUA each time the "Organizer" makes a significant revision to the calendar component.

The "Organizer" includes this property in an iCalendar object that it sends to an "Attendee" to specify the current version of the calendar component.

The "Attendee" includes this property in an iCalendar object that it sends to the "Organizer" to specify the version of the calendar component to which the "Attendee" is referring.

A change to the sequence number is not the mechanism that an "Organizer" uses to request a response from the "Attendees". The "RSVP" parameter on the "ATTENDEE" property is used by the "Organizer" to indicate that a response from the "Attendees" is requested.

Recurrence instances of a recurring component MAY have different sequence numbers.

See PROPERTY

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

(integer 0)

Class: stamp

This component describes the creation stamp of the component.

Must be a DATE-TIME

From RFC5545:
The value MUST be specified in the UTC time format.

This property is also useful to protocols such as [2447bis] that have inherent latency issues with the delivery of content. This property will assist in the proper sequencing of messages containing iCalendar objects.

In the case of an iCalendar object that specifies a METHOD property, this property differs from the CREATED and LAST- MODIFIED properties. These two properties are used to specify when the particular calendar data in the calendar store was created and last modified. This is different than when the iCalendar object representation of the calendar service information was created or last modified.

In the case of an iCalendar object that doesn’t specify a METHOD property, this property is equivalent to the LAST-MODIFIED property.

See PROPERTY
See DATE-TIME

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:date-time

Class: start

This property describes the start time of the component.

Must be a DATE-TIME or a DATE.

From RFC5545:
Within the VEVENT calendar component, this property
defines the start date and time for the event.

Within the VFREEBUSY calendar component, this property defines the start date and time for the free or busy time information. The time MUST be specified in UTC time.

Within the STANDARD and DAYLIGHT sub-components, this property defines the effective start date and time for a time zone specification. This property is REQUIRED within each STANDARD and DAYLIGHT sub-components included in VTIMEZONE calendar components and MUST be specified as a date with local time without the TZID property parameter.

See PROPERTY
See VALUE-TYPE
See TIME-ZONE-IDENTIFIER
See DATE
See DATE-TIME

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

(or iclendar:date-time iclendar:date)

Slot: value-type
Type

(or string (member :binary :boolean :cal-address :date :date-time :duration :float :integer :period :recur :text :time :uri :utc-offset))

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: time-zone-identifier
Type

iclendar:text

Initargs

:time-zone-identifier

Readers

time-zone-identifier.

Writers

(setf time-zone-identifier).

Class: status

This property defines the overall status or confirmation for the calendar component.

Must be a TEXT.

See PROPERTY
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:text

Class: summary

This property defines a short summary or subject for the calendar component.

Must be a TEXT.

From RFC5545:
This property is used in the VEVENT, VTODO, and
VJOURNAL calendar components to capture a short, one-line
summary about the activity or journal entry.

This property is used in the VALARM calendar component to
capture the subject of an EMAIL category of alarm.

See PROPERTY
See ALTERNATE-REPRESENTATION
See LANGUAGE
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:text

Slot: alternate-representation
Type

iclendar:text

Initargs

:alternate-representation

Readers

alternate-representation.

Writers

(setf alternate-representation).

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Class: task-component

This is a mixin class for common properties in subclasses.

See DESCRIPTION
See DURATION
See GEOGRAPHIC-LOCATION
See LOCATION
See PRIORITY
See DATE-COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct subclasses
Direct methods
Direct slots
Slot: description
Initargs

:description

Readers

description.

Writers

(setf description).

Slot: duration
Initargs

:duration

Readers

duration.

Writers

(setf duration).

Slot: geographic-location
Initargs

:geographic-location

Readers

geographic-location.

Writers

(setf geographic-location).

Slot: location
Initargs

:location

Readers

location.

Writers

(setf location).

Slot: priority
Initargs

:priority

Readers

priority.

Writers

(setf priority).

Class: time-zone

Component to describe a grouping of parts to describe a time zone.

From RFC5545:
A time zone is unambiguously defined by the set of time measurement rules determined by the governing body for a given geographic area. These rules describe, at a minimum, the base offset from UTC for the time zone, often referred to as the Standard Time offset. Many locations adjust their Standard Time forward or backward by one hour, in order to accommodate seasonal changes in number of daylight hours, often referred to as Daylight Saving Time. Some locations adjust their time by a fraction of an hour. Standard Time is also known as Winter Time. Daylight Saving Time is also known as Advanced Time, Summer Time, or Legal Time in certain countries. The following table shows the changes in time zone rules in effect for New York City starting from 1967. Each line represents a description or rule for a particular observance.

Effective Observance Rule

+———–+————————–+——–+————–+ | Date | (Date-Time) | Offset | Abbreviation | +———–+————————–+——–+————–+ | 1967-1973 | last Sun in Apr, 02:00 | -0400 | EDT | | | | | | | 1967-2006 | last Sun in Oct, 02:00 | -0500 | EST | | | | | | | 1974-1974 | Jan 6, 02:00 | -0400 | EDT | | | | | | | 1975-1975 | Feb 23, 02:00 | -0400 | EDT | | | | | | | 1976-1986 | last Sun in Apr, 02:00 | -0400 | EDT | | | | | | | 1987-2006 | first Sun in Apr, 02:00 | -0400 | EDT | | | | | | | 2007-* | second Sun in Mar, 02:00 | -0400 | EDT | | | | | | | 2007-* | first Sun in Nov, 02:00 | -0500 | EST | +———–+————————–+——–+————–+

Note: The specification of a global time zone registry is not addressed by this document and is left for future study. However, implementers may find the TZ database [TZDB] a useful reference. It is an informal, public-domain collection of time zone information, which is currently being maintained by volunteer Internet participants, and is used in several operating systems. This database contains current and historical time zone information for a wide variety of locations around the globe; it provides a time zone identifier for every unique time zone rule set in actual use since 1970, with historical data going back to the introduction of standard time.

Interoperability between two calendaring and scheduling applications, especially for recurring events, to-dos or journal entries, is dependent on the ability to capture and convey date and time information in an unambiguous format. The specification of current time zone information is integral to this behavior.

If present, the VTIMEZONE calendar component defines the set of Standard Time and Daylight Saving Time observances (or rules) for a particular time zone for a given interval of time. The VTIMEZONE calendar component cannot be nested within other calendar components. Multiple VTIMEZONE calendar components can exist in an iCalendar object. In this situation, each VTIMEZONE MUST represent a unique time zone definition. This is necessary for some classes of events, such as airline flights, that start in one time zone and end in another.

The VTIMEZONE calendar component MUST include the TZID
property and at least one definition of a STANDARD or DAYLIGHT sub-component. The STANDARD or DAYLIGHT sub-component MUST include the DTSTART, TZOFFSETFROM, and TZOFFSETTO
properties.

An individual VTIMEZONE calendar component MUST be specified for each unique TZID parameter value specified in the iCalendar object. In addition, a VTIMEZONE calendar component, referred to by a recurring calendar component, MUST provide valid time zone information for all recurrence instances.

Each VTIMEZONE calendar component consists of a collection of one or more sub-components that describe the rule for a particular observance (either a Standard Time or a Daylight Saving Time observance). The STANDARD sub-component consists of a collection of properties that describe Standard Time. The DAYLIGHT sub-component consists of a collection of properties that describe Daylight Saving Time. In general, this collection of properties consists of:

* the first onset DATE-TIME for the observance;

* the last onset DATE-TIME for the observance, if a last onset is known;

* the offset to be applied for the observance;

* a rule that describes the day and time when the observance takes effect;

* an optional name for the observance.

For a given time zone, there may be multiple unique definitions of the observances over a period of time. Each observance is described using either a STANDARD or DAYLIGHT sub-component. The collection of these sub-components is used to describe the time zone for a given period of time. The offset to apply at any given time is found by locating the observance that has the last onset date and time before the time in question, and using the offset value from that observance.

The top-level properties in a VTIMEZONE calendar component are:

The mandatory TZID property is a text value that uniquely identifies the VTIMEZONE calendar component within the scope of an iCalendar object.

The optional LAST-MODIFIED property is a UTC value that specifies the date and time that this time zone definition was last updated.

The optional TZURL property is a url value that points to a published VTIMEZONE definition. TZURL SHOULD refer to a resource that is accessible by anyone who might need to interpret the object. This SHOULD NOT normally be a file URL or other URL that is not widely accessible.

The collection of properties that are used to define the STANDARD and DAYLIGHT sub-components include:

The mandatory DTSTART property gives the effective onset date and local time for the time zone sub-component definition. DTSTART in this usage MUST be specified as a date with a local time value.

The mandatory TZOFFSETFROM property gives the UTC offset that is in use when the onset of this time zone observance begins. TZOFFSETFROM is combined with DTSTART to define the effective onset for the time zone sub-component definition. For example, the following represents the time at which the observance of Standard Time took effect in Fall 1967 for New York City:

DTSTART:19671029T020000

TZOFFSETFROM:-0400

The mandatory TZOFFSETTO property gives the UTC offset for the time zone sub-component (Standard Time or Daylight Saving Time) when this observance is in use.

The optional TZNAME property is the customary name for the time zone. This could be used for displaying dates.

The onset DATE-TIME values for the observance defined by the time zone sub-component is defined by the DTSTART, RRULE, and
RDATE properties.

The RRULE property defines the recurrence rule for the onset of the observance defined by this time zone sub-component. Some specific requirements for the usage of RRULE for this purpose include:

* If observance is known to have an effective end date, the UNTIL recurrence rule parameter MUST be used to specify the last valid onset of this observance (i.e., the UNTIL DATE-TIME will be equal to the last instance generated by the recurrence pattern). It MUST be specified in UTC time.

* The DTSTART and the TZOFFSETFROM properties MUST be used when generating the onset DATE-TIME values (instances) from the RRULE.

The RDATE property can also be used to define the onset of the observance by giving the individual onset date and times. RDATE in this usage MUST be specified as a date with local time value, relative to the UTC offset specified in the TZOFFSETFROM property.

The optional COMMENT property is also allowed for descriptive explanatory text.

See UID
See LAST-MODIFICATION
See URL
See COMPONENT
See COMPONENT-CONTAINER

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: uid
Initargs

:uid

Readers

uid.

Writers

(setf uid).

Slot: last-modification
Initargs

:last-modification

Readers

last-modification.

Writers

(setf last-modification).

Slot: url
Initargs

:url

Readers

url.

Writers

(setf url).

Class: time-zone-component

This is a child component describing a part of a time zone.

Since time zone components can take on two forms, iClendar implements the following two subclasses that should be used instead of this:

TIME-ZONE-STANDARD
TIME-ZONE-DAYLIGHT

Please see TIME-ZONE for a full description.

See COMMENTS
See START
See RECURRENCE-DATES
See RECURRENCE-RULE
See OFFSET-TO
See OFFSET-FROM
See TZ-NAMES
See TIME-ZONE
See TIME-ZONE-STANDARD
See TIME-ZONE-DAYLIGHT
See COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses

component.

Direct subclasses
Direct methods
Direct slots
Slot: comments
Initargs

:comments

Readers

comments.

Writers

(setf comments).

Slot: start
Initargs

:start

Readers

start.

Writers

(setf start).

Slot: recurrence-dates
Initargs

:recurrence-dates

Readers

recurrence-dates.

Writers

(setf recurrence-dates).

Slot: recurrence-rule
Initargs

:recurrence-rule

Readers

recurrence-rule.

Writers

(setf recurrence-rule).

Slot: offset-to
Initargs

:offset-to

Readers

offset-to.

Writers

(setf offset-to).

Slot: offset-from
Initargs

:offset-from

Readers

offset-from.

Writers

(setf offset-from).

Slot: tz-names
Initargs

:tz-names

Readers

tz-names.

Writers

(setf tz-names).

Class: time-zone-daylight

Daylight savings time zone component description.

See TIME-ZONE-COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Class: time-zone-identifier
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote text)
:identifiertzid
Class: time-zone-standard

Standard time zone component description.

See TIME-ZONE-COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Class: todo

Component representing a todo item in a calendar.

From RFC5545:
A VTODO calendar component is a grouping of component properties and possibly VALARM calendar components that represent an action-item or assignment. For example, it can be used to represent an item of work assigned to an individual; such as "turn in travel expense today".

The VTODO calendar component cannot be nested within another calendar component. However, VTODO calendar components can be related to each other or to a VEVENT or to a VJOURNAL calendar component with the RELATED-TO property.

A VTODO calendar component without the DTSTART and DUE (or DURATION) properties specifies a to-do that will be associated with each successive calendar date, until it is completed.

See COMPLETED
See COMPLETENESS
See DUE
See DURATION
See TASK-COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: completed
Initargs

:completed

Readers

completed.

Writers

(setf completed).

Slot: completeness
Initargs

:completeness

Readers

completeness.

Writers

(setf completeness).

Slot: due
Initargs

:due

Readers

due.

Writers

(setf due).

Slot: duration
Initargs

:duration

Readers

duration.

Writers

(setf duration).

Class: transparency

This property describes whether the component takes up physical time.

Must be a string or one of :OPAQUE :TRANSPARENT.

From RFC5545:
Time Transparency is the characteristic of an event
that determines whether it appears to consume time on a calendar. Events that consume actual time for the individual or resource associated with the calendar SHOULD be recorded as OPAQUE, allowing them to be detected by free/busy time searches. Other events, which do not take up the individual’s (or resource’s) time SHOULD be recorded as TRANSPARENT, making them invisible to free/ busy time searches.

See PROPERTY

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

(or string (member :opaque :transparent))

Class: transport-method

This property describes the transport method by which the calendar is sent.

Must be a TEXT.

From RFC5545:
When used in a MIME message entity, the value of this
property MUST be the same as the Content-Type method parameter
value. If either the METHOD property or the Content-Type
method parameter is specified, then the other MUST also be specified.

No methods are defined by this specification. This is the subject
of other specifications, such as the iCalendar Transport-
independent Interoperability Protocol (iTIP) defined by [2446bis].

If this property is not present in the iCalendar object, then a scheduling transaction MUST NOT be assumed. In such cases, the iCalendar object is merely being used to transport a snapshot of

See PROPERTY
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:text

Class: trigger

This property describes the trigger for an alarm.

Must be a TIME-SPAN or a DATE-TIME.

From RFC5545:
This property defines when an alarm will trigger. The
default value type is DURATION, specifying a relative time for the trigger of the alarm. The default duration is relative to the start of an event or to-do with which the alarm is associated. The duration can be explicitly set to trigger from either the end or the start of the associated event or to-do with the RELATED parameter. A value of START will set the alarm to trigger off the start of the associated event or to-do. A value of END will set the alarm to trigger off the end of the associated event or to-do.

Either a positive or negative duration may be specified for the TRIGGER property. An alarm with a positive duration is triggered after the associated start or end of the event or to-do. An alarm with a negative duration is triggered before the associated start or end of the event or to-do.

The RELATED property parameter is not valid if the value type of the property is set to DATE-TIME (i.e., for an absolute date and time alarm trigger). If a value type of DATE-TIME is specified, then the property value MUST be specified in the UTC time format. If an absolute trigger is specified on an alarm for a recurring event or to-do, then the alarm will only trigger for the specified absolute DATE-TIME, along with any specified repeating instances.

If the trigger is set relative to START, then the DTSTART property MUST be present in the associated VEVENT or VTODO calendar component. If an alarm is specified for an event with the trigger set relative to the END, then the DTEND property or the DTSTART and DURATION properties MUST be present in the associated VEVENT calendar component. If the alarm is specified for a to-do with a trigger set relative to the END, then either the DUE property or the DTSTART and DURATION properties
MUST be present in the associated VTODO calendar component.

Alarms specified in an event or to-do that is defined in terms of a DATE value type will be triggered relative to 00:00:00 of the user’s configured time zone on the specified date, or relative to 00:00:00 UTC on the specified date if no configured time zone can be found for the user. For example, if DTSTART is a DATE value set to 19980205 then the duration trigger will be relative to 19980205T000000 America/New_York for a user configured with the America/New_York time zone.

See PROPERTY
See VALUE-TYPE
See TIME-ZONE-IDENTIFIER
See TRIGGER-ON
See TIME-SPAN
See DATE-TIME

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

(or iclendar:time-span iclendar:date-time)

Slot: value-type
Type

(or string (member :binary :boolean :cal-address :date :date-time :duration :float :integer :period :recur :text :time :uri :utc-offset))

Initargs

:value-type

Readers

value-type.

Writers

(setf value-type).

Slot: time-zone-identifier
Type

iclendar:text

Initargs

:time-zone-identifier

Readers

time-zone-identifier.

Writers

(setf time-zone-identifier).

Slot: trigger-on
Type

(member :start :end)

Initargs

:trigger-on

Readers

trigger-on.

Writers

(setf trigger-on).

Class: trigger-on
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote (member start end))
:identifierrelated
Class: tzid

This property assigns a unique ID to the time zone to reference it by.

Must be a TEXT.

From RFC5545:
This is the label by which a time zone calendar
component is referenced by any iCalendar properties whose value type is either DATE-TIME or TIME and not intended to specify a UTC or a floating time. The presence of the SOLIDUS character as a prefix, indicates that this TZID represents an unique ID in a globally defined time zone registry (when such registry is defined).

Note: This document does not define a naming convention for time zone identifiers. Implementers may want to use the naming conventions defined in existing time zone specifications such as the public-domain TZ database [TZDB]. The specification of globally unique time zone identifiers is not addressed by this document and is left for future study.

See PROPERTY
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:text

Class: tzname

This property describes a name for the time zone.

Must be a TEXT.

From RFC5545:
This property specifies a customary name that can be used when displaying dates that occur during the observance defined by the time zone sub-component.

See PROPERTY
See LANGUAGE
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct methods
Direct slots
Slot: value
Type

iclendar:text

Slot: language
Type

iclendar:text

Initargs

:language

Readers

language.

Writers

(setf language).

Class: tzurl

This property describes a network location where the time zone is described.

Must be a URI.

From RFC5545:
This property provides a means for a VTIMEZONE
component to point to a network location that can be used to
retrieve an up-to-date version of itself. This provides a hook to handle changes government bodies impose upon time zone
definitions. Retrieval of this resource results in an iCalendar object containing a single VTIMEZONE component and a METHOD
property set to PUBLISH.

See PROPERTY
See URI

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:uri

Class: uid

This property describes a globally unique identifier for the component.

Must be a TEXT.

From RFC5545:
The UID itself MUST be a globally unique identifier.
The generator of the identifier MUST guarantee that the identifier is unique. There are several algorithms that can be used to accomplish this. A good method to assure uniqueness is to put the domain name or a domain literal IP address of the host on which the identifier was created on the right-hand side of an @, and
on the left-hand side, put a combination of the current calendar date and time of day (i.e., formatted in as a DATE-TIME value) along with some other currently unique (perhaps sequential) identifier available on the system (for example, a process id number). Using a DATE-TIME value on the left-hand side and a domain name or domain literal on the right-hand side makes it possible to guarantee uniqueness since no two hosts should be using the same domain name or IP address at the same time. Though other algorithms will work, it is RECOMMENDED that the right-hand side contain some domain identifier (either of the host itself or otherwise) such that the generator of the message identifier can guarantee the uniqueness of the left-hand side within the scope of that domain.

This is the method for correlating scheduling messages with the referenced VEVENT, VTODO, or VJOURNAL calendar component.

The full range of calendar components specified by a recurrence set is referenced by referring to just the UID property value corresponding to the calendar component. The RECURRENCE-ID property allows the reference to an individual instance within the recurrence set.

This property is an important method for group-scheduling applications to match requests with later replies, modifications, or deletion requests. Calendaring and scheduling applications MUST generate this property in VEVENT, VTODO, and VJOURNAL calendar components to assure interoperability with other group- scheduling applications. This identifier is created by the calendar system that generates an iCalendar object.

Implementations MUST be able to receive and persist values of at least 255 octets for this property, but they MUST NOT truncate values in the middle of a UTF-8 multi-octet sequence.

See PROPERTY
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:text

Class: url

This property describes a URL where a rendered representation of the component resides.

Must be a URI.

From RFC5545:
This property may be used in a calendar component to
convey a location where a more dynamic rendition of the calendar
information associated with the calendar component can be found.
This memo does not attempt to standardize the form of the URI, nor
the format of the resource pointed to by the property value. If
the URL property and Content-Location MIME header are both
specified, they MUST point to the same resource.

See PROPERTY
See URI

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:uri

Class: value-type
Package

iclendar.

Source

standard-parameters.lisp.

Direct superclasses

direct-parameter-slot.

Direct Default Initargs
InitargValue
:type(quote (or string (member binary boolean cal-address date date-time duration float integer period recur text time uri utc-offset)))
:identifiervalue
Class: version

This property defines the version of the iCalendar protocol.

Must be a TEXT.

From RFC5545:
This property specifies the identifier corresponding to the highest version number or the minimum and maximum range of the iCalendar specification that is required in order to interpret the iCalendar object.

See PROPERTY
See TEXT

Package

iclendar.

Source

standard-properties.lisp.

Direct superclasses

property.

Direct slots
Slot: value
Type

iclendar:text

Class: x-component

This is a component to describe X-prefixed, extension components.

See IDENTIFIER
See COMPONENT

Package

iclendar.

Source

standard-components.lisp.

Direct superclasses

component.

Direct methods
Direct slots
Slot: identifier
Initargs

:identifier

Readers

identifier.

Writers

(setf identifier).


5.1.7 Types

Type: address ()

Type for addresses to a resource.

Not to be confused by a real-world postal address.

See URI

Package

iclendar.

Source

standard-types.lisp.

Type: address-list ()

Type for a list with each item being of type ADDRESS

See ADDRESS

Package

iclendar.

Source

standard-types.lisp.

Type: attachment-value ()

Type for attachment values.

See URI
See CL:PATHNAME
See CL:VECTOR

Package

iclendar.

Source

standard-types.lisp.

Type: hour-list ()

Type for a list with each item being an integer in [0,23].

Package

iclendar.

Source

standard-types.lisp.

Type: minute-list ()

Type for a list with each item being an integer in [0,59].

Package

iclendar.

Source

standard-types.lisp.

Type: month-day-list ()

Type for a list with each item being an integer in [1,31].

Package

iclendar.

Source

standard-types.lisp.

Type: month-list ()

Type for a list with each item being an integer in [1,12].

Package

iclendar.

Source

standard-types.lisp.

Type: second-list ()

Type for a list with each item being an integer in [0,60].

Package

iclendar.

Source

standard-types.lisp.

Type: text ()

Type for text values.

This is just a string.

Package

iclendar.

Source

standard-types.lisp.

Type: uri ()

Type for unified resource identifiers.

This is just a string. No actual checks beyond this are done.

From RFC5545:
This value type might be used to reference binary information, for values that are large, or otherwise undesirable to include directly in the iCalendar object.

Property values with this value type MUST follow the generic URI syntax defined in [RFC3986].

When a property parameter value is a URI value type, the URI MUST be specified as a quoted-string value.

No additional content value encoding (i.e., BACKSLASH character encoding, see Section 3.3.11) is defined for this value type.

Package

iclendar.

Source

standard-types.lisp.

Type: week-day ()

Type for a week-day.

Can be one of :SUNDAY :MONDAY :TUESDAY :WEDNESDAY :THURSDAY :FRIDAY :SATURDAY

Package

iclendar.

Source

standard-types.lisp.

Type: week-day-list ()

Type for a list with each item being a WEEK-DAY-NUM.

See WEEK-DAY-NUM

Package

iclendar.

Source

standard-types.lisp.

Type: week-list ()

Type for a list with each item being an integer in [1,53].

Package

iclendar.

Source

standard-types.lisp.

Type: year-day-list ()

Type for a list with each item being an integer in [1,366].

Package

iclendar.

Source

standard-types.lisp.


5.2 Internals


5.2.1 Special variables

Special Variable: *print-property-value-only*
Package

iclendar.

Source

protocol.lisp.


5.2.2 Macros

Macro: define-list-type (name inner)
Package

iclendar.

Source

toolkit.lisp.

Macro: define-print-object (class identity format-string &rest args)
Package

iclendar.

Source

toolkit.lisp.


5.2.3 Ordinary functions

Function: %write-char (char stream backing)
Package

iclendar.

Source

stream.lisp.

Function: address-list-p (list)
Package

iclendar.

Source

standard-types.lisp.

Function: c-date ()
Package

iclendar.

Source

toolkit.lisp.

Function: c-day ()
Package

iclendar.

Source

toolkit.lisp.

Function: c-hour ()
Package

iclendar.

Source

toolkit.lisp.

Function: c-minute ()
Package

iclendar.

Source

toolkit.lisp.

Function: c-month ()
Package

iclendar.

Source

toolkit.lisp.

Function: c-second ()
Package

iclendar.

Source

toolkit.lisp.

Function: c-year ()
Package

iclendar.

Source

toolkit.lisp.

Function: copy-date (instance)
Package

iclendar.

Source

standard-types.lisp.

Function: copy-date-time (instance)
Package

iclendar.

Source

standard-types.lisp.

Function: copy-geo (instance)
Package

iclendar.

Source

standard-types.lisp.

Function: copy-period (instance)
Package

iclendar.

Source

standard-types.lisp.

Function: copy-recurrence (instance)
Package

iclendar.

Source

standard-types.lisp.

Function: copy-time-span (instance)
Package

iclendar.

Source

standard-types.lisp.

Function: copy-utc-offset (instance)
Package

iclendar.

Source

standard-types.lisp.

Function: copy-week-day-num (instance)
Package

iclendar.

Source

standard-types.lisp.

Function: date-p (object)
Package

iclendar.

Source

standard-types.lisp.

Function: date-time-p (object)
Package

iclendar.

Source

standard-types.lisp.

Function: ensure-finalized (class)
Package

iclendar.

Source

toolkit.lisp.

Function: find-direct-slot (name class)
Package

iclendar.

Source

toolkit.lisp.

Function: find-superclass-slot (name class)
Package

iclendar.

Source

toolkit.lisp.

Function: geo-p (object)
Package

iclendar.

Source

standard-types.lisp.

Function: hour-list-p (list)
Package

iclendar.

Source

standard-types.lisp.

Function: make-icalendar-stream (output)
Package

iclendar.

Source

stream.lisp.

Function: make-uid ()
Package

iclendar.

Source

toolkit.lisp.

Function: make-weekday-num (week-day &optional week)
Package

iclendar.

Source

standard-types.lisp.

Function: minute-list-p (list)
Package

iclendar.

Source

standard-types.lisp.

Function: month-day-list-p (list)
Package

iclendar.

Source

standard-types.lisp.

Function: month-list-p (list)
Package

iclendar.

Source

standard-types.lisp.

Function: period-p (object)
Package

iclendar.

Source

standard-types.lisp.

Function: recurrence-p (object)
Package

iclendar.

Source

standard-types.lisp.

Function: s (stream object &rest args)
Package

iclendar.

Source

serializer.lisp.

Function: second-list-p (list)
Package

iclendar.

Source

standard-types.lisp.

Function: time-span-p (object)
Package

iclendar.

Source

standard-types.lisp.

Function: utc-offset-p (object)
Package

iclendar.

Source

standard-types.lisp.

Function: week-day-list-p (list)
Package

iclendar.

Source

standard-types.lisp.

Function: week-day-num-p (object)
Package

iclendar.

Source

standard-types.lisp.

Function: week-list-p (list)
Package

iclendar.

Source

standard-types.lisp.

Function: year-day-list-p (list)
Package

iclendar.

Source

standard-types.lisp.


5.2.4 Generic functions

Generic Reader: backing-stream (object)
Package

iclendar.

Methods
Reader Method: backing-stream ((icalendar-stream icalendar-stream))

automatically generated reader method

Source

stream.lisp.

Target Slot

backing-stream.

Generic Writer: (setf backing-stream) (object)
Package

iclendar.

Methods
Writer Method: (setf backing-stream) ((icalendar-stream icalendar-stream))

automatically generated writer method

Source

stream.lisp.

Target Slot

backing-stream.

Generic Function: check-slot-constraint (slot instance)
Package

iclendar.

Methods
Method: check-slot-constraint ((slot property-slot) instance)
Source

protocol.lisp.

Generic Function: check-slot-value (slot value)
Package

iclendar.

Methods
Method: check-slot-value ((slot property-slot) value)
Source

protocol.lisp.

Generic Reader: column (object)
Package

iclendar.

Methods
Reader Method: column ((icalendar-stream icalendar-stream))

automatically generated reader method

Source

stream.lisp.

Target Slot

column.

Generic Writer: (setf column) (object)
Package

iclendar.

Methods
Writer Method: (setf column) ((icalendar-stream icalendar-stream))

automatically generated writer method

Source

stream.lisp.

Target Slot

column.

Generic Reader: constraint (object)
Package

iclendar.

Methods
Reader Method: constraint ((property-slot property-slot))

automatically generated reader method

Source

protocol.lisp.

Target Slot

constraint.

Generic Function: property-slot-value-type (slot)
Package

iclendar.

Methods
Method: property-slot-value-type ((slot property-slot))
Source

protocol.lisp.

Generic Reader: property-type (object)
Package

iclendar.

Methods
Reader Method: property-type ((property-slot property-slot))

automatically generated reader method

Source

protocol.lisp.

Target Slot

property-type.


5.2.5 Classes

Class: component-class
Package

iclendar.

Source

protocol.lisp.

Direct superclasses
Direct methods
Class: direct-parameter-slot
Package

iclendar.

Source

protocol.lisp.

Direct superclasses
Direct subclasses
Direct methods

initialize-instance.

Class: direct-property-slot
Package

iclendar.

Source

protocol.lisp.

Direct superclasses
Direct methods

initialize-instance.

Class: effective-parameter-slot
Package

iclendar.

Source

protocol.lisp.

Direct superclasses
Class: effective-property-slot
Package

iclendar.

Source

protocol.lisp.

Direct superclasses
Class: icalendar-stream
Package

iclendar.

Source

stream.lisp.

Direct superclasses

fundamental-character-output-stream.

Direct methods
Direct Default Initargs
InitargValue
:backing-stream(error backing-stream required.)
Direct slots
Slot: backing-stream
Initargs

:backing-stream

Readers

backing-stream.

Writers

(setf backing-stream).

Slot: column
Initform

0

Readers

column.

Writers

(setf column).

Class: parameter-slot
Package

iclendar.

Source

protocol.lisp.

Direct superclasses
Direct subclasses
Class: property-class
Package

iclendar.

Source

protocol.lisp.

Direct superclasses
Direct methods
Class: property-slot
Package

iclendar.

Source

protocol.lisp.

Direct superclasses

standard-slot-definition.

Direct subclasses
Direct methods
Direct Default Initargs
InitargValue
:constraintoptional
Direct slots
Slot: constraint
Initargs

:constraint

Readers

constraint.

Writers

This slot is read-only.

Slot: property-type
Initargs

:property

Readers

property-type.

Writers

This slot is read-only.

Class: serializable-class
Package

iclendar.

Source

protocol.lisp.

Direct superclasses

metaobject.

Direct subclasses
Direct methods
Direct slots
Slot: identifier
Readers

identifier.

Writers

This slot is read-only.


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   %   (  
A   B   C   D   E   F   G   H   I   L   M   O   P   R   S   T   U   V   W   X   Y  
Index Entry  Section

%
%write-char: Private ordinary functions

(
(setf action): Public generic functions
(setf action): Public generic functions
(setf alternate-representation): Public generic functions
(setf alternate-representation): Public generic functions
(setf alternate-representation): Public generic functions
(setf alternate-representation): Public generic functions
(setf alternate-representation): Public generic functions
(setf alternate-representation): Public generic functions
(setf alternate-representation): Public generic functions
(setf attachment): Public generic functions
(setf attachment): Public generic functions
(setf attachments): Public generic functions
(setf attachments): Public generic functions
(setf attachments): Public generic functions
(setf attendee): Public generic functions
(setf attendee): Public generic functions
(setf attendees): Public generic functions
(setf attendees): Public generic functions
(setf backing-stream): Private generic functions
(setf backing-stream): Private generic functions
(setf calendar-user-type): Public generic functions
(setf calendar-user-type): Public generic functions
(setf categories): Public generic functions
(setf categories): Public generic functions
(setf classification): Public generic functions
(setf classification): Public generic functions
(setf column): Private generic functions
(setf column): Private generic functions
(setf comments): Public generic functions
(setf comments): Public generic functions
(setf comments): Public generic functions
(setf common-name): Public generic functions
(setf common-name): Public generic functions
(setf common-name): Public generic functions
(setf completed): Public generic functions
(setf completed): Public generic functions
(setf completeness): Public generic functions
(setf completeness): Public generic functions
(setf components): Public generic functions
(setf components): Public generic functions
(setf contact): Public generic functions
(setf contact): Public generic functions
(setf contacts): Public generic functions
(setf contacts): Public generic functions
(setf created): Public generic functions
(setf created): Public generic functions
(setf date-date): Public ordinary functions
(setf date-month): Public ordinary functions
(setf date-time-date): Public ordinary functions
(setf date-time-hour): Public ordinary functions
(setf date-time-minute): Public ordinary functions
(setf date-time-month): Public ordinary functions
(setf date-time-second): Public ordinary functions
(setf date-time-utc-p): Public ordinary functions
(setf date-time-year): Public ordinary functions
(setf date-year): Public ordinary functions
(setf delegatee): Public generic functions
(setf delegatee): Public generic functions
(setf delegator): Public generic functions
(setf delegator): Public generic functions
(setf description): Public generic functions
(setf description): Public generic functions
(setf description): Public generic functions
(setf description): Public generic functions
(setf directory-entry): Public generic functions
(setf directory-entry): Public generic functions
(setf directory-entry): Public generic functions
(setf due): Public generic functions
(setf due): Public generic functions
(setf duration): Public generic functions
(setf duration): Public generic functions
(setf duration): Public generic functions
(setf duration): Public generic functions
(setf duration): Public generic functions
(setf encoding): Public generic functions
(setf encoding): Public generic functions
(setf end): Public generic functions
(setf end): Public generic functions
(setf end): Public generic functions
(setf exception-dates): Public generic functions
(setf exception-dates): Public generic functions
(setf format-type): Public generic functions
(setf format-type): Public generic functions
(setf free/busy-type): Public generic functions
(setf free/busy-type): Public generic functions
(setf geo-lat): Public ordinary functions
(setf geo-lng): Public ordinary functions
(setf geographic-location): Public generic functions
(setf geographic-location): Public generic functions
(setf identifier): Public generic functions
(setf identifier): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf language): Public generic functions
(setf last-modification): Public generic functions
(setf last-modification): Public generic functions
(setf last-modification): Public generic functions
(setf location): Public generic functions
(setf location): Public generic functions
(setf membership): Public generic functions
(setf membership): Public generic functions
(setf offset-from): Public generic functions
(setf offset-from): Public generic functions
(setf offset-to): Public generic functions
(setf offset-to): Public generic functions
(setf organizer): Public generic functions
(setf organizer): Public generic functions
(setf organizer): Public generic functions
(setf participation-status): Public generic functions
(setf participation-status): Public generic functions
(setf period-limit): Public ordinary functions
(setf period-start): Public ordinary functions
(setf periods): Public generic functions
(setf periods): Public generic functions
(setf priority): Public generic functions
(setf priority): Public generic functions
(setf product): Public generic functions
(setf product): Public generic functions
(setf recurrence-by-days): Public ordinary functions
(setf recurrence-by-hours): Public ordinary functions
(setf recurrence-by-minutes): Public ordinary functions
(setf recurrence-by-month-days): Public ordinary functions
(setf recurrence-by-months): Public ordinary functions
(setf recurrence-by-seconds): Public ordinary functions
(setf recurrence-by-set-pos): Public ordinary functions
(setf recurrence-by-weeks): Public ordinary functions
(setf recurrence-by-year-days): Public ordinary functions
(setf recurrence-count): Public ordinary functions
(setf recurrence-dates): Public generic functions
(setf recurrence-dates): Public generic functions
(setf recurrence-dates): Public generic functions
(setf recurrence-end-date): Public ordinary functions
(setf recurrence-frequency): Public ordinary functions
(setf recurrence-id): Public generic functions
(setf recurrence-id): Public generic functions
(setf recurrence-identifier-range): Public generic functions
(setf recurrence-identifier-range): Public generic functions
(setf recurrence-interval): Public ordinary functions
(setf recurrence-rule): Public generic functions
(setf recurrence-rule): Public generic functions
(setf recurrence-rule): Public generic functions
(setf recurrence-week-start): Public ordinary functions
(setf related): Public generic functions
(setf related): Public generic functions
(setf relationship-type): Public generic functions
(setf relationship-type): Public generic functions
(setf repeat): Public generic functions
(setf repeat): Public generic functions
(setf reply-requested): Public generic functions
(setf reply-requested): Public generic functions
(setf request-status): Public generic functions
(setf request-status): Public generic functions
(setf resources): Public generic functions
(setf resources): Public generic functions
(setf role): Public generic functions
(setf role): Public generic functions
(setf scale): Public generic functions
(setf scale): Public generic functions
(setf sent-by): Public generic functions
(setf sent-by): Public generic functions
(setf sent-by): Public generic functions
(setf sequence-number): Public generic functions
(setf sequence-number): Public generic functions
(setf slot-value-using-class): Public standalone methods
(setf slot-value-using-class): Public standalone methods
(setf stamp): Public generic functions
(setf stamp): Public generic functions
(setf start): Public generic functions
(setf start): Public generic functions
(setf start): Public generic functions
(setf status): Public generic functions
(setf status): Public generic functions
(setf summary): Public generic functions
(setf summary): Public generic functions
(setf summary): Public generic functions
(setf time-span-day): Public ordinary functions
(setf time-span-hour): Public ordinary functions
(setf time-span-inc-p): Public ordinary functions
(setf time-span-minute): Public ordinary functions
(setf time-span-second): Public ordinary functions
(setf time-span-week): Public ordinary functions
(setf time-zone-identifier): Public generic functions
(setf time-zone-identifier): Public generic functions
(setf time-zone-identifier): Public generic functions
(setf time-zone-identifier): Public generic functions
(setf time-zone-identifier): Public generic functions
(setf time-zone-identifier): Public generic functions
(setf time-zone-identifier): Public generic functions
(setf time-zone-identifier): Public generic functions
(setf transparency): Public generic functions
(setf transparency): Public generic functions
(setf transport-method): Public generic functions
(setf transport-method): Public generic functions
(setf trigger): Public generic functions
(setf trigger): Public generic functions
(setf trigger-on): Public generic functions
(setf trigger-on): Public generic functions
(setf tz-names): Public generic functions
(setf tz-names): Public generic functions
(setf uid): Public generic functions
(setf uid): Public generic functions
(setf uid): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf url): Public generic functions
(setf utc-offset-hour): Public ordinary functions
(setf utc-offset-inc-p): Public ordinary functions
(setf utc-offset-minute): Public ordinary functions
(setf utc-offset-second): Public ordinary functions
(setf value): Public generic functions
(setf value): Public generic functions
(setf value-type): Public generic functions
(setf value-type): Public generic functions
(setf value-type): Public generic functions
(setf value-type): Public generic functions
(setf value-type): Public generic functions
(setf value-type): Public generic functions
(setf value-type): Public generic functions
(setf value-type): Public generic functions
(setf value-type): Public generic functions
(setf version): Public generic functions
(setf version): Public generic functions
(setf week-day-num-week): Public ordinary functions
(setf week-day-num-week-day): Public ordinary functions
(setf x-parameters): Public generic functions
(setf x-parameters): Public generic functions
(setf x-properties): Public generic functions
(setf x-properties): Public generic functions

A
action: Public generic functions
action: Public generic functions
address-list-p: Private ordinary functions
alternate-representation: Public generic functions
alternate-representation: Public generic functions
alternate-representation: Public generic functions
alternate-representation: Public generic functions
alternate-representation: Public generic functions
alternate-representation: Public generic functions
alternate-representation: Public generic functions
attachment: Public generic functions
attachment: Public generic functions
attachments: Public generic functions
attachments: Public generic functions
attachments: Public generic functions
attendee: Public generic functions
attendee: Public generic functions
attendees: Public generic functions
attendees: Public generic functions

B
backing-stream: Private generic functions
backing-stream: Private generic functions

C
c-date: Private ordinary functions
c-day: Private ordinary functions
c-hour: Private ordinary functions
c-minute: Private ordinary functions
c-month: Private ordinary functions
c-second: Private ordinary functions
c-year: Private ordinary functions
calendar-user-type: Public generic functions
calendar-user-type: Public generic functions
categories: Public generic functions
categories: Public generic functions
check-slot-constraint: Private generic functions
check-slot-constraint: Private generic functions
check-slot-value: Private generic functions
check-slot-value: Private generic functions
classification: Public generic functions
classification: Public generic functions
column: Private generic functions
column: Private generic functions
comments: Public generic functions
comments: Public generic functions
comments: Public generic functions
common-name: Public generic functions
common-name: Public generic functions
common-name: Public generic functions
completed: Public generic functions
completed: Public generic functions
completeness: Public generic functions
completeness: Public generic functions
components: Public generic functions
components: Public generic functions
compute-effective-slot-definition: Public standalone methods
compute-effective-slot-definition: Public standalone methods
constraint: Private generic functions
constraint: Private generic functions
contact: Public generic functions
contact: Public generic functions
contacts: Public generic functions
contacts: Public generic functions
copy-date: Private ordinary functions
copy-date-time: Private ordinary functions
copy-geo: Private ordinary functions
copy-period: Private ordinary functions
copy-recurrence: Private ordinary functions
copy-time-span: Private ordinary functions
copy-utc-offset: Private ordinary functions
copy-week-day-num: Private ordinary functions
created: Public generic functions
created: Public generic functions

D
date-date: Public ordinary functions
date-month: Public ordinary functions
date-p: Private ordinary functions
date-time-date: Public ordinary functions
date-time-hour: Public ordinary functions
date-time-minute: Public ordinary functions
date-time-month: Public ordinary functions
date-time-p: Private ordinary functions
date-time-second: Public ordinary functions
date-time-utc-p: Public ordinary functions
date-time-year: Public ordinary functions
date-year: Public ordinary functions
define-component: Public macros
define-list-type: Private macros
define-parameter: Public macros
define-print-object: Private macros
define-property: Public macros
delegatee: Public generic functions
delegatee: Public generic functions
delegator: Public generic functions
delegator: Public generic functions
description: Public generic functions
description: Public generic functions
description: Public generic functions
description: Public generic functions
direct-slot-definition-class: Public standalone methods
direct-slot-definition-class: Public standalone methods
directory-entry: Public generic functions
directory-entry: Public generic functions
directory-entry: Public generic functions
due: Public generic functions
due: Public generic functions
duration: Public generic functions
duration: Public generic functions
duration: Public generic functions
duration: Public generic functions
duration: Public generic functions

E
effective-slot-definition-class: Public standalone methods
effective-slot-definition-class: Public standalone methods
encoding: Public generic functions
encoding: Public generic functions
end: Public generic functions
end: Public generic functions
end: Public generic functions
ensure-finalized: Private ordinary functions
exception-dates: Public generic functions
exception-dates: Public generic functions

F
finalize-inheritance: Public standalone methods
find-direct-slot: Private ordinary functions
find-superclass-slot: Private ordinary functions
format-type: Public generic functions
format-type: Public generic functions
free/busy-type: Public generic functions
free/busy-type: Public generic functions
Function, %write-char: Private ordinary functions
Function, (setf date-date): Public ordinary functions
Function, (setf date-month): Public ordinary functions
Function, (setf date-time-date): Public ordinary functions
Function, (setf date-time-hour): Public ordinary functions
Function, (setf date-time-minute): Public ordinary functions
Function, (setf date-time-month): Public ordinary functions
Function, (setf date-time-second): Public ordinary functions
Function, (setf date-time-utc-p): Public ordinary functions
Function, (setf date-time-year): Public ordinary functions
Function, (setf date-year): Public ordinary functions
Function, (setf geo-lat): Public ordinary functions
Function, (setf geo-lng): Public ordinary functions
Function, (setf period-limit): Public ordinary functions
Function, (setf period-start): Public ordinary functions
Function, (setf recurrence-by-days): Public ordinary functions
Function, (setf recurrence-by-hours): Public ordinary functions
Function, (setf recurrence-by-minutes): Public ordinary functions
Function, (setf recurrence-by-month-days): Public ordinary functions
Function, (setf recurrence-by-months): Public ordinary functions
Function, (setf recurrence-by-seconds): Public ordinary functions
Function, (setf recurrence-by-set-pos): Public ordinary functions
Function, (setf recurrence-by-weeks): Public ordinary functions
Function, (setf recurrence-by-year-days): Public ordinary functions
Function, (setf recurrence-count): Public ordinary functions
Function, (setf recurrence-end-date): Public ordinary functions
Function, (setf recurrence-frequency): Public ordinary functions
Function, (setf recurrence-interval): Public ordinary functions
Function, (setf recurrence-week-start): Public ordinary functions
Function, (setf time-span-day): Public ordinary functions
Function, (setf time-span-hour): Public ordinary functions
Function, (setf time-span-inc-p): Public ordinary functions
Function, (setf time-span-minute): Public ordinary functions
Function, (setf time-span-second): Public ordinary functions
Function, (setf time-span-week): Public ordinary functions
Function, (setf utc-offset-hour): Public ordinary functions
Function, (setf utc-offset-inc-p): Public ordinary functions
Function, (setf utc-offset-minute): Public ordinary functions
Function, (setf utc-offset-second): Public ordinary functions
Function, (setf week-day-num-week): Public ordinary functions
Function, (setf week-day-num-week-day): Public ordinary functions
Function, address-list-p: Private ordinary functions
Function, c-date: Private ordinary functions
Function, c-day: Private ordinary functions
Function, c-hour: Private ordinary functions
Function, c-minute: Private ordinary functions
Function, c-month: Private ordinary functions
Function, c-second: Private ordinary functions
Function, c-year: Private ordinary functions
Function, copy-date: Private ordinary functions
Function, copy-date-time: Private ordinary functions
Function, copy-geo: Private ordinary functions
Function, copy-period: Private ordinary functions
Function, copy-recurrence: Private ordinary functions
Function, copy-time-span: Private ordinary functions
Function, copy-utc-offset: Private ordinary functions
Function, copy-week-day-num: Private ordinary functions
Function, date-date: Public ordinary functions
Function, date-month: Public ordinary functions
Function, date-p: Private ordinary functions
Function, date-time-date: Public ordinary functions
Function, date-time-hour: Public ordinary functions
Function, date-time-minute: Public ordinary functions
Function, date-time-month: Public ordinary functions
Function, date-time-p: Private ordinary functions
Function, date-time-second: Public ordinary functions
Function, date-time-utc-p: Public ordinary functions
Function, date-time-year: Public ordinary functions
Function, date-year: Public ordinary functions
Function, ensure-finalized: Private ordinary functions
Function, find-direct-slot: Private ordinary functions
Function, find-superclass-slot: Private ordinary functions
Function, geo-lat: Public ordinary functions
Function, geo-lng: Public ordinary functions
Function, geo-p: Private ordinary functions
Function, hour-list-p: Private ordinary functions
Function, make-date: Public ordinary functions
Function, make-date-time: Public ordinary functions
Function, make-geo: Public ordinary functions
Function, make-icalendar-stream: Private ordinary functions
Function, make-period: Public ordinary functions
Function, make-recurrence: Public ordinary functions
Function, make-time-span: Public ordinary functions
Function, make-uid: Private ordinary functions
Function, make-utc-offset: Public ordinary functions
Function, make-weekday-num: Private ordinary functions
Function, minute-list-p: Private ordinary functions
Function, month-day-list-p: Private ordinary functions
Function, month-list-p: Private ordinary functions
Function, period-limit: Public ordinary functions
Function, period-p: Private ordinary functions
Function, period-start: Public ordinary functions
Function, recurrence-by-days: Public ordinary functions
Function, recurrence-by-hours: Public ordinary functions
Function, recurrence-by-minutes: Public ordinary functions
Function, recurrence-by-month-days: Public ordinary functions
Function, recurrence-by-months: Public ordinary functions
Function, recurrence-by-seconds: Public ordinary functions
Function, recurrence-by-set-pos: Public ordinary functions
Function, recurrence-by-weeks: Public ordinary functions
Function, recurrence-by-year-days: Public ordinary functions
Function, recurrence-count: Public ordinary functions
Function, recurrence-end-date: Public ordinary functions
Function, recurrence-frequency: Public ordinary functions
Function, recurrence-interval: Public ordinary functions
Function, recurrence-p: Private ordinary functions
Function, recurrence-week-start: Public ordinary functions
Function, s: Private ordinary functions
Function, second-list-p: Private ordinary functions
Function, serialize: Public ordinary functions
Function, time-span-day: Public ordinary functions
Function, time-span-hour: Public ordinary functions
Function, time-span-inc-p: Public ordinary functions
Function, time-span-minute: Public ordinary functions
Function, time-span-p: Private ordinary functions
Function, time-span-second: Public ordinary functions
Function, time-span-week: Public ordinary functions
Function, utc-offset-hour: Public ordinary functions
Function, utc-offset-inc-p: Public ordinary functions
Function, utc-offset-minute: Public ordinary functions
Function, utc-offset-p: Private ordinary functions
Function, utc-offset-second: Public ordinary functions
Function, week-day-list-p: Private ordinary functions
Function, week-day-num-p: Private ordinary functions
Function, week-day-num-week: Public ordinary functions
Function, week-day-num-week-day: Public ordinary functions
Function, week-list-p: Private ordinary functions
Function, year-day-list-p: Private ordinary functions

G
Generic Function, (setf action): Public generic functions
Generic Function, (setf alternate-representation): Public generic functions
Generic Function, (setf attachment): Public generic functions
Generic Function, (setf attachments): Public generic functions
Generic Function, (setf attendee): Public generic functions
Generic Function, (setf attendees): Public generic functions
Generic Function, (setf backing-stream): Private generic functions
Generic Function, (setf calendar-user-type): Public generic functions
Generic Function, (setf categories): Public generic functions
Generic Function, (setf classification): Public generic functions
Generic Function, (setf column): Private generic functions
Generic Function, (setf comments): Public generic functions
Generic Function, (setf common-name): Public generic functions
Generic Function, (setf completed): Public generic functions
Generic Function, (setf completeness): Public generic functions
Generic Function, (setf components): Public generic functions
Generic Function, (setf contact): Public generic functions
Generic Function, (setf contacts): Public generic functions
Generic Function, (setf created): Public generic functions
Generic Function, (setf delegatee): Public generic functions
Generic Function, (setf delegator): Public generic functions
Generic Function, (setf description): Public generic functions
Generic Function, (setf directory-entry): Public generic functions
Generic Function, (setf due): Public generic functions
Generic Function, (setf duration): Public generic functions
Generic Function, (setf encoding): Public generic functions
Generic Function, (setf end): Public generic functions
Generic Function, (setf exception-dates): Public generic functions
Generic Function, (setf format-type): Public generic functions
Generic Function, (setf free/busy-type): Public generic functions
Generic Function, (setf geographic-location): Public generic functions
Generic Function, (setf identifier): Public generic functions
Generic Function, (setf language): Public generic functions
Generic Function, (setf last-modification): Public generic functions
Generic Function, (setf location): Public generic functions
Generic Function, (setf membership): Public generic functions
Generic Function, (setf offset-from): Public generic functions
Generic Function, (setf offset-to): Public generic functions
Generic Function, (setf organizer): Public generic functions
Generic Function, (setf participation-status): Public generic functions
Generic Function, (setf periods): Public generic functions
Generic Function, (setf priority): Public generic functions
Generic Function, (setf product): Public generic functions
Generic Function, (setf recurrence-dates): Public generic functions
Generic Function, (setf recurrence-id): Public generic functions
Generic Function, (setf recurrence-identifier-range): Public generic functions
Generic Function, (setf recurrence-rule): Public generic functions
Generic Function, (setf related): Public generic functions
Generic Function, (setf relationship-type): Public generic functions
Generic Function, (setf repeat): Public generic functions
Generic Function, (setf reply-requested): Public generic functions
Generic Function, (setf request-status): Public generic functions
Generic Function, (setf resources): Public generic functions
Generic Function, (setf role): Public generic functions
Generic Function, (setf scale): Public generic functions
Generic Function, (setf sent-by): Public generic functions
Generic Function, (setf sequence-number): Public generic functions
Generic Function, (setf stamp): Public generic functions
Generic Function, (setf start): Public generic functions
Generic Function, (setf status): Public generic functions
Generic Function, (setf summary): Public generic functions
Generic Function, (setf time-zone-identifier): Public generic functions
Generic Function, (setf transparency): Public generic functions
Generic Function, (setf transport-method): Public generic functions
Generic Function, (setf trigger): Public generic functions
Generic Function, (setf trigger-on): Public generic functions
Generic Function, (setf tz-names): Public generic functions
Generic Function, (setf uid): Public generic functions
Generic Function, (setf url): Public generic functions
Generic Function, (setf value): Public generic functions
Generic Function, (setf value-type): Public generic functions
Generic Function, (setf version): Public generic functions
Generic Function, (setf x-parameters): Public generic functions
Generic Function, (setf x-properties): Public generic functions
Generic Function, action: Public generic functions
Generic Function, alternate-representation: Public generic functions
Generic Function, attachment: Public generic functions
Generic Function, attachments: Public generic functions
Generic Function, attendee: Public generic functions
Generic Function, attendees: Public generic functions
Generic Function, backing-stream: Private generic functions
Generic Function, calendar-user-type: Public generic functions
Generic Function, categories: Public generic functions
Generic Function, check-slot-constraint: Private generic functions
Generic Function, check-slot-value: Private generic functions
Generic Function, classification: Public generic functions
Generic Function, column: Private generic functions
Generic Function, comments: Public generic functions
Generic Function, common-name: Public generic functions
Generic Function, completed: Public generic functions
Generic Function, completeness: Public generic functions
Generic Function, components: Public generic functions
Generic Function, constraint: Private generic functions
Generic Function, contact: Public generic functions
Generic Function, contacts: Public generic functions
Generic Function, created: Public generic functions
Generic Function, delegatee: Public generic functions
Generic Function, delegator: Public generic functions
Generic Function, description: Public generic functions
Generic Function, directory-entry: Public generic functions
Generic Function, due: Public generic functions
Generic Function, duration: Public generic functions
Generic Function, encoding: Public generic functions
Generic Function, end: Public generic functions
Generic Function, exception-dates: Public generic functions
Generic Function, format-type: Public generic functions
Generic Function, free/busy-type: Public generic functions
Generic Function, geographic-location: Public generic functions
Generic Function, identifier: Public generic functions
Generic Function, language: Public generic functions
Generic Function, last-modification: Public generic functions
Generic Function, location: Public generic functions
Generic Function, membership: Public generic functions
Generic Function, offset-from: Public generic functions
Generic Function, offset-to: Public generic functions
Generic Function, organizer: Public generic functions
Generic Function, parameters: Public generic functions
Generic Function, participation-status: Public generic functions
Generic Function, periods: Public generic functions
Generic Function, priority: Public generic functions
Generic Function, product: Public generic functions
Generic Function, properties: Public generic functions
Generic Function, property-slot-value-type: Private generic functions
Generic Function, property-type: Private generic functions
Generic Function, recurrence-dates: Public generic functions
Generic Function, recurrence-id: Public generic functions
Generic Function, recurrence-identifier-range: Public generic functions
Generic Function, recurrence-rule: Public generic functions
Generic Function, related: Public generic functions
Generic Function, relationship-type: Public generic functions
Generic Function, repeat: Public generic functions
Generic Function, reply-requested: Public generic functions
Generic Function, request-status: Public generic functions
Generic Function, resources: Public generic functions
Generic Function, role: Public generic functions
Generic Function, scale: Public generic functions
Generic Function, sent-by: Public generic functions
Generic Function, sequence-number: Public generic functions
Generic Function, serialize-object: Public generic functions
Generic Function, stamp: Public generic functions
Generic Function, start: Public generic functions
Generic Function, status: Public generic functions
Generic Function, summary: Public generic functions
Generic Function, time-zone-identifier: Public generic functions
Generic Function, transparency: Public generic functions
Generic Function, transport-method: Public generic functions
Generic Function, trigger: Public generic functions
Generic Function, trigger-on: Public generic functions
Generic Function, tz-names: Public generic functions
Generic Function, uid: Public generic functions
Generic Function, url: Public generic functions
Generic Function, value: Public generic functions
Generic Function, value-type: Public generic functions
Generic Function, version: Public generic functions
Generic Function, x-parameters: Public generic functions
Generic Function, x-properties: Public generic functions
geo-lat: Public ordinary functions
geo-lng: Public ordinary functions
geo-p: Private ordinary functions
geographic-location: Public generic functions
geographic-location: Public generic functions

H
hour-list-p: Private ordinary functions

I
identifier: Public generic functions
identifier: Public generic functions
identifier: Public generic functions
identifier: Public generic functions
identifier: Public generic functions
initialize-instance: Public standalone methods
initialize-instance: Public standalone methods

L
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
language: Public generic functions
last-modification: Public generic functions
last-modification: Public generic functions
last-modification: Public generic functions
location: Public generic functions
location: Public generic functions

M
Macro, define-component: Public macros
Macro, define-list-type: Private macros
Macro, define-parameter: Public macros
Macro, define-print-object: Private macros
Macro, define-property: Public macros
make-date: Public ordinary functions
make-date-time: Public ordinary functions
make-geo: Public ordinary functions
make-icalendar-stream: Private ordinary functions
make-period: Public ordinary functions
make-recurrence: Public ordinary functions
make-time-span: Public ordinary functions
make-uid: Private ordinary functions
make-utc-offset: Public ordinary functions
make-weekday-num: Private ordinary functions
membership: Public generic functions
membership: Public generic functions
Method, (setf action): Public generic functions
Method, (setf alternate-representation): Public generic functions
Method, (setf alternate-representation): Public generic functions
Method, (setf alternate-representation): Public generic functions
Method, (setf alternate-representation): Public generic functions
Method, (setf alternate-representation): Public generic functions
Method, (setf alternate-representation): Public generic functions
Method, (setf attachment): Public generic functions
Method, (setf attachments): Public generic functions
Method, (setf attachments): Public generic functions
Method, (setf attendee): Public generic functions
Method, (setf attendees): Public generic functions
Method, (setf backing-stream): Private generic functions
Method, (setf calendar-user-type): Public generic functions
Method, (setf categories): Public generic functions
Method, (setf classification): Public generic functions
Method, (setf column): Private generic functions
Method, (setf comments): Public generic functions
Method, (setf comments): Public generic functions
Method, (setf common-name): Public generic functions
Method, (setf common-name): Public generic functions
Method, (setf completed): Public generic functions
Method, (setf completeness): Public generic functions
Method, (setf components): Public generic functions
Method, (setf contact): Public generic functions
Method, (setf contacts): Public generic functions
Method, (setf created): Public generic functions
Method, (setf delegatee): Public generic functions
Method, (setf delegator): Public generic functions
Method, (setf description): Public generic functions
Method, (setf description): Public generic functions
Method, (setf description): Public generic functions
Method, (setf directory-entry): Public generic functions
Method, (setf directory-entry): Public generic functions
Method, (setf due): Public generic functions
Method, (setf duration): Public generic functions
Method, (setf duration): Public generic functions
Method, (setf duration): Public generic functions
Method, (setf duration): Public generic functions
Method, (setf encoding): Public generic functions
Method, (setf end): Public generic functions
Method, (setf end): Public generic functions
Method, (setf exception-dates): Public generic functions
Method, (setf format-type): Public generic functions
Method, (setf free/busy-type): Public generic functions
Method, (setf geographic-location): Public generic functions
Method, (setf identifier): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf language): Public generic functions
Method, (setf last-modification): Public generic functions
Method, (setf last-modification): Public generic functions
Method, (setf location): Public generic functions
Method, (setf membership): Public generic functions
Method, (setf offset-from): Public generic functions
Method, (setf offset-to): Public generic functions
Method, (setf organizer): Public generic functions
Method, (setf organizer): Public generic functions
Method, (setf participation-status): Public generic functions
Method, (setf periods): Public generic functions
Method, (setf priority): Public generic functions
Method, (setf product): Public generic functions
Method, (setf recurrence-dates): Public generic functions
Method, (setf recurrence-dates): Public generic functions
Method, (setf recurrence-id): Public generic functions
Method, (setf recurrence-identifier-range): Public generic functions
Method, (setf recurrence-rule): Public generic functions
Method, (setf recurrence-rule): Public generic functions
Method, (setf related): Public generic functions
Method, (setf relationship-type): Public generic functions
Method, (setf repeat): Public generic functions
Method, (setf reply-requested): Public generic functions
Method, (setf request-status): Public generic functions
Method, (setf resources): Public generic functions
Method, (setf role): Public generic functions
Method, (setf scale): Public generic functions
Method, (setf sent-by): Public generic functions
Method, (setf sent-by): Public generic functions
Method, (setf sequence-number): Public generic functions
Method, (setf slot-value-using-class): Public standalone methods
Method, (setf slot-value-using-class): Public standalone methods
Method, (setf stamp): Public generic functions
Method, (setf start): Public generic functions
Method, (setf start): Public generic functions
Method, (setf status): Public generic functions
Method, (setf summary): Public generic functions
Method, (setf summary): Public generic functions
Method, (setf time-zone-identifier): Public generic functions
Method, (setf time-zone-identifier): Public generic functions
Method, (setf time-zone-identifier): Public generic functions
Method, (setf time-zone-identifier): Public generic functions
Method, (setf time-zone-identifier): Public generic functions
Method, (setf time-zone-identifier): Public generic functions
Method, (setf time-zone-identifier): Public generic functions
Method, (setf transparency): Public generic functions
Method, (setf transport-method): Public generic functions
Method, (setf trigger): Public generic functions
Method, (setf trigger-on): Public generic functions
Method, (setf tz-names): Public generic functions
Method, (setf uid): Public generic functions
Method, (setf uid): Public generic functions
Method, (setf url): Public generic functions
Method, (setf url): Public generic functions
Method, (setf value): Public generic functions
Method, (setf value-type): Public generic functions
Method, (setf value-type): Public generic functions
Method, (setf value-type): Public generic functions
Method, (setf value-type): Public generic functions
Method, (setf value-type): Public generic functions
Method, (setf value-type): Public generic functions
Method, (setf value-type): Public generic functions
Method, (setf value-type): Public generic functions
Method, (setf version): Public generic functions
Method, (setf x-parameters): Public generic functions
Method, (setf x-properties): Public generic functions
Method, action: Public generic functions
Method, alternate-representation: Public generic functions
Method, alternate-representation: Public generic functions
Method, alternate-representation: Public generic functions
Method, alternate-representation: Public generic functions
Method, alternate-representation: Public generic functions
Method, alternate-representation: Public generic functions
Method, attachment: Public generic functions
Method, attachments: Public generic functions
Method, attachments: Public generic functions
Method, attendee: Public generic functions
Method, attendees: Public generic functions
Method, backing-stream: Private generic functions
Method, calendar-user-type: Public generic functions
Method, categories: Public generic functions
Method, check-slot-constraint: Private generic functions
Method, check-slot-value: Private generic functions
Method, classification: Public generic functions
Method, column: Private generic functions
Method, comments: Public generic functions
Method, comments: Public generic functions
Method, common-name: Public generic functions
Method, common-name: Public generic functions
Method, completed: Public generic functions
Method, completeness: Public generic functions
Method, components: Public generic functions
Method, compute-effective-slot-definition: Public standalone methods
Method, compute-effective-slot-definition: Public standalone methods
Method, constraint: Private generic functions
Method, contact: Public generic functions
Method, contacts: Public generic functions
Method, created: Public generic functions
Method, delegatee: Public generic functions
Method, delegator: Public generic functions
Method, description: Public generic functions
Method, description: Public generic functions
Method, description: Public generic functions
Method, direct-slot-definition-class: Public standalone methods
Method, direct-slot-definition-class: Public standalone methods
Method, directory-entry: Public generic functions
Method, directory-entry: Public generic functions
Method, due: Public generic functions
Method, duration: Public generic functions
Method, duration: Public generic functions
Method, duration: Public generic functions
Method, duration: Public generic functions
Method, effective-slot-definition-class: Public standalone methods
Method, effective-slot-definition-class: Public standalone methods
Method, encoding: Public generic functions
Method, end: Public generic functions
Method, end: Public generic functions
Method, exception-dates: Public generic functions
Method, finalize-inheritance: Public standalone methods
Method, format-type: Public generic functions
Method, free/busy-type: Public generic functions
Method, geographic-location: Public generic functions
Method, identifier: Public generic functions
Method, identifier: Public generic functions
Method, identifier: Public generic functions
Method, identifier: Public generic functions
Method, initialize-instance: Public standalone methods
Method, initialize-instance: Public standalone methods
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, language: Public generic functions
Method, last-modification: Public generic functions
Method, last-modification: Public generic functions
Method, location: Public generic functions
Method, membership: Public generic functions
Method, offset-from: Public generic functions
Method, offset-to: Public generic functions
Method, organizer: Public generic functions
Method, organizer: Public generic functions
Method, parameters: Public generic functions
Method, participation-status: Public generic functions
Method, periods: Public generic functions
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, priority: Public generic functions
Method, product: Public generic functions
Method, properties: Public generic functions
Method, property-slot-value-type: Private generic functions
Method, property-type: Private generic functions
Method, recurrence-dates: Public generic functions
Method, recurrence-dates: Public generic functions
Method, recurrence-id: Public generic functions
Method, recurrence-identifier-range: Public generic functions
Method, recurrence-rule: Public generic functions
Method, recurrence-rule: Public generic functions
Method, related: Public generic functions
Method, relationship-type: Public generic functions
Method, repeat: Public generic functions
Method, reply-requested: Public generic functions
Method, request-status: Public generic functions
Method, resources: Public generic functions
Method, role: Public generic functions
Method, scale: Public generic functions
Method, sent-by: Public generic functions
Method, sent-by: Public generic functions
Method, sequence-number: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, serialize-object: Public generic functions
Method, shared-initialize: Public standalone methods
Method, shared-initialize: Public standalone methods
Method, slot-makunbound-using-class: Public standalone methods
Method, stamp: Public generic functions
Method, start: Public generic functions
Method, start: Public generic functions
Method, status: Public generic functions
Method, stream-advance-to-column: Public standalone methods
Method, stream-clear-output: Public standalone methods
Method, stream-file-position: Public standalone methods
Method, stream-finish-output: Public standalone methods
Method, stream-force-output: Public standalone methods
Method, stream-fresh-line: Public standalone methods
Method, stream-line-column: Public standalone methods
Method, stream-start-line-p: Public standalone methods
Method, stream-terpri: Public standalone methods
Method, stream-write-char: Public standalone methods
Method, stream-write-sequence: Public standalone methods
Method, stream-write-string: Public standalone methods
Method, summary: Public generic functions
Method, summary: Public generic functions
Method, time-zone-identifier: Public generic functions
Method, time-zone-identifier: Public generic functions
Method, time-zone-identifier: Public generic functions
Method, time-zone-identifier: Public generic functions
Method, time-zone-identifier: Public generic functions
Method, time-zone-identifier: Public generic functions
Method, time-zone-identifier: Public generic functions
Method, transparency: Public generic functions
Method, transport-method: Public generic functions
Method, trigger: Public generic functions
Method, trigger-on: Public generic functions
Method, tz-names: Public generic functions
Method, uid: Public generic functions
Method, uid: Public generic functions
Method, url: Public generic functions
Method, url: Public generic functions
Method, validate-superclass: Public standalone methods
Method, validate-superclass: Public standalone methods
Method, validate-superclass: Public standalone methods
Method, validate-superclass: Public standalone methods
Method, validate-superclass: Public standalone methods
Method, validate-superclass: Public standalone methods
Method, value: Public generic functions
Method, value-type: Public generic functions
Method, value-type: Public generic functions
Method, value-type: Public generic functions
Method, value-type: Public generic functions
Method, value-type: Public generic functions
Method, value-type: Public generic functions
Method, value-type: Public generic functions
Method, value-type: Public generic functions
Method, version: Public generic functions
Method, x-parameters: Public generic functions
Method, x-properties: Public generic functions
minute-list-p: Private ordinary functions
month-day-list-p: Private ordinary functions
month-list-p: Private ordinary functions

O
offset-from: Public generic functions
offset-from: Public generic functions
offset-to: Public generic functions
offset-to: Public generic functions
organizer: Public generic functions
organizer: Public generic functions
organizer: Public generic functions

P
parameters: Public generic functions
parameters: Public generic functions
participation-status: Public generic functions
participation-status: Public generic functions
period-limit: Public ordinary functions
period-p: Private ordinary functions
period-start: Public ordinary functions
periods: Public generic functions
periods: Public generic functions
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
priority: Public generic functions
priority: Public generic functions
product: Public generic functions
product: Public generic functions
properties: Public generic functions
properties: Public generic functions
property-slot-value-type: Private generic functions
property-slot-value-type: Private generic functions
property-type: Private generic functions
property-type: Private generic functions

R
recurrence-by-days: Public ordinary functions
recurrence-by-hours: Public ordinary functions
recurrence-by-minutes: Public ordinary functions
recurrence-by-month-days: Public ordinary functions
recurrence-by-months: Public ordinary functions
recurrence-by-seconds: Public ordinary functions
recurrence-by-set-pos: Public ordinary functions
recurrence-by-weeks: Public ordinary functions
recurrence-by-year-days: Public ordinary functions
recurrence-count: Public ordinary functions
recurrence-dates: Public generic functions
recurrence-dates: Public generic functions
recurrence-dates: Public generic functions
recurrence-end-date: Public ordinary functions
recurrence-frequency: Public ordinary functions
recurrence-id: Public generic functions
recurrence-id: Public generic functions
recurrence-identifier-range: Public generic functions
recurrence-identifier-range: Public generic functions
recurrence-interval: Public ordinary functions
recurrence-p: Private ordinary functions
recurrence-rule: Public generic functions
recurrence-rule: Public generic functions
recurrence-rule: Public generic functions
recurrence-week-start: Public ordinary functions
related: Public generic functions
related: Public generic functions
relationship-type: Public generic functions
relationship-type: Public generic functions
repeat: Public generic functions
repeat: Public generic functions
reply-requested: Public generic functions
reply-requested: Public generic functions
request-status: Public generic functions
request-status: Public generic functions
resources: Public generic functions
resources: Public generic functions
role: Public generic functions
role: Public generic functions

S
s: Private ordinary functions
scale: Public generic functions
scale: Public generic functions
second-list-p: Private ordinary functions
sent-by: Public generic functions
sent-by: Public generic functions
sent-by: Public generic functions
sequence-number: Public generic functions
sequence-number: Public generic functions
serialize: Public ordinary functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
serialize-object: Public generic functions
shared-initialize: Public standalone methods
shared-initialize: Public standalone methods
slot-makunbound-using-class: Public standalone methods
stamp: Public generic functions
stamp: Public generic functions
start: Public generic functions
start: Public generic functions
start: Public generic functions
status: Public generic functions
status: Public generic functions
stream-advance-to-column: Public standalone methods
stream-clear-output: Public standalone methods
stream-file-position: Public standalone methods
stream-finish-output: Public standalone methods
stream-force-output: Public standalone methods
stream-fresh-line: Public standalone methods
stream-line-column: Public standalone methods
stream-start-line-p: Public standalone methods
stream-terpri: Public standalone methods
stream-write-char: Public standalone methods
stream-write-sequence: Public standalone methods
stream-write-string: Public standalone methods
summary: Public generic functions
summary: Public generic functions
summary: Public generic functions

T
time-span-day: Public ordinary functions
time-span-hour: Public ordinary functions
time-span-inc-p: Public ordinary functions
time-span-minute: Public ordinary functions
time-span-p: Private ordinary functions
time-span-second: Public ordinary functions
time-span-week: Public ordinary functions
time-zone-identifier: Public generic functions
time-zone-identifier: Public generic functions
time-zone-identifier: Public generic functions
time-zone-identifier: Public generic functions
time-zone-identifier: Public generic functions
time-zone-identifier: Public generic functions
time-zone-identifier: Public generic functions
time-zone-identifier: Public generic functions
transparency: Public generic functions
transparency: Public generic functions
transport-method: Public generic functions
transport-method: Public generic functions
trigger: Public generic functions
trigger: Public generic functions
trigger-on: Public generic functions
trigger-on: Public generic functions
tz-names: Public generic functions
tz-names: Public generic functions

U
uid: Public generic functions
uid: Public generic functions
uid: Public generic functions
url: Public generic functions
url: Public generic functions
url: Public generic functions
utc-offset-hour: Public ordinary functions
utc-offset-inc-p: Public ordinary functions
utc-offset-minute: Public ordinary functions
utc-offset-p: Private ordinary functions
utc-offset-second: Public ordinary functions

V
validate-superclass: Public standalone methods
validate-superclass: Public standalone methods
validate-superclass: Public standalone methods
validate-superclass: Public standalone methods
validate-superclass: Public standalone methods
validate-superclass: Public standalone methods
value: Public generic functions
value: Public generic functions
value-type: Public generic functions
value-type: Public generic functions
value-type: Public generic functions
value-type: Public generic functions
value-type: Public generic functions
value-type: Public generic functions
value-type: Public generic functions
value-type: Public generic functions
value-type: Public generic functions
version: Public generic functions
version: Public generic functions

W
week-day-list-p: Private ordinary functions
week-day-num-p: Private ordinary functions
week-day-num-week: Public ordinary functions
week-day-num-week-day: Public ordinary functions
week-list-p: Private ordinary functions

X
x-parameters: Public generic functions
x-parameters: Public generic functions
x-properties: Public generic functions
x-properties: Public generic functions

Y
year-day-list-p: Private ordinary functions


A.3 Variables

Jump to:   *  
A   B   C   D   E   F   G   H   I   L   M   O   P   R   S   T   U   V   W   X   Y  
Index Entry  Section

*
*print-property-value-only*: Private special variables

A
action: Public classes
alternate-representation: Public classes
alternate-representation: Public classes
alternate-representation: Public classes
alternate-representation: Public classes
alternate-representation: Public classes
alternate-representation: Public classes
attachment: Public classes
attachments: Public classes
attachments: Public classes
attendee: Public classes
attendees: Public classes

B
backing-stream: Private classes
by-days: Public structures
by-hours: Public structures
by-minutes: Public structures
by-month-days: Public structures
by-months: Public structures
by-seconds: Public structures
by-set-pos: Public structures
by-weeks: Public structures
by-year-days: Public structures

C
calendar-user-type: Public classes
categories: Public classes
classification: Public classes
column: Private classes
comments: Public classes
comments: Public classes
common-name: Public classes
common-name: Public classes
completed: Public classes
completeness: Public classes
components: Public classes
constraint: Private classes
contact: Public classes
contacts: Public classes
count: Public structures
created: Public classes

D
date: Public structures
day: Public structures
delegatee: Public classes
delegator: Public classes
description: Public classes
description: Public classes
description: Public classes
directory-entry: Public classes
directory-entry: Public classes
due: Public classes
duration: Public classes
duration: Public classes
duration: Public classes
duration: Public classes

E
encoding: Public classes
end: Public classes
end: Public classes
end-date: Public structures
exception-dates: Public classes

F
format-type: Public classes
free/busy-type: Public classes
frequency: Public structures

G
geographic-location: Public classes

H
hour: Public structures
hour: Public structures
hour: Public structures

I
identifier: Public classes
identifier: Private classes
inc-p: Public structures
inc-p: Public structures
interval: Public structures

L
language: Public classes
language: Public classes
language: Public classes
language: Public classes
language: Public classes
language: Public classes
language: Public classes
language: Public classes
language: Public classes
language: Public classes
last-modification: Public classes
last-modification: Public classes
lat: Public structures
limit: Public structures
lng: Public structures
location: Public classes

M
membership: Public classes
minute: Public structures
minute: Public structures
minute: Public structures
month: Public structures

O
offset-from: Public classes
offset-to: Public classes
organizer: Public classes
organizer: Public classes

P
participation-status: Public classes
periods: Public classes
priority: Public classes
product: Public classes
property-type: Private classes

R
recurrence-dates: Public classes
recurrence-dates: Public classes
recurrence-id: Public classes
recurrence-identifier-range: Public classes
recurrence-rule: Public classes
recurrence-rule: Public classes
related: Public classes
relationship-type: Public classes
repeat: Public classes
reply-requested: Public classes
request-status: Public classes
resources: Public classes
role: Public classes

S
scale: Public classes
second: Public structures
second: Public structures
second: Public structures
sent-by: Public classes
sent-by: Public classes
sequence-number: Public classes
Slot, action: Public classes
Slot, alternate-representation: Public classes
Slot, alternate-representation: Public classes
Slot, alternate-representation: Public classes
Slot, alternate-representation: Public classes
Slot, alternate-representation: Public classes
Slot, alternate-representation: Public classes
Slot, attachment: Public classes
Slot, attachments: Public classes
Slot, attachments: Public classes
Slot, attendee: Public classes
Slot, attendees: Public classes
Slot, backing-stream: Private classes
Slot, by-days: Public structures
Slot, by-hours: Public structures
Slot, by-minutes: Public structures
Slot, by-month-days: Public structures
Slot, by-months: Public structures
Slot, by-seconds: Public structures
Slot, by-set-pos: Public structures
Slot, by-weeks: Public structures
Slot, by-year-days: Public structures
Slot, calendar-user-type: Public classes
Slot, categories: Public classes
Slot, classification: Public classes
Slot, column: Private classes
Slot, comments: Public classes
Slot, comments: Public classes
Slot, common-name: Public classes
Slot, common-name: Public classes
Slot, completed: Public classes
Slot, completeness: Public classes
Slot, components: Public classes
Slot, constraint: Private classes
Slot, contact: Public classes
Slot, contacts: Public classes
Slot, count: Public structures
Slot, created: Public classes
Slot, date: Public structures
Slot, day: Public structures
Slot, delegatee: Public classes
Slot, delegator: Public classes
Slot, description: Public classes
Slot, description: Public classes
Slot, description: Public classes
Slot, directory-entry: Public classes
Slot, directory-entry: Public classes
Slot, due: Public classes
Slot, duration: Public classes
Slot, duration: Public classes
Slot, duration: Public classes
Slot, duration: Public classes
Slot, encoding: Public classes
Slot, end: Public classes
Slot, end: Public classes
Slot, end-date: Public structures
Slot, exception-dates: Public classes
Slot, format-type: Public classes
Slot, free/busy-type: Public classes
Slot, frequency: Public structures
Slot, geographic-location: Public classes
Slot, hour: Public structures
Slot, hour: Public structures
Slot, hour: Public structures
Slot, identifier: Public classes
Slot, identifier: Private classes
Slot, inc-p: Public structures
Slot, inc-p: Public structures
Slot, interval: Public structures
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, language: Public classes
Slot, last-modification: Public classes
Slot, last-modification: Public classes
Slot, lat: Public structures
Slot, limit: Public structures
Slot, lng: Public structures
Slot, location: Public classes
Slot, membership: Public classes
Slot, minute: Public structures
Slot, minute: Public structures
Slot, minute: Public structures
Slot, month: Public structures
Slot, offset-from: Public classes
Slot, offset-to: Public classes
Slot, organizer: Public classes
Slot, organizer: Public classes
Slot, participation-status: Public classes
Slot, periods: Public classes
Slot, priority: Public classes
Slot, product: Public classes
Slot, property-type: Private classes
Slot, recurrence-dates: Public classes
Slot, recurrence-dates: Public classes
Slot, recurrence-id: Public classes
Slot, recurrence-identifier-range: Public classes
Slot, recurrence-rule: Public classes
Slot, recurrence-rule: Public classes
Slot, related: Public classes
Slot, relationship-type: Public classes
Slot, repeat: Public classes
Slot, reply-requested: Public classes
Slot, request-status: Public classes
Slot, resources: Public classes
Slot, role: Public classes
Slot, scale: Public classes
Slot, second: Public structures
Slot, second: Public structures
Slot, second: Public structures
Slot, sent-by: Public classes
Slot, sent-by: Public classes
Slot, sequence-number: Public classes
Slot, stamp: Public classes
Slot, start: Public structures
Slot, start: Public classes
Slot, start: Public classes
Slot, status: Public classes
Slot, summary: Public classes
Slot, summary: Public classes
Slot, time-zone-identifier: Public classes
Slot, time-zone-identifier: Public classes
Slot, time-zone-identifier: Public classes
Slot, time-zone-identifier: Public classes
Slot, time-zone-identifier: Public classes
Slot, time-zone-identifier: Public classes
Slot, time-zone-identifier: Public classes
Slot, transparency: Public classes
Slot, transport-method: Public classes
Slot, trigger: Public classes
Slot, trigger-on: Public classes
Slot, tz-names: Public classes
Slot, uid: Public classes
Slot, uid: Public classes
Slot, url: Public classes
Slot, url: Public classes
Slot, utc-p: Public structures
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value: Public classes
Slot, value-type: Public classes
Slot, value-type: Public classes
Slot, value-type: Public classes
Slot, value-type: Public classes
Slot, value-type: Public classes
Slot, value-type: Public classes
Slot, value-type: Public classes
Slot, value-type: Public classes
Slot, version: Public classes
Slot, week: Public structures
Slot, week: Public structures
Slot, week-day: Public structures
Slot, week-start: Public structures
Slot, x-parameters: Public classes
Slot, x-properties: Public classes
Slot, year: Public structures
Special Variable, *print-property-value-only*: Private special variables
stamp: Public classes
start: Public structures
start: Public classes
start: Public classes
status: Public classes
summary: Public classes
summary: Public classes

T
time-zone-identifier: Public classes
time-zone-identifier: Public classes
time-zone-identifier: Public classes
time-zone-identifier: Public classes
time-zone-identifier: Public classes
time-zone-identifier: Public classes
time-zone-identifier: Public classes
transparency: Public classes
transport-method: Public classes
trigger: Public classes
trigger-on: Public classes
tz-names: Public classes

U
uid: Public classes
uid: Public classes
url: Public classes
url: Public classes
utc-p: Public structures

V
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value: Public classes
value-type: Public classes
value-type: Public classes
value-type: Public classes
value-type: Public classes
value-type: Public classes
value-type: Public classes
value-type: Public classes
value-type: Public classes
version: Public classes

W
week: Public structures
week: Public structures
week-day: Public structures
week-start: Public structures

X
x-parameters: Public classes
x-properties: Public classes

Y
year: Public structures


A.4 Data types

Jump to:   A   C   D   E   F   G   H   I   J   L   M   O   P   R   S   T   U   V   W   X   Y  
Index Entry  Section

A
action: Public classes
address: Public types
address-list: Public types
alarm: Public classes
alternate-representation: Public classes
attachment: Public classes
attachment-value: Public types
attendee: Public classes
audio-alarm: Public classes

C
calendar: Public classes
calendar-component: Public classes
calendar-user-type: Public classes
category: Public classes
Class, action: Public classes
Class, alarm: Public classes
Class, alternate-representation: Public classes
Class, attachment: Public classes
Class, attendee: Public classes
Class, audio-alarm: Public classes
Class, calendar: Public classes
Class, calendar-component: Public classes
Class, calendar-user-type: Public classes
Class, category: Public classes
Class, classification: Public classes
Class, comment: Public classes
Class, common-name: Public classes
Class, completed: Public classes
Class, completeness: Public classes
Class, component: Public classes
Class, component-class: Private classes
Class, component-container: Public classes
Class, contact: Public classes
Class, created: Public classes
Class, date-component: Public classes
Class, delegatee: Public classes
Class, delegator: Public classes
Class, description: Public classes
Class, direct-parameter-slot: Private classes
Class, direct-property-slot: Private classes
Class, directory-entry: Public classes
Class, display-alarm: Public classes
Class, due: Public classes
Class, duration: Public classes
Class, effective-parameter-slot: Private classes
Class, effective-property-slot: Private classes
Class, email-alarm: Public classes
Class, encoding: Public classes
Class, end: Public classes
Class, event: Public classes
Class, exception-date: Public classes
Class, format-type: Public classes
Class, free/busy: Public classes
Class, free/busy-period: Public classes
Class, free/busy-type: Public classes
Class, geographic-location: Public classes
Class, icalendar-stream: Private classes
Class, journal: Public classes
Class, language: Public classes
Class, last-modification: Public classes
Class, location: Public classes
Class, membership: Public classes
Class, offset-from: Public classes
Class, offset-to: Public classes
Class, organizer: Public classes
Class, parameter-slot: Private classes
Class, participation-status: Public classes
Class, priority: Public classes
Class, product: Public classes
Class, property: Public classes
Class, property-class: Private classes
Class, property-slot: Private classes
Class, recurrence-date: Public classes
Class, recurrence-id: Public classes
Class, recurrence-identifier-range: Public classes
Class, recurrence-rule: Public classes
Class, related: Public classes
Class, relationship-type: Public classes
Class, repeat: Public classes
Class, reply-requested: Public classes
Class, request-status: Public classes
Class, resource: Public classes
Class, role: Public classes
Class, scale: Public classes
Class, sent-by: Public classes
Class, sequence-number: Public classes
Class, serializable-class: Private classes
Class, stamp: Public classes
Class, start: Public classes
Class, status: Public classes
Class, summary: Public classes
Class, task-component: Public classes
Class, time-zone: Public classes
Class, time-zone-component: Public classes
Class, time-zone-daylight: Public classes
Class, time-zone-identifier: Public classes
Class, time-zone-standard: Public classes
Class, todo: Public classes
Class, transparency: Public classes
Class, transport-method: Public classes
Class, trigger: Public classes
Class, trigger-on: Public classes
Class, tzid: Public classes
Class, tzname: Public classes
Class, tzurl: Public classes
Class, uid: Public classes
Class, url: Public classes
Class, value-type: Public classes
Class, version: Public classes
Class, x-component: Public classes
classification: Public classes
comment: Public classes
common-name: Public classes
completed: Public classes
completeness: Public classes
component: Public classes
component-class: Private classes
component-container: Public classes
contact: Public classes
created: Public classes

D
date: Public structures
date-component: Public classes
date-time: Public structures
delegatee: Public classes
delegator: Public classes
description: Public classes
direct-parameter-slot: Private classes
direct-property-slot: Private classes
directory-entry: Public classes
display-alarm: Public classes
documentation.lisp: The iclendar/documentation․lisp file
due: Public classes
duration: Public classes

E
effective-parameter-slot: Private classes
effective-property-slot: Private classes
email-alarm: Public classes
encoding: Public classes
end: Public classes
event: Public classes
exception-date: Public classes

F
File, documentation.lisp: The iclendar/documentation․lisp file
File, iclendar.asd: The iclendar/iclendar․asd file
File, package.lisp: The iclendar/package․lisp file
File, protocol.lisp: The iclendar/protocol․lisp file
File, serializer.lisp: The iclendar/serializer․lisp file
File, standard-components.lisp: The iclendar/standard-components․lisp file
File, standard-parameters.lisp: The iclendar/standard-parameters․lisp file
File, standard-properties.lisp: The iclendar/standard-properties․lisp file
File, standard-types.lisp: The iclendar/standard-types․lisp file
File, stream.lisp: The iclendar/stream․lisp file
File, toolkit.lisp: The iclendar/toolkit․lisp file
format-type: Public classes
free/busy: Public classes
free/busy-period: Public classes
free/busy-type: Public classes

G
geo: Public structures
geographic-location: Public classes

H
hour-list: Public types

I
icalendar-stream: Private classes
iclendar: The iclendar system
iclendar: The iclendar package
iclendar.asd: The iclendar/iclendar․asd file

J
journal: Public classes

L
language: Public classes
last-modification: Public classes
location: Public classes

M
membership: Public classes
minute-list: Public types
month-day-list: Public types
month-list: Public types

O
offset-from: Public classes
offset-to: Public classes
organizer: Public classes

P
Package, iclendar: The iclendar package
package.lisp: The iclendar/package․lisp file
parameter-slot: Private classes
participation-status: Public classes
period: Public structures
priority: Public classes
product: Public classes
property: Public classes
property-class: Private classes
property-slot: Private classes
protocol.lisp: The iclendar/protocol․lisp file

R
recurrence: Public structures
recurrence-date: Public classes
recurrence-id: Public classes
recurrence-identifier-range: Public classes
recurrence-rule: Public classes
related: Public classes
relationship-type: Public classes
repeat: Public classes
reply-requested: Public classes
request-status: Public classes
resource: Public classes
role: Public classes

S
scale: Public classes
second-list: Public types
sent-by: Public classes
sequence-number: Public classes
serializable-class: Private classes
serializer.lisp: The iclendar/serializer․lisp file
stamp: Public classes
standard-components.lisp: The iclendar/standard-components․lisp file
standard-parameters.lisp: The iclendar/standard-parameters․lisp file
standard-properties.lisp: The iclendar/standard-properties․lisp file
standard-types.lisp: The iclendar/standard-types․lisp file
start: Public classes
status: Public classes
stream.lisp: The iclendar/stream․lisp file
Structure, date: Public structures
Structure, date-time: Public structures
Structure, geo: Public structures
Structure, period: Public structures
Structure, recurrence: Public structures
Structure, time-span: Public structures
Structure, utc-offset: Public structures
Structure, week-day-num: Public structures
summary: Public classes
System, iclendar: The iclendar system

T
task-component: Public classes
text: Public types
time-span: Public structures
time-zone: Public classes
time-zone-component: Public classes
time-zone-daylight: Public classes
time-zone-identifier: Public classes
time-zone-standard: Public classes
todo: Public classes
toolkit.lisp: The iclendar/toolkit․lisp file
transparency: Public classes
transport-method: Public classes
trigger: Public classes
trigger-on: Public classes
Type, address: Public types
Type, address-list: Public types
Type, attachment-value: Public types
Type, hour-list: Public types
Type, minute-list: Public types
Type, month-day-list: Public types
Type, month-list: Public types
Type, second-list: Public types
Type, text: Public types
Type, uri: Public types
Type, week-day: Public types
Type, week-day-list: Public types
Type, week-list: Public types
Type, year-day-list: Public types
tzid: Public classes
tzname: Public classes
tzurl: Public classes

U
uid: Public classes
uri: Public types
url: Public classes
utc-offset: Public structures

V
value-type: Public classes
version: Public classes

W
week-day: Public types
week-day-list: Public types
week-day-num: Public structures
week-list: Public types

X
x-component: Public classes

Y
year-day-list: Public types