From: <fu...@us...> - 2007-04-04 22:54:14
|
Revision: 382 http://svn.sourceforge.net/cishell/?rev=382&view=rev Author: fugu13 Date: 2007-04-04 15:54:11 -0700 (Wed, 04 Apr 2007) Log Message: ----------- Added a space to the METADAT.XML template after the description variable, which I verified appears in the output. I tried doing this more elegantly in code, but Bruce is right, for some reason stuff just doesn't seem to work; it has something to do with the multiple levels of indirection and redirection occurring with getValue, I think. Modified Paths: -------------- trunk/templates/org.cishell.templates.wizards/templates_3.0/java_algorithm/OSGI-INF/metatype/METADATA.XML Modified: trunk/templates/org.cishell.templates.wizards/templates_3.0/java_algorithm/OSGI-INF/metatype/METADATA.XML =================================================================== --- trunk/templates/org.cishell.templates.wizards/templates_3.0/java_algorithm/OSGI-INF/metatype/METADATA.XML 2007-03-15 21:39:40 UTC (rev 381) +++ trunk/templates/org.cishell.templates.wizards/templates_3.0/java_algorithm/OSGI-INF/metatype/METADATA.XML 2007-04-04 22:54:11 UTC (rev 382) @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <metatype:MetaData xmlns:metatype="http://www.osgi.org/xmlns/metatype/v1.0.0"> <OCD name="$algName$" id="$algFullClass$.OCD" - description="$algDesc$"> + description="$algDesc$ "> $attributeDefinitions$ </OCD> <Designate pid="$algFullClass$"> <Object ocdref="$algFullClass$.OCD" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |