From 02e3f7a02b5e24fff1fced59ac7bba7c754e41fc Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Thu, 16 Jun 2016 14:05:21 +0100 Subject: [PATCH] change download links so they do not rely on build id prefer the top level files, because the build directories are more ephemeral. In a shared project they can expire if there are multiple compiles. --- .../ide/pdf/controllers/PdfController.coffee | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/services/web/public/coffee/ide/pdf/controllers/PdfController.coffee b/services/web/public/coffee/ide/pdf/controllers/PdfController.coffee index a686e59fff..66f47f65e9 100644 --- a/services/web/public/coffee/ide/pdf/controllers/PdfController.coffee +++ b/services/web/public/coffee/ide/pdf/controllers/PdfController.coffee @@ -117,10 +117,12 @@ define [ qs.clsiserverid = response.clsiServerId ide.clsiServerId = response.clsiServerId # convert the qs hash into a query string and append it - qs_args = ("#{k}=#{v}" for k, v of qs) - $scope.pdf.qs = if qs_args.length then "?" + qs_args.join("&") else "" + $scope.pdf.qs = createQueryString qs $scope.pdf.url += $scope.pdf.qs - $scope.pdf.downloadUrl = "/Project/#{$scope.project_id}/output/output.pdf" + $scope.pdf.qs + # special case for the download url + if perUserCompile + qs.isolated = true + $scope.pdf.downloadUrl = "/project/#{$scope.project_id}/output/output.pdf" + createQueryString(qs) fetchLogs(fileByPath['output.log'], fileByPath['output.blg']) @@ -136,10 +138,12 @@ define [ file.name = "#{file.path.replace(/^output\./, "")} file" else file.name = file.path - if not file.url? - file.url = "/project/#{project_id}/output/#{file.path}" + qs = {} + if perUserCompile + qs.isolated = true if response.clsiServerId? - file.url = file.url + "?clsiserverid=#{response.clsiServerId}" + qs.clsiserverid = response.clsiServerId + file.url = "/project/#{project_id}/output/#{file.path}" + createQueryString qs $scope.pdf.outputFiles.push file