Skip to content

Commit 8084df2

Browse files
author
R. S. Doiel
committed
prep for v0.0.30, Replace People List A to Z UL with a sortable table version.
1 parent 26fc9a1 commit 8084df2

25 files changed

+59
-27
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ contacts:
2929
email: rsdoiel@caltech.edu
3030

3131
repository-code: "https://github.com/caltechlibrary/cold"
32-
version: 0.0.29
32+
version: 0.0.30
3333
date-released: 2025-05-13
3434

3535
license-url: "https://caltechlibrary.github.io/cold/LICENSE"

about.html

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,8 @@
1919
</nav>
2020
<section>
2121
<h1 id="about-this-software">About this software</h1>
22-
<h2 id="cold-0.0.29">cold 0.0.29</h2>
23-
<p>Improved Thesis Option Vacabulary curation. Setup for importing
24-
Thesis Options.</p>
22+
<h2 id="cold-0.0.30">cold 0.0.30</h2>
23+
<p>Replace People List A to Z UL with a sortable table version.</p>
2524
<h3 id="authors">Authors</h3>
2625
<ul>
2726
<li>R. S. Doiel, <a href="https://orcid.org/0000-0003-0900-6903"

about.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ maintainer:
3232
id: https://orcid.org/0000-0003-0900-6903
3333

3434
repository_code: https://github.com/caltechlibrary/cold
35-
version: 0.0.29
35+
version: 0.0.30
3636
license_url: https://caltechlibrary.github.io/cold/LICENSE
3737
operating_system:
3838
- Linux
@@ -58,9 +58,9 @@ date_released: 2025-05-13
5858
About this software
5959
===================
6060

61-
## cold 0.0.29
61+
## cold 0.0.30
6262

63-
Improved Thesis Option Vacabulary curation. Setup for importing Thesis Options.
63+
Replace People List A to Z UL with a sortable table version.
6464

6565
### Authors
6666

codemeta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,9 +96,9 @@
9696
"Dataset >= 2.2",
9797
"CMTools >= 0.0.25"
9898
],
99-
"version": "0.0.29",
99+
"version": "0.0.30",
100100
"developmentStatus": "wip",
101101
"issueTracker": "https://github.com/caltechlibrary/cold/issues",
102102
"downloadUrl": "https://github.com/caltechlibrary/cold/release/latest",
103-
"releaseNotes": "Improved Thesis Option Vacabulary curation. Setup for importing Thesis Options."
103+
"releaseNotes": "Replace People List A to Z UL with a sortable table version."
104104
}

