Displaying 1 result from an estimated 1 matches for "vigfile".
Did you mean:
bigfile
2007 May 14
3
RFC: allow packages to advertise vignettes on Windows
...e
member I can interest in pushing this along? I'm willing to submit a
patch with documentation, etc.
+ seth
addVigs2WinMenu <- function(pkgName) {
if ((.Platform$OS.type == "windows") && (.Platform$GUI == "Rgui")
&& interactive()) {
vigFile <- system.file("Meta", "vignette.rds", package=pkgName)
if (!file.exists(vigFile)) {
warning(sprintf("%s contains no vignette, nothing is added to the menu bar", pkgName))
} else {
vigMtrx <- .readRDS(vigFile)
v...