From: <svn...@op...> - 2009-04-28 10:03:00
|
Author: bellmich Date: Tue Apr 28 12:02:54 2009 New Revision: 5632 URL: http://www.opensync.org/changeset/5632 Log: Preferred can only occur one time. Modified: trunk/misc/schemas/plugin_config.xsd Modified: trunk/misc/schemas/plugin_config.xsd ============================================================================== --- trunk/misc/schemas/plugin_config.xsd Mon Apr 27 22:41:33 2009 (r5631) +++ trunk/misc/schemas/plugin_config.xsd Tue Apr 28 12:02:54 2009 (r5632) @@ -87,7 +87,13 @@ <xsd:complexType name="Formats"> <xsd:sequence> <xsd:element maxOccurs="unbounded" minOccurs="1" name="Format" type="Format" /> - <xsd:element maxOccurs="0" minOccurs="0" name="Preferred" type="xsd:string" /> + <!-- The preferred format is a hint for the converter. + If you like to get vCards and you do not support vCards directly + (e.g. the file plugin only supports raw data) + but you have only a source which supports only XML format + then you can specify vcard30 and you will get vCard 3.0. + --> + <xsd:element maxOccurs="1" minOccurs="0" name="Preferred" type="xsd:string" /> </xsd:sequence> </xsd:complexType> |