Skip to content

Commit

Permalink
fix error in export URL for refitting datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastien-plutniak committed Dec 19, 2024
1 parent e9ca792 commit 23636e1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/app_server.R
Original file line number Diff line number Diff line change
Expand Up @@ -1722,7 +1722,7 @@ app_server <- function(input, output, session) {
edges.url <- paste0(session$clientData$url_protocol, "//",
session$clientData$url_hostname,
session$clientData$url_pathname,
"_w_", object.id2,
object.id2,
"/session/", session$token, "/download/download.archeofrag.edges")

# nodes
Expand All @@ -1738,7 +1738,7 @@ app_server <- function(input, output, session) {
nodes.url <- paste0(session$clientData$url_protocol, "//",
session$clientData$url_hostname,
session$clientData$url_pathname,
"_w_", object.id,
object.id,
"/session/", session$token, "/download/download.archeofrag.nodes")

paste0("https://analytics.huma-num.fr/Sebastien.Plutniak/archeofrag/?objects=", nodes.url, "&relations=", edges.url)
Expand Down Expand Up @@ -1957,7 +1957,7 @@ app_server <- function(input, output, session) {
output$download.timeline.map.grid <- downloadHandler(
filename = "timeline-map-grid.svg",
content = function(file) {
ggsave(file, plot = timeline.map.grid(),
ggplot2::ggsave(file, plot = timeline.map.grid(),
device = "svg", width=9, height=9, pointsize = 14)
}
)
Expand Down

0 comments on commit 23636e1

Please sign in to comment.