0

我正在用 ruby​​ 和 gem 'vpim' 制作 vcards 我拥有的卡片包含一些 url。目前,当我将生成的卡片导入 Mac 上的联系人应用程序时,所有网址都在主页后标记:

有没有办法可以将该命名更改为“twitter”或“youtube”之类的名称?

这定义了生成的 vcf 文件中的 url:

URL:youtube.com/chelseafc

我这样创建:

maker.add_url("youtube.com/chelseafc")

在联系人应用程序中,我看到主页:youtube.com/chelseafc 我希望看到 youtube:youtube.com/chelseafc 以使其更具描述性。

谢谢。

4

1 回答 1

0

我找到了一个很好的例子,我可以看到我需要如何定义我正在寻找的东西。

BEGIN:VCARD
VERSION:3.0
N:Doe;John;;;
FN:John Doe
ORG:Example.com Inc.;
TITLE:Imaginary test person
EMAIL;type=INTERNET;type=WORK;type=pref:johnDoe@example.org
TEL;type=WORK;type=pref:+1 617 555 1212
TEL;type=CELL:+1 781 555 1212
TEL;type=HOME:+1 202 555 1212
TEL;type=WORK:+1 (617) 555-1234
item1.ADR;type=WORK:;;2 Example Avenue;Anytown;NY;01111;USA
item1.X-ABADR:us
item2.ADR;type=HOME;type=pref:;;3 Acacia Avenue;Newtown;MA;02222;USA
item2.X-ABADR:us
NOTE:John Doe has a long and varied history\, being documented on more police files that anyone else. Reports of his death are alas numerous.
item3.URL;type=pref:http\://www.example/com/doe
item3.X-ABLabel:_$!<HomePage>!$_
item4.URL:http\://www.example.com/Joe/foaf.df
item4.X-ABLabel:FOAF
item5.X-ABRELATEDNAMES;type=pref:Jane Doe
item5.X-ABLabel:_$!<Friend>!$_
CATEGORIES:Work,Test group
X-ABUID:5AD380FD-B2DE-4261-BA99-DE1D1DB52FBE\:ABPerson
END:VCARD

取自这里:http ://www.w3.org/2002/12/cal/vcard-notes.html

于 2012-04-04T19:53:46.870 回答