Skip to content

Commit 6ad4010

Browse files
committed
"unity cluster" -> "unityHPC platform"
1 parent 8cef3d5 commit 6ad4010

File tree

17 files changed

+27
-25
lines changed

17 files changed

+27
-25
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to the Unity Web Portal
1+
# Contributing to the UnityHPC Platform Account Portal
22

33
## Conventions
44

@@ -49,7 +49,7 @@ This repository will automatically check PRs for linting compliance.
4949

5050
While the environment is running, the following is accessible:
5151

52-
- http://127.0.0.1:8000 - Web Portal
52+
- http://127.0.0.1:8000 - Account Portal
5353
- http://127.0.0.1:8010 - PHPLDAPAdmin Portal
5454
- http://127.0.0.1:8020 - PHPMyAdmin Portal
5555
- http://127.0.0.1:8030 - Mailcatcher Portal
@@ -69,7 +69,7 @@ Notable users:
6969

7070
### Changes to Dev Environment
7171

72-
Should the default schema of the web portal change, the `ldap/bootstrap.ldif` and `sql/bootstrap.sql` must be updated for the LDAP server and the MySQL server, respectively.
72+
Should the default schema change, the `ldap/bootstrap.ldif` and `sql/bootstrap.sql` must be updated for the LDAP server and the MySQL server, respectively.
7373

7474
## Testing
7575

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
![UNITY](https://user-images.githubusercontent.com/40907639/137608695-2d914da2-1ecc-480b-a47e-a9e33b2b1b45.png)
22

3-
# Unity Web Portal
3+
# UnityHPC Account Portal
44

5-
Unity Web Portal is a PHP application built in top of MariaDB and LDAP which acts as a central user portal for high-performance-computing clusters.
5+
An identity management GUI for research computing written in PHP and built on MariaDB and OpenLDAP.
66

77
Typical Usage:
88

defaults/config.ini.default

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ repo = "https://github.com/UnityHPC/unity-web-portal" ; Upstream URL for the we
77

88
[site]
99
prefix = "" ; prefix of website, no ending / should be included
10-
name = "Unity Cluster" ; Name of the website
10+
name = "UnityHPC Account Portal" ; Name of the website
1111
url = "http://127.0.0.1:8000/" ; URL of the website
12-
description = "The Unity Web Portal is a lightweight HPC cluster front-end" ; Description of the website
12+
description = "The UnityHPC Account Portal is an identity management GUI for research computing" ; Description of the website
1313
logo = "logo.png" ; path to logo file, in the webroot/assets/branding folder
1414
terms_of_service_url = "https://github.com" ; this can be external or a portal page created with "content management"
1515
account_policy_url = "https://github.com" ; this can be external or a portal page created with "content management"

resources/lib/UnityGithub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class UnityGithub
88
public function getSshPublicKeys(string $username): array
99
{
1010
$url = "https://api.github.com/users/$username/keys";
11-
$headers = ["User-Agent: Unity Cluster User Portal"];
11+
$headers = ["User-Agent: UnityHPC Account Portal"];
1212

1313
$curl = curl_init();
1414
curl_setopt($curl, CURLOPT_URL, $url);

resources/lib/UnityGroup.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Exception;
77

88
/**
9-
* Class that represents a single PI group in the Unity Cluster.
9+
* Class that represents a single PI group in the UnityHPC Platform.
1010
*/
1111
class UnityGroup extends PosixGroup
1212
{

resources/lib/UnityLDAP.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
use PHPOpenLDAPer\LDAPEntry;
88

99
/**
10-
* An LDAP connection class which extends LDAPConn tailored for the Unity Cluster
10+
* An LDAP connection class which extends LDAPConn tailored for the UnityHPC Platform
1111
*/
1212
class UnityLDAP extends LDAPConn
1313
{

resources/mail/footer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
>
44
<span>
55
You are receiving this email because you have an account
6-
on the <?php echo getHyperlink("Unity Cluster", "/"); ?>.
6+
on the <?php echo getHyperlink("UnityHPC Platform", "/"); ?>.
77
If you would like to stop receiving these emails,
88
you may request to close your account by replying to this email.
99
</span>

resources/mail/group_created.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<p>Hello,</p>
77

88
<p>
9-
Your request for a PI account on the Unity cluster has been approved.
9+
Your request for a PI account on the UnityHPC Platform has been approved.
1010
You can access the management page for your group
1111
<?php echo getHyperlink("on this page", "panel/pi.php"); ?>.
1212
</p>

resources/mail/group_denied.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55

66
<p>Hello,</p>
77

8-
<p>Unfortunately, your request for a PI account on the Unity cluster has not been approved.
8+
<p>Unfortunately, your request for a PI account on the UnityHPC Platform has not been approved.
99
Usually, this is due to one of the following reasons:</p>
1010

1111
<ul>
1212
<li>You are not a PI at your organization</li>
1313
<li>We were not able to verify your PI status. In this case please reply with verification</li>
14-
<li>Your organization has not been authorized on the Unity Cluster.
14+
<li>Your organization has not been authorized on the UnityHPC Platform.
1515
In this case please reply with more information about your request</li>
1616
</ul>
1717

resources/mail/group_disband.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<p>Hello,</p>
77

8-
<p>Your PI group, <?php echo $data["group_name"]; ?>, has been disbanded on the Unity
9-
cluster. Any jobs associated with this PI account have been killed.</p>
8+
<p>Your PI group, <?php echo $data["group_name"]; ?>, has been disbanded on the UnityHPC Platform
9+
Any jobs associated with this PI account have been killed.</p>
1010

1111
<p>If you believe this to be a mistake, please reply to this email</p>

0 commit comments

Comments
 (0)