Hi
I'm trying to create a Blueprint plugin using:
https://developer.atlassian.com/display/CONFDEV/Write%20a%20simple%20Confluence%20Blueprint%20plugin
It's going well but the title is blank. See attached screenshot.
Where is the name set?
What am I missing?
Thnaks
<content-template key="my-index-template" i18n-name-key="my.blueprint.index.title" template-title-key="my.blueprint.index.title"> <description key="my.blueprint.index.description"/> <resource name="template" type="download" location="/templates/myTemplateIndex.xml" /> </content-template>
The blog post references "template-title-key" attribute. However, this is now "i18n-name-key"
A shot in the dark but have you edited the properties file?
Add the i18n strings to src/main/resources/confluence-space-blueprints.properties
:
confluence.blueprints.space.example.name=Example Space Blueprint confluence.blueprints.space.example.description=An example of a space blueprint confluence.blueprints.space.example.dialog.create.title=Create your Example Space confluence.blueprints.space.example.dialog.create.heading=About Example Spaces confluence.blueprints.space.example.dialog.create.description=The example space is a way of demonstrating the features of space blueprints confluence.blueprints.space.example.home.title.suffix=Home Page
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah I had set up the i18n properties, but the attributes for the name appear to have changed since my referenced article was written. Serves me right for not downloading the source in the first place!
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.