Bugs item #2305040, was opened at 2008-11-17 12:35
Message generated for change (Settings changed) made by bollini
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=119984&aid=2305040&group_id=19984

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: 1.5.1
>Status: Closed
>Resolution: Invalid
Priority: 5
Private: No
Submitted By: Robin Taylor (robintaylor)
Assigned to: Nobody/Anonymous (nobody)
Summary: Cant handle mixed case metadata terms

Initial Comment:
There seems to be a restriction on metadata terms being lower case, imposed by 
the following code looking for matches after changing the names to lower case. 
Can't see a good reason for the 'toLowerCase'.

Cheers, Robin. 


(Dspace 1.5.1)

public DCValue[] getMetadata(String mdString)
    {
        StringTokenizer dcf = new StringTokenizer(mdString, ".");
        
        String[] tokens = { "", "", "" };
        int i = 0;
        while(dcf.hasMoreTokens())
        {
            tokens[i] = dcf.nextToken().toLowerCase().trim();
            i++;
        }


----------------------------------------------------------------------

Comment By: Claudia Juergen (cjuergen)
Date: 2008-12-10 14:17

Message:
Hi Robin,

see
http://dublincore.org/usage/meetings/2004/03/2003-09-28.case-policy.html
Advice to implementers

Claudia


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=119984&aid=2305040&group_id=19984

------------------------------------------------------------------------------
Open Source Business Conference (OSBC), March 24-25, 2009, San Francisco, CA
-OSBC tackles the biggest issue in open source: Open Sourcing the Enterprise
-Strategies to boost innovation and cut costs with open source participation
-Receive a $600 discount off the registration fee with the source code: SFAD
http://p.sf.net/sfu/XcvMzF8H
_______________________________________________
Dspace-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-devel

Reply via email to