You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
VCard vcard = new VCard();
StructuredName name = new StructuredName();
name.setGiven("John");
name.setFamily("Smith");
vcard.setStructuredName(name);
vcard.setGender(Gender.male());
Address address = new Address();
address.addType(AddressType.HOME);
address.setLocality("City");
address.setStreetAddress("1234 Somestreet");
vcard.addAddress(address);
String html = Ezvcard.writeHtml(vcard).go();
System.out.println(html);
What is the expected output?
...
<span class="street-address">1234 Somestreet</span><br />
...
What is the actual output?
...
<span class="street-address"></span><br />
...
What version of ez-vcard are you using?
0.9.5
What version of Java are you using?
1.7.0
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 15 Sep 2014 at 11:25
The text was updated successfully, but these errors were encountered:
found a fix: change the respective line in ezvcard/io/html/hcard-template.html
to
<span class="street-address">${adr.streetAddress}</span><br />
extended address also seems to be missing the ${...} part
Thank you for the bug report. For some reason, those Freemarker template
variables were being filtered out during the project build process. Fix will
be included in the next release.
Fixed in r1053.
Original comment by mike.angstadt on 17 Sep 2014 at 1:36
Original issue reported on code.google.com by
[email protected]
on 15 Sep 2014 at 11:25The text was updated successfully, but these errors were encountered: