diff --git a/dspace-api/src/main/java/org/dspace/app/itemexport/ItemExport.java b/dspace-api/src/main/java/org/dspace/app/itemexport/ItemExport.java index e33f55d6cf..36a18965c7 100644 --- a/dspace-api/src/main/java/org/dspace/app/itemexport/ItemExport.java +++ b/dspace-api/src/main/java/org/dspace/app/itemexport/ItemExport.java @@ -388,7 +388,7 @@ public class ItemExport } /** - * Discover the different schemas in use and output a seperate metadata XML + * Discover the different schemas in use and output a separate metadata XML * file for each schema. * * @param c @@ -914,7 +914,7 @@ public class ItemExport } else { - // nothing to do just ignore this type of DSPaceObject + // nothing to do just ignore this type of DSpaceObject } } diff --git a/dspace-api/src/main/java/org/dspace/app/itemimport/ItemImport.java b/dspace-api/src/main/java/org/dspace/app/itemimport/ItemImport.java index b4d0adce78..a255141171 100755 --- a/dspace-api/src/main/java/org/dspace/app/itemimport/ItemImport.java +++ b/dspace-api/src/main/java/org/dspace/app/itemimport/ItemImport.java @@ -746,7 +746,7 @@ public class ItemImport + File.separatorChar); // and the bitstreams from the contents file - // process contents file, add bistreams and bundles, return any + // process contents file, add bitstreams and bundles, return any // non-standard permissions List options = processContentsFile(c, myitem, path + File.separatorChar + itemname, "contents"); diff --git a/dspace-api/src/main/java/org/dspace/app/util/GoogleMetadata.java b/dspace-api/src/main/java/org/dspace/app/util/GoogleMetadata.java index df366bbbfb..884bd504ea 100644 --- a/dspace-api/src/main/java/org/dspace/app/util/GoogleMetadata.java +++ b/dspace-api/src/main/java/org/dspace/app/util/GoogleMetadata.java @@ -604,7 +604,7 @@ public class GoogleMetadata for (DCValue v : allMD) { - // De-dup multiple occurances of field names in item + // De-dup multiple occurrences of field names in item if (!expandedDC.contains(buildFieldName(v))) { expandedDC.add(buildFieldName(v)); @@ -1156,7 +1156,7 @@ public class GoogleMetadata } else { - // Otherwise, add it as the first occurance of this field + // Otherwise, add it as the first occurrence of this field ArrayList newField = new ArrayList(); newField.add(parsedPair[1].trim()); mdPairs.put(parsedPair[0].trim(), newField); diff --git a/dspace-api/src/main/java/org/dspace/app/util/SyndicationFeed.java b/dspace-api/src/main/java/org/dspace/app/util/SyndicationFeed.java index bc7df891ee..eb88ff704f 100644 --- a/dspace-api/src/main/java/org/dspace/app/util/SyndicationFeed.java +++ b/dspace-api/src/main/java/org/dspace/app/util/SyndicationFeed.java @@ -517,7 +517,7 @@ public class SyndicationFeed * * If the dspaceobject is null then a local url to the repository is generated. * - * @param dso The object to refrence, null if to the repository. + * @param dso The object to reference, null if to the repository. * @return */ private String baseURL = null; // cache the result for null diff --git a/dspace-api/src/main/java/org/dspace/authenticate/ShibAuthentication.java b/dspace-api/src/main/java/org/dspace/authenticate/ShibAuthentication.java index 8af06b9c61..badbf99400 100644 --- a/dspace-api/src/main/java/org/dspace/authenticate/ShibAuthentication.java +++ b/dspace-api/src/main/java/org/dspace/authenticate/ShibAuthentication.java @@ -91,7 +91,7 @@ public class ShibAuthentication implements AuthenticationMethod * is a unique identifier from the IdP that identifies a particular user. The * NetID can be of almost any form such as a unique integer, string, or with * Shibboleth 2.0 you can use "targeted ids". You will need to coordinate with - * your shibboleth federation or identity provider. There are three ways to + * your Shibboleth federation or identity provider. There are three ways to * supply identity information to DSpace: * * 1) NetID from Shibboleth Header (best) @@ -117,14 +117,14 @@ public class ShibAuthentication implements AuthenticationMethod * * If you are currently using Email based authentication (either 1 or 2) and * want to upgrade to NetID based authentication then there is an easy path. - * Simply enable shibboleth to pass the NetID attribute and set the netid-header + * Simply enable Shibboleth to pass the NetID attribute and set the netid-header * below to the correct value. When a user attempts to log in to DSpace first * DSpace will look for an EPerson with the passed NetID, however when this * fails DSpace will fall back to email based authentication. Then DSpace will - * update the user's EPerson account record to set their netted so all future - * authentications for this user will be based upon netted. One thing to note + * update the user's EPerson account record to set their netid so all future + * authentications for this user will be based upon netid. One thing to note * is that DSpace will prevent an account from switching NetIDs. If an account - * all ready has a NetID set and then they try and authenticate with a + * already has a NetID set and then they try and authenticate with a * different NetID the authentication will fail. * * @param context @@ -159,17 +159,17 @@ public class ShibAuthentication implements AuthenticationMethod public int authenticate(Context context, String username, String password, String realm, HttpServletRequest request) throws SQLException { - // Check if sword compatability is allowed, and if so see if we can - // authenticate based upon a username and password. This is really helpfull - // if your repo uses shibboleth but you want some accounts to be able use - // sword. This allows this compatability without installing the password-based + // Check if sword compatibility is allowed, and if so see if we can + // authenticate based upon a username and password. This is really helpful + // if your repo uses Shibboleth but you want some accounts to be able use + // sword. This allows this compatibility without installing the password-based // authentication method which has side effects such as allowing users to login // with a username and password from the webui. - boolean swordCompatability = ConfigurationManager.getBooleanProperty("authentication-shibboleth","sword.compatability", true); - if ( swordCompatability && + boolean swordCompatibility = ConfigurationManager.getBooleanProperty("authentication-shibboleth","sword.compatibility", true); + if ( swordCompatibility && username != null && username.length() > 0 && password != null && password.length() > 0 ) { - return swordCompatability(context, username, password, request); + return swordCompatibility(context, username, password, request); } if (request == null) { @@ -185,7 +185,7 @@ public class ShibAuthentication implements AuthenticationMethod if (log.isDebugEnabled()) { log.debug("Starting Shibboleth Authentication"); - String message = "Recieved the following headers:\n"; + String message = "Received the following headers:\n"; Enumeration headerNames = request.getHeaderNames(); while (headerNames.hasMoreElements()) { String headerName = headerNames.nextElement(); @@ -247,7 +247,7 @@ public class ShibAuthentication implements AuthenticationMethod * the pre-defined DSpace group, so if the user loses their affiliation then the * next time they login they will no longer be in the group. * - * Depending upon the shibboleth attributed use in the role-header it may be + * Depending upon the shibboleth attributed use in the role-header, it may be * scoped. Scoped is shibboleth terminology for identifying where an attribute * originated from. For example a students affiliation may be encoded as * "student@tamu.edu". The part after the @ sign is the scope, and the preceding @@ -275,14 +275,14 @@ public class ShibAuthentication implements AuthenticationMethod public int[] getSpecialGroups(Context context, HttpServletRequest request) { try { - // User has not successfully authenticated via shibboleth. + // User has not successfuly authenticated via shibboleth. if ( request == null || context.getCurrentUser() == null || request.getSession().getAttribute("shib.authenticated") == null ) { return new int[0]; } - // If we have all ready calculated the special groups then return them. + // If we have already calculated the special groups then return them. if (request.getSession().getAttribute("shib.specialgroup") != null) { log.debug("Returning cached special groups."); @@ -310,11 +310,11 @@ public class ShibAuthentication implements AuthenticationMethod log.debug("Found Shibboleth role header: '"+roleHeader+"' = '"+affiliations+"'"); } - // Loop through each affilition + // Loop through each affiliation Set groups = new HashSet(); if (affiliations != null) { for ( String affiliation : affiliations) { - // If we ignore the affilation's scope then strip the scope if it exists. + // If we ignore the affiliation's scope then strip the scope if it exists. if (ignoreScope) { int index = affiliation.indexOf('@'); if (index != -1) { @@ -355,8 +355,8 @@ public class ShibAuthentication implements AuthenticationMethod log.error("Exception thrown while trying to lookup affiliation role for group name: '"+names[i].trim()+"'",sqle); } } // for each groupNames - } // foreach affilations - } // if affilaitons + } // foreach affiliations + } // if affiliations log.info("Added current EPerson to special groups: "+groups); @@ -538,8 +538,8 @@ public class ShibAuthentication implements AuthenticationMethod /** * Identify an existing EPerson based upon the shibboleth attributes provided on - * the request object. There are three case underwhich this can occure each in - * a fall back position to the previous method. + * the request object. There are three cases where this can occurr, each as + * a fallback for the previous method. * * 1) NetID from Shibboleth Header (best) * The NetID-based method is superior because users may change their email @@ -548,7 +548,7 @@ public class ShibAuthentication implements AuthenticationMethod * * 2) Email address from Shibboleth Header (okay) * In the case where a NetID header is not available or not found DSpace - * will fall back to identifying a user based-upon their email address. + * will fall back to identifying a user based upon their email address. * * 3) Tomcat's Remote User (worst) * In the event that neither Shibboleth headers are found then as a last @@ -650,7 +650,7 @@ public class ShibAuthentication implements AuthenticationMethod * * In order to create a new eperson object there is a minimal set of metadata * required: Email, First Name, and Last Name. If we don't have access to these - * three peices of information then we will be unable to create a new eperson + * three pieces of information then we will be unable to create a new eperson * object, such as the case when Tomcat's Remote User field is used to identify * a particular user. * @@ -688,7 +688,7 @@ public class ShibAuthentication implements AuthenticationMethod return null; // TODO should this throw an exception? } - // Truncate values parameters that are too big. + // Truncate values of parameters that are too big. if (fname.length() > NAME_MAX_SIZE) { log.warn("Truncating eperson's first name because it is longer than "+NAME_MAX_SIZE+": '"+fname+"'"); fname = fname.substring(0,NAME_MAX_SIZE); @@ -736,9 +736,9 @@ public class ShibAuthentication implements AuthenticationMethod /** - * After sucessfully authenticate a user this method will update the users attributes. The + * After we sucessfully authenticated a user, this method will update the users attributes. The * user's email, name, or other attribute may have been changed since the last time they - * logged into DSpace. This method will update the database with their most recient information. + * logged into DSpace. This method will update the database with their most recent information. * * This method handles the basic DSpace metadata (email, first name, last name) along with * additional metadata set using the setMetadata() methods on the eperson object. The @@ -761,7 +761,7 @@ public class ShibAuthentication implements AuthenticationMethod String fname = findSingleHeader(request,fnameHeader); String lname = findSingleHeader(request,lnameHeader); - // Truncate values parameters that are too big. + // Truncate values of parameters that are too big. if (fname.length() > NAME_MAX_SIZE) { log.warn("Truncating eperson's first name because it is longer than "+NAME_MAX_SIZE+": '"+fname+"'"); fname = fname.substring(0,NAME_MAX_SIZE); @@ -776,7 +776,7 @@ public class ShibAuthentication implements AuthenticationMethod // 1) Update the minimum metadata if (netid != null && eperson.getNetid() == null) // Only update the netid if none has been previously set. This can occur when a repo switches - // to netid based authentication. The current users do not have netids and fall back to email based + // to netid based authentication. The current users do not have netids and fall back to email-based // identification but once they login we update their record and lock the account to a particular netid. eperson.setNetid(netid); if (email != null) @@ -822,12 +822,12 @@ public class ShibAuthentication implements AuthenticationMethod } /** - * Provide password-based authentication to enable sword compatability. + * Provide password-based authentication to enable sword compatibility. * - * Sword compatability will allow this authentication method to work when using - * sword. Sort relies on username and password based authentication and is + * Sword compatibility will allow this authentication method to work when using + * sword. Sword relies on username and password based authentication and is * entirely incapable of supporting shibboleth. This option allows you to - * authenticate username and passwords for sword sessions with out adding + * authenticate username and passwords for sword sessions without adding * another authentication method onto the stack. You will need to ensure that * a user has a password. One way to do that is to create the user via the * create-administrator command line command and then edit their permissions. @@ -838,11 +838,11 @@ public class ShibAuthentication implements AuthenticationMethod * @param request The HTTP Request * @return A valid DSpace Authentication Method status code. */ - protected int swordCompatability(Context context, String username, String password, HttpServletRequest request) throws SQLException { + protected int swordCompatibility(Context context, String username, String password, HttpServletRequest request) throws SQLException { EPerson eperson = null; - log.debug("Shibboleth Sword compatability activated."); + log.debug("Shibboleth Sword compatibility activated."); try { eperson = EPerson.findByEmail(context, username.toLowerCase()); } catch (AuthorizeException ae) { @@ -867,7 +867,7 @@ public class ShibAuthentication implements AuthenticationMethod // Password matched AuthenticationManager.initEPerson(context, request, eperson); context.setCurrentUser(eperson); - log.info(eperson.getEmail()+" has been authenticated via shibboleth using password-based sword compatability mode."); + log.info(eperson.getEmail()+" has been authenticated via shibboleth using password-based sword compatibility mode."); return SUCCESS; } else { // Passsword failure @@ -884,7 +884,7 @@ public class ShibAuthentication implements AuthenticationMethod * * During initalization the mapping of additional eperson metadata will be loaded from the DSpace.cfg * and cached. While loading the metadata mapping this method will check the EPerson object to see - * if it suports the metadata field. If the field is not supported and autocreate is turned on then + * if it supports the metadata field. If the field is not supported and autocreate is turned on then * the field will be automatically created. * * It is safe to call this methods multiple times. @@ -936,7 +936,7 @@ public class ShibAuthentication implements AuthenticationMethod log.debug("Loading additional eperson metadata mapping for: '"+header+"' = '"+name+"'"); map.put(header, name); } else { - // The field dosn't exist, and we can't use it. + // The field doesn't exist, and we can't use it. log.error("Skipping the additional eperson metadata mapping for: '"+header+"' = '"+name+"' because the field is not supported by the current configuration."); } } // foreach metadataStringList @@ -947,9 +947,9 @@ public class ShibAuthentication implements AuthenticationMethod } /** - * Check the EPerson table deffinition to see if the metadata field name is supported. It + * Check the EPerson table definition to see if the metadata field name is supported. It * checks for three things 1) that the field exists and 2) that the field is of the correct - * type, varchar, and 3) that the field's size is suffcient. + * type, varchar, and 3) that the field's size is sufficient. * * If either of these checks fail then false is returned. * @@ -1019,7 +1019,7 @@ public class ShibAuthentication implements AuthenticationMethod * metadata field. All additional fields are created with type varchar( METADATA_MAX_SIZE ) * * @param metadataName The name of the new metadata field. - * @return True if successfull, otherwise false. + * @return True if successful, otherwise false. */ private static synchronized boolean autoCreateEpersonMetadataField(String metadataName) throws SQLException { @@ -1064,7 +1064,7 @@ public class ShibAuthentication implements AuthenticationMethod * The header name uses a bit of fuzzy logic, so it will first try case * sensitive, then it will try lowercase, and finally it will try uppercase. * - * This method will not interpret the header value in anyway. + * This method will not interpret the header value in any way. * * * @param request The HTTP request to look for headers values on. @@ -1103,8 +1103,8 @@ public class ShibAuthentication implements AuthenticationMethod if (value != null) { - // If there are multiple values encodded in the shibboleth attribute - // they are seperated by a semicolon, and any semicolons in the + // If there are multiple values encoded in the shibboleth attribute + // they are separated by a semicolon, and any semicolons in the // attribute are escaped with a backslash. For this case we are just // looking for the first attribute so we scan the value until we find // the first unescaped semicolon and chop off everything else. @@ -1127,7 +1127,7 @@ public class ShibAuthentication implements AuthenticationMethod /** * Find a particular Shibboleth header value and return the all values. * The header name uses a bit of fuzzy logic, so it will first try case - * sensitive, then it will try lowercase, and finaly it will try uppercase. + * sensitive, then it will try lowercase, and finally it will try uppercase. * * Shibboleth attributes may contain multiple values separated by a * semicolon and semicolons are escaped with a backslash. This method will @@ -1145,7 +1145,7 @@ public class ShibAuthentication implements AuthenticationMethod if (values == null) return null; - // Shibboleth attributes are seperated by semicolons (and semicolons are + // Shibboleth attributes are separated by semicolons (and semicolons are // escaped with a backslash). So here we will scan through the string and // split on any unescaped semicolons. List valueList = new ArrayList(); @@ -1186,32 +1186,3 @@ public class ShibAuthentication implements AuthenticationMethod } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/dspace-api/src/main/java/org/dspace/browse/BrowseIndex.java b/dspace-api/src/main/java/org/dspace/browse/BrowseIndex.java index 7090b8f651..f0403ea0c1 100644 --- a/dspace-api/src/main/java/org/dspace/browse/BrowseIndex.java +++ b/dspace-api/src/main/java/org/dspace/browse/BrowseIndex.java @@ -592,7 +592,7 @@ public final class BrowseIndex /** * Is the browse index of display type single? * - * @return true if singe, false if not + * @return true if single, false if not */ public boolean isMetadataIndex() { diff --git a/dspace-api/src/main/java/org/dspace/checker/BitstreamInfoDAO.java b/dspace-api/src/main/java/org/dspace/checker/BitstreamInfoDAO.java index b8ce0501e5..bf4c9b36a0 100644 --- a/dspace-api/src/main/java/org/dspace/checker/BitstreamInfoDAO.java +++ b/dspace-api/src/main/java/org/dspace/checker/BitstreamInfoDAO.java @@ -430,11 +430,11 @@ public final class BitstreamInfoDAO extends DAOSupport } /** - * Returns the oldest bistream that in the set of bitstreams that are less + * Returns the oldest bitstream that in the set of bitstreams that are less * than the specified date. If no bitstreams are found -1 is returned. * * @param lessThanDate - * @return id of olded bitstream or -1 if not bistreams are found + * @return id of olded bitstream or -1 if not bitstreams are found */ public int getOldestBitstream(Timestamp lessThanDate) { diff --git a/dspace-api/src/main/java/org/dspace/content/InstallItem.java b/dspace-api/src/main/java/org/dspace/content/InstallItem.java index e53034c8be..52ef6ec74f 100644 --- a/dspace-api/src/main/java/org/dspace/content/InstallItem.java +++ b/dspace-api/src/main/java/org/dspace/content/InstallItem.java @@ -128,7 +128,7 @@ public class InstallItem // are not set then set them to today. DCDate now = DCDate.getCurrent(); - // If the item dosn't have a date.accessioned create one. + // If the item doesn't have a date.accessioned create one. DCValue[] dateAccessioned = item.getDC("date", "accessioned", Item.ANY); if (dateAccessioned.length == 0) { @@ -156,7 +156,7 @@ public class InstallItem String handleref = HandleManager.getCanonicalForm(handle); // Add handle as identifier.uri DC value. - // First check that identifier dosn't already exist. + // First check that identifier doesn't already exist. boolean identifierExists = false; DCValue[] identifiers = item.getDC("identifier", "uri", Item.ANY); for (DCValue identifier : identifiers) diff --git a/dspace-api/src/main/java/org/dspace/content/authority/ChoiceAuthority.java b/dspace-api/src/main/java/org/dspace/content/authority/ChoiceAuthority.java index 5744e70bf3..128e968fdf 100644 --- a/dspace-api/src/main/java/org/dspace/content/authority/ChoiceAuthority.java +++ b/dspace-api/src/main/java/org/dspace/content/authority/ChoiceAuthority.java @@ -18,7 +18,7 @@ package org.dspace.content.authority; public interface ChoiceAuthority { /** - * Get all values from the authority that match the profferred value. + * Get all values from the authority that match the preferred value. * Note that the offering was entered by the user and may contain * mixed/incorrect case, whitespace, etc so the plugin should be careful * to clean up user data before making comparisons. diff --git a/dspace-api/src/main/java/org/dspace/content/crosswalk/XSLTDisseminationCrosswalk.java b/dspace-api/src/main/java/org/dspace/content/crosswalk/XSLTDisseminationCrosswalk.java index 241aa03669..6389c52828 100644 --- a/dspace-api/src/main/java/org/dspace/content/crosswalk/XSLTDisseminationCrosswalk.java +++ b/dspace-api/src/main/java/org/dspace/content/crosswalk/XSLTDisseminationCrosswalk.java @@ -260,7 +260,7 @@ public class XSLTDisseminationCrosswalk } /** - * return true if this crosswalk prefers the list form over an singe + * return true if this crosswalk prefers the list form over an single * element, otherwise false. * * @see DisseminationCrosswalk diff --git a/dspace-api/src/main/java/org/dspace/content/packager/AbstractMETSDisseminator.java b/dspace-api/src/main/java/org/dspace/content/packager/AbstractMETSDisseminator.java index d8b32265fd..15f5a16f24 100644 --- a/dspace-api/src/main/java/org/dspace/content/packager/AbstractMETSDisseminator.java +++ b/dspace-api/src/main/java/org/dspace/content/packager/AbstractMETSDisseminator.java @@ -1537,7 +1537,7 @@ public abstract class AbstractMETSDisseminator } else { //no Handle assigned, so persistent(-ish) URI for bitstream is - // Format: {site-base-url}/retrieve/{bistream-internal-id} + // Format: {site-base-url}/retrieve/{bitstream-internal-id} return ConfigurationManager .getProperty("dspace.url") + "/retrieve/" diff --git a/dspace-api/src/main/java/org/dspace/content/packager/AbstractMETSIngester.java b/dspace-api/src/main/java/org/dspace/content/packager/AbstractMETSIngester.java index e888f8f776..1ce1f63d41 100644 --- a/dspace-api/src/main/java/org/dspace/content/packager/AbstractMETSIngester.java +++ b/dspace-api/src/main/java/org/dspace/content/packager/AbstractMETSIngester.java @@ -776,7 +776,7 @@ public abstract class AbstractMETSIngester extends AbstractPackageIngester // retrieve bundle name from manifest String bundleName = METSManifest.getBundleName(mfile); - // Find or create the bundle where bitstrem should be attached + // Find or create the bundle where bitstream should be attached Bundle bundle; Bundle bns[] = item.getBundles(bundleName); if (bns != null && bns.length > 0) diff --git a/dspace-api/src/main/java/org/dspace/content/packager/METSManifest.java b/dspace-api/src/main/java/org/dspace/content/packager/METSManifest.java index f8a4d17f73..2b5a66bcdc 100644 --- a/dspace-api/src/main/java/org/dspace/content/packager/METSManifest.java +++ b/dspace-api/src/main/java/org/dspace/content/packager/METSManifest.java @@ -422,7 +422,7 @@ public class METSManifest } // translate bundle name from METS to DSpace; METS may be "CONTENT" - // or "ORIGINAL" for the DSPace "ORIGINAL", rest are left alone. + // or "ORIGINAL" for the DSpace "ORIGINAL", rest are left alone. private static String normalizeBundleName(String in) { if (in.equals("CONTENT")) diff --git a/dspace-api/src/main/java/org/dspace/content/packager/PDFPackager.java b/dspace-api/src/main/java/org/dspace/content/packager/PDFPackager.java index 3880a8ab9a..4fe878af22 100644 --- a/dspace-api/src/main/java/org/dspace/content/packager/PDFPackager.java +++ b/dspace-api/src/main/java/org/dspace/content/packager/PDFPackager.java @@ -248,11 +248,11 @@ public class PDFPackager PackageUtils.createFile(pkgFile); } - //open up output stream to copy bistream to file + //open up output stream to copy bitstream to file FileOutputStream out = null; try { - //open up output stream to copy bistream to file + //open up output stream to copy bitstream to file out = new FileOutputStream(pkgFile); Utils.copy(pkgBs.retrieve(), out); } diff --git a/dspace-api/src/main/java/org/dspace/curate/Suspendable.java b/dspace-api/src/main/java/org/dspace/curate/Suspendable.java index df693d956d..653eff4de2 100644 --- a/dspace-api/src/main/java/org/dspace/curate/Suspendable.java +++ b/dspace-api/src/main/java/org/dspace/curate/Suspendable.java @@ -19,7 +19,7 @@ import java.lang.annotation.RetentionPolicy; * 'invocation mode' - optionally set by the caller on the curation object. * Thus, it effectively means that if a task is iterating over a collection, * the first error, or failure will halt the process. - * This insures that the status code and result of the failure are preserved. + * This ensures that the status code and result of the failure are preserved. * * @author richardrodgers */ diff --git a/dspace-api/src/main/java/org/dspace/handle/HandleManager.java b/dspace-api/src/main/java/org/dspace/handle/HandleManager.java index 6dcc231a3f..42ca647321 100644 --- a/dspace-api/src/main/java/org/dspace/handle/HandleManager.java +++ b/dspace-api/src/main/java/org/dspace/handle/HandleManager.java @@ -98,7 +98,7 @@ public class HandleManager { // Let the admin define a new prefix, if not then we'll use the - // CNRI default. This allows the admin to use "hdl:" if they want too or + // CNRI default. This allows the admin to use "hdl:" if they want to or // use a locally branded prefix handle.myuni.edu. String handlePrefix = ConfigurationManager.getProperty("handle.canonical.prefix"); if (handlePrefix == null || handlePrefix.length() == 0) diff --git a/dspace-api/src/test/resources/dspace-test.cfg b/dspace-api/src/test/resources/dspace-test.cfg index ae071dd996..a66c725acc 100644 --- a/dspace-api/src/test/resources/dspace-test.cfg +++ b/dspace-api/src/test/resources/dspace-test.cfg @@ -116,11 +116,11 @@ mail.admin = dspace-help@myu.edu # Recipient for new user registration emails # registration.notify = email-address-here -# Set the default mail character set. This may be over ridden by providing a line +# Set the default mail character set. This may be overridden by providing a line # inside the email template "charset: ", otherwise this default is used. #mail.charset = UTF8 -# A comma separated list of hostnames that are allowed to refer browsers to email forms. +# A comma-separated list of hostnames that are allowed to refer browsers to email forms. # Default behaviour is to accept referrals only from dspace.hostname #mail.allowed.referrers = localhost @@ -187,7 +187,7 @@ assetstore.dir = ${dspace.dir}/assetstore # - a set of SRB account parameters (host, port, zone, domain, username, # password, home directory, and resource) # -# Should the be any conflict, like '2' refering to a local directory and +# Should there be any conflict, like '2' refering to a local directory and # to a set of SRB parameters, the program will select the local directory. # # If SRB is chosen from the first install of DSpace, it is suggested that @@ -506,7 +506,7 @@ plugin.named.org.dspace.content.packager.PackageIngester = \ event.dispatcher.default.class = org.dspace.event.BasicDispatcher event.dispatcher.default.consumers = search, browse, eperson, harvester -# The noindex dispatcher will not create search or browse indexs (usefull for batch item imports) +# The noindex dispatcher will not create search or browse indexes (useful for batch item imports) event.dispatcher.noindex.class = org.dspace.event.BasicDispatcher event.dispatcher.noindex.consumers = eperson @@ -575,7 +575,7 @@ org.dspace.app.itemexport.life.span.hours = 48 org.dspace.app.itemexport.max.size = 200 -# For backwards compatability, the subscription emails by default include any modified items +# For backwards compatibility, the subscription emails by default include any modified items # uncomment the following entry for only new items to be emailed # eperson.subscription.onlynew = true @@ -780,7 +780,7 @@ webui.itemlist.sort-option.2 = dateissued:dc.date.issued:date webui.itemlist.sort-option.3 = dateaccessioned:dc.date.accessioned:date # By default, the display of metadata in the browse indexes is case sensitive -# So, you will get seperate entries for the terms +# So, you will get separate entries for the terms # # Olive oil # olive oil @@ -820,7 +820,7 @@ webui.itemlist.sort-option.3 = dateaccessioned:dc.date.accessioned:date # Set the options for how the indexes are sorted # -# All sort normalisations are carried out by the OrderFormatDelegate. +# All sorts of normalisations are carried out by the OrderFormatDelegate. # The plugin manager can be used to specify your own delegates for each datatype. # # The default datatypes (and delegates) are: @@ -1283,7 +1283,7 @@ plugin.single.org.dspace.app.webui.util.StyleSelection = \ default.locale = en # All the Locales, that are supported by this instance of DSpace -# A comma seperated list of Locales. All types of Locales country, country_language, country_language_variant +# A comma-separated list of Locales. All types of Locales country, country_language, country_language_variant # Note that the appropriate file are present, especially that all the Messages_x.properties are there # may be used, e. g: webui.supported.locales = en, de @@ -1345,7 +1345,7 @@ webui.suggest.enable = false # A list of supported locales for Manakin. Manakin will look at a user's browser # configuration for the first language that appears in this list to make available -# to in the interface. This parameter is a comma seperated list of Locales. All +# to in the interface. This parameter is a comma-separated list of Locales. All # types of Locales country, country_language, country_language_variant # Note that that if the approprate files are not present (i.e. Messages_XX_XX.xml) # then Manakin will fall back through to a more general language. @@ -1357,7 +1357,7 @@ webui.suggest.enable = false #xmlui.force.ssl = true # Determine if new users should be allowed to register or edit their own metadata. -# These parameters are usefull in congunction with shibboleth where you want to +# These parameters are useful in conjunction with shibboleth where you want to # disallow registration and disable the user's ability to edit their metadata # because both come from Shibboleth. #xmlui.user.registration=true @@ -1365,7 +1365,7 @@ webui.suggest.enable = false # Determine if super administrators (those whom are in the Administrators group) -# can login as another user from the "edit eperson" page. This is usefull for +# can login as another user from the "edit eperson" page. This is useful for # debugging problems in a running dspace instance, especially in the workflow # process. The default value is false, i.e. no one may assume the login of another user. #xmlui.user.assumelogin = true @@ -1429,7 +1429,7 @@ webui.suggest.enable = false # The default value is 250. #xmlui.controlpanel.activity.max = 250 -# Determine where the control panel's activity viwer recieves an events IP address +# Determine where the control panel's activity viwer receives an event's IP address # from. If your DSpace is in a load balanced enviornment or otherwise behind a # context-switch then you will need to set the paramater to the HTTP parameter that # records the original IP address. @@ -1566,7 +1566,7 @@ sword.slug.field = dc.identifier.slug sword.accept-packaging.METSDSpaceSIP.identifier = http://purl.org/net/sword-types/METSDSpaceSIP sword.accept-packaging.METSDSpaceSIP.q = 1.0 -# A comma separated list of MIME types that SWORD will accept +# A comma-separated list of MIME types that SWORD will accept sword.accepts = application/zip # Collection Specific settings: these will be used on the collections diff --git a/dspace-api/src/test/resources/dspaceFolder/config/dspace.cfg b/dspace-api/src/test/resources/dspaceFolder/config/dspace.cfg index 2217f31a47..43429c02ec 100644 --- a/dspace-api/src/test/resources/dspaceFolder/config/dspace.cfg +++ b/dspace-api/src/test/resources/dspaceFolder/config/dspace.cfg @@ -119,11 +119,11 @@ mail.admin = dspace-help@myu.edu # Recipient for new user registration emails # registration.notify = email-address-here -# Set the default mail character set. This may be over ridden by providing a line +# Set the default mail character set. This may be overridden by providing a line # inside the email template "charset: ", otherwise this default is used. #mail.charset = UTF8 -# A comma separated list of hostnames that are allowed to refer browsers to email forms. +# A comma-separated list of hostnames that are allowed to refer browsers to email forms. # Default behaviour is to accept referrals only from dspace.hostname #mail.allowed.referrers = localhost @@ -190,7 +190,7 @@ assetstore.dir = ${dspace.dir}/assetstore # - a set of SRB account parameters (host, port, zone, domain, username, # password, home directory, and resource) # -# Should the be any conflict, like '2' refering to a local directory and +# Should there be any conflict, like '2' refering to a local directory and # to a set of SRB parameters, the program will select the local directory. # # If SRB is chosen from the first install of DSpace, it is suggested that @@ -510,7 +510,7 @@ plugin.named.org.dspace.content.packager.PackageIngester = \ event.dispatcher.default.class = org.dspace.event.BasicDispatcher event.dispatcher.default.consumers = search, browse, eperson, harvester -# The noindex dispatcher will not create search or browse indexs (usefull for batch item imports) +# The noindex dispatcher will not create search or browse indexes (useful for batch item imports) event.dispatcher.noindex.class = org.dspace.event.BasicDispatcher event.dispatcher.noindex.consumers = eperson @@ -579,7 +579,7 @@ org.dspace.app.itemexport.life.span.hours = 48 org.dspace.app.itemexport.max.size = 200 -# For backwards compatability, the subscription emails by default include any modified items +# For backwards compatibility, the subscription emails by default include any modified items # uncomment the following entry for only new items to be emailed # eperson.subscription.onlynew = true @@ -800,7 +800,7 @@ webui.itemlist.sort-option.2 = dateissued:dc.date.issued:date webui.itemlist.sort-option.3 = dateaccessioned:dc.date.accessioned:date # By default, the display of metadata in the browse indexes is case sensitive -# So, you will get seperate entries for the terms +# So, you will get separate entries for the terms # # Olive oil # olive oil @@ -840,7 +840,7 @@ webui.itemlist.sort-option.3 = dateaccessioned:dc.date.accessioned:date # Set the options for how the indexes are sorted # -# All sort normalisations are carried out by the OrderFormatDelegate. +# All sorts of normalisations are carried out by the OrderFormatDelegate. # The plugin manager can be used to specify your own delegates for each datatype. # # The default datatypes (and delegates) are: @@ -1301,7 +1301,7 @@ plugin.single.org.dspace.app.webui.util.StyleSelection = \ default.locale = en # All the Locales, that are supported by this instance of DSpace -# A comma seperated list of Locales. All types of Locales country, country_language, country_language_variant +# A comma-separated list of Locales. All types of Locales country, country_language, country_language_variant # Note that the appropriate file are present, especially that all the Messages_x.properties are there # may be used, e. g: webui.supported.locales = en, de @@ -1363,7 +1363,7 @@ webui.suggest.enable = false # A list of supported locales for Manakin. Manakin will look at a user's browser # configuration for the first language that appears in this list to make available -# to in the interface. This parameter is a comma seperated list of Locales. All +# to in the interface. This parameter is a comma-separated list of Locales. All # types of Locales country, country_language, country_language_variant # Note that that if the approprate files are not present (i.e. Messages_XX_XX.xml) # then Manakin will fall back through to a more general language. @@ -1375,7 +1375,7 @@ webui.suggest.enable = false #xmlui.force.ssl = true # Determine if new users should be allowed to register or edit their own metadata. -# These parameters are usefull in congunction with shibboleth where you want to +# These parameters are useful in conjunction with shibboleth where you want to # disallow registration and disable the user's ability to edit their metadata # because both come from Shibboleth. #xmlui.user.registration=true @@ -1383,7 +1383,7 @@ webui.suggest.enable = false # Determine if super administrators (those whom are in the Administrators group) -# can login as another user from the "edit eperson" page. This is usefull for +# can login as another user from the "edit eperson" page. This is useful for # debugging problems in a running dspace instance, especially in the workflow # process. The default value is false, i.e. no one may assume the login of another user. #xmlui.user.assumelogin = true @@ -1447,7 +1447,7 @@ webui.suggest.enable = false # The default value is 250. #xmlui.controlpanel.activity.max = 250 -# Determine where the control panel's activity viwer recieves an events IP address +# Determine where the control panel's activity viwer receives an event's IP address # from. If your DSpace is in a load balanced enviornment or otherwise behind a # context-switch then you will need to set the paramater to the HTTP parameter that # records the original IP address. @@ -1584,7 +1584,7 @@ sword.slug.field = dc.identifier.slug sword.accept-packaging.METSDSpaceSIP.identifier = http://purl.org/net/sword-types/METSDSpaceSIP sword.accept-packaging.METSDSpaceSIP.q = 1.0 -# A comma separated list of MIME types that SWORD will accept +# A comma-separated list of MIME types that SWORD will accept sword.accepts = application/zip # Collection Specific settings: these will be used on the collections diff --git a/dspace-api/src/test/resources/dspaceFolder/config/input-forms.xml b/dspace-api/src/test/resources/dspaceFolder/config/input-forms.xml index 6d111a2eb2..8202d520a0 100644 --- a/dspace-api/src/test/resources/dspaceFolder/config/input-forms.xml +++ b/dspace-api/src/test/resources/dspaceFolder/config/input-forms.xml @@ -5,8 +5,8 @@ - - + + @@ -19,17 +19,17 @@ - + - + - + @@ -39,7 +39,7 @@
- dc + dc contributor author true @@ -50,7 +50,7 @@ - dc + dc title false @@ -61,7 +61,7 @@ - dc + dc title alternative true @@ -72,7 +72,7 @@ - dc + dc date issued false @@ -85,7 +85,7 @@ - dc + dc publisher false @@ -96,7 +96,7 @@ - dc + dc identifier citation false @@ -107,7 +107,7 @@ - dc + dc relation ispartofseries true @@ -118,7 +118,7 @@ - dc + dc identifier @@ -131,18 +131,18 @@ it, please enter the types and the actual numbers or codes below. - dc + dc type true dropdown - Select the type(s) of content of the item. To select more than one value in the list, you may have to hold down the "CTRL" or "Shift" key. + Select the type(s) of content of the item. To select more than one value in the list, you may have to hold down the "CTRL" or "Shift" key. - dc + dc language iso false @@ -155,48 +155,48 @@ it, please enter the types and the actual numbers or codes below. - dc + dc subject true twobox - Enter appropriate subject keywords or phrases below. + Enter appropriate subject keywords or phrases below. srsc - dc + dc description abstract false textarea - Enter the abstract of the item below. + Enter the abstract of the item below. - dc + dc description sponsorship false textarea - Enter the names of any sponsors and/or funding codes in the box below. + Enter the names of any sponsors and/or funding codes in the box below. - dc + dc description false textarea - Enter any other description or comments in this box. + Enter any other description or comments in this box. @@ -205,12 +205,12 @@ it, please enter the types and the actual numbers or codes below. - dc + dc contributor author true - name + name Enter the names of the authors of this item below. diff --git a/dspace-api/src/test/resources/dspaceFolder/config/item-submission.xml b/dspace-api/src/test/resources/dspaceFolder/config/item-submission.xml index a84e3a7d27..71726e7730 100644 --- a/dspace-api/src/test/resources/dspaceFolder/config/item-submission.xml +++ b/dspace-api/src/test/resources/dspaceFolder/config/item-submission.xml @@ -9,7 +9,7 @@ - + @@ -123,7 +123,7 @@ - + diff --git a/dspace-api/src/test/resources/dspaceFolder/config/modules/authentication-shibboleth.cfg b/dspace-api/src/test/resources/dspaceFolder/config/modules/authentication-shibboleth.cfg index 86917ac2af..80683abcd4 100644 --- a/dspace-api/src/test/resources/dspaceFolder/config/modules/authentication-shibboleth.cfg +++ b/dspace-api/src/test/resources/dspaceFolder/config/modules/authentication-shibboleth.cfg @@ -1,6 +1,6 @@ #### Shibboleth Authentication Configuration Settings #### # Check https://mams.melcoe.mq.edu.au/zope/mams/pubs/Installation/dspace15/view -# for installation detail. +# for installation details. # # DSpace requires email as user's credential. There are 2 ways of providing # email to DSpace: @@ -36,7 +36,7 @@ autoregister = true # ignore-scope is defaulted to 'false'. # The value is specified in AAP.xml (Shib 1.3.x) or # attribute-filter.xml (Shib 2.x). The value is CASE-Sensitive. -# The values provided in this header are separated by semi-colon or comma. +# The values provided in this header are separated by semicolon or comma. # If your sp only provides scoped role header, you need to set # role-header.ignore-Scope as true. # for example if you only get Shib-EP-ScopedAffiliation instead of Shib-EP-ScopedAffiliation, @@ -48,9 +48,9 @@ autoregister = true role-header.ignore-scope = false # when user is fully authN on IdP but would not like to release -# his/her roles to DSpace (for privacy reason?), what should be +# his/her roles to DSpace (for privacy reasons?), what should be # the default roles be given to such users? -# The values are separated by semi-colon or comma +# The values are separated by semicolon or comma # default-roles = Staff, Walk-ins # The following mappings specify role mapping between IdP and Dspace. @@ -68,4 +68,4 @@ role-header.ignore-scope = false # Given sufficient demand, future release could support regex for the mapping # special characters need to be escaped by \ role.Senior\ Researcher = Researcher, Staff -role.Librarian = Administrator \ No newline at end of file +role.Librarian = Administrator diff --git a/dspace-api/src/test/resources/dspaceFolder/solr/statistics/conf/schema.xml b/dspace-api/src/test/resources/dspaceFolder/solr/statistics/conf/schema.xml index c46ab16739..3f1efb83a9 100644 --- a/dspace-api/src/test/resources/dspaceFolder/solr/statistics/conf/schema.xml +++ b/dspace-api/src/test/resources/dspaceFolder/solr/statistics/conf/schema.xml @@ -234,7 +234,7 @@ @@ -285,11 +285,11 @@ to administer DSpace. @@ -339,7 +339,7 @@ to administer DSpace. @@ -349,7 +349,7 @@ to administer DSpace. @@ -406,7 +406,7 @@ to administer DSpace. @@ -428,7 +428,7 @@ to administer DSpace. @@ -437,7 +437,7 @@ to administer DSpace. @@ -451,7 +451,7 @@ to administer DSpace. @@ -491,7 +491,7 @@ to administer DSpace. @@ -584,7 +584,7 @@ to administer DSpace. @@ -604,7 +604,7 @@ to administer DSpace. @@ -710,7 +710,7 @@ to administer DSpace. - + @@ -921,8 +921,8 @@ to administer DSpace. - + diff --git a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/EPerson/eperson.js b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/EPerson/eperson.js index 2eba356642..15fed6600c 100644 --- a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/EPerson/eperson.js +++ b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/EPerson/eperson.js @@ -53,7 +53,7 @@ function getEPerson() */ function doRegister() { - //Make sure that user registration is enabled + // Make sure that user registration is enabled if (!(ConfigurationManager.getBooleanProperty("xmlui.user.registration", true))) { // We're configured to not allow user registration @@ -80,7 +80,7 @@ function doRegister() if (submit_forgot != null) { - // The user attempted to register with an email address that all ready exists then they clicked + // The user attempted to register with an email address that already exists then they clicked // the "I forgot my password" button. In this case, we send them a forgot password token. AccountManager.sendForgotPasswordInfo(getDSContext(),email); getDSContext().commit(); @@ -105,13 +105,13 @@ function doRegister() { try { - // May throw the AddressException or a varity of SMTP errors. + // May throw the AddressException or a variety of SMTP errors. AccountManager.sendRegistrationInfo(getDSContext(),email); getDSContext().commit(); } catch (error) { - // If any errors occure while trying to send the email set the field in error. + // If any errors occured while trying to send the email set the field in error. errors = new Array("email"); continue; } @@ -129,7 +129,7 @@ function doRegister() } else { - // We have a token. Find out who the it's for + // We have a token. Find out who it's for var email = AccountManager.getEmail(getDSContext(), token); if (email == null) @@ -144,7 +144,7 @@ function doRegister() do { cocoon.sendPageAndWait("register/profile",{"email" : email, "allowSetPassword":setPassword , "errors" : errors.join(',')}); - // If the user had to retry the form a user may allready be created. + // If the user had to retry the form a user may already be created. var eperson = EPerson.findByEmail(getDSContext(),email); if (eperson == null) { @@ -178,7 +178,7 @@ function doRegister() /** - * Preform a forgot password processes. + * Perform a forgotten password processes. */ function doForgotPassword() { @@ -243,7 +243,7 @@ function doForgotPassword() // Get the eperson associated with the password change var eperson = AccountManager.getEPerson(getDSContext(), token); - // Temporaraly log the user in so that they can update their password. + // Temporarily log the user in so that they can update their password. getDSContext().setCurrentUser(eperson); errors = updatePassword(eperson); @@ -263,7 +263,7 @@ function doForgotPassword() /** * Flow function to update a user's profile. This flow will iterate - * over the profile/update form untill the user has provided correct + * over the profile/update form until the user has provided correct * data (i.e. filled in the required fields and meet the minimum * password requirements). */ @@ -345,7 +345,7 @@ function doUpdateProfile() * Update the eperson's profile information. Some fields, such as * last_name & first_name are required. * - * Missing or mailformed field names will be returned in an array. + * Missing or malformed field names will be returned in an array. * If the user's profile information was updated successfully then * an empty array will be returned. */ @@ -364,7 +364,7 @@ function updateInformation(eperson) var phone = cocoon.request.getParameter("phone"); var language = cocoon.request.getParameter("language"); - // first check that each parameter is filled in before seting anything. + // first, check that each parameter is filled in before setting anything. var idx = 0; var errors = new Array(); @@ -401,7 +401,7 @@ function updateInformation(eperson) * requirements. * * Any fields that are in error will be returned in an array. If - * the user's password was updated successfull then an empty array + * the user's password was updated successfully then an empty array * will be returned. */ function updatePassword(eperson) diff --git a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/EPerson/sitemap.xmap b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/EPerson/sitemap.xmap index 4e006b9e27..1e16419299 100644 --- a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/EPerson/sitemap.xmap +++ b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/EPerson/sitemap.xmap @@ -11,7 +11,7 @@ @@ -97,26 +97,26 @@ registration, forgotten passwords, editing profiles, and changing passwords. @@ -139,11 +139,11 @@ registration, forgotten passwords, editing profiles, and changing passwords. - + @@ -165,7 +165,7 @@ registration, forgotten passwords, editing profiles, and changing passwords. - + @@ -176,7 +176,7 @@ registration, forgotten passwords, editing profiles, and changing passwords. - + @@ -199,7 +199,7 @@ registration, forgotten passwords, editing profiles, and changing passwords. @@ -244,7 +244,7 @@ registration, forgotten passwords, editing profiles, and changing passwords. diff --git a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Submission/sitemap.xmap b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Submission/sitemap.xmap index 42514f8266..fcee405221 100644 --- a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Submission/sitemap.xmap +++ b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Submission/sitemap.xmap @@ -62,12 +62,12 @@ @@ -162,7 +162,7 @@ This step will ask the user to select a collection they want to submit an item to. It is not part of the 'proper' submission steps in that it is not displayed in the progress list and is - often skipped because the user has allready selected a collection. + often skipped because the user has already selected a collection. --> @@ -219,7 +219,7 @@ diff --git a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Workflow/sitemap.xmap b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Workflow/sitemap.xmap index 9c465e6380..f90c36455f 100644 --- a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Workflow/sitemap.xmap +++ b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Workflow/sitemap.xmap @@ -57,12 +57,12 @@ diff --git a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Workflow/workflow.js b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Workflow/workflow.js index 53e54af5d6..3917b373fb 100644 --- a/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Workflow/workflow.js +++ b/dspace-xmlui/dspace-xmlui-api/src/main/resources/aspects/Workflow/workflow.js @@ -136,7 +136,7 @@ function doWorkflow() if (cocoon.request.get("submit_leave")) { - // Just exit workflow with out doing anything + // Just exit workflow without doing anything var contextPath = cocoon.request.getContextPath(); cocoon.redirectTo(contextPath+"/submissions",true); getDSContext().complete(); diff --git a/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/WEB-INF/cocoon/properties/core.properties b/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/WEB-INF/cocoon/properties/core.properties index adecf94183..44cb0405aa 100644 --- a/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/WEB-INF/cocoon/properties/core.properties +++ b/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/WEB-INF/cocoon/properties/core.properties @@ -2,7 +2,7 @@ # The check is only performed if reloading is turned on! org.apache.cocoon.reload-delay=1000 -# Allow reinstantiating (reloading) of the cocoon instance. If this is +# Allow reinstatiating (reloading) of the cocoon instance. If this is # set to "true", a new cocoon instance can be created using # the request parameter "cocoon-reload". It also enables that Cocoon is # reloaded when cocoon.xconf changes. Default is false for security reasons. diff --git a/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/aspects/aspects.xmap b/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/aspects/aspects.xmap index c675a7fa39..b0f8475b6f 100644 --- a/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/aspects/aspects.xmap +++ b/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/aspects/aspects.xmap @@ -52,12 +52,12 @@ - + - +
diff --git a/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/themes/Mirage/lib/xsl/core/page-structure.xsl b/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/themes/Mirage/lib/xsl/core/page-structure.xsl index 5c24689ed3..5633811329 100644 --- a/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/themes/Mirage/lib/xsl/core/page-structure.xsl +++ b/dspace-xmlui/dspace-xmlui-webapp/src/main/webapp/themes/Mirage/lib/xsl/core/page-structure.xsl @@ -507,7 +507,7 @@ - +