Tweaked the redirect URL
This commit is contained in:
@@ -341,9 +341,10 @@ func buildDiagramsNetURL(r *http.Request, id string, xml string) string {
|
|||||||
base := fmt.Sprintf("%s://%s/diagram?id=%s", scheme, r.Host, url.QueryEscape(id))
|
base := fmt.Sprintf("%s://%s/diagram?id=%s", scheme, r.Host, url.QueryEscape(id))
|
||||||
// Request AWS library for custom shapes (e.g., aws4) to render correctly.
|
// Request AWS library for custom shapes (e.g., aws4) to render correctly.
|
||||||
// Provide both query param (url=) and fragment (#U) so different draw.io deployments can fetch the diagram.
|
// Provide both query param (url=) and fragment (#U) so different draw.io deployments can fetch the diagram.
|
||||||
// We intentionally avoid embedding the XML inline to keep headers small for Tomcat-based self-hosted instances.
|
// Use encoded form for the query parameter, but keep the fragment raw; some self-hosted builds expect #U followed by
|
||||||
|
// an unescaped URL.
|
||||||
encodedURL := url.QueryEscape(base)
|
encodedURL := url.QueryEscape(base)
|
||||||
redirect := fmt.Sprintf("%s/?splash=0&ui=min&libs=aws4&url=%s#U%s", drawioBaseURL, encodedURL, encodedURL)
|
redirect := fmt.Sprintf("%s/?splash=0&ui=min&libs=aws4&url=%s#U%s", drawioBaseURL, encodedURL, base)
|
||||||
_ = xml // kept for signature compatibility; may be used in future fallbacks
|
_ = xml // kept for signature compatibility; may be used in future fallbacks
|
||||||
return redirect
|
return redirect
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user