(Stuart Lewis) Fix for SF bug [2343281] XHTML Head Dissimination Crosswalk exposes provenance info

git-svn-id: http://scm.dspace.org/svn/repo/branches/dspace-1_5_x@3323 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
Stuart Lewis
2008-12-07 07:54:21 +00:00
parent 1edb073d20
commit 4cdb9f49bc
2 changed files with 5 additions and 1 deletions

View File

@@ -232,6 +232,9 @@ public class XHTMLHeadDisseminationCrosswalk extends SelfNamedPlugin implements
key = v.schema + "." + v.element;
name = names.get(key);
}
// Do not include description.provenance
boolean provenance = "description".equals(v.element) && "provenance".equals(v.qualifier);
if (name == null)
{
@@ -244,7 +247,7 @@ public class XHTMLHeadDisseminationCrosswalk extends SelfNamedPlugin implements
: handle) + " field " + originalKey);
}
}
else
else if (provenance != true)
{
Element e = new Element("meta", XHTML_NAMESPACE);
e.setAttribute("name", name);

View File

@@ -2,6 +2,7 @@
- [2057231] Refactor LDAPServlet to use Stackable Authentication
- Enable ldap.login.specialgroup special group for all LDAP users
- Fix for SF bug [2164955] DSpace1.5.1(XML) problem with Login to restricted bitstreams
- Fix for SF bug [2343281] XHTML Head Dissimination Crosswalk exposes provenance info
(Stuart Lewis / Chris Yates / Flavio Botelho / Alex Barbieri / Reuben Pasquini)
- [2057378] Hierarchical LDAP support