Author: thomas.heute(a)jboss.com
Date: 2007-08-14 09:44:01 -0400 (Tue, 14 Aug 2007)
New Revision: 7920
Modified:
branches/JBoss_Portal_Branch_2_6/core/src/main/org/jboss/portal/core/deployment/JBossApplicationMetaDataFactory.java
Log:
JBPORTAL-1621: "title" attribute of "link" tag in jboss-portlet.xml is
unhandled
(oups)
Modified:
branches/JBoss_Portal_Branch_2_6/core/src/main/org/jboss/portal/core/deployment/JBossApplicationMetaDataFactory.java
===================================================================
---
branches/JBoss_Portal_Branch_2_6/core/src/main/org/jboss/portal/core/deployment/JBossApplicationMetaDataFactory.java 2007-08-14
13:13:41 UTC (rev 7919)
+++
branches/JBoss_Portal_Branch_2_6/core/src/main/org/jboss/portal/core/deployment/JBossApplicationMetaDataFactory.java 2007-08-14
13:44:01 UTC (rev 7920)
@@ -81,7 +81,8 @@
String type = attrs.getValue("type");
String media = attrs.getValue("media");
String rel = attrs.getValue("rel");
- ElementMetaData elt = ElementMetaData.createLinkElement(type, rel, href,
media);
+ String title = attrs.getValue("title");
+ ElementMetaData elt = ElementMetaData.createLinkElement(type, rel, href,
media, title);
elt.init();
child = elt;
}
Show replies by date