-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WIP(build): Add xCard XSD and VSCode settings
- Loading branch information
1 parent
7359e2c
commit bcbb89d
Showing
8 changed files
with
1,099 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,5 +23,6 @@ | |
"kisstkondoros.vscode-gutter-preview", | ||
"deltaxml.xslt-xpath", | ||
"eg2.vscode-npm-script", | ||
"cstrachan.vcard", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<catalog xmlns="urn:oasis:names:tc:entity:xmlns:xml:catalog"> | ||
<uri name="urn:ietf:params:xml:ns:vcard-4.0" uri="../tools/xCard/xCard.xsd" /> | ||
</catalog> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<vcards xmlns="urn:ietf:params:xml:ns:vcard-4.0"> | ||
<vcard> | ||
<kind><text>org</text></kind> | ||
|
||
<fn><text>Simon Perreault</text></fn> | ||
<n> | ||
<surname>Perreault</surname> | ||
<given>Simon</given> | ||
<suffix>ing. jr</suffix> | ||
<suffix>M.Sc.</suffix> | ||
</n> | ||
<bday><date>--0203</date></bday> | ||
<anniversary><date-time>20090808T1430-0500</date-time></anniversary> | ||
<gender><sex>M</sex></gender> | ||
<adr> | ||
<parameters> | ||
<type> | ||
<text>work</text> | ||
</type> | ||
<label> | ||
<text>Simon Perreault 2875 boul. Laurier, suite D2-630 Quebec, QC, Canada G1V 2M2</text> | ||
</label> | ||
</parameters> | ||
<street>2875 boul. Laurier, suite D2-630</street> | ||
<locality>Quebec</locality> | ||
<region>QC</region> | ||
<code>G1V 2M2</code> | ||
<country>Canada</country> | ||
</adr> | ||
<tel> | ||
<parameters> | ||
<type> | ||
<text>work</text> | ||
<text>voice</text> | ||
</type> | ||
</parameters> | ||
<uri>tel:+1-418-656-9254;ext=102</uri> | ||
</tel> | ||
<tel> | ||
<parameters> | ||
<type> | ||
<text>work</text> | ||
<text>text</text> | ||
<text>voice</text> | ||
<text>cell</text> | ||
<text>video</text> | ||
</type> | ||
</parameters> | ||
<uri>tel:+1-418-262-6501</uri> | ||
</tel> | ||
<email> | ||
<parameters> | ||
<type> | ||
<text>work</text> | ||
</type> | ||
</parameters> | ||
<text>simon.perreault@viagenie.ca</text> | ||
</email> | ||
<lang> | ||
<parameters> | ||
<pref><integer>1</integer></pref> | ||
</parameters> | ||
<language-tag>fr</language-tag> | ||
</lang> | ||
<lang> | ||
<parameters> | ||
<pref><integer>2</integer></pref> | ||
</parameters> | ||
<language-tag>en</language-tag> | ||
</lang> | ||
<tz><text>America/Montreal</text></tz> | ||
<geo> | ||
<parameters> | ||
<type> | ||
<text>work</text> | ||
</type> | ||
</parameters> | ||
<uri>geo:46.766336,-71.28955</uri> | ||
</geo> | ||
<org> | ||
<parameters> | ||
<type> | ||
<text>work</text> | ||
</type> | ||
</parameters> | ||
<text>Viagenie</text> | ||
</org> | ||
<url> | ||
<parameters> | ||
<type> | ||
<text>home</text> | ||
</type> | ||
</parameters> | ||
<uri>http://nomis80.org</uri> | ||
</url> | ||
<key> | ||
<parameters> | ||
<type> | ||
<text>work</text> | ||
</type> | ||
</parameters> | ||
<uri>http://www.viagenie.ca/simon.perreault/simon.asc</uri> | ||
</key> | ||
</vcard> | ||
</vcards> |
Oops, something went wrong.