Bugs item #2305040, was opened at 2008-11-17 11:35
Message generated for change (Comment added) made by cjuergen
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: Open
Resolution: None
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 13: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

------------------------------------------------------------------------------
SF.Net email is Sponsored by MIX09, March 18-20, 2009 in Las Vegas, Nevada.
The future of the web can't happen without you.  Join us at MIX09 to help
pave the way to the Next Web now. Learn more and register at
http://ad.doubleclick.net/clk;208669438;13503038;i?http://2009.visitmix.com/
_______________________________________________
Dspace-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/dspace-devel

Reply via email to