Author: thomas.heute(a)jboss.com
Date: 2007-08-14 09:47:39 -0400 (Tue, 14 Aug 2007)
New Revision: 7922
Modified:
trunk/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:
trunk/core/src/main/org/jboss/portal/core/deployment/JBossApplicationMetaDataFactory.java
===================================================================
---
trunk/core/src/main/org/jboss/portal/core/deployment/JBossApplicationMetaDataFactory.java 2007-08-14
13:45:17 UTC (rev 7921)
+++
trunk/core/src/main/org/jboss/portal/core/deployment/JBossApplicationMetaDataFactory.java 2007-08-14
13:47:39 UTC (rev 7922)
@@ -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