ez-vcard icon indicating copy to clipboard operation
ez-vcard copied to clipboard

A vCard parser library for Java

Results 27 ez-vcard issues
Sort by recently updated
recently updated
newest added

Java class `ezvcard.Ezvcard` currently parses file _ez-vcard.properties_ to initialize constant values (`VERSION`, `GROUP_ID`, `ARTIFACT_ID` and `URL`). However, we could easily get these values from file _MANIFEST.MF_ . Example to retreive...

enhancement

Can you implement new class `UrlType` which is similar to class `EmailType`?

enhancement

I am trying to convert a V2.1 Vcard into V4.0 by reading it with your library and writing it to another file. But it seems, that setting 'versionStrict(true)' only removes...

enhancement

``` What steps will reproduce the problem? 1. InputStream is = new FileInputStream("test/resources/Herr Steve Jobs.vcf"); 2. Ezvcard.parse(is).all(); 3. vCards.get(0).getAddresses().get(0).getStreetAddress(); What is the expected output? ß What is the actual output?...

auto-migrated

``` Consider a CardDAV add-on. Consider to use/ integrate with an existing Open Source CardDAV protocol library instead of writing it from scratch. This would allow to support all the...

enhancement
auto-migrated

Bumps [jsoup](https://github.com/jhy/jsoup) from 1.15.1 to 1.15.3. Release notes Sourced from jsoup's releases. jsoup 1.15.3 jsoup 1.15.3 is out now, and includes a security fix for potential XSS attacks, along with...

dependencies

I got the below exception in DavX5 and seems it's from ez-vcard library. ``` EXCEPTION java.lang.NoClassDefFoundError: ezvcard.io.scribe.ScribeIndex at ezvcard.io.StreamWriter.(StreamWriter.java:4) at ezvcard.io.text.VCardWriter.(VCardWriter.java:1) at at.bitfire.vcard4android.ContactWriter.writeCard(ContactWriter.kt:59) at at.bitfire.vcard4android.Contact.writeVCard(Contact.kt:19) at at.bitfire.davdroid.syncadapter.ContactsSyncManager$generateUpload$1.invoke(ContactsSyncManager.kt:11) at at.bitfire.davdroid.syncadapter.ContactsSyncManager$generateUpload$1.invoke(ContactsSyncManager.kt:1) at...

What am i missing? I am able to add contact as a file. But not in sender intent ` VCard vcard = new VCard(); String fileName = "null"; String num...

help wanted

Bumps xalan:xalan from 2.7.2 to 2.7.3. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=xalan:xalan&package-manager=maven&previous-version=2.7.2&new-version=2.7.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...

dependencies

Now to create usual plain text I have to do like so: ``` VCardWriter writer = ...; writer.getVObjectWriter().getFoldedLineWriter().setLineLength(null); writer.write(vcard); ``` p.s. line folding is adding `"\n "` in text so...