I have several pages that us the My Picture Macro with usernames. Is there a way I can search for all instances of a particular macro that use a username?
In earlier Confluence versions I was able to search "{my-picture:abc}"
Example: on 3 unknown pages I have "My Picture Macro | username = abc"
username = abc no longer uses Confluence and I need to find and remove My Picture Macro | username = abc on those three pages.
Using Atlassian Confluence 5.2.5
There does not appear to be anyway to search for a macro content using the search bar.
Not sure if this will work with 5.2.5. I have 5.1.3 and it still works though. This plugin gives you search syntax to search macro parameters. The bottom link is an article on how to do the search syntax.
https://marketplace.atlassian.com/plugins/com.atlassian.confluence.plugins.confluence-macro-indexer-plugin
http://ffeathers.wordpress.com/2012/09/04/how-to-search-for-macros-and-macro-parameters-in-confluence-4/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Searching for macros in the documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks Bob,
That shows how to search for the macro, however, I am trying to find the macro by attribute, in this case user abc
If I use macroName: my-picture* then it will return all instances of said macro. I am specifically looking for the linking to username=abc
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I don't know of a way to do that without going to SQL on the content in the database. Look at the storage view of the example you have and construct a matching query on the content. Something like:
select * from content, bodycontent where bodycontent.contentId = content.contentId and body ilike '%xxx%'
You probably need to get the latest version of the content as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You might be able to use the MacroMetadataManager to search the attributes of user macros. I haven't tried this, but have documented how to use this class in searches:
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.