• 110
    • 5
    • Hide
      Atlassian Update – 13 April 2018

      Hi everyone,

      We're glad to announce that wildcard functionality for version fields was shipped with Jira Software 7.9. As some of you may have already noticed, 7.9 was released this week, and you can download it here.

      What we've built

      Whether it’s 9, 9.1, or any other derivative you’re looking for, you can now find it with a simple query that uses the ~ operator and an asterisk to indicate the location of unknown characters. 

      Version fields are:

      • Affected version
      • Fix version
      • Custom fields that use the "Version Picker".

      Note that for version fields, the CONTAINS “~" operator returns an exact match. For example, to find the version "9.0" only, you would use the following query:

      fixVersion ~ “9.0”

      To find all issues where the Fix Version field contains a wild-card match for version "9", e.g. 9.1 or 9.0.1:

      fixVersion ~ "9*”

      The DOES NOT CONTAIN "!~” operator can be used to exclude a specific version in your query.

      For example, to find issues where Fix Version is not "9.0", you should use the following query:

      fixVersion !~ “9.0"

      To find all issues where the Fix Version field does not contain any version from the 9.x line:

      fixVersion !~ "9.*"
       
      You can read more in the article on Advanced searching here.

      To read about other capabilities we added in Jira Software 7.9, have a look at our release notes.

      Cheers,
      Katarzyna Derenda
      Product Manager, Jira Server

      Show
      Atlassian Update – 13 April 2018 Hi everyone, We're glad to announce that wildcard functionality for version fields was shipped with Jira Software 7.9. As some of you may have already noticed, 7.9 was released this week, and you can download it  here . What we've built Whether it’s 9, 9.1, or any other derivative you’re looking for, you can now find it with a simple query that uses the ~ operator and an asterisk to indicate the location of unknown characters.  Version fields are: Affected version Fix version Custom fields that use the "Version Picker". Note that for version fields, the CONTAINS “~" operator returns an exact match . For example, to find the version "9.0" only, you would use the following query: fixVersion ~ “9.0” To find all issues where the Fix Version field contains a wild-card match for version "9", e.g. 9.1 or 9.0.1: fixVersion ~ "9*” The DOES NOT CONTAIN "!~” operator can be used to exclude a specific version in your query. For example, to find issues where Fix Version is not "9.0", you should use the following query: fixVersion !~ “9.0" To find all issues where the Fix Version field does not contain any version from the 9.x line: fixVersion !~ "9.*"   You can read more in the article on Advanced searching here . To read about other capabilities we added in Jira Software 7.9, have a look at our  release notes . Cheers, Katarzyna Derenda Product Manager, Jira Server
    • We collect Jira feedback from various sources, and we evaluate what we've collected when planning our product roadmap. To understand how this piece of feedback will be reviewed, see our Implementation of New Features Policy.

      With the release of JIRA 4.3, users can now specify a fix or affects version with a wildcard symbol in the Quick Search box (eg ff:4.*). Would be great to have the same functionality in JQL.

            [JRASERVER-24152] JQL - Add wildcard functionality to versions

            Why this doesn't work In cloud?

            Роман Саврулин added a comment - Why this doesn't work In cloud?

            Why versionMatch don't have in Jira cloud. 

            fixVersion in versionMatches("keyword") doesn't work. The VersionMatch is not there in cloud  

            Bobby Boruah added a comment - Why versionMatch don't have in Jira cloud.  fixVersion in versionMatches("keyword") doesn't work. The VersionMatch is not there in cloud  

            Ryan Saul added a comment -

            This feature isn't working for us on Jira Cloud either. I'm a little confused why the announced feature would not work on the cloud instance. Is the cloud instance a second class citizen to the self-hosted one?

            Ryan Saul added a comment - This feature isn't working for us on Jira Cloud either. I'm a little confused why the announced feature would not work on the cloud instance. Is the cloud instance a second class citizen to the self-hosted one?

            Ofer Prat added a comment -

            Thanks for implementing this! However, I cannot use it in Jira cloud... any idea when it is going to be available there?

             

            Ofer Prat added a comment - Thanks for implementing this! However, I cannot use it in Jira cloud... any idea when it is going to be available there?  

            The form linked in the above comment is no longer accepting responses. Thank you for all votes and comments. We are starting  development and the wildcard search for versions will be available soon.

            Katarzyna Derenda
            Product manager, Jira Server

            Kasia Derenda added a comment - The form linked in the above comment is no longer accepting responses. Thank you for all votes and comments. We are starting  development and the wildcard search for versions will be available soon. Katarzyna Derenda Product manager, Jira Server

            Hi Everyone,

            Thanks for all your feedback and votes so far, we truly appreciate them. We're currently considering two solutions for wildcard searching of versions in Jira, and we'd really appreciate it if you could take the time to fill out our 2 minute survey to let us know your thoughts and preferences.

            https://goo.gl/forms/YCVxtmOnILfih3mr1

            Thanks in advance,
            Katarzyna Derenda
            Product manager, Jira Server

            Kasia Derenda added a comment - Hi Everyone, Thanks for all your feedback and votes so far, we truly appreciate them. We're currently considering two solutions for wildcard searching of versions in Jira, and we'd really appreciate it if you could take the time to fill out our 2 minute survey to let us know your thoughts and preferences. https://goo.gl/forms/YCVxtmOnILfih3mr1 Thanks in advance, Katarzyna Derenda Product manager, Jira Server

            Thanks overdevest!

            I've been waiting for that for quite some time.

            Tommi Kyntölä added a comment - Thanks overdevest ! I've been waiting for that for quite some time.

            Hi everybody,
            as Daniel Overdevest already pointed out versionMatches() custom JQL function does the trick.

            If you are using Jira Server you can install the FREE app called JQL Booster Pack throught Atlassian Marketplace and use the requested functionality.

            After install this app, you should be able to create a query using versionMatches() function, that will allow you to find fixed in or affected by versions which its name contains the desired word.

             

            This is the complete information of this JQL function:

            Description:

            Perform searches based on versions which their name match with the provided regular expression.

            Note:
            This function uses Java native String.matches() method internally to determine the versions affected by the given expression.
            See also, Pattern Java Class.

             

            Syntax versionMatches(regex)
            Available since v1.0.0-RELEASE
            Supported fields AffectedVersion, FixVersion, custom fields of type Version
            Supported operators IN , NOT IN
            Unsupported operators = , != , ~ , !~ , > , >= , < , <=
            IS , IS NOT , WAS , WAS IN , WAS NOT , WAS NOT IN , CHANGED

            Examples:

            • Find issues affected by versions that ther name starts with 'v1' i.e. 'v1.1.0', 'v1.2', 'v1.1.6', etc:

            affectedVersion IN versionMatches("v1.*")

             Find issues fixed in versions that ther name contains 'alpha':

            fixVersion IN versionMatches(".*alpha.*")

             Find issues affected by versions that ther name starts with 'SNAPSHOT' i.e. 'v1.1-SNAPSHOT', 'v1.5-NIGHTLY_SNAPSHOT', etc:

            affectedVersion IN versionMatches(".*SNAPSHOT")

             

             

            Kinds regards.

            Jack Nolddor [Sweet Bananas] added a comment - Hi everybody, as Daniel Overdevest already pointed out versionMatches() custom JQL function does the trick. If you are using Jira Server you can install the FREE app called JQL Booster Pack throught Atlassian Marketplace and use the requested functionality. After install this app, you should be able to create a query using versionMatches() function, that will allow you to find fixed in or affected by versions which its name contains the desired word.   This is the complete information of this JQL function: Description: Perform searches based on versions which their name match with the provided regular expression. Note: This function uses Java native String.matches() method internally to determine the versions affected by the given expression. See also, Pattern Java Class .   Syntax versionMatches(regex) Available since v1.0.0-RELEASE Supported fields AffectedVersion, FixVersion, custom fields of type Version Supported operators IN , NOT IN Unsupported operators = , != , ~ , !~ , > , >= , < , <= IS , IS NOT , WAS , WAS IN , WAS NOT , WAS NOT IN , CHANGED Examples: • Find issues affected by versions that ther name starts with 'v1' i.e. 'v1.1.0' , 'v1.2' , 'v1.1.6' , etc: affectedVersion IN versionMatches("v1.*") •   Find issues fixed in versions that ther name contains 'alpha': fixVersion IN versionMatches(".*alpha.*") •   Find issues affected by versions that ther name starts with ' SNAPSHOT ' i.e. 'v1.1- SNAPSHOT ' , 'v1.5-NIGHTLY_ SNAPSHOT ' , etc: affectedVersion IN versionMatches(".*SNAPSHOT")     Kinds regards.

            fixVersion not in versionMatch('regex*')   - does the trick!

            Daniel Overdevest added a comment - fixVersion not in versionMatch('regex*')   - does the trick!

            Agree, allowing to query in the JQL for FixVersion LIKE 'X.Y.*' is almost a must.

            Hugo Passos added a comment - Agree, allowing to query in the JQL for FixVersion LIKE 'X.Y.*' is almost a must.

            julf added a comment -

            So tired of modifying my filters and to add maintenance build versions!!! Please add wildcard support for JQL.

            All I want to do is AND FixVersion LIKE '8.1.*'

            julf added a comment - So tired of modifying my filters and to add maintenance build versions!!! Please add wildcard support for JQL. All I want to do is  AND FixVersion LIKE '8.1.*'

            There is an automatic completion for version texts, when entering version text to query. But that seems useless, as I know what versions I have. I would like to enter a wild card search to include future versions in queries of boards. It is currently like I try to insert wild card, but it doesn't accept, then the program suggests to try some other versions, but future versions are still missing from the query. So the autocompletion doesn't help.

            Marko Koivu added a comment - There is an automatic completion for version texts, when entering version text to query. But that seems useless, as I know what versions I have. I would like to enter a wild card search to include future versions in queries of boards. It is currently like I try to insert wild card, but it doesn't accept, then the program suggests to try some other versions, but future versions are still missing from the query. So the autocompletion doesn't help.

            Oriol added a comment -

            I'm a release manager and there's a lack of basic functionalities to manage releases in Jira. Basically in a big company with multiple teams, projects and releases a week, Jira Versions to manage releases is just not enough. I’m surprised these basic functionalities have not been implemented yet:

            -Create a jiraVersion with tickets from multiple projects

            -Improve search for releases (For example, allowing the use of wildcards for fixVersions field)

            -Release reports (Consolidated list of releases across all the projects)

            -Custom relase notes templates.

            -Custom release fields.

            -Improve the way to edit, maintain releases

            Oriol added a comment - I'm a release manager and there's a lack of basic functionalities to manage releases in Jira. Basically in a big company with multiple teams, projects and releases a week, Jira Versions to manage releases is just not enough. I’m surprised these basic functionalities have not been implemented yet: -Create a jiraVersion with tickets from multiple projects -Improve search for releases (For example, allowing the use of wildcards for fixVersions field) -Release reports (Consolidated list of releases across all the projects) -Custom relase notes templates. -Custom release fields. -Improve the way to edit, maintain releases

            So tired of modifying my filters and to add maintenance build versions!!! Please add wildcard support for JQL.

            All I want to do is AND FixVersion LIKE '8.1.*'

            Stacey Nelson added a comment - So tired of modifying my filters and to add maintenance build versions!!! Please add wildcard support for JQL. All I want to do is AND FixVersion LIKE '8.1.*'

            jimmycd added a comment - - edited

            very much needed. how to manage versions in a complex software management (we have 300 components ++) otherwise? in the moment this is a mess and we are thinking about moving away from JIRA.

            jimmycd added a comment - - edited very much needed. how to manage versions in a complex software management (we have 300 components ++) otherwise? in the moment this is a mess and we are thinking about moving away from JIRA.

            A added a comment -

            +1 

            Obviously needed feature

            A added a comment - +1  Obviously needed feature

            What needing that too, will need to implement a service just to do this filter ! 

            Florian Rubin added a comment - What needing that too, will need to implement a service just to do this filter ! 

            Just adding another plea to the long and ancient list - this would be a huge time saver. I'm already doing a convoluted workaround to get specific fix versions to appear on a dashboard and really don't need any more manual work to keep this up to date. PLEASE FIX ASAP!!

            Kelly LaMar added a comment - Just adding another plea to the long and ancient list - this would be a huge time saver. I'm already doing a convoluted workaround to get specific fix versions to appear on a dashboard and really don't need any more manual work to keep this up to date. PLEASE FIX ASAP!!

            Sig L added a comment -

            how many years must go by before someone cares to take the time to address this?

            Sig L added a comment - how many years must go by before someone cares to take the time to address this?

            All voters and watchers,

            I'd like to provide you with an update on this suggestion.
            Despite we believe it's a valuable feature, currently there are no plans on our roadmap to address it.
            We'll keep getting back to this suggestion to revisit it in the future.

            By looking at some comments, it looks like some of the requests that come up there might have been solved. Please take a look at this documentation: https://confluence.atlassian.com/jiracoreserver073/advanced-searching-functions-reference-861257222.html?_ga=1.159777525.958568186.1466406441#Advancedsearching-functionsreference-unreleasedVersionsunreleasedVersions()
            There are some functions that might help:

            • releasedVersions()
            • unreleasedVersions()
            • latestReleasedVersion()
            • earliestUnreleasedVersion()

            Thanks,
            Jakub Lazinski
            Product Manager, JIRA

            Jakub Lazinski (Inactive) added a comment - All voters and watchers, I'd like to provide you with an update on this suggestion. Despite we believe it's a valuable feature, currently there are no plans on our roadmap to address it. We'll keep getting back to this suggestion to revisit it in the future. By looking at some comments, it looks like some of the requests that come up there might have been solved. Please take a look at this documentation: https://confluence.atlassian.com/jiracoreserver073/advanced-searching-functions-reference-861257222.html?_ga=1.159777525.958568186.1466406441#Advancedsearching-functionsreference-unreleasedVersionsunreleasedVersions( ) There are some functions that might help: releasedVersions() unreleasedVersions() latestReleasedVersion() earliestUnreleasedVersion() Thanks, Jakub Lazinski Product Manager, JIRA

            Tara Gangi added a comment -

            Thanks Hans! I concur your post!

            Tara Gangi added a comment - Thanks Hans! I concur your post!

            Come on. The first request was done in 2011. How many more customer requests do you need to fix this? Obviously you guys @ Atlassian don't get the point. If we can use a wildcard in JQL, we can write a Confluence page that always shows what versions are (un)released. No more manual work, always up to date. Please. Fix. Now. (so that it works also for the cloud version). Great post, Tara Gangi!

            Hans Bloemendaal added a comment - Come on. The first request was done in 2011. How many more customer requests do you need to fix this? Obviously you guys @ Atlassian don't get the point. If we can use a wildcard in JQL, we can write a Confluence page that always shows what versions are (un)released. No more manual work, always up to date. Please. Fix. Now. (so that it works also for the cloud version). Great post, Tara Gangi!

            Tara Gangi added a comment -

            This is highly needed; I am managing a program in JIRA and around 40 boards (within one project). We break out releases into major/minor which user stories get deployed in different environments. the Swimlanes are helpful in organizing which environments the teams need to work on, which are specified via fix version.

             

            I needed this requirement implemented by AppFire, but they stated the functionality isn't there yet. It would be great if Atlassian could make this feature possible!

             

             

            Improvement: board Swimlanes wild search

            1. How can we have anyFix/Version that has the word "Maintenance" in it show in the Minor swimlane column (so i don't have to update them all the time with the respective FixVersions)

            2. How can we have anyFix/Version that has the word "Release" in it show in the Major swimlane column (so i don't have to update them all the time with the respective FixVersions)

            Tara Gangi added a comment - This is highly needed; I am managing a program in JIRA and around 40 boards (within one project). We break out releases into major/minor which user stories get deployed in different environments. the Swimlanes are helpful in organizing which environments the teams need to work on, which are specified via fix version.   I needed this requirement implemented by AppFire, but they stated the functionality isn't there yet. It would be great if Atlassian could make this feature possible!     Improvement: board Swimlanes wild search 1. How can we have anyFix/Version that has the word "Maintenance" in it show in the Minor swimlane column (so i don't have to update them all the time with the respective FixVersions) 2. How can we have anyFix/Version that has the word "Release" in it show in the Major swimlane column (so i don't have to update them all the time with the respective FixVersions)

            petr-f added a comment -

            What is the solution if we run JIRA on jira.com?

            petr-f added a comment - What is the solution if we run JIRA on jira.com?

            All voters please consider to vote for JRA-19775

            Michael Brändel added a comment - All voters please consider to vote for JRA-19775

            MattS added a comment - - edited

            versionMatch() is currently in the Atlassian docs for Advanced Searching but with no description
            https://confluence.atlassian.com/display/JIRA/Advanced+Searching#AdvancedSearching-FixVersion

            MattS added a comment - - edited versionMatch() is currently in the Atlassian docs for Advanced Searching but with no description https://confluence.atlassian.com/display/JIRA/Advanced+Searching#AdvancedSearching-FixVersion

            Hubbitus added a comment -

            Unfortunately Script Runner is not free now.

            Hubbitus added a comment - Unfortunately Script Runner is not free now.

            grisevg added a comment -

            Aww, common, how come this issue is opened more than 4 years now.
            And there is no plugin that does it for JIRA Cloud.

            grisevg added a comment - Aww, common, how come this issue is opened more than 4 years now. And there is no plugin that does it for JIRA Cloud.

            Hello,

            You can use versionMatch function of ScriptRunner plugin like this.

            versionMatch("^(CC-|)15.*.0")

            This will cause all version selected which fulfill the following conditions:

            • Prefixed with either CC- or nothing
            • Version suffix is build as follows 15.[anything].0

            So would match:

            • CC-15.x.0
            • CC-15.4.0
            • 15.4.0
            • ...

            This is part of an external plugin and not part of JIRA core, but ScriptRunner plugin is an usefull tool I can personally recommend.
            And its for free (https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions)

            Thomas Herzog added a comment - Hello, You can use versionMatch function of ScriptRunner plugin like this. versionMatch("^(CC-|)15.*.0") This will cause all version selected which fulfill the following conditions: Prefixed with either CC- or nothing Version suffix is build as follows 15.[anything].0 So would match: CC-15.x.0 CC-15.4.0 15.4.0 ... This is part of an external plugin and not part of JIRA core, but ScriptRunner plugin is an usefull tool I can personally recommend. And its for free ( https://jamieechlin.atlassian.net/wiki/display/GRV/Scripted+JQL+Functions )

            ITST added a comment -

            Could Atlassian please provide feedback on this issue? We aswell would very much like to see this feature implemented

            ITST added a comment - Could Atlassian please provide feedback on this issue? We aswell would very much like to see this feature implemented

            Vote Added!

            Honeywell JIRA Admin added a comment - Vote Added!

            Phil Porada added a comment - - edited

            In addition to this there needs to be a way to search for all versions between two given versions. Something similar to how you can search between dates would be perfect. Currently this isn't possible because you can't search for release dates in JQL either!

            Phil Porada added a comment - - edited In addition to this there needs to be a way to search for all versions between two given versions. Something similar to how you can search between dates would be perfect. Currently this isn't possible because you can't search for release dates in JQL either!

            Vote added!

            Deleted Account (Inactive) added a comment - Vote added!

            Vote Added!

            Sergiu Mita added a comment - Vote Added!

            Anu Jain added a comment -

            Vote added!

            Anu Jain added a comment - Vote added!

            Rich added a comment -

            Vote added!

            Rich added a comment - Vote added!

            TJ Baker added a comment -

            Vote added. Could use it ( and we're on Cloud as well).

            TJ Baker added a comment - Vote added. Could use it ( and we're on Cloud as well).

            Any update on this one?

            George Lewe (LSY) added a comment - Any update on this one?

            Any update on this one?

            George Lewe (LSY) added a comment - Any update on this one?

            Ditto@ Michael Sica - we are cloud and can't use any of the work arounds

            Gail Stewart MT added a comment - Ditto@ Michael Sica - we are cloud and can't use any of the work arounds

            Really need this, and we can't use Script Runner because we're "cloud". Please add this!

            Michael Sica added a comment - Really need this, and we can't use Script Runner because we're "cloud". Please add this!

            Not a single update by Atlassian (apart from linking other issues) on this issue even after garnering 100+ votes?
            At least Atlassian can tell us whether this feature will be available or not. Or at least, there can be an official information stating that this feature will be available via a commercial add-on.
            However, I feel this should be a built-in feature and users shouldn't be buying an add-on for a basic functionality you would expect.
            This is open for nearly 3 years.

            James Selvakumar added a comment - Not a single update by Atlassian (apart from linking other issues) on this issue even after garnering 100+ votes? At least Atlassian can tell us whether this feature will be available or not. Or at least, there can be an official information stating that this feature will be available via a commercial add-on. However, I feel this should be a built-in feature and users shouldn't be buying an add-on for a basic functionality you would expect. This is open for nearly 3 years.

            Michael Decker added a comment - Script Runner adds the missing support: https://marketplace.atlassian.com/plugins/com.onresolve.jira.groovy.groovyrunner

            This is a basic requirement. I am surprised this hasn't yet been added.

            Atlassian please consider this request.

            Darren Campbell added a comment - This is a basic requirement. I am surprised this hasn't yet been added. Atlassian please consider this request.

            HD Nguyen added a comment -

            I'm trying to use this on the Sprint field. We have different teams under a program which we're rolling up into a program board. Need to be able to simply say: Sprint ~ "Sprint 12*" and it should pull up all team's (different project) Sprint 12.

            HD Nguyen added a comment - I'm trying to use this on the Sprint field. We have different teams under a program which we're rolling up into a program board. Need to be able to simply say: Sprint ~ "Sprint 12*" and it should pull up all team's (different project) Sprint 12.

            I represent about 100 votes from Navis.

            Lynne Billig added a comment - I represent about 100 votes from Navis.

            We're using JQL Tricks now; yes commercial, but it works as advertised

            Michael Garvin added a comment - We're using JQL Tricks now; yes commercial, but it works as advertised

            S added a comment -

            Any progress on this requirement? And found that suggested plugin is commercial one

            S added a comment - Any progress on this requirement? And found that suggested plugin is commercial one

            Thanks Mark on the plugin info. My problem, I have version listed custom fields that I need to search and this plugin only works for the fixVersion field.

            Brent Webster added a comment - Thanks Mark on the plugin info. My problem, I have version listed custom fields that I need to search and this plugin only works for the fixVersion field.

            There now seems to be a work-around available... the JIRA Tricks Plugin:

            https://plugins.atlassian.com/plugins/com.j-tricks%3Ajql-plugin

            ..has recently added a new query function "versionMatches(regex)".

            The specific documentation is here:

            https://studio.plugins.atlassian.com/wiki/display/JQLT/Versions+Functions

            fixversion in versionMatches("Release 1.0.*") - Returns all issues in versions with names starting at 1.0 like 1.0, 1.0.1, 1.0.2 etc.

            The function was introduced in v3.0.1 of the plugin so that means that JIRA v5.0+ is required.

            This might be a nice workaround but J-Tricks is a commercial plugin... so I am not withdrawing my +1 vote on this issue. =)

            Mark Symons added a comment - There now seems to be a work-around available... the JIRA Tricks Plugin: https://plugins.atlassian.com/plugins/com.j-tricks%3Ajql-plugin ..has recently added a new query function "versionMatches(regex)". The specific documentation is here: https://studio.plugins.atlassian.com/wiki/display/JQLT/Versions+Functions fixversion in versionMatches("Release 1.0.*") - Returns all issues in versions with names starting at 1.0 like 1.0, 1.0.1, 1.0.2 etc. The function was introduced in v3.0.1 of the plugin so that means that JIRA v5.0+ is required. This might be a nice workaround but J-Tricks is a commercial plugin... so I am not withdrawing my +1 vote on this issue. =)

            Can someone from Atlassian let us know when we may expect this issues to get resolved?

            Ali Behboodian added a comment - Can someone from Atlassian let us know when we may expect this issues to get resolved?

            Rob Starr added a comment -

            Voted. Wildcards or the "~" operator, as neither currently work with the fixVersion field.

            Rob Starr added a comment - Voted. Wildcards or the "~" operator, as neither currently work with the fixVersion field.

            I was very disappointed to find out wild cards don't work for fix versions. Hope they are going to add it.

            Ali Behboodian added a comment - I was very disappointed to find out wild cards don't work for fix versions. Hope they are going to add it.

            Yossi Brosh added a comment - - edited

            Voted for this issue , I need the wildcard for compentent .

            BR
            Yossi

            Yossi Brosh added a comment - - edited Voted for this issue , I need the wildcard for compentent . BR Yossi

            Yep, this would be a great feature. I was surprised that it didn't work for the popular FixVersion field.

            Stuart Ralston added a comment - Yep, this would be a great feature. I was surprised that it didn't work for the popular FixVersion field.

              lvysochyn@atlassian.com Leo
              jsloat John Sloat (Inactive)
              Votes:
              302 Vote for this issue
              Watchers:
              170 Start watching this issue

                Created:
                Updated:
                Resolved: