fix typos

This commit is contained in:
Ivan Masár
2016-02-12 00:15:45 +01:00
parent 08c67f88c3
commit fc85a53b0f
7 changed files with 17 additions and 17 deletions

View File

@@ -76,7 +76,7 @@ public class RDFUtil {
* type SITE, COMMUNITY, COLLECTION or ITEM only. Currently dspace-rdf
* doesn't support Bundles or Bitstreams as independent entity.
* @param context DSpace Context.
* @param type Type of the DSpaceObject you want to generate a URI for (g.e.
* @param type Type of the DSpaceObject you want to generate a URI for (e.g.
* {@link org.dspace.core.Constants#ITEM Constants.ITEM}.
* @param id UUID of the DSpaceObject you want to generate a URI for.
* @param handle Handle of the DSpaceObject you want to generate a URI for.
@@ -281,7 +281,7 @@ public class RDFUtil {
* This is a shortcut to generate an RDF identifier for a DSpaceObject and
* to delete the identified data from the named graph.
* @param ctx
* @param type DSpaceObject type (g.e. {@link Constants#ITEM Constants.ITEM}).
* @param type DSpaceObject type (e.g. {@link Constants#ITEM Constants.ITEM}).
* @param id Id of the DspaceObject.
* @param handle Handle of the DSpaceObject.
* @throws SQLException

View File

@@ -68,7 +68,7 @@ public class RDFizer {
/**
* Set to remember with DSpaceObject were converted or deleted from the
* triplestore already. This set is helpful when converting or deleting
* multiple DSpaceObjects (g.e. Communities with all Subcommunities and
* multiple DSpaceObjects (e.g. Communities with all Subcommunities and
* Items).
*/
protected Set<UUID> processed;
@@ -343,7 +343,7 @@ public class RDFizer {
// if this method is used for conversion we should check if we have the
// permissions to read a DSO before converting all of it decendents
// (g.e. check read permission on a community before converting all of
// (e.g. check read permission on a community before converting all of
// its subcommunties and collections).
// just skip items with missing permissions and report them.
if (check)

View File

@@ -68,7 +68,7 @@ public class DMRM {
/** <p>The object of a DSpace metadata RDF mapping result.</p> */
public static final Property object = m_model.createProperty( NS + "object" );
/** <p>The name of the metadata to convert (g.e. dc.title).</p> */
/** <p>The name of the metadata to convert (e.g. dc.title).</p> */
public static final Property metadataName = m_model.createProperty( NS + "metadataName" );
/** <p>A regex that the metadata value has to fulfill if the mapping should become active.</p> */

View File

@@ -666,7 +666,7 @@ public class BitstreamResource extends Resource
* If you want to access the item as the user logged into the context.
* The header "rest-dspace-token" with the token passed
* from the login method must be set.
* @return It returns Ok, if was all ok. Otherwise status code 500.
* @return It returns Ok, if all was ok. Otherwise status code 500.
*/
@DELETE
@Path("/{bitstream_id}/policy/{policy_id}")
@@ -751,7 +751,7 @@ public class BitstreamResource extends Resource
}
/**
* Find bitstream from DSpace database. This encapsulatets the
* Find bitstream from DSpace database. This encapsulates the
* org.dspace.content.Bitstream.find method with a check whether the item exists and
* whether the user logged into the context has permission to preform the requested action.
*

View File

@@ -1670,13 +1670,13 @@ report.dir = ${dspace.dir}/reports/
# If a metadata value with style: "doi", "handle" or "resolver" matches a URL
# already, it is simply rendered as a link with no other manipulation.
# If set to all, all user will get a warning if access restrictions are in place
# If set to all, all users will get a warning if access restrictions are in place
# for an bitstream. If a resource policy with an unreached start date for
# anonymous users is in place the date is shown as well.
# Any other values then "all" will suppress the warning.
# anonymous users is in place, the date is shown as well.
# Any other values than "all" will suppress the warning.
# Should access restricted bitstreams be labeled as such? If set true, all
# bitstreams which cannot currently not be read by an anoymous user are labeled
# as beeing access restricted. If a resource policy to allow read access for
# bitstreams which cannot currently not be read by an anonymous user are labeled
# as being access restricted. If a resource policy to allow read access for
# anonymous users with an unreached start date exists, this date is shown as well.
webui.itemdisplay.label.restricted.bitstreams = true

View File

@@ -38,9 +38,9 @@ rdf.storage.graphstore.authentication = no
# please set the authentication credentials
#rdf.storage.graphstore.login = dspace
#rdf.storage.graphstore.password = ecapsd
# Address DSpace should use to query the SPARQL endpoint, g.e. the
# Address DSpace should use to query the SPARQL endpoint, e.g. the
# RDFStorageImpl uses this address to determine a list of all stored
# graphs. The SPARQL endpoint can be read-only, all command that changes
# graphs. The SPARQL endpoint can be read-only, all commands which change
# data will be performed using the SPARQL 1.1 Graph Store HTTP Protocoll.
# If this is empty the property "rdf.public.sparql.endpoint" will be used instead.
rdf.storage.sparql.endpoint =

View File

@@ -106,7 +106,7 @@
:metadataName
a rdf:Property ;
rdfs:label "Metadata name" ;
rdfs:comment "The name of the metadata to convert (g.e. dc.title)." ;
rdfs:comment "The name of the metadata to convert (e.g. dc.title)." ;
rdfs:domain :DSpaceMetadataRDFMapping ;
rdfs:range rdfs:Literal ;
.