From 1770e02dc6f28d479adeb41e08a8f9a96192a92f Mon Sep 17 00:00:00 2001 From: Henrik Bengtsson Date: Wed, 29 May 2024 14:02:57 -0700 Subject: [PATCH] README: Link to ISC working group --- README.md | 8 ++++++++ pkgdown/_pkgdown.yml | 14 +++++++------- pkgdown/_pkgdown.yml.rsp | 8 +++++--- 3 files changed, 20 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index d3ef3cb..309bfa3 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,14 @@ # marshal: Unified API for Marshalling R Objects +## News + +* May 2024: We have launched the R Consortium ISC Working Group + ['Marshaling and Serialization in + R'](https://github.com/RConsortium/marshalling-wg) to work on this + problem. + + ## Introduction Some types of R objects can be used only in the R session they were diff --git a/pkgdown/_pkgdown.yml b/pkgdown/_pkgdown.yml index cb88373..f1b2ffd 100644 --- a/pkgdown/_pkgdown.yml +++ b/pkgdown/_pkgdown.yml @@ -19,18 +19,20 @@ navbar: pkgs: text: Packages menu: - - text: doFuture + - text: doFuture (map-reduce) href: https://doFuture.futureverse.org - - text: furrr + - text: furrr (map-reduce) href: https://furrr.futureverse.org - text: future href: https://future.futureverse.org - - text: future.apply + - text: future.apply (map-reduce) href: https://future.apply.futureverse.org - - text: future.batchtools + - text: future.batchtools (backend) href: https://future.batchtools.futureverse.org - - text: future.callr + - text: future.callr (backend) href: https://future.callr.futureverse.org + - text: future.mirai (backend) + href: https://future.mirai.futureverse.org - text: future.tests href: https://future.tests.futureverse.org - text: globals @@ -45,8 +47,6 @@ navbar: href: https://BiocParallel.FutureParam.futureverse.org - text: future.tools (experimental) href: https://future.tools.futureverse.org - - text: future.mirai (experimental) - href: https://future.mirai.futureverse.org - text: future.mapreduce (experimental) href: https://future.mapreduce.futureverse.org - text: marshal (experimental) diff --git a/pkgdown/_pkgdown.yml.rsp b/pkgdown/_pkgdown.yml.rsp index 6d931ca..fc1792a 100644 --- a/pkgdown/_pkgdown.yml.rsp +++ b/pkgdown/_pkgdown.yml.rsp @@ -1,6 +1,8 @@ <% -pkgs <- c("globals", "listenv", "parallelly", "future", "future.apply", "furrr", "future.tests", "future.callr", "future.batchtools", "doFuture", "progressr") -pkgs_extra <- c("BiocParallel.FutureParam", "future.tools", "future.mirai", "future.mapreduce", "marshal") +pkgs_mapreduce <- c("future.apply", "doFuture", "furrr") +pkgs_backend <- c("future.batchtools", "future.callr", "future.mirai") +pkgs <- c("globals", "listenv", "parallelly", "future", "future.tests", "progressr", pkgs_mapreduce, pkgs_backend) +pkgs_extra <- c("BiocParallel.FutureParam", "future.tools", "future.mapreduce", "marshal") pkgs <- c(sort(pkgs), pkgs_extra) urls <- sprintf("https://%s.futureverse.org", pkgs) names(urls) <- pkgs @@ -33,7 +35,7 @@ navbar: text: Packages menu: <% for (name in names(urls)) { %> - - text: <%= name %> <% if (name %in% pkgs_extra) { %>(experimental)<% } %> + - text: <%= name %> <% if (name %in% pkgs_extra) { %>(experimental)<% } else if (name %in% pkgs_backend) { %>(backend)<% } else if (name %in% pkgs_mapreduce) { %>(map-reduce)<% } %> href: <%= urls[name] %> <% } %> cran: