From: <rv...@us...> - 2011-05-12 12:37:40
|
Revision: 845 http://treebase.svn.sourceforge.net/treebase/?rev=845&view=rev Author: rvos Date: 2011-05-12 12:37:33 +0000 (Thu, 12 May 2011) Log Message: ----------- Now using prism:modificationDate instead of tb:lastModifiedDate as study annotation predicate to indicate when a study record was last modified. Modified Paths: -------------- trunk/treebase-core/src/main/java/org/cipres/treebase/domain/study/Study.java Modified: trunk/treebase-core/src/main/java/org/cipres/treebase/domain/study/Study.java =================================================================== --- trunk/treebase-core/src/main/java/org/cipres/treebase/domain/study/Study.java 2011-05-12 12:13:55 UTC (rev 844) +++ trunk/treebase-core/src/main/java/org/cipres/treebase/domain/study/Study.java 2011-05-12 12:37:33 UTC (rev 845) @@ -719,7 +719,7 @@ annotations.add(new Annotation(Constants.DCURI,"dc:date",getReleaseDate().toString())); } if ( null != getLastModifiedDate() ) { - annotations.add(new Annotation(Constants.TBTermsURI, "tb:lastModifiedDate", getLastModifiedDate().toString())); + annotations.add(new Annotation(Constants.PrismURI, "prism:modificationDate", getLastModifiedDate().toString())); } if ( null != getSubmission() ) { if ( null != getSubmission().getSubmitter() ) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |