-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '5122-fix-netbeans-compat' into 4261-sitemap #4261
- Loading branch information
Showing
10 changed files
with
81 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env bash | ||
|
||
cd /usr/local/glassfish4 | ||
|
||
# if appropriate; reconfigure PID provider on the basis of environmental variables. | ||
if [ ! -z "${DoiProvider}" ]; then | ||
curl -X PUT -d ${DoiProvider} http://localhost:8080/api/admin/settings/:DoiProvider | ||
fi | ||
if [ ! -z "${doi_username}" ]; then | ||
bin/asadmin create-jvm-options "-Ddoi.username=${doi_password}" | ||
fi | ||
if [ ! -z "${doi_password}" ]; then | ||
bin/asadmin create-jvm-options "-Ddoi.password=${doi_password}" | ||
fi | ||
if [ ! -z "${doi_baseurl}" ]; then | ||
bin/asadmin delete-jvm-options "-Ddoi.baseurlstring=https\://mds.test.datacite.org" | ||
doi_baseurl_esc=`echo ${doi_baseurl} | sed -e 's/:/\\:/'` | ||
bin/asadmin create-jvm-options "\"-Ddoi.baseurlstring=${doi_baseurl_esc}\"" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Dashboard | ||
========= | ||
|
||
Dataverse offers a dashboard of administrative tools for superusers only. If you are a logged-in superuser, you can access it by clicking your username in the navbar, and then clicking "Dashboard" from the dropdown. You can verify that you are a superuser by checking the color of your username in the navbar. If it's red, you have the right permissions to use the Dashboard. Superusers can give other users the superuser status via :doc:`user-administration`. | ||
|
||
.. contents:: Contents: | ||
:local: | ||
|
||
Harvesting | ||
---------- | ||
|
||
Harvesting Clients | ||
~~~~~~~~~~~~~~~~~~ | ||
|
||
This dashboard tool allows you to set up which other repositories your Dataverse installation harvests metadata records from. You can see a list of harvesting clients and add, edit, or remove them. See the :doc:`harvestclients` section for more details. | ||
|
||
Harvesting Servers | ||
~~~~~~~~~~~~~~~~~~ | ||
|
||
This dashboard tool allows you to define sets of local datasets to make available to remote harvesting clients. You can see a list of sets and add, edit, or remove them. See the :doc:`harvestserver` section for more details. | ||
|
||
Metadata Export | ||
--------------- | ||
|
||
This part of the Dashboard is simply a reminder message that metadata export happens through the Harvard Dataverse API. See the :doc:`metadataexport` section and the :doc:`/api/native-api` section of the API Guide for more details. | ||
|
||
Users | ||
----- | ||
|
||
This dashboard tool allows you to search a list of all users of your Dataverse installation. You can remove roles from user accounts and assign or remove superuser status. See the :doc:`user-administration` section for more details. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters