Skip to content

Commit 7afe26c

Browse files
author
R. S. Doiel
committed
Quick Save
1 parent 0a05b3a commit 7afe26c

15 files changed

+26
-24
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors:
1313

1414

1515
repository-code: "https://github.com/caltechlibrary/articlefetch"
16-
version: 0.0.0
17-
date-released: 2025-10-23
16+
version: 0.0.1
17+
date-released: 2025-10-24
1818

1919

about.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ <h3 id="authors">Authors</h3>
3131
<li>R. S. Doiel, <a href="https://orcid.org/0000-0003-0900-6903"
3232
class="uri">https://orcid.org/0000-0003-0900-6903</a></li>
3333
</ul>
34-
<p>A client that will submit an search to an RDM instance and retrieve
35-
the articles in the results.</p>
34+
<p>A client that will find the person ID provided in Caltech Library's
35+
feed then retrieve the list of articles before fetching the PDFs from
36+
our RDM instance.</p>
3637
<ul>
3738
<li>GitHub: <a href="https://github.com/caltechlibrary/articlefetch"
3839
class="uri">https://github.com/caltechlibrary/articlefetch</a></li>

about.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,20 @@ authors:
1010

1111

1212
repository_code: https://github.com/caltechlibrary/articlefetch
13-
version: 0.0.0
13+
version: 0.0.1
1414

1515

1616

1717

18-
date_released: 2025-10-23
18+
date_released: 2025-10-24
1919
---
2020

2121
About this software
2222
===================
2323

24-
## articlefetch 0.0.0
25-
24+
## articlefetch 0.0.1
2625

26+
working proof of concept
2727

2828
### Authors
2929

articlefetch.1.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
<h1 id="name">NAME</h1>
2828
<p>articlefetch</p>
2929
<h1 id="synopsis">SYNOPSIS</h1>
30-
<p>articlefetch <a href="#options">OPTIONS</a> HOSTNAME QUERY_STRING</p>
30+
<p>articlefetch <a href="#options">OPTIONS</a> RDM_HOSTNAME CLPID</p>
3131
<h1 id="description">DESCRIPTION</h1>
32-
<p>Take the HOSTNAME and QUERY_STRING values, retrieve the results from
33-
RDM and then using the results retrieve the PDFs.</p>
32+
<p>Use the CLPID provided to retreive a list of article from feeds, then
33+
use the RDM_HOSTNAME to retrieve the PDFs for the articles found.</p>
3434
<h1 id="options">OPTIONS</h1>
3535
<dl>
3636
<dt>-help</dt>
@@ -47,7 +47,7 @@ <h1 id="options">OPTIONS</h1>
4747
</dd>
4848
</dl>
4949
<h1 id="example">EXAMPLE</h1>
50-
<pre class="shell"><code>articlefetch authors.library.caltech.edu &quot;Grubbs, Robert&quot;</code></pre>
50+
<pre class="shell"><code>articlefetch authors.library.caltech.edu Grubbs-R-H</code></pre>
5151
</section>
5252
<footer-global></footer-global>
5353
</body>

articlefetch.1.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
%articlefetch(1) user manual | version 0.0.0 e1aa0c9
1+
%articlefetch(1) user manual | version 0.0.1 0a05b3a
22
% R. S. Doiel
3-
% 2025-10-23
3+
% 2025-10-24
44

55
# NAME
66

index.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@
2525
</nav>
2626
<section>
2727
<h1 id="articlefetch">articlefetch</h1>
28-
<p>A client that will submit an search to an RDM instance and retrieve
29-
the articles in the results.</p>
28+
<p>A client that will find the person ID provided in Caltech Library’s
29+
feed then retrieve the list of articles before fetching the PDFs from
30+
our RDM instance.</p>
3031
<h3 id="authors">Authors</h3>
3132
<ul>
3233
<li>Doiel, R. S.</li>

installer.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env pwsh
2-
# generated with CMTools 0.0.0 e1aa0c9
2+
# generated with CMTools 0.0.1 0a05b3a
33

44
#
55
# Set the package name and version to install
66
#
77
param(
88
[Parameter()]
9-
[String]$VERSION = "0.0.0"
9+
[String]$VERSION = "0.0.1"
1010
)
1111
[String]$PKG_VERSION = [Environment]::GetEnvironmentVariable("PKG_VERSION")
1212
if ($PKG_VERSION) {

installer.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/sh
2-
# generated with CMTools 0.0.0 e1aa0c9
2+
# generated with CMTools 0.0.1 0a05b3a
33

44
#
55
# Set the package name and version to install
66
#
77
PACKAGE="articlefetch"
8-
VERSION="0.0.0"
8+
VERSION="0.0.1"
99
GIT_GROUP="caltechlibrary"
1010
RELEASE="https://github.com/$GIT_GROUP/$PACKAGE/releases/tag/v$VERSION"
1111
if [ "$PKG_VERSION" != "" ]; then
345 Bytes
Binary file not shown.
398 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)