
Hi Michelle,
Thanks for the time on the call. To document the resolution, the issue was that the user did not have WRITE permissions on the config folder and hence all the files under the config could not be modified. Once the permissions were applied, the auth_config.yml could be modified.
Thanks!
Mansi

Hi Ellen,
The issue is with the parameters you have used for start and end. You need to use
x-labels-start and x-labels-end
To know more about the parameters you could use on the data series chart, please click here
Thanks!
Mansi

This is an issue with the IE settings and not Mingle. I checked a couple of online Microsoft forums where people faced a similar login issue with IE.
Could you please attempt one of the suggestions provided in the Microsoft forum

Ahh, I'm going to add that as a feature request in the Mingle product backlog.
x-labels-start: (Start Date), where Start Date is a Project Variable of type Date should work. I've just tried this and it works for me. Would it be possible for you to send across you project export for me to have a look at this chart? You could send it to support@thoughtworks.com and I could get back to you with a solution.

Hi Peter,
You should be able to use a Project Variable in the data series chart x-labels-start property in the following format
x-labels-start: (Current Iteration)
where (Current Interation) is my Project Variable.
In your case the last option you mentioned x-labels-start: (Start Date) should work. Could you tell me what error message do you get when you use this syntax in your data series chart?
Thanks!
Mansi

Hi Nikhil,
Could you please send across the auth_config.yml file and the mingle.log file as an attachment to our Studios support team at support@thoughtworks.com. They should be able to provide you with the next steps to debug/resolve the issue.
Thanks!
Mansi

Sorry about that, I meant Mingle username and Password. You do not have to be a Mingle administrator to use the connector.

Hi Nayab,
Yes, you need to put in the URL from which you access the Mingle server e.g: http://<ip address>:<port number> along with a Mingle admin username and password.
-Mansi

Hi Alexey,
This can be achieved by doing the following:
1. If you want to have multiple browser options, copy the twist.properties file and rename them as follows:
firefox.twist.properties
chrome.twist.properties
(Make sure to edit the properties file to reflect the appropriate browser)
2. Create a system variable called say, launch_browser in Preferences->Twist-> Default JVM arguments for launching
-Dlaunch_browser=chrome
(If you want Chrome to be used to run the tests)
3. Make the following changes in the applicationContext-suite.xml
<bean class=”org.springframework.beans.factory.config.PropertyPlaceholderConfigurer”>
<property name=”systemPropertiesModeName” value=”SYSTEM_PROPERTIES_MODE_OVERRIDE”/>
<property name=”ignoreResourceNotFound” value=”true”/>
<property name=”locations”>
<list>
<value>classpath:twist.properties</value>
<value>classpath:${launch_browser}.twist.properties</value>
</list>
</property>
</bean>
This way when you run your tests, Twist will use the browser that is specified as a system variable(in step 2).
4. If you have exported the twist project (or used 'Export Twist Libraries' option), Twist would generate an ant build file containing <twist.runner> task.
<twist.runner scenarioDir="${twist.project.dir}/scenarios"
reportsDir="${twist.reports.output.dir}"
confDir="${twist.config.dir}"
failureproperty="twist.scenarios.failed"
classpathref="scenarios.classpath"
tags="!in-progress" threads="1"
jvmargs="-Dlaunch_browser=${launch_browser}"/>
5. Now from command prompt, you can specify which launch_browser to use, using -D option:
ant -buildfile build.xml execute-scenarios -Dlaunch_browser=chrome
or
ant -buildfile build.xml execute-scenarios -Dlaunch_browser=firefox
Hope this helps!
Thanks!
Mansi

Hi Paul,
The Mingle Dependency Tracker is supported only on Mingle 3.2 and 3.3.
I tried replicating the issue(Win 2003/Postgres 8.3/Mingle3.0) but was unable to. Could you please send across your log files to support@thoughtworks.com to help us investigate further.
Thanks!
Mansi

Hi Kim,
As of the current release of Mingle, you will not be able to select the CR value from the BP card while querying data from the Story card on the Planning tree - story.
What you could do currently is use the NESTED IN clause to get is a list of all the stories with a particular CR number or a list of stories with their parent BP stories.
We have captured your scenario as a feature request.
Thanks!
Mansi

Hi Len,
This can be done in the Grid view. When you view you cards in grid view, you get an option to colour based on a particular property. There is also a colour legend on the right that will help you select which colour should represent what property value.
Please refer to the attached image where I have coloured the cards based on "Issue Type" and represented the "Defects" with Red and "Features" with green.

Hope this helps! Do let me know if you need any further clarification.

Hi Kim,
Apologies for the delay in my response. Could you please provide your exact tree structure for the BP tree.

Hi Kim,
Is the 'CR number' property on the Story card? If the property is not on the Story card, there will be no data to display in the table.

Hi Kim,
You could directly retrieve data from the Story card without specifying which Tree it belongs to. Please try the below example to query the mingle number, name, status and estimate of all the story cards in a particular iteration.
{{ table query: SELECT number, name, 'Story Status', 'Planning Estimate' WHERE 'type' = 'story' and 'Iteration' = THIS CARD}}
For the second example you provided, you are selecting number from one tree and name from another, if the card is of a particular card type, irrespective of which tree it belongs to, you could directly query it in the format provided above.
Please refer to the 'Table - based on a query' section in the following link: http://www.thoughtworks-studios.com/mingle/3.3/help/macro_reference.html
Hope this helps! Do let me know if you need any further clarification.
-Mansi