summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVivien Kraus <vivien@planete-kraus.eu>2021-07-30 11:58:08 +0200
committerVivien Kraus <vivien@planete-kraus.eu>2021-08-01 15:25:08 +0200
commited64c545c4723dc0efdb1265b05d682e11e4c1f6 (patch)
tree4c4393adc62bff130840c41d9fb137c939f12246 /src
parentc6f9d0a4878b2e94e92cc8fce5800fb43185be4d (diff)
Change the name!
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am4
-rwxr-xr-xsrc/disfluid (renamed from src/webid-oidc)2
-rwxr-xr-xsrc/disfluid-example-app (renamed from src/webid-oidc-example-app)2
-rwxr-xr-xsrc/disfluid-hello (renamed from src/webid-oidc-hello)2
-rw-r--r--src/random/random.c4
-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
11 files changed, 19 insertions, 19 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 930fe01..f30840e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -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
@@ -16,7 +16,7 @@
lib_LTLIBRARIES += %reldir%/libwebidoidc.la
-dist_bin_SCRIPTS += %reldir%/webid-oidc %reldir%/webid-oidc-hello %reldir%/webid-oidc-example-app
+dist_bin_SCRIPTS += %reldir%/disfluid %reldir%/disfluid-hello %reldir%/disfluid-example-app
AM_CPPFLAGS += -I %reldir% -I $(srcdir)/%reldir%
diff --git a/src/webid-oidc b/src/disfluid
index 765f62c..e596dd6 100755
--- a/src/webid-oidc
+++ b/src/disfluid
@@ -2,7 +2,7 @@
--no-auto-compile -s
!#
-;; 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/webid-oidc-example-app b/src/disfluid-example-app
index efa22a0..4c2a7d6 100755
--- a/src/webid-oidc-example-app
+++ b/src/disfluid-example-app
@@ -2,7 +2,7 @@
--no-auto-compile -s
!#
-;; 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/webid-oidc-hello b/src/disfluid-hello
index ea9d407..03795f1 100755
--- a/src/webid-oidc-hello
+++ b/src/disfluid-hello
@@ -2,7 +2,7 @@
--no-auto-compile -s
!#
-;; 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/random/random.c b/src/random/random.c
index 9c2faf3..fad151d 100644
--- a/src/random/random.c
+++ b/src/random/random.c
@@ -1,5 +1,5 @@
/*
- 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
@@ -201,7 +201,7 @@ webid_oidc_random_init (void)
char *cache_dir, *pkg_cache_dir, *filename;
char *home = getenv ("HOME");
char *xdg_cache_home = getenv ("XDG_CACHE_HOME");
- char *application = getenv ("WEBID_OIDC_APPLICATION_NAME");
+ char *application = getenv ("DISFLUID_APPLICATION_NAME");
static const char *default_application = PACKAGE;
FILE *seed_file;
FILE *system_rng_file;
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))