summaryrefslogtreecommitdiff
path: root/src/scm/webid-oidc
diff options
context:
space:
mode:
Diffstat (limited to 'src/scm/webid-oidc')
-rw-r--r--src/scm/webid-oidc/cache.scm4
-rw-r--r--src/scm/webid-oidc/client.scm4
-rw-r--r--src/scm/webid-oidc/example-app.scm2
-rw-r--r--src/scm/webid-oidc/program.scm8
-rw-r--r--src/scm/webid-oidc/refresh-token.scm4
-rw-r--r--src/scm/webid-oidc/testing.scm2
6 files changed, 12 insertions, 12 deletions
diff --git a/src/scm/webid-oidc/cache.scm b/src/scm/webid-oidc/cache.scm
index 8b8c480..dbf0112 100644
--- a/src/scm/webid-oidc/cache.scm
+++ b/src/scm/webid-oidc/cache.scm
@@ -1,4 +1,4 @@
-;; webid-oidc, implementation of the Solid specification
+;; disfluid, implementation of the Solid specification
;; Copyright (C) 2020, 2021 Vivien Kraus
;; This program is free software: you can redistribute it and/or modify
@@ -52,7 +52,7 @@
(let ((xdg-cache-home
(or (getenv "XDG_CACHE_HOME")
(format #f "~a/.cache" (getenv "HOME")))))
- (format #f "~a/webid-oidc" xdg-cache-home)))
+ (format #f "~a/disfluid" xdg-cache-home)))
(define (web-cache-dir dir)
(when (thunk? dir)
diff --git a/src/scm/webid-oidc/client.scm b/src/scm/webid-oidc/client.scm
index 83bca37..e8796c0 100644
--- a/src/scm/webid-oidc/client.scm
+++ b/src/scm/webid-oidc/client.scm
@@ -1,4 +1,4 @@
-;; webid-oidc, implementation of the Solid specification
+;; disfluid, implementation of the Solid specification
;; Copyright (C) 2020, 2021 Vivien Kraus
;; This program is free software: you can redistribute it and/or modify
@@ -259,7 +259,7 @@
(getenv "XDG_DATA_HOME")
(format #f "~a/.local/share"
(getenv "HOME")))))
- (format #f "~a/webid-oidc" xdg-data-home)))
+ (format #f "~a/disfluid" xdg-data-home)))
(define*-public (list-profiles #:key (dir default-dir))
(when (thunk? dir)
diff --git a/src/scm/webid-oidc/example-app.scm b/src/scm/webid-oidc/example-app.scm
index 8d11c73..f0fcdd3 100644
--- a/src/scm/webid-oidc/example-app.scm
+++ b/src/scm/webid-oidc/example-app.scm
@@ -1,4 +1,4 @@
-;; webid-oidc, implementation of the Solid specification
+;; disfluid, implementation of the Solid specification
;; Copyright (C) 2020, 2021 Vivien Kraus
;; This program is free software: you can redistribute it and/or modify
diff --git a/src/scm/webid-oidc/program.scm b/src/scm/webid-oidc/program.scm
index 4fbc34a..4d469f3 100644
--- a/src/scm/webid-oidc/program.scm
+++ b/src/scm/webid-oidc/program.scm
@@ -1,4 +1,4 @@
-;; webid-oidc, implementation of the Solid specification
+;; disfluid, implementation of the Solid specification
;; Copyright (C) 2020, 2021 Vivien Kraus
;; This program is free software: you can redistribute it and/or modify
@@ -286,7 +286,7 @@
(car (command-line)))
(format #t (G_ "
-Run the webid-oidc COMMAND."))
+Run the disfluid COMMAND."))
(format #t "\n")
(format #t (G_ "
This program is covered by the GNU Affero GPL, version 3 or
@@ -361,7 +361,7 @@ Options for the resource server:"))
(format #t (G_ "
-H HEADER, --~a=HEADER:
the HEADER field contains the webid of the authenticated user,
- XXX-Agent by default. For the full server, disable webid-oidc
+ XXX-Agent by default. For the full server, disable Solid-OIDC
authentication.")
header-sym)
(format #t (G_ "
@@ -552,7 +552,7 @@ options for the parts."))
~a ~a \\
--~a 'https://webid-oidc.planete-kraus.eu/complete-corresponding-source.tar.gz' \\
--~a 'https://data.planete-kraus.eu' \\
- --~a '/var/lib/webid-oidc/server/key.jwk' \\
+ --~a '/var/lib/disfluid/server/key.jwk' \\
--~a 'https://data.planete-kraus.eu/vivien#me' \\
--~a '$...alg...$...salt...$...hash...' \\
--~a 'https://data.planete-kraus.eu/keys' \\
diff --git a/src/scm/webid-oidc/refresh-token.scm b/src/scm/webid-oidc/refresh-token.scm
index f9ceada..34b2f1b 100644
--- a/src/scm/webid-oidc/refresh-token.scm
+++ b/src/scm/webid-oidc/refresh-token.scm
@@ -1,4 +1,4 @@
-;; webid-oidc, implementation of the Solid specification
+;; disfluid, implementation of the Solid specification
;; Copyright (C) 2020, 2021 Vivien Kraus
;; This program is free software: you can redistribute it and/or modify
@@ -28,7 +28,7 @@
(getenv "XDG_DATA_HOME")
(format #f "~a/.local/share"
(getenv "HOME")))))
- (format #f "~a/webid-oidc" xdg-data-home)))
+ (format #f "~a/disfluid" xdg-data-home)))
(define*-public (list-refresh-tokens
#:key
diff --git a/src/scm/webid-oidc/testing.scm b/src/scm/webid-oidc/testing.scm
index f6a5b16..0aec4b8 100644
--- a/src/scm/webid-oidc/testing.scm
+++ b/src/scm/webid-oidc/testing.scm
@@ -28,7 +28,7 @@
(catch #t
(lambda () (mkdir cache-dir))
(lambda err #t))
- (let ((pkg-cache-dir (format #f "~a/webid-oidc" cache-dir)))
+ (let ((pkg-cache-dir (format #f "~a/disfluid" cache-dir)))
(catch #t
(lambda () (mkdir pkg-cache-dir))
(lambda err #t))