Thank you! That's exactly what I was looking for!

On 2025.01.12 23.01, ooRexx wrote:
Some examples:


/usr/bin/curl -L --insecure https://sourceforge.net/projects/oorexx/files/oorexx-docs/5.1.0beta/rexxref.pdf > oorexxDocs/rexxref.pdf

wget --no-check-certificate --no-verbose --timestamping --no-if-modified-since https://sourceforge.net/projects/oorexx/files/oorexx-docs/5.1.0beta/rexxref.pdf > rexxref.pdf

To get all in one go use one of the following

ooRexx-5.1.0beta-pdf.zip
ooRexx-5.1.0beta-html.zip
ooRexx-5.1.0beta-all.zip

I use cURL a lot to get things of a database API, here is an example that you can modify or take inspiration from.

  _Pre  = 'curl -X GET --header "Authorization: Bearer'
  _Mid  = '" "https://ops.epo.org/3.2/rest-services/published-data/publication/epodoc/'
  _Post = '/biblio"'

  _cURL = _Pre  _token || _Mid || _input || _Post

  ADDRESS 'path' _cURL '--silent --include --output' OPSfile

Hope it helps to get you going.

Hälsningar/Regards/Grüsse,
ooRexx
oor...@jonases.se



Am 13.01.2025 um 07:10 schrieb P. O. Jonsson <oor...@jonases.se>:

Hi,

You can use cURL or WGET, we do that for the builds,

Von meinem iPhone gesendet
P.O. Jonsson


Am 13.01.2025 um 01:20 schrieb tango <tango...@gmail.com>:



That link makes use of a browser, I'm try to get access by program (ooRexx, natch) from a server (headless).   Access to individual files on SF is difficult (impossible?) from a program.  That's why I asked about access to build system files or build system produced files.  I could just download all the books and store them on the website (or someplace accessible from the website), but then someone would have to repeat that process every time a book was updated.  I'm really looking for access where I just pick up the latest-and-greatest automagically🙂

On 2025.01.12 14.01, René Jansen wrote:
Hi Terry,

everything OK with you and Julia? We saw the horrible fires on the news.

I would think svn is you friend here, if you checkout ooRexx then https://sourceforge.net/projects/oorexx/files/oorexx-docs/5.1.0beta/ contains the current docs.

best regards,

René.

On 12 Jan 2025, at 22:52, taf <t...@pgmguild.com> wrote:

Is there a way to access the ooRexx documentation books, not via browser download, but something like curl or scp? I can download and copy, but I'd like to be able to programmatically access the current books as produced by the build system.

--
taf



_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel



_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel
--
taf
_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel
_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel



_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

--
taf
_______________________________________________
Oorexx-devel mailing list
Oorexx-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/oorexx-devel

Reply via email to