rally

specifying “From” to “Time” drop down calendar in Rally for a chart

那年仲夏 提交于 2020-01-05 11:32:02
问题 I have a "Project cumulative flow" chart that is working. It currently pulls data for last 3 months from Rally and displays it correctly in the chart. However, now I want to provide the a "From" and "To" drop down calendar, so that user can change the range of dates to what he wants. So, by default the user will be shown 3 months and no the side of the chart there should be a "From" and "To" drop down calendar for user to change the range if he wishes to. I have a part of this working. I have

Is there a .NET RallyRestApi method that uses the apiKey?

有些话、适合烂在心里 提交于 2020-01-05 08:11:33
问题 I would like to have my C# application make a connection to Rally using an API Key, but I have not found a method that supports it similar to the JAVA method: public RallyRestApi(URI server, String apiKey) 回答1: You may use this syntax: restApi = new RallyRestApi( "_abc123","https://rally1.rallydev.com"); where "_abc123" is the key you generated using Rally Application Manager. I noticed that the documentation does not mention this method of authentication and still shows the old username

Rally Custom Kanban

夙愿已清 提交于 2020-01-05 06:26:28
问题 I would like to only show stories/defects from the current iteration on a kanban type board to help with our process. So I found this example out here on SO and added the QUERY line to filter out my iteration. But now I am wanting this to come from the iterationdropdown box provided by rally. I added it to the screen, and it shows ok, but how do I actually hook it up to my query? <!DOCTYPE html> <html> <head> <title>My Custom App</title> <!--Include SDK--> <script type="text/javascript" src=

How long can i use WSAPI 1.42

谁说胖子不能爱 提交于 2020-01-04 14:15:02
问题 I read a warning message on wsapi 1.42 reference page that it is deprecated and that it will get removed soon. What is a schedule for that? I have a few applications using that version of wsapi. I would appreciate a time period so that I can update those apps, in time :) Thanks. 回答1: Per this WS API deprecation schedule, the last supported date for 1.43 was June 20, 2014. But it does not mean that the endpoints are expected to stop working. As far as I know currently there are no plans to

JQuery tablesorter using ajax and dynamic thead and tbody sections

偶尔善良 提交于 2020-01-04 06:28:27
问题 I am attempting to add in some table sorting using the jquery tablesorter plugin to a Rally app using dojo, struggling with how to hook up the update callback for the tablesorter. I have html that looks like this (thead and tbody are separated as they are being dynamically generated i.e. number of columns is not known in advance): <table id='myTable' class='tablesorter'> <thead id='sort-head'></thead> <tbody id='sort-body'></tbody> </table> tablesorter init is here <script type="text

Querying for User Story revisions in Rally

依然范特西╮ 提交于 2020-01-04 04:36:07
问题 I would like to retrieve the JSON object for the revision log using the URL associated with the User Story. I have accomplished this with jQuery using the following code, although I would rather do it with built in tools in the Rally SDK. I haven't had any luck with Ext.Ajax or Ext.data.JsonP requests, although I feel that is the correct approach. Any help would be appreciated. $.ajax({ url: URL, dataType: 'jsonp', jsonp: 'jsonp', success: function(response) { $.each(response.RevisionHistory

How can I get a list of all the projects in our Rally instance via the REST API?

蹲街弑〆低调 提交于 2020-01-02 07:05:55
问题 How can I query our Rally instance for all of our available projects? Output from REST call https://rally1.rallydev.com/slm/webservice/1.29/subscription.js?fetch=Workspaces,Name,Projects&pretty=true ... "Workspaces": [ { "_rallyAPIMajor": "1", "_rallyAPIMinor": "29", "_ref": "https://rally1.rallydev.com/slm/webservice/1.29/workspace/1376977801.js", "_objectVersion": "10", "_refObjectName": "Workspace 1", "Name": "Workspace 1", "Projects": [ { "_rallyAPIMajor": "1", "_rallyAPIMinor": "29", "

the same WSAPI v2.0 security key works in a REST client, but produces invalid key error when used with curl

谁说胖子不能爱 提交于 2019-12-31 03:26:08
问题 In a browser's REST Client, when I post to this URL https://rally1.rallydev.com/slm/webservice/v2.0/HierarchicalRequirement/create?key=123abc with this request body: { "HierarchicalRequirement": {"Name": "mystory"} } it works, but curl -u 'user@co.com:password' -H "Content-Type: application/json" -d '{"HierarchicalRequirement": {"Name": "mystory"}}' https://rally1.rallydev.com/slm/webservice/v2.0/HierarchicalRequirement/create?key=123abc produces an invalid key error: {"CreateResult": {"

Find Workspace an Project OID

拈花ヽ惹草 提交于 2019-12-30 10:18:48
问题 This may seem to be a very basic question but I couldn't find it inside Rally, so here it is, where can I find the workspace and project OID inside rally? 回答1: For the benefit of other users who may want to know the answer to it, here are a couple of ways of find OIDs. One of them is to create a custom page and paste this code in the HTML section: <html> Current Workspace ID: __WORKSPACE_OID__ Current Project ID: __PROJECT_OID__ Current User ID: __USER_OID__ Curent User Name: __USER_NAME__ <

Rally grid of features and rollups

冷暖自知 提交于 2019-12-25 16:46:12
问题 I am trying to make a grid that displays both features a rollups - (the rollup and its children). The individual first query works when I set the model of the grid to "PortfolioItem/Feature", but as soon as I change the model to just "PortfolioItem" it the grid does not display any data - and adding the OR to the filter certainly does not help matters. var filter = Ext.create('Rally.data.QueryFilter', { property: 'Parent.ObjectID', operator: '=', value: id }); filter = filter.or({ property: