Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# I-GUIDE catalog API
I-GUIDE Catalog API
# HydroShare catalog API
HydroShare Catalog API

### Getting Started
```console
Expand Down
2 changes: 1 addition & 1 deletion api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ async def health_check():
app.mount("/api/schemas", StaticFiles(directory=static_dir), name="schemas")

openapi_schema = get_openapi(
title="I-GUIDE Catalog API",
title="HydroShare Catalog API",
version="1.0",
description="Standardized interface with validation for managing catalog",
routes=app.routes,
Expand Down
2 changes: 1 addition & 1 deletion frontend/.env.template
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VUE_APP_NAME=
VUE_APP_NAME=HydroShare
VUE_APP_URL=
VUE_APP_API_URL=
VUE_APP_LOGIN_URL=
Expand Down
Binary file modified frontend/public/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 0 additions & 28 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -212,39 +212,11 @@ export default class App extends Vue {
onCancel: () => {},
};
public paths: any[] = [
{
attrs: { to: "/" },
label: "Home",
icon: "mdi-home",
},
{
attrs: { to: "/search" },
label: "Search",
icon: "mdi-magnify",
},
{
attrs: { to: "/submissions" },
label: "My Submissions",
icon: "mdi-book-multiple",
isActive: () =>
this.$route.name === "dataset" || this.$route.name === "dataset-edit",
},
{
attrs: { to: "/contribute" },
label: "Contribute",
icon: "mdi-book-plus",
isActive: () => this.$route.name === "contribute",
},
{
attrs: { to: "/register" },
label: "Register",
icon: "mdi-link-plus",
},
// {
// attrs: { href: "https://dsp.criticalzone.org/" },
// label: "Contribute Data",
// icon: "mdi-book-plus",
// },
];

protected get isLoggedIn(): boolean {
Expand Down
Binary file modified frontend/src/assets/img/logo-w.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
71 changes: 0 additions & 71 deletions frontend/src/components/about/cd.about.vue

This file was deleted.

11 changes: 5 additions & 6 deletions frontend/src/components/base/cd.footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@
</p>
<p>
Learn more about
<a href="https://www.i-guide.org/" target="_blank">I-GUIDE</a>
<a href="https://www.hydroshare.org/" target="_blank">HydroShare</a>
</p>
<p>
Visit
<a href="https://www.i-guide.org/" target="_blank">i-guide.org</a>
<a href="https://www.hydroshare.org/" target="_blank">hydroshare.org</a>
</p>
</div>

<div>
<div class="mb-4 text-h6">Open Source</div>
<p>
The I-GUIDE Catalog and Discover system are Open Source. Find us on
The HydroShare Catalog and Discover system are Open Source. Find us on
<a href="https://github.com/I-GUIDE/catalogapi" target="_blank"
>GitHub</a
>.
Expand All @@ -34,7 +34,7 @@
>here</a
>
</p>
<p>This is Version {{ version }} of the I-GUIDE catalog</p>
<p>This is Version {{ version }} of the HydroShare catalog</p>
</div>
</div>

Expand All @@ -43,8 +43,7 @@
<div class="text-center d-flex flex-column align-center mt-4">
<p>
(c) {{ year }} CUAHSI. This material is based upon work supported by
the National Science Foundation (NSF) under awards 2012893, 2012593, and
2012748.<br />
the National Science Foundation (NSF).<br />
Any opinions, findings, conclusions, or recommendations expressed in
this material are those of the authors and do not necessarily reflect
the views of the NSF.
Expand Down
51 changes: 0 additions & 51 deletions frontend/src/components/contact/cd.contact.vue

This file was deleted.

Loading