cold.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%cold(1) user manual | 0.0.29 df3dce7
1+
%cold(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

cold_reports.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%cold_reports(1) user manual | 0.0.29 df3dce7
1+
%cold_reports(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

directory_sync.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%directory_sync(1) user manual | 0.0.29 df3dce7
1+
%directory_sync(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

division_people.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%division_people(1) user manual | 0.0.29 df3dce7
1+
%division_people(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

division_people.sql

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
select
2+
json_object(
3+
'division', src->'division',
4+
'clpid', src->'cl_people_id',
5+
'orcid', src->'orcid',
6+
'family_name', src->'family_name',
7+
'given_name', src->'given_name'
8+
) as src
9+
from people
10+
where src->>'division' != ''
11+
order by src->>'division', src->>'family_name', src->>'given_name';

group_vocabulary.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%group_vocabulary(1) user manual | 0.0.29 df3dce7
1+
%group_vocabulary(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

htdocs/about.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
<section>
2222

2323
<h1>About this software</h1>
24-
<h2>cold 0.0.29</h2>
25-
<p>Improved Thesis Option Vacabulary curation. Setup for importing Thesis Options.</p>
24+
<h2>cold 0.0.30</h2>
25+
<p>Replace People List A to Z UL with a sortable table version.</p>
2626
<h3>Authors</h3>
2727
<ul>
2828
<li>R. S. Doiel, <a href="https://orcid.org/0000-0003-0900-6903">https://orcid.org/0000-0003-0900-6903</a></li>

htdocs/about.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ maintainer:
3232
id: https://orcid.org/0000-0003-0900-6903
3333

3434
repository_code: https://github.com/caltechlibrary/cold
35-
version: 0.0.29
35+
version: 0.0.30
3636
license_url: https://caltechlibrary.github.io/cold/LICENSE
3737
operating_system:
3838
- Linux
@@ -58,9 +58,9 @@ date_released: 2025-05-13
5858
About this software
5959
===================
6060

61-
## cold 0.0.29
61+
## cold 0.0.30
6262

63-
Improved Thesis Option Vacabulary curation. Setup for importing Thesis Options.
63+
Replace People List A to Z UL with a sortable table version.
6464

6565
### Authors
6666

installer.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Set the package name and version to install
66
#
77
$PACKAGE = "cold"
8-
$VERSION = "0.0.29"
8+
$VERSION = "0.0.30"
99
$GIT_GROUP = "caltechlibrary"
1010
$RELEASE = "https://github.com/${GIT_GROUP}/${PACKAGE}/releases/tag/v${VERSION}"
1111
$SYSTEM_TYPE = Get-ComputerInfo -Property CsSystemType

installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Set the package name and version to install
55
#
66
PACKAGE="cold"
7-
VERSION="0.0.29"
7+
VERSION="0.0.30"
88
GIT_GROUP="caltechlibrary"
99
RELEASE="https://github.com/$GIT_GROUP/$PACKAGE/releases/tag/v$VERSION"
1010

journal_vocabulary.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%journal_vocabulary(1) user manual | 0.0.29 df3dce7
1+
%journal_vocabulary(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

957 Bytes
Binary file not shown.

pagefind/index/en-US_e021e0c.pf_index

25.1 KB
Binary file not shown.

pagefind/pagefind-entry.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"version":"1.3.0","languages":{"en-US":{"hash":"en-US_563b9cd2d4f89","wasm":"en-US","page_count":20}}}
1+
{"version":"1.3.0","languages":{"en-US":{"hash":"en-US_92e232cde75ca","wasm":"en-US","page_count":20}}}
242 Bytes
Binary file not shown.

people_vocabulary.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%people_vocabulary(1) user manual | 0.0.29 df3dce7
1+
%people_vocabulary(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

prune_journal_vocabulary.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
delete from reports
2+
where _key in (
3+
select _key from reports
4+
where src->>'status' = 'completed' and src->>'report_name' = 'journal_vocabulary'
5+
order by updated desc
6+
limit 1000 offset 1);

prune_run_journal_vocabulary.sql

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
delete from reports
2+
where _key in (
3+
select _key from reports
4+
where src->>'status' = 'completed' and src->>'report_name' = 'run_journal_vocabulary'
5+
order by updated desc
6+
limit 1000 offset 1);

push_group_vocabulary.sql

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
--- Push group_volabulary request into reports system.
3+
---
4+
delete from reports where _key = 'group_vocabulary';
5+
insert into reports (
6+
_key, src
7+
) values (
8+
'group_vocabulary',
9+
'{ "id": "group_vocabulary", "content_type": "text/csv", "email": "", "link": "", "report_name": "people_vocabulary", "status": "requested", "requested": "2025-05-12T21:20:08Z", "updated": "2025-05-12T21:20:08Z" }'
10+
);

thesis_option_vocabulary.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
%thesis_option_vocabulary(1) user manual | 0.0.29 df3dce7
1+
%thesis_option_vocabulary(1) user manual | 0.0.30 26fc9a1
22
% R. S.Doiel
33
% 2025-05-13
44

version.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
// cold version and license information.
22

3-
export const version: string = '0.0.29',
3+
export const version: string = '0.0.30',
44
releaseDate: string = '2025-05-13',
5-
releaseHash: string = 'df3dce7',
5+
releaseHash: string = '26fc9a1',
66
licenseText: string = `
77
88
Copyright (c) 2024, Caltech

0 commit comments

Comments
 (0)