rally

Rally Lookback API filter on Ready and Recycled

谁说胖子不能爱 提交于 2019-12-11 06:16:32
问题 I am trying to use the lookback api to get stories that have the Ready flag set to true. I appear to be able to output the ready flag but not filter on it. I do not appear to be able to filter or output the recycled flag. Curious if these fields are not available to the lookback api as filters. 回答1: Nick is right about the Recycled artifacts. I'm wondering though if you are quoting the Ready values and treating them like a String. This field is actually a Boolean and can be queried like this:

Rally API: documentation list of fields for portfolio items?

*爱你&永不变心* 提交于 2019-12-11 06:07:44
问题 I am using the Rally API (http://developer.help.rallydev.com/ruby-toolkit-rally-rest-api-json) via Ruby. I'd like to query Portfolio items for their attributes (fields?). I have working code, e.g. this works properly (although it seems to display the name, not the ID -- I was expecting something like 'T30' but this displays 'This is the name of my initiative'): pi_query.order = "FormattedID Asc" By trial and error, I also see that pi_query.order = "Name Asc" works too. My question: what

How to query team member name and capacity in Rally developer depending upon iteration?

拟墨画扇 提交于 2019-12-11 05:51:35
问题 I have tried several things to query both the team member name and capacity in Rally developer depending upon iteration. One of the challenges I run into is that the team member name and capacity are under two different types. So, matching the team member names with the capacity has been a challenge. One of my failed attempts in accomplishing this is as follows: var queryConfig = { key: "teamMember", type: "User", fetch: "UserName,Role", query: '(TeamMemberships != "")' }; var queryByUserName

Rally Standard Report charts with a black background

坚强是说给别人听的谎言 提交于 2019-12-11 05:48:26
问题 I've been using the standard reports to show iteration burndown and release burn up. The API inserts an image it generates into the page using javascript. I would like to put these on a dashboard monitor in my office, but it's current colour theme has a black background. I want charts with a black background. I see a number of options: Get the API to generate charts (maybe an undocumented feature) Do some HTML-based colour replacement Get the underlying data and build my own chart Is any of

Rally Authentication issue in Getting results

天大地大妈咪最大 提交于 2019-12-11 05:17:00
问题 I am using asp.net MVC application and consuming Rally web API for integration. I want fetch the data from rally site. in Login Controller RallyRestApi restApi = new RallyRestApi(webServiceVersion: "v2.0"); dynamic authenticateUser=restApi.Authenticate(usr.UserName, usr.Password, "https://rally1.rallydev.com/", allowSSO: false); dynamic objUserName; if (authenticateUser.ToString().ToLower() == "authenticated") { Session["Username"] = usr.UserName; Session["Password"] = usr.Password;

Rally API Add Tags to existing userstory NodeJS

怎甘沉沦 提交于 2019-12-11 05:08:08
问题 I have been stuck on this issue for a while and I finally ended up asking on here. I need an example on how to add existing tags on existing test case using the NodeJS rally api. I have already seen the Java implementation and it does not help me too much. I already have an application which creates/updates test cases, test folders, etc. I just got an extra requirement to add tags. I have been looking at their APIs and I am so confused on how to attach the tags. Any help would be greatly

How do I handle a value used in a query that has special characters?

自古美人都是妖i 提交于 2019-12-11 04:58:22
问题 I'm trying to query by iteration but our iteration names have special characters (e.g. "Sprint - 01 (Mar 26, 2012 to Apr 02, 2012)"). Cannot parse object reference from "Sprint - 01 (Mar 26, 2012 to Apr 02, 2012)"" If I add brackets around it all (e.g. '(Iteration = ' + '\"Sprint - 01 (Mar 26, 2012 to Apr 02, 2012)\")' Could not parse: Unknown operator ")" How do I properly handle a value with these characters? function itemQuery() { var queryObject = { key: 'tasks', type: 'task', query:

Rally updating Team Members to Project

穿精又带淫゛_ 提交于 2019-12-11 04:39:47
问题 I have looked at "How can I update Rally team membership?" but couldn't figure out how it works for Ruby Rally WSAPI. So this is my update query when I try to update team membership for a Project #team is an array that consists of RallyAPI (user) objects. @rally.update("project",project_ref,team) My question is about the project_ref that I am passing as an identifier for the project to be updated, is it the "_ref" that we have to pass to this query or the "ObjectID" of the project, for the

Retrieve User Stories and associated Test Cases with it

十年热恋 提交于 2019-12-11 03:34:53
问题 I am using Rally excel add-in and trying to retrieve User Stories and associated Test Cases. I added additional column to the report "User Story" to retrieve TestCase.Name and also tried TestCase.FormattedID. In both cases I receive empty column. What am I doing wrong? Also there is a column "Number of Test Cases" that also always returns nothing. 回答1: Here is a custom app that builds a grid of user stories and associated test cases. Looks like this is the data you want to display: The code

Rally - clone existing app

风流意气都作罢 提交于 2019-12-11 03:24:20
问题 I'm trying to create a custom release burnup app for my group. There is an existing app called 'Release Burnup' in Rally, and based on the instructions for rally-app-builder I thought I would be able to clone this app as a starting point. However, when I use the rally-app-builder clone RallyApps ReleaseBurnup command, it doesn't seem to do anything except change the title in the output html files to " Son of ReleaseBurnup". When I tried the same thing with the example from the github page