diff --git a/vignettes/_bugzilla_showcase.Rmd b/vignettes/_bugzilla_showcase.Rmd index 550d5d62..1235400e 100644 --- a/vignettes/_bugzilla_showcase.Rmd +++ b/vignettes/_bugzilla_showcase.Rmd @@ -50,7 +50,9 @@ The parameters necessary for analysis are kept in a project configuration file t tool <- parse_config("tools.yml") conf <- parse_config("conf/redhat.yml") -key <- get_bugzilla_project_key(conf) +key <- get_bugzilla_project_key(conf, "project_key_1") +save_issues_path_redhat <- get_bugzilla_issue_path(conf, "project_key_1") +save_issues_comments_path_redhat <- get_bugzilla_issue_comment_path(conf, "project_key_1") perceval_path <- get_tool_project("perceval", tool) ``` @@ -173,11 +175,6 @@ limit_upperbound to ensure full bug retrieval. Here, limit_upperbound is set to The save_issues_path and save_comments_path will be used to store Bugzilla data. -```{r eval = FALSE} -save_issues_path_redhat <- "../../rawdata/bugzilla/redhat/issues" -``` - - ```{r eval = FALSE} bugzilla_site <- "https://bugzilla.redhat.com/" start_timestamp <- "2023-05-02T00:48:57Z" @@ -232,7 +229,6 @@ More details at: https://github.com/kaiaulu/issues/285 ```{r} bugzilla_site <- "https://bugzilla.redhat.com" start_timestamp <- "2024-04-27T00:00:00Z" -save_issues_path_redhat <- "../../rawdata/redhat/bugzilla/issues" ``` ```{r eval = FALSE} @@ -245,10 +241,6 @@ head(bugzillarest_issues_table) %>% gt(auto_align = FALSE) ``` -```{r} -save_issues_comments_path_redhat <- "../../rawdata/redhat/bugzilla/issues_comments" -``` - ```{r eval = FALSE} download_bugzilla_rest_issues_comments_by_date(bugzilla_site, start_timestamp, save_issues_comments_path_redhat, key, limit_upperbound=20, comments=TRUE, verbose=TRUE) ```