Skip to content

Commit 0b1c0c9

Browse files
committed
1 parent 07789ea commit 0b1c0c9

File tree

12 files changed

+40
-40
lines changed

12 files changed

+40
-40
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# How to contribute
22

33
We would love to get contributions from you! To keep the process manageable we please ask you to follow the workflow
4-
below. By participating in this project, you agree to abide by the [code of conduct](https://clowder.ncsa.illinois.edu/docs/Clowder-CoC.pdf).
5-
Before your code can be accepted, you will have to sign a [CLA](https://clowder.ncsa.illinois.edu/docs/Clowder-CLA.pdf)
4+
below. By participating in this project, you agree to abide by the [code of conduct](https://clowderframework.org/docs/Clowder-CoC.pdf).
5+
Before your code can be accepted, you will have to sign a [CLA](https://clowderframework.org/docs/Clowder-CLA.pdf)
66
and mail it to [email protected].
77

88
Most of the core development happens on [NCSA Bitbucket][bitbucket]. The `master` and `develop` branches are pushed to
@@ -80,5 +80,5 @@ Developer documentation is available in [Confluence][confluence]. User documenta
8080
[wiki]: https://opensource.ncsa.illinois.edu/confluence/display/CATS
8181
[bitbucket]: https://opensource.ncsa.illinois.edu/bitbucket/projects/CATS
8282
[bamboo]: https://opensource.ncsa.illinois.edu/bamboo/browse/CATS
83-
[userdocs]: https://clowder.ncsa.illinois.edu/docs/
83+
[userdocs]: https://clowderframework.org/docs/
8484
[confluence]: https://opensource.ncsa.illinois.edu/confluence/display/CATS/Home

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1196568.svg)](https://doi.org/10.5281/zenodo.1196568)
44

55
A customizable and scalable data management system you can install in the cloud or on your own hardware.
6-
More information is available at [https://clowder.ncsa.illinois.edu/](https://clowder.ncsa.illinois.edu/).
6+
More information is available at [https://clowderframework.org/](https://clowderframework.org/).
77

88
## Installation
99

app/views/main.scala.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
<li class="dropdown">
188188
<a href="#" class="dropdown-toggle nav-icon" data-toggle="dropdown" title="Help">Help<b class="caret"></b></a>
189189
<ul class="dropdown-menu" role="menu">
190-
<li><a href="https://clowder.ncsa.illinois.edu/" target="_blank">About Clowder</a></li>
190+
<li><a href="https://clowderframework.org/" target="_blank">About Clowder</a></li>
191191
<li><a href="@routes.Application.about">About this instance</a></li>
192192
@if(user.isDefined) {
193193
<li><a href="@routes.Application.email("")">Contact server admins</a></li>

app/views/metadatald/addMetadata.scala.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ <h5 class="pull-left">Add metadata</h5>
153153
if (field_value != "") {
154154
// define contexts
155155
var contexts = [];
156-
contexts.push("https://clowder.ncsa.illinois.edu/contexts/metadata.jsonld");
156+
contexts.push("https://clowderframework.org/contexts/metadata.jsonld");
157157
var context = {};
158158
context[field_label] = field_id;
159159
contexts.push(context);
@@ -259,7 +259,7 @@ <h5 class="pull-left">Add metadata</h5>
259259
if (field_value != "") {
260260
// define contexts
261261
var contexts = [];
262-
contexts.push("https://clowder.ncsa.illinois.edu/contexts/metadata.jsonld");
262+
contexts.push("https://clowderframework.org/contexts/metadata.jsonld");
263263
var context = {};
264264
context[field_label] = field_id;
265265
contexts.push(context);

doc/src/sphinx/api.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Web Service API
55

66
The RESTful application programming interface is the best way to interact with Clowder programmatically. Much of the web
77
frontend and the extractors use this same API to interact with the system. For a full list of available endpoints please
8-
see the `Swagger documentation <https://clowder.ncsa.illinois.edu/swagger/?url=https://clowder.ncsa.illinois.edu/clowder/swagger>`_.
8+
see the `Swagger documentation <https://clowderframework.org/swagger/?url=https://clowderframework.org/clowder/swagger>`_.
99

1010
Depending on the privacy settings of a specific Clowder instance, a user API key might be required. Users can create
1111
API keys through the web UI on their profile page (upper right user icon on any page). API Keys can be provided in the
@@ -23,10 +23,10 @@ Here is an example of requesting the metadata attached to a *dataset* and provid
2323

2424
.. code-block:: bash
2525
26-
curl -X GET "https://clowder.ncsa.illinois.edu/clowder/api/datasets/5cd47b055e0e57385688f788/metadata.jsonld?key=*yourapikey*"
26+
curl -X GET "https://clowderframework.org/clowder/api/datasets/5cd47b055e0e57385688f788/metadata.jsonld?key=*yourapikey*"
2727
2828
Here is an example of requesting the metadata attached to a *file* and providing the API key as the HTTP header *X-API-Key*:
2929

3030
.. code-block:: bash
3131
32-
curl -X GET -H "X-API-Key: *yourapikey*" "https://clowder.ncsa.illinois.edu/clowder/api/files/5d07b5fe5e0ec351d75ff064/metadata.jsonld"
32+
curl -X GET -H "X-API-Key: *yourapikey*" "https://clowderframework.org/clowder/api/files/5d07b5fe5e0ec351d75ff064/metadata.jsonld"

doc/src/sphinx/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ be customized and deployed on your own cloud.
1414

1515
.. note::
1616

17-
* For a high level overview of the project please visit `https://clowder.ncsa.illinois.edu <https://clowder.ncsa.illinois.edu/>`_.
17+
* For a high level overview of the project please visit `https://clowderframework.org <https://clowderframework.org/>`_.
1818

1919
* If you have questions for the Clowder you can chat with the developers on
2020
`Slack <https://join.slack.com/t/clowder-software/shared_invite/enQtMzQzOTg0Nzk3OTUzLTUxYzVhMzZlZDlhMTc0NzNiZTBiNjcyMTEzNjdmMjc5MTA2MTAzMDQwNmUzYTdmNDQyNGMwOWM1Y2YxMzdhNGM>`_

doc/src/sphinx/userguide/ug_signingup.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Signing up with a Third Party App
1212
The first one is to use a third-party network, like google, crowd, facebook, twitter, linkedin. They are enabled in
1313
some instances on Clowder, and you can ask your Clowder administrator to enable them if they are not.
1414

15-
Each Clowder instance manages its own user database, for example: https://clowder.ncsa.illinois.edu/clowder/.
15+
Each Clowder instance manages its own user database, for example: https://clowderframework.org/clowder/.
1616

1717
If you want to login using this method, you can click on the Login button in the top-right corner as marked by a blue
1818
square on Figure 1.
@@ -51,7 +51,7 @@ After accepting the terms of service, you will be redirected to the Clowder Home
5151

5252
Signing up through a Local Account
5353
==================================
54-
Click on the highlighted link in blue in your Clowder instance (https://clowder.ncsa.illinois.edu/clowder/r)
54+
Click on the highlighted link in blue in your Clowder instance (https://clowderframework.org/clowder/r)
5555

5656
.. image:: /_static/ug-signingup-6.png
5757
:width: 80%

public/swagger.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4791,22 +4791,22 @@ definitions:
47914791
{
47924792
"@context":
47934793
[
4794-
"https://clowder.ncsa.illinois.edu/contexts/metadata.jsonld",
4794+
"https://clowderframework.org/contexts/metadata.jsonld",
47954795
{
47964796
"csv_headers": "http://clowder.ncsa.illinois.edu/metadata/ncsa.csvheaders"
47974797
}
47984798
],
47994799
"attached_to":
48004800
{
48014801
"resource_type": "cat:file",
4802-
"url": "https://clowder.ncsa.illinois.edu/clowder/files/5b2a836d5e0e8956ed865b29"
4802+
"url": "https://clowderframework.org/clowder/files/5b2a836d5e0e8956ed865b29"
48034803
},
48044804
"created_at": "Wed Jun 20 11:40:25 CDT 2018",
48054805
"agent":
48064806
{
48074807
"@type": "cat:extractor",
4808-
"name": "https://clowder.ncsa.illinois.edu/clowder/extractors/ncsa.csvheaders/1.0",
4809-
"extractor_id": "https://clowder.ncsa.illinois.edu/clowder/extractors/ncsa.csvheaders/1.0"
4808+
"name": "https://clowderframework.org/clowder/extractors/ncsa.csvheaders/1.0",
4809+
"extractor_id": "https://clowderframework.org/clowder/extractors/ncsa.csvheaders/1.0"
48104810
},
48114811
"content":
48124812
{

scripts/jupyter-notebook/collections.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
" 'description': description,\n",
5959
" 'space': space_id\n",
6060
" })\n",
61-
" r = requests.post('https://clowder.ncsa.illinois.edu/clowder/api/collections',\n",
61+
" r = requests.post('https://clowderframework.org/clowder/api/collections',\n",
6262
" data=payload,\n",
6363
" headers=headers,\n",
6464
" auth=auth)\n",
@@ -89,7 +89,7 @@
8989
"outputs": [],
9090
"source": [
9191
"def list_collections():\n",
92-
" r = requests.get('https://clowder.ncsa.illinois.edu/clowder/api/collections/allCollections', \n",
92+
" r = requests.get('https://clowderframework.org/clowder/api/collections/allCollections', \n",
9393
" auth=auth)\n",
9494
" print(r.status_code)\n",
9595
" print(r.text)"
@@ -121,7 +121,7 @@
121121
" ''' parameters: collection id; dataset id\n",
122122
" '''\n",
123123
" empty_payload = json.dumps({})\n",
124-
" r = requests.post('https://clowder.ncsa.illinois.edu/clowder/api/collections/'\n",
124+
" r = requests.post('https://clowderframework.org/clowder/api/collections/'\n",
125125
" + collection_id +'/datasets/' + dataset_id,\n",
126126
" data=empty_payload,\n",
127127
" headers=headers,\n",

scripts/jupyter-notebook/dataset_files.ipynb

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"outputs": [],
4949
"source": [
5050
"def list_datasets():\n",
51-
" r = requests.get('https://clowder.ncsa.illinois.edu/clowder/api/datasets', \n",
51+
" r = requests.get('https://clowderframework.org/clowder/api/datasets', \n",
5252
" auth=auth)\n",
5353
" print(r.status_code)\n",
5454
" print(r.text)"
@@ -89,7 +89,7 @@
8989
" 'space':space,\n",
9090
" 'collection':collection}) \n",
9191
"\n",
92-
" r = requests.post('https://clowder.ncsa.illinois.edu/clowder/api/datasets/createempty',\n",
92+
" r = requests.post('https://clowderframework.org/clowder/api/datasets/createempty',\n",
9393
" data=payload,\n",
9494
" headers=headers,\n",
9595
" auth=auth)\n",
@@ -125,7 +125,7 @@
125125
"\n",
126126
" payload = json.dumps({'description':description})\n",
127127
" \n",
128-
" r = requests.put('https://clowder.ncsa.illinois.edu/clowder/api/datasets/'\n",
128+
" r = requests.put('https://clowderframework.org/clowder/api/datasets/'\n",
129129
" + dataset_id +'/description',\n",
130130
" data=payload,\n",
131131
" headers=headers,\n",
@@ -159,7 +159,7 @@
159159
"def edit_dataset_name(dataset_id, name):\n",
160160
"\n",
161161
" payload = json.dumps({'name': name})\n",
162-
" r = requests.put('https://clowder.ncsa.illinois.edu/clowder/api/datasets/' + dataset_id +'/title',\n",
162+
" r = requests.put('https://clowderframework.org/clowder/api/datasets/' + dataset_id +'/title',\n",
163163
" data=payload,\n",
164164
" headers=headers,\n",
165165
" auth=auth)\n",
@@ -192,7 +192,7 @@
192192
"def add_tags_to_dataset(dataset_id, tags):\n",
193193
" \n",
194194
" payload = json.dumps({'tags':tags})\n",
195-
" r = requests.post('https://clowder.ncsa.illinois.edu/clowder/api/datasets/' + dataset_id +'/tags',\n",
195+
" r = requests.post('https://clowderframework.org/clowder/api/datasets/' + dataset_id +'/tags',\n",
196196
" data=payload,\n",
197197
" headers=headers,\n",
198198
" auth=auth)\n",
@@ -231,7 +231,7 @@
231231
" '''\n",
232232
" \n",
233233
" payload = json.dumps(metadata)\n",
234-
" r = requests.post('https://clowder.ncsa.illinois.edu/clowder/api/datasets/' + dataset_id +'/metadata',\n",
234+
" r = requests.post('https://clowderframework.org/clowder/api/datasets/' + dataset_id +'/metadata',\n",
235235
" data=payload,\n",
236236
" headers=headers,\n",
237237
" auth=auth)\n",
@@ -262,7 +262,7 @@
262262
"outputs": [],
263263
"source": [
264264
"def delete_dtaset(dataset_id):\n",
265-
" r = requests.delete('https://clowder.ncsa.illinois.edu/clowder/api/datasets/'+ dataset_id,\n",
265+
" r = requests.delete('https://clowderframework.org/clowder/api/datasets/'+ dataset_id,\n",
266266
" auth=auth)\n",
267267
" print(r.status_code)\n",
268268
" print(r.text)"
@@ -299,7 +299,7 @@
299299
"source": [
300300
"def upload_files_to_dataset(dataset_id, url):\n",
301301
" payload = json.dumps({'url':url})\n",
302-
" r = requests.post('https://clowder.ncsa.illinois.edu/clowder/api/datasets/' + dataset_id + '/urls',\n",
302+
" r = requests.post('https://clowderframework.org/clowder/api/datasets/' + dataset_id + '/urls',\n",
303303
" data=payload,\n",
304304
" headers=headers,\n",
305305
" auth=auth)\n",
@@ -337,7 +337,7 @@
337337
" \n",
338338
" payload = json.dumps({'tags':tags})\n",
339339
" headers = {'Content-type': 'application/json', 'accept': 'application/json'}\n",
340-
" r = requests.post('https://clowder.ncsa.illinois.edu/clowder/api/files/' + file_id +'/tags',\n",
340+
" r = requests.post('https://clowderframework.org/clowder/api/files/' + file_id +'/tags',\n",
341341
" data=payload,\n",
342342
" headers=headers,\n",
343343
" auth=auth)\n",
@@ -370,7 +370,7 @@
370370
"def add_description_to_file(file_id, description):\n",
371371
"\n",
372372
" payload = json.dumps({'description':description})\n",
373-
" r = requests.put('https://clowder.ncsa.illinois.edu/clowder/api/files/' \n",
373+
" r = requests.put('https://clowderframework.org/clowder/api/files/' \n",
374374
" + file_id +'/updateDescription',\n",
375375
" data=payload,\n",
376376
" headers=headers,\n",
@@ -411,7 +411,7 @@
411411
" \n",
412412
" payload = json.dumps(metadata)\n",
413413
" headers = {'Content-type': 'application/json', 'accept': 'application/json'}\n",
414-
" r = requests.post('https://clowder.ncsa.illinois.edu/clowder/api/files/' + file_id +'/metadata',\n",
414+
" r = requests.post('https://clowderframework.org/clowder/api/files/' + file_id +'/metadata',\n",
415415
" data=payload,\n",
416416
" headers=headers,\n",
417417
" auth=auth)\n",
@@ -443,7 +443,7 @@
443443
"source": [
444444
"def delete_file(file_id):\n",
445445
" \n",
446-
" r = requests.delete('https://clowder.ncsa.illinois.edu/clowder/api/files/'+ file_id, auth=auth)\n",
446+
" r = requests.delete('https://clowderframework.org/clowder/api/files/'+ file_id, auth=auth)\n",
447447
" print(r.status_code)\n",
448448
" print(r.text)"
449449
]

0 commit comments

Comments
 (0)