Merged V3.1 to HEAD

13867: Fix for ETHREEOH-986 - long names in Explorer details view show correct width in FF browser
   13869: Fixes for ETHREEOH-1387 and ETHREEOH-1390
   13872: Fix for issue where custom-web-framework-application-context should be optional in the web.xml for web-framework project.
   13909: Fix for ETHREEOH-1684
   13910: Fix for ETHREEOH-1266
   14015: Fixes for ETHREEOH-1864 and ETHREEOH-1840

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14020 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Kevin Roast
2009-04-20 14:46:20 +00:00
parent afbe290a62
commit bfcdb0fdb0
8 changed files with 25 additions and 21 deletions

View File

@@ -568,11 +568,11 @@ public final class Utils extends StringUtils
if (alt != null)
{
alt = Utils.encode(alt);
buf.append(" alt='")
buf.append(" alt=\"")
.append(alt)
.append("' title='")
.append("\" title=\"")
.append(alt)
.append("'");
.append("\"");
}
else
{
@@ -653,11 +653,11 @@ public final class Utils extends StringUtils
if (alt != null)
{
alt = Utils.encode(alt);
buf.append(" alt='")
buf.append(" alt=\"")
.append(alt)
.append("' title='")
.append("\" title=\"")
.append(alt)
.append("'");
.append('"');
}
else
{

View File

@@ -270,9 +270,9 @@ public class ActionLinkRenderer extends BaseRenderer
}
if (link.getTooltip() != null)
{
out.write(" title='");
out.write(" title=\"");
out.write(Utils.encode(link.getTooltip()));
out.write("'");
out.write('"');
}
out.write('>');
}

View File

@@ -311,9 +311,9 @@ public class ImagePickerRadioRenderer extends BaseRenderer
if (tooltip != null)
{
out.write(" title='");
out.write(" title=\"");
out.write(Utils.encode(tooltip));
out.write("'");
out.write('"');
}
if (onclick != null)
@@ -323,11 +323,6 @@ public class ImagePickerRadioRenderer extends BaseRenderer
out.write("'");
}
// if (item.isDisabled())
// {
// out.write(" disabled='true'");
// }
out.write(">");
out.write("</td><td align='center'>");