A better way of getting the meta data is to use ...
AJS.Meta.get('space-name');
This is more future proof.
What if they decided that they no longer will put that data in the page on load? Rather it will be called asynchronously via the Meta.get() method if the client requests it. Or what if they change the name of the meta tag? In that case your code would fail but if you use the API they have built for this purpose it would continue to work. That is why I say it is a little more future proof. Since they built and API for getting the data I would use that. Plus it is fewer lines of code ... one vs eight.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I cannot argue with the likelihood of Atlassian changing what data goes into the meta tags but the method you mentioned relies on the Confluence Admins (me) to provide the category of the space in the name of space (editing Space Details > Name > <type>: Foo) rather than relying on the information provided in Space Categories in the same Space Details page. I would have to use some JS to extract the string up to the ":" and use that string for the data I'm looking for.
A sample output from running a test with AJS.Meta.get("space-name"):
Personal space: firstname lastname department space: Dept: deptname
I would also have to take that into account that individual users won't be adding the prefix of "Personal" to their respective space names nor adding a Space Category.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If you want to use the menthod you mentioned above that would indeed be the case. I was simply saying that using the AJS.Meta.get methods is better than looping though all the meta tags like you were doing before.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok, I think I have a potential solution: Since we have a naming standard for putting the space category in the name of the space details name, the meta tags of the rendered pages store a number of various tidbits of useful information, including a meta tag named ajs-space-name. So, I used a simple JavaScript loop to run through all the meta tags until it found that specific tag. From there, I'm able to extract the value from the tag's content attribute.
var metas = document.getElementsByTagName('meta'); for (var i = 0; i < metas.length; i++) { // loop through all the meta tags var metaName = metas[i].name; // grab all the meta tag's name attributes if (metaName == "ajs-space-name") { // name of meta tag that holds the space category var metaContent = metas[i].content; // get the content value for target var spaceCategory = metaContent.substring(0, metaContent.indexOf(":")); // only hold string that ends up to ":" } }
Does that look fool proof?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.