|
Revision 3172, 0.7 KB
(checked in by amit, 3 years ago)
|
|
There are a few related changes here:
- Added new predicate to DublinCore? for general use and for citation
- Modified the Citation class to use the bibtex model
- Added License class to setup base for using different licenses
- Modified Article to correspond to new Dublin Core and Citation.
Reference is not needed. This has been tested on black.topazproject.org with
both new data (on black itself) and old data (merlin).
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id HeadURL Revision
|
| Line | |
|---|
| 1 | |
|---|
| 2 | |
|---|
| 3 | |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | package org.plos.models; |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | |
|---|
| 16 | |
|---|
| 17 | public interface PLoS { |
|---|
| 18 | |
|---|
| 19 | public static final String plos = "http://rdf.plos.org/RDF/"; |
|---|
| 20 | |
|---|
| 21 | public static final String creativeCommons = "http://web.resource.org/cc/"; |
|---|
| 22 | |
|---|
| 23 | public static final String bibtex = "http://purl.org/net/nknouf/ns/bibtex#"; |
|---|
| 24 | } |
|---|