Support app deployment under a path prefix

Fixes #133
This commit is contained in:
Maxime Quandalle 2015-10-08 23:25:04 +02:00
parent c804813e5f
commit a78debc461
6 changed files with 12 additions and 8 deletions

View file

@ -61,7 +61,7 @@ id-map@1.0.4
idmontie:migrations@1.0.0
jquery@1.11.4
kadira:blaze-layout@2.1.0
kadira:flow-router@2.6.1
kadira:flow-router@2.7.0
kenton:accounts-sandstorm@0.1.4
launch-screen@1.0.4
less@2.5.0_3

View file

@ -55,7 +55,7 @@ BlazeComponent.extendComponent({
cardLink() {
const card = this.currentData().card();
return card && Blaze.toHTML(HTML.A({
href: card.absoluteUrl(),
href: FlowRouter.path(card.absoluteUrl()),
'class': 'action-card',
}, card.title));
},
@ -69,7 +69,7 @@ BlazeComponent.extendComponent({
attachmentLink() {
const attachment = this.currentData().attachment();
return attachment && Blaze.toHTML(HTML.A({
href: attachment.url({ download: true }),
href: FlowRouter.path(attachment.url({ download: true })),
target: '_blank',
}, attachment.name()));
},

View file

@ -15,7 +15,7 @@ template(name="attachmentsGalery")
.attachment-thumbnail
if isUploaded
if isImage
img.attachment-thumbnail-img(src=url)
img.attachment-thumbnail-img(src="{{pathfor url}}")
else
span.attachment-thumbnail-ext= extension
else

View file

@ -2,7 +2,7 @@ template(name="minicard")
.minicard
if cover
.minicard-cover
img(src=cover.url)
img(src="{{pathFor cover.url}}")
if labels
.minicard-labels
each labels

View file

@ -43,10 +43,10 @@ template(name="header")
the list of all boards.
if isSandstorm
.wekan-logo
img(src="/wekan-logo-header.png" alt="Wekan")
img(src="{{pathFor '/wekan-logo-header.png'}}" alt="Wekan")
else
a.wekan-logo(href="{{pathFor 'home'}}" title="{{_ 'header-logo-title'}}")
img(src="/wekan-logo-header.png" alt="Wekan")
img(src="{{pathFor '/wekan-logo-header.png'}}" alt="Wekan")
template(name="headerTitle")
h1 {{_ 'my-boards'}}

View file

@ -2,12 +2,16 @@ head
title Wekan
meta(name="viewport"
content="maximum-scale=1.0,width=device-width,initial-scale=1.0,user-scalable=0")
//- XXX We should use pathFor in the following `href` to support the case
where the application is deployed with a path prefix, but it seems to be
difficult to do that cleanly with Blaze -- at least without adding extra
packages.
link(rel="shortcut icon" href="/wekan-favicon.png")
template(name="userFormsLayout")
section.auth-layout
h1.at-form-landing-logo
img(src="/wekan-logo.png" alt="Wekan")
img(src="{{pathFor '/wekan-logo.png'}}" alt="Wekan")
+Template.dynamic(template=content)
template(name="defaultLayout")