williamr@2
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
williamr@2
|
2 |
// All rights reserved.
|
williamr@2
|
3 |
// This component and the accompanying materials are made available
|
williamr@2
|
4 |
// under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members
|
williamr@2
|
5 |
// which accompanies this distribution, and is available
|
williamr@2
|
6 |
// at the URL "http://www.symbianfoundation.org/legal/licencesv10.html".
|
williamr@2
|
7 |
//
|
williamr@2
|
8 |
// Initial Contributors:
|
williamr@2
|
9 |
// Nokia Corporation - initial contribution.
|
williamr@2
|
10 |
//
|
williamr@2
|
11 |
// Contributors:
|
williamr@2
|
12 |
//
|
williamr@2
|
13 |
// Description:
|
williamr@2
|
14 |
//
|
williamr@2
|
15 |
|
williamr@2
|
16 |
|
williamr@2
|
17 |
|
williamr@2
|
18 |
/**
|
williamr@2
|
19 |
@file
|
williamr@2
|
20 |
@publishedAll
|
williamr@2
|
21 |
@released
|
williamr@2
|
22 |
*/
|
williamr@2
|
23 |
|
williamr@2
|
24 |
#ifndef __VTOKEN_H__
|
williamr@2
|
25 |
#define __VTOKEN_H__
|
williamr@2
|
26 |
|
williamr@2
|
27 |
#include <e32base.h>
|
williamr@2
|
28 |
|
williamr@2
|
29 |
#define KMaxExternalizedTokenLength 70
|
williamr@2
|
30 |
#define KMinLineLengthToWriteTo 1
|
williamr@2
|
31 |
|
williamr@2
|
32 |
/** A colon string. */
|
williamr@2
|
33 |
_LIT8(KVersitTokenColon, ":");
|
williamr@2
|
34 |
/** A Unicode colon string. */
|
williamr@2
|
35 |
_LIT(KVersitTokenColonUnicode, ":");
|
williamr@2
|
36 |
/** A semi-colon string. */
|
williamr@2
|
37 |
_LIT8(KVersitTokenSemiColon, ";");
|
williamr@2
|
38 |
/** A Unicode semi-colon string. */
|
williamr@2
|
39 |
_LIT(KVersitTokenSemiColonUnicode, ";");
|
williamr@2
|
40 |
/** A backslash string (escaped). */
|
williamr@2
|
41 |
_LIT8(KVersitBackSlash, "\\");
|
williamr@2
|
42 |
/** An escaped semi-colon string. */
|
williamr@2
|
43 |
_LIT8(KVersitEscapedSemiColon, "\\;");
|
williamr@2
|
44 |
/** An escaped Unicode semi-colon string. */
|
williamr@2
|
45 |
_LIT(KVersitEscapedSemiColonUnicode, "\\;");
|
williamr@2
|
46 |
/** An equals sign string. */
|
williamr@2
|
47 |
_LIT8(KVersitTokenEquals, "=");
|
williamr@2
|
48 |
/** A full stop string. */
|
williamr@2
|
49 |
_LIT8(KVersitTokenPeriod, ".");
|
williamr@2
|
50 |
/** A space string. */
|
williamr@2
|
51 |
_LIT8(KVersitTokenSpace, " ");
|
williamr@2
|
52 |
/** A minus sign string. */
|
williamr@2
|
53 |
_LIT8(KVersitTokenMinus, "-");
|
williamr@2
|
54 |
/** A plus sign string. */
|
williamr@2
|
55 |
_LIT8(KVersitTokenPlus, "+");
|
williamr@2
|
56 |
/** A line break string. */
|
williamr@2
|
57 |
_LIT8(KVersitLineBreak, "\r\n ");
|
williamr@2
|
58 |
/** The string used at the start of a time interval string. */
|
williamr@2
|
59 |
_LIT8(KVersitTimePeriodBegin, "P");
|
williamr@2
|
60 |
/** The string appended to the number of years when encoding a time interval. */
|
williamr@2
|
61 |
_LIT8(KVersitTimePeriodYear, "Y");
|
williamr@2
|
62 |
/** The string appended to the number of months when encoding a time interval. */
|
williamr@2
|
63 |
_LIT8(KVersitTimePeriodMonth, "M");
|
williamr@2
|
64 |
/** Not used. */
|
williamr@2
|
65 |
_LIT8(KVersitTimePeriodWeek, "W"); //unused
|
williamr@2
|
66 |
/** The string appended to the number of days when encoding a time interval. */
|
williamr@2
|
67 |
_LIT8(KVersitTimePeriodDay, "D");
|
williamr@2
|
68 |
/** The string added before the time of day when encoding a Versit date/time.
|
williamr@2
|
69 |
|
williamr@2
|
70 |
Also the string added before the time of day when encoding a time interval. */
|
williamr@2
|
71 |
_LIT8(KVersitTimePeriodTime, "T");
|
williamr@2
|
72 |
/** The string appended to the hour value when encoding a time interval. */
|
williamr@2
|
73 |
_LIT8(KVersitTimePeriodHour, "H");
|
williamr@2
|
74 |
/** The string appended to the minutes value when encoding a time interval. */
|
williamr@2
|
75 |
_LIT8(KVersitTimePeriodMinute, "M");
|
williamr@2
|
76 |
/** The string appended to the seconds value when encoding a time interval. */
|
williamr@2
|
77 |
_LIT8(KVersitTimePeriodSecond, "S");
|
williamr@2
|
78 |
/** The string appended to a date/time when encoding a Versit
|
williamr@2
|
79 |
date/time, if the value is in universal time. */
|
williamr@2
|
80 |
_LIT8(KVersitTokenUniversalTime, "Z");
|
williamr@2
|
81 |
|
williamr@2
|
82 |
/** A colon character. */
|
williamr@2
|
83 |
const TUint KVersitTokenColonVal =':';
|
williamr@2
|
84 |
/** A semi-colon character. */
|
williamr@2
|
85 |
const TUint KVersitTokenSemiColonVal =';';
|
williamr@2
|
86 |
/** A backslash character. */
|
williamr@2
|
87 |
const TUint KVersitTokenBackslashVal ='\\';
|
williamr@2
|
88 |
/** An equals sign character. */
|
williamr@2
|
89 |
const TUint KVersitTokenEqualsVal ='=';
|
williamr@2
|
90 |
/** A full stop character. */
|
williamr@2
|
91 |
const TUint KVersitTokenPeriodVal ='.';
|
williamr@2
|
92 |
/** A comma character. */
|
williamr@2
|
93 |
const TUint KVersitTokenCommaVal =',';
|
williamr@2
|
94 |
/** A left square bracket character. */
|
williamr@2
|
95 |
const TUint KVersitTokenLSquareBracketVal ='[';
|
williamr@2
|
96 |
/** A right square bracket character. */
|
williamr@2
|
97 |
const TUint KVersitTokenRSquareBracketVal =']';
|
williamr@2
|
98 |
/** A minus sign character. */
|
williamr@2
|
99 |
const TUint KVersitTokenMinusVal ='-';
|
williamr@2
|
100 |
/** A plus sign character. */
|
williamr@2
|
101 |
const TUint KVersitTokenPlusVal ='+';
|
williamr@2
|
102 |
/** A Yen character: the escape character for the 'ShiftJis' character set. */
|
williamr@2
|
103 |
const TUint KVersitTokenYenVal =0xa5;
|
williamr@2
|
104 |
/** The character at the beginning of a time interval string. */
|
williamr@2
|
105 |
const TUint KVersitTimePeriodBeginVal ='P';
|
williamr@2
|
106 |
/** The character following the number of years in a time interval string. */
|
williamr@2
|
107 |
const TUint KVersitTimePeriodYearVal ='Y';
|
williamr@2
|
108 |
/** The character following the number of months in a time interval string. */
|
williamr@2
|
109 |
const TUint KVersitTimePeriodMonthVal ='M';
|
williamr@2
|
110 |
/** The character following the number of weeks in a time interval string. */
|
williamr@2
|
111 |
const TUint KVersitTimePeriodWeekVal ='W';
|
williamr@2
|
112 |
/** The character following the number of days in a time interval string. */
|
williamr@2
|
113 |
const TUint KVersitTimePeriodDayVal ='D';
|
williamr@2
|
114 |
/** The character preceding a length of day (hours,minutes and seconds) in a time
|
williamr@2
|
115 |
interval string.
|
williamr@2
|
116 |
|
williamr@2
|
117 |
Also the character preceding the time of day in a date/time string. */
|
williamr@2
|
118 |
const TUint KVersitTimePeriodTimeVal ='T';
|
williamr@2
|
119 |
/** The character following the number of hours in a time interval string. */
|
williamr@2
|
120 |
const TUint KVersitTimePeriodHourVal ='H';
|
williamr@2
|
121 |
/** The character following the number of minutes in a time interval string. */
|
williamr@2
|
122 |
const TUint KVersitTimePeriodMinuteVal ='M';
|
williamr@2
|
123 |
/** The character following the number of seconds in a time interval string. */
|
williamr@2
|
124 |
const TUint KVersitTimePeriodSecondVal ='S';
|
williamr@2
|
125 |
/** The character at the end of a universal date/time string. */
|
williamr@2
|
126 |
const TUint KVersitTokenUniversalTimeVal ='Z';
|
williamr@2
|
127 |
/** The character at the start of a daily recurring entity string. */
|
williamr@2
|
128 |
const TUint KVersitRecurrenceDailyVal ='D';
|
williamr@2
|
129 |
/** The character at the start of a weekly recurring entity string. */
|
williamr@2
|
130 |
const TUint KVersitRecurrenceWeeklyVal ='W';
|
williamr@2
|
131 |
/** The character which precedes the number of recurrences, when specified, in
|
williamr@2
|
132 |
a recurring entity. */
|
williamr@2
|
133 |
const TUint KVersitRecurrenceNumberOfVal ='#';
|
williamr@2
|
134 |
/** The string at the beginning of a 'monthly by position' recurring entity
|
williamr@2
|
135 |
(see CVersitRecurrenceMonthlyByPos). Used when internalising. */
|
williamr@2
|
136 |
_LIT(KVersitRecurrenceMonthlyByPos, "MP");
|
williamr@2
|
137 |
/** Not used. */
|
williamr@2
|
138 |
_LIT(KVersitRecurrenceMonthlyByDay, "MD");
|
williamr@2
|
139 |
/** Not used. */
|
williamr@2
|
140 |
_LIT(KVersitRecurrenceYearlyByMonth, "YM");
|
williamr@2
|
141 |
/** The string at the beginning of a 'yearly by day' recurring entity,
|
williamr@2
|
142 |
(see CVersitRecurrenceYearlyByDay). Used when internalising. */
|
williamr@2
|
143 |
_LIT(KVersitRecurrenceYearlyByDay, "YD");
|
williamr@2
|
144 |
/** A string in the date list (if a date list is defined) of an entity
|
williamr@2
|
145 |
that recurs either weekly or 'monthly by position' on Mondays. Used when
|
williamr@2
|
146 |
internalising. */
|
williamr@2
|
147 |
_LIT(KVersitRecurrenceMonday, "MO");
|
williamr@2
|
148 |
/** A string in the date list (if a date list is defined) of an entity
|
williamr@2
|
149 |
that recurs either weekly or 'monthly by position' on Tuesdays. Used when internalising. */
|
williamr@2
|
150 |
_LIT(KVersitRecurrenceTuesday, "TU");
|
williamr@2
|
151 |
/** A string in the date list (if a date list is defined) of an entity
|
williamr@2
|
152 |
that recurs either weekly or 'monthly by position' on Wednesdays. Used when internalising. */
|
williamr@2
|
153 |
_LIT(KVersitRecurrenceWednesday, "WE");
|
williamr@2
|
154 |
/** A string in the date list (if a date list is defined) of an entity that
|
williamr@2
|
155 |
recurs either weekly or 'monthly by position' on Thursdays. Used when internalising. */
|
williamr@2
|
156 |
_LIT(KVersitRecurrenceThursday, "TH");
|
williamr@2
|
157 |
/** A string in the date list (if a date list is defined) of an entity that
|
williamr@2
|
158 |
recurs either weekly or 'monthly by position' on Fridays. Used when internalising. */
|
williamr@2
|
159 |
_LIT(KVersitRecurrenceFriday, "FR");
|
williamr@2
|
160 |
/** A string in the date list (if a date list is defined) of an entity that
|
williamr@2
|
161 |
recurs either weekly or 'monthly by position' on Saturdays. Used when internalising. */
|
williamr@2
|
162 |
_LIT(KVersitRecurrenceSaturday, "SA");
|
williamr@2
|
163 |
/** A string in the date list (if a date list is defined) of an entity that
|
williamr@2
|
164 |
recurs either weekly or 'monthly by position' on Sundays. Used when internalising. */
|
williamr@2
|
165 |
_LIT(KVersitRecurrenceSunday, "SU");
|
williamr@2
|
166 |
/** The string appended to the 'occurrence list' section of an entity that
|
williamr@2
|
167 |
recurs on the last day of the month. Used when internalising. */
|
williamr@2
|
168 |
_LIT(KVersitRecurrenceLastDay, "LD");
|
williamr@2
|
169 |
|
williamr@2
|
170 |
/** The string used at the start of a daily recurring entity. */
|
williamr@2
|
171 |
_LIT8(KVersitRecurrenceDaily, "D");
|
williamr@2
|
172 |
/** The string used at the start of a weekly recurring entity. */
|
williamr@2
|
173 |
_LIT8(KVersitRecurrenceWeekly, "W");
|
williamr@2
|
174 |
/** The string appended just before the number of occurrences, when encoding a recurring
|
williamr@2
|
175 |
entity as a descriptor. */
|
williamr@2
|
176 |
_LIT8(KVersitRecurrenceNumberOf, "#");
|
williamr@2
|
177 |
/** The string used at the start of a 'monthly by position' recurring entity,
|
williamr@2
|
178 |
(see CVersitRecurrenceMonthlyByPos). Used when externalising. */
|
williamr@2
|
179 |
_LIT8(KVersitRecurrenceMonthlyByPos8, "MP");
|
williamr@2
|
180 |
/** Not used. */
|
williamr@2
|
181 |
_LIT8(KVersitRecurrenceMonthlyByDay8, "MD");
|
williamr@2
|
182 |
/** Not used. */
|
williamr@2
|
183 |
_LIT8(KVersitRecurrenceYearlyByMonth8, "YM");
|
williamr@2
|
184 |
/** The string used at the start of a 'yearly by day' recurring entity,
|
williamr@2
|
185 |
(see CVersitRecurrenceYearlyByDay). Used when externalising. */
|
williamr@2
|
186 |
_LIT8(KVersitRecurrenceYearlyByDay8, "YD");
|
williamr@2
|
187 |
/** The string appended to the 'occurrence list' section of an entity that recurs on Mondays.
|
williamr@2
|
188 |
Used when externalising. */
|
williamr@2
|
189 |
_LIT8(KVersitRecurrenceMonday8, "MO");
|
williamr@2
|
190 |
/** The string appended to the 'occurrence list' section of an entity that recurs on Tuesdays.
|
williamr@2
|
191 |
Used when externalising. */
|
williamr@2
|
192 |
_LIT8(KVersitRecurrenceTuesday8, "TU");
|
williamr@2
|
193 |
/** The string appended to the 'occurrence list' section of an entity that recurs on Wednesdays.
|
williamr@2
|
194 |
Used when externalising. */
|
williamr@2
|
195 |
_LIT8(KVersitRecurrenceWednesday8, "WE");
|
williamr@2
|
196 |
/** The string appended to the 'occurrence list' section of an entity that recurs on Thursdays.
|
williamr@2
|
197 |
Used when externalising. */
|
williamr@2
|
198 |
_LIT8(KVersitRecurrenceThursday8, "TH");
|
williamr@2
|
199 |
/** The string appended to the 'occurrence list' section of an entity that recurs on Fridays.
|
williamr@2
|
200 |
Used when externalising. */
|
williamr@2
|
201 |
_LIT8(KVersitRecurrenceFriday8, "FR");
|
williamr@2
|
202 |
/** The string appended to the 'occurrence list' section of an entity that recurs on Saturdays.
|
williamr@2
|
203 |
Used when externalising. */
|
williamr@2
|
204 |
_LIT8(KVersitRecurrenceSaturday8, "SA");
|
williamr@2
|
205 |
/** The string appended to the 'occurrence list' section of an entity that recurs on Sundays.
|
williamr@2
|
206 |
Used when externalising. */
|
williamr@2
|
207 |
_LIT8(KVersitRecurrenceSunday8, "SU");
|
williamr@2
|
208 |
/** The string appended to the 'occurrence list' section of an entity that recurs on the last day of
|
williamr@2
|
209 |
the month. Used when externalising. */
|
williamr@2
|
210 |
_LIT8(KVersitRecurrenceLastDay8, "LD");
|
williamr@2
|
211 |
/** The string at the start of an entity encoded in a stream.
|
williamr@2
|
212 |
|
williamr@2
|
213 |
This is implemented as the name of a property, but this property is not stored in the entity's array
|
williamr@2
|
214 |
of properties. */
|
williamr@2
|
215 |
_LIT8(KVersitTokenBEGIN, "BEGIN");
|
williamr@2
|
216 |
/** The string at the start of an agent vCard entity encoded in a stream.
|
williamr@2
|
217 |
|
williamr@2
|
218 |
The reason for needing a Unicode version, is that the agent vCard is held in a
|
williamr@2
|
219 |
property value in the parent vCard, and all property values are converted
|
williamr@2
|
220 |
to Unicode when they are internalised, in order to make them character set-independent.
|
williamr@2
|
221 |
|
williamr@2
|
222 |
This is implemented as the name of a property, but this property is not stored in the
|
williamr@2
|
223 |
entity's array of properties. */
|
williamr@2
|
224 |
_LIT(KVersitVarTokenBEGIN, "BEGIN");
|
williamr@2
|
225 |
/** The string which follows the body of data of a vCard/vCalendar encoded in a stream.
|
williamr@2
|
226 |
It is followed only by the entity name.
|
williamr@2
|
227 |
|
williamr@2
|
228 |
This is implemented as the name of a property, but this property is not stored in the
|
williamr@2
|
229 |
entity's array of properties. */
|
williamr@2
|
230 |
_LIT8(KVersitTokenEND, "END");
|
williamr@2
|
231 |
/** A carriage return and line feed */
|
williamr@2
|
232 |
_LIT8(KVersitTokenCRLF, "\r\n"); // carriage return, line feed
|
williamr@2
|
233 |
/** A boolean true value. Not used. */
|
williamr@2
|
234 |
_LIT8(KVersitTokenTRUE, "TRUE");
|
williamr@2
|
235 |
/** A boolean true value. */
|
williamr@2
|
236 |
_LIT(KVersitVarTokenTRUE, "TRUE");
|
williamr@2
|
237 |
/** A boolean false value. Not used. */
|
williamr@2
|
238 |
_LIT8(KVersitTokenFALSE, "FALSE");
|
williamr@2
|
239 |
/** A boolean false value. */
|
williamr@2
|
240 |
_LIT(KVersitVarTokenFALSE, "FALSE");
|
williamr@2
|
241 |
/** The symbol added to the beginning of an unrecognised property name while
|
williamr@2
|
242 |
internalising from a stream. */
|
williamr@2
|
243 |
_LIT8(KVersitTokenXDashEPOC, "X-EPOC");
|
williamr@2
|
244 |
_LIT8(KVersitTokenXDash, "X-");
|
williamr@2
|
245 |
/** An empty string. */
|
williamr@2
|
246 |
_LIT8(KVersitTokenEmptyNarrow, "");
|
williamr@2
|
247 |
/** An empty string. */
|
williamr@2
|
248 |
_LIT(KVersitTokenEmpty, "");
|
williamr@2
|
249 |
|
williamr@2
|
250 |
//The following names should not be used, versit now uses CharConv character set names.
|
williamr@2
|
251 |
// params
|
williamr@2
|
252 |
_LIT8(KVersitTokenENCODING, "ENCODING");
|
williamr@2
|
253 |
_LIT8(KVersitTokenBASE64, "BASE64");
|
williamr@2
|
254 |
_LIT8(KVersitTokenQUOTEDPRINTABLE, "QUOTED-PRINTABLE");
|
williamr@2
|
255 |
_LIT8(KVersitToken8BIT, "8-BIT");
|
williamr@2
|
256 |
_LIT8(KVersitTokenCHARSET, "CHARSET");
|
williamr@2
|
257 |
_LIT8(KVersitTokenUTF8, "UTF-8");
|
williamr@2
|
258 |
_LIT8(KVersitTokenUTF7, "UTF-7");
|
williamr@2
|
259 |
_LIT8(KVersitTokenISO1, "ISO-8859-1");
|
williamr@2
|
260 |
_LIT8(KVersitTokenISO2, "ISO-8859-2");
|
williamr@2
|
261 |
_LIT8(KVersitTokenISO4, "ISO-8859-4");
|
williamr@2
|
262 |
_LIT8(KVersitTokenISO5, "ISO-8859-5");
|
williamr@2
|
263 |
_LIT8(KVersitTokenISO7, "ISO-8859-7");
|
williamr@2
|
264 |
_LIT8(KVersitTokenISO9, "ISO-8859-9");
|
williamr@2
|
265 |
_LIT8(KVersitTokenTYPE, "TYPE"); //used for photo format type
|
williamr@2
|
266 |
|
williamr@2
|
267 |
// parameters for the X-EPOCALARM
|
williamr@2
|
268 |
_LIT8(KVersitTokenVALUE, "VALUE");
|
williamr@2
|
269 |
_LIT8(KVersitTokenCONTENTTYPE, "X-CONTENTTYPE");
|
williamr@2
|
270 |
_LIT8(KVersitTokenINLINE, "INLINE");
|
williamr@2
|
271 |
_LIT8(KVersitTokenBINARY, "BINARY");
|
williamr@2
|
272 |
|
williamr@2
|
273 |
// additional character sets
|
williamr@2
|
274 |
_LIT8(KVersitTokenISO3, "ISO-8859-3");
|
williamr@2
|
275 |
_LIT8(KVersitTokenISO10, "ISO-8859-10");
|
williamr@2
|
276 |
_LIT8(KVersitTokenShiftJIS, "SHIFT_JIS");
|
williamr@2
|
277 |
_LIT8(KVersitTokenGB2312, "GB 2312-80"); //This and the following contain the wrong name.
|
williamr@2
|
278 |
_LIT8(KVersitTokenGBK, "GBK");
|
williamr@2
|
279 |
_LIT8(KVersitTokenBIG5, "BIG5 level 1 and 2");
|
williamr@2
|
280 |
_LIT8(KVersitTokenISO2022JP, "ISO 2022-JP");
|
williamr@2
|
281 |
_LIT8(KVersitTokenEUCJP, "EUC-JP");
|
williamr@2
|
282 |
_LIT8(KVersitTokenJIS, "JIS");
|
williamr@2
|
283 |
|
williamr@2
|
284 |
|
williamr@2
|
285 |
// entities
|
williamr@2
|
286 |
_LIT8(KVersitTokenVCALENDAR, "VCALENDAR");
|
williamr@2
|
287 |
_LIT8(KVersitTokenVCARD, "VCARD");
|
williamr@2
|
288 |
_LIT(KVersitVarTokenVCALENDAR, "VCALENDAR");
|
williamr@2
|
289 |
_LIT(KVersitVarTokenVCARD, "VCARD");
|
williamr@2
|
290 |
_LIT(KVersitVarTokenVEVENT, "VEVENT");
|
williamr@2
|
291 |
_LIT(KVersitVarTokenVTODO, "VTODO");
|
williamr@2
|
292 |
|
williamr@2
|
293 |
// properties
|
williamr@2
|
294 |
_LIT8(KVersitTokenXALARM, "X-EPOCALARM");
|
williamr@2
|
295 |
_LIT8(KVersitTokenAALARM, "AALARM");
|
williamr@2
|
296 |
_LIT8(KVersitTokenDALARM, "DALARM");
|
williamr@2
|
297 |
_LIT8(KVersitTokenPALARM, "PALARM");
|
williamr@2
|
298 |
_LIT8(KVersitTokenMALARM, "MALARM");
|
williamr@2
|
299 |
_LIT8(KVersitTokenDAYLIGHT, "DAYLIGHT");
|
williamr@2
|
300 |
_LIT(KVersitVarTokenDAYLIGHT, "DAYLIGHT");
|
williamr@2
|
301 |
_LIT8(KVersitTokenVERSION, "VERSION");
|
williamr@2
|
302 |
_LIT8(KVersitTokenCATEGORIES, "CATEGORIES");
|
williamr@2
|
303 |
_LIT8(KVersitTokenRESOURCES, "RESOURCES");
|
williamr@2
|
304 |
_LIT8(KVersitTokenDCREATED, "DCREATED");
|
williamr@2
|
305 |
_LIT8(KVersitTokenDTSTART, "DTSTART");
|
williamr@2
|
306 |
_LIT8(KVersitTokenDTEND, "DTEND");
|
williamr@2
|
307 |
_LIT8(KVersitTokenLASTMODIFIED, "LAST-MODIFIED");
|
williamr@2
|
308 |
_LIT8(KVersitTokenCOMPLETED, "COMPLETED");
|
williamr@2
|
309 |
_LIT8(KVersitTokenDUE, "DUE");
|
williamr@2
|
310 |
_LIT8(KVersitTokenEXDATE, "EXDATE");
|
williamr@2
|
311 |
_LIT8(KVersitTokenEXRULE, "EXRULE");
|
williamr@2
|
312 |
_LIT8(KVersitTokenRDATE, "RDATE");
|
williamr@2
|
313 |
_LIT8(KVersitTokenRRULE, "RRULE");
|
williamr@2
|
314 |
_LIT8(KVersitTokenRNUM, "RNUM");
|
williamr@2
|
315 |
_LIT8(KVersitTokenPRIORITY, "PRIORITY");
|
williamr@2
|
316 |
_LIT8(KVersitTokenSEQUENCE, "SEQUENCE");
|
williamr@2
|
317 |
_LIT8(KVersitTokenTRANSP, "TRANSP");
|
williamr@2
|
318 |
_LIT8(KVersitTokenBDAY, "BDAY");
|
williamr@2
|
319 |
_LIT8(KVersitTokenAGENT, "AGENT");
|
williamr@2
|
320 |
_LIT8(KVersitTokenLABEL, "LABEL");
|
williamr@2
|
321 |
_LIT8(KVersitTokenPHOTO, "PHOTO");
|
williamr@2
|
322 |
_LIT8(KVersitTokenEMAIL, "EMAIL");
|
williamr@2
|
323 |
_LIT8(KVersitTokenINTERNET, "INTERNET");
|
williamr@2
|
324 |
_LIT8(KVersitTokenTITLE, "TITLE");
|
williamr@2
|
325 |
_LIT8(KVersitTokenROLE, "ROLE");
|
williamr@2
|
326 |
_LIT8(KVersitTokenLOGO, "LOGO");
|
williamr@2
|
327 |
_LIT8(KVersitTokenNOTE, "NOTE");
|
williamr@2
|
328 |
_LIT8(KVersitTokenSOUND, "SOUND");
|
williamr@2
|
329 |
_LIT8(KVersitTokenMAILER, "MAILER");
|
williamr@2
|
330 |
_LIT8(KVersitTokenPRODID, "PRODID");
|
williamr@2
|
331 |
_LIT8(KVersitTokenATTACH, "ATTACH");
|
williamr@2
|
332 |
_LIT8(KVersitTokenATTENDEE, "ATTENDEE");
|
williamr@2
|
333 |
_LIT8(KVersitTokenCLASS, "CLASS");
|
williamr@2
|
334 |
_LIT8(KVersitTokenDESCRIPTION, "DESCRIPTION");
|
williamr@2
|
335 |
_LIT8(KVersitTokenLOCATION, "LOCATION");
|
williamr@2
|
336 |
_LIT8(KVersitTokenRELATEDTO, "RELATED-TO");
|
williamr@2
|
337 |
_LIT8(KVersitTokenSTATUS, "STATUS");
|
williamr@2
|
338 |
_LIT8(KVersitTokenSUMMARY, "SUMMARY");
|
williamr@2
|
339 |
_LIT8(KVersitTokenN, "N");
|
williamr@2
|
340 |
_LIT8(KVersitTokenTZ, "TZ");
|
williamr@2
|
341 |
_LIT8(KVersitTokenADR, "ADR");
|
williamr@2
|
342 |
_LIT8(KVersitTokenORG, "ORG");
|
williamr@2
|
343 |
_LIT8(KVersitTokenREV, "REV");
|
williamr@2
|
344 |
_LIT8(KVersitTokenFN, "FN");
|
williamr@2
|
345 |
_LIT8(KVersitTokenTEL, "TEL");
|
williamr@2
|
346 |
_LIT8(KVersitTokenURL, "URL");
|
williamr@2
|
347 |
_LIT8(KVersitTokenGEO, "GEO");
|
williamr@2
|
348 |
_LIT8(KVersitTokenUID, "UID");
|
williamr@2
|
349 |
_LIT8(KVersitTokenKEY, "KEY");
|
williamr@2
|
350 |
_LIT8(KVersitTokenSECONDNAME, "X-EPOCSECONDNAME");
|
williamr@2
|
351 |
_LIT8(KVersitTokenXMETHOD, "X-METHOD"); // For Group Scheduling
|
williamr@2
|
352 |
_LIT8(KVersitTokenXRECURRENCEID, "X-RECURRENCE-ID"); // For Group Scheduling
|
williamr@2
|
353 |
_LIT8(KVersitTokenXLOCALUID, "X-SYMBIAN-LUID");
|
williamr@2
|
354 |
_LIT8(KVersitTokenXDTSTAMP, "X-SYMBIAN-DTSTAMP");
|
williamr@2
|
355 |
_LIT(KVersitVarTokenINTERNET, "INTERNET"); //Used by Jave Phone and not by versit
|
williamr@2
|
356 |
_LIT8(KVersitTokenAssistant, "X-ASSISTANT");
|
williamr@2
|
357 |
_LIT8(KVersitTokenAssistantTel, "X-ASSISTANT-TEL");
|
williamr@2
|
358 |
_LIT8(KVersitTokenAnniversary, "X-ANNIVERSARY");
|
williamr@2
|
359 |
_LIT8(KVersitTokenSpouse, "X-SPOUSE");
|
williamr@2
|
360 |
_LIT8(KVersitTokenChildren, "X-CHILDREN");
|
williamr@2
|
361 |
_LIT8(KVersitTokenClass, "X-CLASS");
|
williamr@2
|
362 |
_LIT8(KVersitAttachLabel, "X-NAME");
|
williamr@2
|
363 |
_LIT8(KVersitAttachMimeType, "X-FMTTYPE");
|
williamr@2
|
364 |
_LIT8(KVersitXUserIntType, "X-SYMBIAN-USERINT");
|
williamr@2
|
365 |
|
williamr@2
|
366 |
#endif
|