Details
-
Type:
Improvement
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0-beta-3, 2.0, 2.0.1
-
Fix Version/s: 2.1
-
Component/s: None
-
Labels:None
-
Number of attachments :
Description
When fo all developers in pom.xml we some property not defined, it is good to not include it to html output.
Fow example:
...
<developer>
<id>developer1</id>
<name>Developer 1</name>
<email>developer1@email.com</email>
<roles>
<role>Project Manager</role>
<role>Architect</role>
<role>Java Developer</role>
</roles>
<timezone>+2</timezone>
</developer>
<developer>
<id>developer2</id>
<name>Developer 2</name>
<email>developer2@email.com</email>
<roles>
<role>Java Developer</role>
</roles>
<timezone>+2</timezone>
</developer>
...
For both developers properties like URL, Organization, Organization URL and Properties not specified. In result html we have cells with "-".
As for me it is good not not include columns where only "-" present at all.
Try my implementation of this issue.
You can look on 2.0.1 generation there: http://embedchat.org/team-list-old.html
And on list generated with this change: http://embedchat.org/team-list.html
Maybe it is useful to make this configurable?