rally

Lookback API: Find all leaf node stories under a known parent

好久不见. 提交于 2019-12-02 04:15:26
问题 In Rally Webservices API, if I want to traverse a Story hierarchy, it's necessary to do a query for the parent story, then grab the Children collection(s) off of the returned Stories, and then recursively query on each Child until the process reaches the Leaf node results. Question - is there a handy way to do this without iterating, by using a single query in the Lookback API? 回答1: This is one of the best features of the Lookback API. Let's say you have this hierarchy: Story 444 Story 555

Filtering epics from Kanban board

可紊 提交于 2019-12-02 03:40:02
I would like to start by saying I have read Rally Kanban - hiding Epic Stories but I'm still having trouble on implementing my filter based on the filter process from the Estimation Board app. Currently I'm trying to add an items filter to my query object for my cardboard. The query object calls this._getItems to return an array of items to filter from. As far as I can tell the query calls the function, loads for a second or two, and then displays no results. Any input, suggestions, or alternative solutions are welcomed. Here's my code $that._redisplayBoard = function() { that.

Lookback API: Deleted items

僤鯓⒐⒋嵵緔 提交于 2019-12-02 00:43:18
I'd like to use the lookback API to view the history of a deleted object, which I think should be simple if I know the formatted id. I just need to query: { FormattedID: 'DEXXXX' } But does the Lookback API record anything special for when an object is deleted (like can I tell exactly when it was deleted or by whom)? Can it help point me to the correct place in the Recycle bin so that I could try to undelete it? Interesting. I just ran a REST query on the Recycle Bin with fetch=true and got back a lot more data on the result set than I'm used to: GET https://rally1.rallydev.com/slm/webservice

Want to copy Rally stories from one project to another

天涯浪子 提交于 2019-12-01 22:28:01
I'm trying to copy stories and tasks (and their hierarchies) from one Rally project to another. I only need to copy from one 'template' project so I don't need to make use of the ProjectPicker widget. Simply leveraging the existing app that copies stories and tasks is all that is need but it needs to be able to read from one project and write to another project (the current project you're logged into would be the easiest.) I modified the app so that it can read from a project I'm not logged into - good. The copy results in a copied story in the project I'm reading from - not the one I'm logged

Updating a chart with new data in App SDK 2.0

ぃ、小莉子 提交于 2019-12-01 19:48:10
问题 I am using a chart to visualize data in a TimeboxScopedApp , and I want to update the data when scope changes. The more brute-force approach of using remove() then redrawing the chart as described here leaves me with an overlaid "Loading..." mask, but otherwise works. The natural approach of using the Highchart native redraw() method would be my preference, only I don't know how to access the actual Highchart object and not the App SDK wrapper. Here's the relevant part of the code: var chart

Updating a chart with new data in App SDK 2.0

此生再无相见时 提交于 2019-12-01 18:48:05
I am using a chart to visualize data in a TimeboxScopedApp , and I want to update the data when scope changes. The more brute-force approach of using remove() then redrawing the chart as described here leaves me with an overlaid "Loading..." mask, but otherwise works. The natural approach of using the Highchart native redraw() method would be my preference, only I don't know how to access the actual Highchart object and not the App SDK wrapper. Here's the relevant part of the code: var chart = Ext.getCmp('componentQualityChart'); if (chart) { var chartCfg = chart.getChartConfig(); chartCfg

Problems with jslint-v8 Ruby gem installation on Windows7 64-bit

╄→гoц情女王★ 提交于 2019-12-01 10:56:05
There is a problem during Rally App SDK 2.0p environment setup on Windows 7 (64-bit). I have installed Ruby 1.8.7-p358 from rubyinstaller.org and managed to install rake Ruby gem. But I have problems installing jslint-v8 gem. It has dependencies on therubyracer and libv8 gems which need to be built using Ruby DevKit. During the installation I got the following error: C:\ruby> gem install jslint-v8 Temporarily enhancing PATH to include DevKit... Building native extensions. This could take a while... ERROR: Error installing jslint-v8: ERROR: Failed to build gem native extension. C:/ruby/bin/ruby

Login to Rally using app sdk

送分小仙女□ 提交于 2019-12-01 09:50:38
问题 How I can programmatically login to Rally, using app sdk? I use it outside Rally. It redirects to login page first. And I want to login without user entering credentials. 回答1: Rally has a tool known as the LoginKey that can be used to help with external authentication for apps. If you are trying to get a report or an app to show inside a wiki or internal webpage without logging in that is your best bet. There are some security concerns with showing Rally data without authentication and before

How to retrieve Test Cases associated with the Test Set

孤者浪人 提交于 2019-12-01 07:35:16
问题 I tried to run provided code for jar 2.0.2 and now for 2.0.4 Both times received an error at line: int numberOfTestCases = testSetJsonObject.get("TestCases").getAsJsonArray().size(); Exception in thread "main" java.lang.IllegalStateException: This is not a JSON Array. at com.google.gson.JsonElement.getAsJsonArray(JsonElement.java:106) at GetTCofTS.main(GetTCofTS.java:50) I can overcome this error (since it is really not an array that is coming back) , but it won't resolve my problem, that I

RALLY: Determine a parent User Story's release

夙愿已清 提交于 2019-12-01 06:29:15
In Rally we have the following story structure: Parent Story 1 |__ Sub Story 1 | |__ Child Story 1 | |__ Child Story 2 | |__ Sub Story 2 |__ Child Story 3 |__ Sub Story 3 | _ Child Story 4 I want to make a view of all Parent stories and what release they are currently scheduled in. Once the Parent story has child stories it's release value is not editable because it is set in a lower story. Is there a way to determine what release the story would be completed in with only making 1 call to Rally? Thanks! If you wanted to get a list of a parent story's children to see what release they fall in