Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
871d799
Adjust state logic for Edit and Delete action buttons in table row
leekahung Nov 14, 2024
e7572df
Moving version from 1.1.0 to 1.1.1 for bug fix
leekahung Nov 14, 2024
a5263d5
Merge pull request #687 from codeforpdx/issue-686/fix-my-documents-ac…
leekahung Nov 14, 2024
82a0ecd
Adding copy webid util
andycwilliams Nov 14, 2024
ef5ac78
Changing color to hex code, making action order consistent
andycwilliams Nov 14, 2024
edc73a3
update outbox recipient text
oddwili Nov 18, 2024
501d0ae
update tests
oddwili Nov 18, 2024
ba36f82
run prettier
oddwili Nov 18, 2024
062e51f
add test for recipient text
oddwili Nov 18, 2024
db63717
run prettier
oddwili Nov 18, 2024
be79cad
update flex values for preview, delete, share
oddwili Nov 18, 2024
d899149
remove unused code
oddwili Nov 18, 2024
7c38bda
Merge pull request #692 from codeforpdx/issue-690/add-copywebid-deskt…
andycwilliams Nov 19, 2024
6b37f9a
Merge pull request #695 from codeforpdx/693/update-outbox-recipient-text
oddwili Nov 20, 2024
d14f318
Merge pull request #696 from codeforpdx/689/resize-documents-columns
oddwili Nov 20, 2024
5b733ef
Enhances #694 - Add notification for inaccessible documents
omarNaifer12 Nov 22, 2024
9e11756
Merge pull request #698 from omarNaifer12/694_issue
omarNaifer12 Dec 3, 2024
5086a1d
Adjust message sent logic for NewMessageModal depending on page location
leekahung Dec 13, 2024
3126622
changed http to https for opencommons.net
leekahung Dec 13, 2024
ac515af
Fixing unit tests
leekahung Dec 13, 2024
abc9c3b
Merge pull request #700 from codeforpdx/issue-699/bug-fix-contacts-me…
leekahung Dec 13, 2024
d6a8fa8
added configs for css v7 deployment used on opencommons
Jared-Krajewski Dec 13, 2024
3cc4ab4
removed repeated url from base_url in css compose.yaml
Jared-Krajewski Dec 13, 2024
02a1802
Merge pull request #702 from codeforpdx/701-update-CSS-configs
Jared-Krajewski Dec 13, 2024
c5c9b48
Update version number from 1.1.1 to 1.2.0; Ran npm audit fix to patch…
leekahung Dec 13, 2024
b8d6beb
Merge pull request #703 from codeforpdx/version-upgrade-v1.2.0
leekahung Dec 13, 2024
d3818ba
Merge branch 'Master' into Development
leekahung Dec 13, 2024
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
3 changes: 3 additions & 0 deletions config/solid-server/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
solid-remote-server-compose.yaml && solid-remote-server-config.json are templates for deploying the server remotely. The server URL can be updated as needed, the current setup is for our deployment on opencommons.

The config should be stored as /config/solid-server/solid-config.json and solid-remote-server-compose.yaml stored at the community solid server root.
13 changes: 13 additions & 0 deletions config/solid-server/solid-remote-server-compose.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
services:
solid-server:
image: solidproject/community-server:7.0
restart: always
user: root
ports:
- '3000:3000'
environment:
- BASE_URL=https://opencommons.net
command: ['--baseUrl', 'https://opencommons.net']
volumes:
- ./data/solid-data:/data
- ./config/solid-server/solid-config.json:/community-server/config/my-config.json
51 changes: 51 additions & 0 deletions config/solid-server/solid-remote-server-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
{
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^7.0.0/components/context.jsonld",
"import": [
"css:config/app/init/static-root.json",
"css:config/app/main/default.json",
"css:config/app/variables/default.json",
"css:config/http/handler/default.json",
"css:config/http/middleware/default.json",
"css:config/http/notifications/all.json",
"css:config/http/server-factory/http.json",
"css:config/http/static/default.json",
"css:config/identity/access/public.json",
"css:config/identity/email/default.json",
"css:config/identity/handler/default.json",
"css:config/identity/oidc/default.json",
"css:config/identity/ownership/token.json",
"css:config/identity/pod/static.json",
"css:config/ldp/authentication/dpop-bearer.json",
"css:config/ldp/authorization/webacl.json",
"css:config/ldp/handler/default.json",
"css:config/ldp/metadata-parser/default.json",
"css:config/ldp/metadata-writer/default.json",
"css:config/ldp/modes/default.json",
"css:config/storage/backend/file.json",
"css:config/storage/key-value/resource-store.json",
"css:config/storage/location/pod.json",
"css:config/storage/middleware/default.json",
"css:config/util/auxiliary/acl.json",
"css:config/util/identifiers/suffix.json",
"css:config/util/index/default.json",
"css:config/util/logging/winston.json",
"css:config/util/representation-conversion/default.json",
"css:config/util/resource-locker/file.json",
"css:config/util/variables/default.json"
],
"@graph": [],
"servers": [
{
"serverUri": "https://opencommons.net/",
"locations": [
{
"url": "https://opencommons.net/",
"availableMediaTypes": ["text/turtle"],
"basePath": "/",
"description": "This config was generated by generator and very basic"
}
]
}
],
"baseUrl": "https://opencommons.net/"
}
2 changes: 1 addition & 1 deletion env.template
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
VITE_SOLID_IDENTITY_PROVIDER="http://localhost:3000/"
VITE_SOLID_POD_SERVER="http://localhost:3000/"
VITE_SUGGESTED_OIDC_OPTIONS="http://localhost:3000/, https://opencommons.net/, https://solidcommunity.net/, https://login.inrupt.com/, https://inrupt.net/"
VITE_OIDC_WEBIDS = '{"http://localhost:3000/": "http://localhost:3000/user/profile/card#me", "https://opencommons.net/": "http://opencommons.net/user/profile/card#me", "https://solidcommunity.net/": "https://user.solidcommunity.net/profile/card#me", "https://login.inrupt.com/": "https://id.inrupt.com/user", "https://inrupt.net/": "https://id.inrupt.com/user"}'
VITE_OIDC_WEBIDS = '{"http://localhost:3000/": "http://localhost:3000/user/profile/card#me", "https://opencommons.net/": "https://opencommons.net/user/profile/card#me", "https://solidcommunity.net/": "https://user.solidcommunity.net/profile/card#me", "https://login.inrupt.com/": "https://id.inrupt.com/user", "https://inrupt.net/": "https://id.inrupt.com/user"}'
VITE_CLIENT_ID_DOC="http://localhost:3000/clientAppId.json"
Loading
Loading