We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found following errors in the documentation:
VelocityRenderer
api:variable [ api:name "_resourceRoot"; api:value "/myEldaApp" ];
If the user will not change default location of elda-assets that the resource name is "/elda-assets/".
elda-assets
api:variable [ api:name "_velocityPath"; api:value "/var/lib/tomcat7/local-assets/velocity, /var/lib/tomcat7/elda-assets/velocity" ]
there should be before comma character in the api:value otherwise does not work. Thus correct value is:
api:value
api:value "/var/lib/tomcat7/local-assets/velocity , /var/lib/tomcat7/elda-assets/velocity"
The text was updated successfully, but these errors were encountered:
I ran into a similar problem with 1.3.19 I fixed it (a hacky workaround) by defining VELOCITY_PATH=",/velocity" environment variable. You can see in the source here: https://github.com/epimorphics/elda/blob/master/elda-lda/src/main/java/com/epimorphics/lda/renderers/velocity/VelocityRendering.java#L224 It adds defaultVelocityRoot to the end of the search string, and defaultVelocityRoot comes from the VELOCITY_PATH environment variable.
VELOCITY_PATH=",/velocity"
VELOCITY_PATH
It may not be exactly the same problem, as this, but that fixed it for me.
Sorry, something went wrong.
Addressing #175
61c4b3d
I have been unable to reproduce the problem. Could you provide a complete minimal example, please?
Chris
No branches or pull requests
I found following errors in the documentation:
VelocityRenderer
:If the user will not change default location of
elda-assets
that the resource name is "/elda-assets/".there should be before comma character in the
api:value
otherwise does not work.Thus correct value is:
The text was updated successfully, but these errors were encountered: