Subversion Repositories bdplot

Rev

Rev 5 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5 Rev 68
Line 7... Line 7...
7
    if(!is.na(file.info("~/.bdp_config.R")$size))
7
    if(!is.na(file.info("~/.bdp_config.R")$size))
8
      {
8
      {
9
        cat("Sourcing ~/.bdp_config.R\n")
9
        cat("Sourcing ~/.bdp_config.R\n")
10
        source(file="~/.bdp_config.R")
10
        source(file="~/.bdp_config.R")
11
      }
11
      }
12
    if(!is.na(file.info(paste(wd,"bdp_config_local.R",sep="/"))$size))
12
    localconf <- paste(wd,"bdp_config_local.R",sep="/")
-
 
13
    if(!is.na(file.info(localconf)$size))
13
      {
14
      {
14
        cat("Sourcing bdp_config_local.R\n")
15
        cat("Sourcing ",localconf,"\n")
15
        source(file="bdp_config_local.R")
16
        source(file="bdp_config_local.R")
16
      }
17
      }
17
    ##     .BDPars.default should be set to .BDPars
18
    ##     .BDPars.default should be set to .BDPars
18
    .bdsetdefpars(.bdgetpars())
19
    .bdsetdefpars(.bdgetpars())
19
  } else {
20
  } else {