I have a Page Properties Report in my page and the pages contain a Status field. I'm trying to sort by that but it does not work
Here is my configuration
I had the same problem. I don't know whether this works for you. First problem I had was my server console did not logged necessary logs. There were only java jdk and synchrony logs. So I configured logs as mentioned in https://confluence.atlassian.com/doc/configuring-logging-181535215.html to have all the logs of "com.atlassian.confluence.core". Then I found the error
[INFO] [talledLocalContainer] com.atlassian.soy.impl.QuieterSoySyntaxException: In file /soy/outputTemplate.soy: End of SoyDoc not at end of line [line 4, column 1].
Finally the problem was a space after end of soy doc.
/** * A form that accepts a person's name */{space}
instead of
/** * A form that accepts a person's name */
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not sure if you all still have that error but what fixed it for me is adding the soy dialog page to my web-resource section. I had everything else properly configured but forgot to include the soy as a resource.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not sure if you are still having this issue, or if this will solve it, but since I spent more time figuring this out that I care to admit (and found this page in the process) so I want to sare.
I was working through the Intermediate Blueprint Tutorial and would got hung up on step 6. After digging it seems I was also getting the error:
wizard points to a non-existent Soy template
Line 26 of the tutorial's atlassian-plugin.xml file it reads:
<resource type="download" name="simplebp.soy.js" location="/soy/simplebp.soy" />
And has the "simplebp.soy" placed in the directory "./simplebp/src/main/resources/soy/"
For it to work my resources line reads:
<resource type="download" name="simplebp-soy.js" location="simplebp.soy" />
And as that line suggest I have my "simplebp.soy" directly in "./simplebp/src/main/resources/"
In my case I was running a standalone instance of Confluence 6.6.0 due to other issues.
atlas-run-standalone --product confluence --version 6.6.0 --data-version 6.6.0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I had the same problem. I believe that it's because in step 2.4 (adding the JavaScript file), the sample code has escaped quotes: ' instead of ".
When I replaced all of the ' with " in the JavaScript file, I no longer got the missing soy template error.
I had already made that replacement for the other files with escaped quotes, but missed this file. It would be nice if the sample code had only unescaped quotes in it though...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.