Skip to content

Commit ffe902f

Browse files
author
adam-dupaski
committed
Proofread
1 parent 09559b4 commit ffe902f

10 files changed

Lines changed: 27 additions & 27 deletions

File tree

content/en/docs/addons/ats-addon/ht/v2/ht-two-getting-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ The **Test Cases** menu has three tabs:
114114
| --- | --- |
115115
| **Repository** | Here you create and store all your test cases, test suites, and custom actions. It is the ATS filing system, the heart of ATS. |
116116
| **Test Data** | Where you can create folders, actions, and enumerations. |
117-
| **Stories** | Where you can access the sprints of your app. |
117+
| **Stories** | Where you can access the Sprints of your app. |
118118

119119
In this how-to, only the **Repository** tab is described.
120120

content/en/docs/addons/ats-addon/rg-ats/v1/rg-one-projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,4 @@ There are three sections on the dashboard. The upper-left section (1) shows you
6363

6464
## 6 Developer Portal integration
6565

66-
Projects in ATS can be connected to Mendix Developer Portal projects. If this is done, ATS will fetch all sprints and user stories from the project. This allows you to connect your test cases to user stories.
66+
Projects in ATS can be connected to Mendix Developer Portal projects. If this is done, ATS will fetch all Sprints and user stories from the project. This allows you to connect your test cases to user stories.

content/en/docs/apidocs-mxsdk/apidocs/feedback-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Each call also requires the parameters 'username' and 'password'. These are the
2828

2929
### 2.1 AcceptFeedback
3030

31-
This call **accepts** the specified feedback item. This means that the app team has accepted the feedback and added this feedback as a story to the sprint.
31+
This call **accepts** the specified feedback item. This means that the app team has accepted the feedback and added this feedback as a story to the Sprint.
3232

3333
| Parameter Name | Parameter Type | Description |
3434
| --- | --- | --- |

content/en/docs/apidocs-mxsdk/apidocs/stories-api.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ weight: 60
77

88
## 1 Introduction
99

10-
The Mendix Stories API allows you to retrieve, create, and update the sprints, stories, and tasks in your Mendix projects.
10+
The Mendix Stories API allows you to retrieve, create, and update the Sprint, stories, and tasks in your Mendix apps.
1111

1212
{{% alert color="info" %}}
1313
Each call also requires the parameters `username` and `password`. These are the public credentials you will find below; actual authentication of requests is done through API keys.
@@ -26,22 +26,22 @@ To use the API, you need to set up a **Consumed Web Service** using the WDSL for
2626

2727
### 2.1 Microflow CreateSprint
2828

29-
This microflow creates a new sprint for the specified project and returns the ID of the new sprint.
29+
This microflow creates a new Sprint for the specified project and returns the ID of the new Sprint.
3030

3131
| Parameter Name | Parameter Type | Description|
3232
| --- | --- | --- |
3333
| ApiKey | String | The API Key the application uses to access the Stories API for this project. |
34-
| DurationInWeeks | Integer/Long | Duration of the new sprint in weeks.|
35-
| Name | String | Name of the new sprint.|
34+
| DurationInWeeks | Integer/Long | Duration of the new Sprint in weeks.|
35+
| Name | String | Name of the new Sprint.|
3636
| ProjectID | String | The ID of the project. |
37-
| StartDate | Date and time | Start date for the new sprint. If not filled, the sprint will automatically start directly after * the previous sprint. (optional)|
38-
| StartsAfterSprint | Integer/Long | ID of the Sprint directly preceding the new sprint. |
37+
| StartDate | Date and time | Start date for the new Sprint. If not filled, the Sprint will automatically start directly after * the previous Sprint. (optional)|
38+
| StartsAfterSprint | Integer/Long | ID of the Sprint directly preceding the new Sprint. |
3939

4040
* Return value – Integer/Long
4141

4242
### 2.2 Microflow CreateStory
4343

44-
This microflow creates a new story in the specified sprint and returns the ID of the new story. Parameters:
44+
This microflow creates a new story in the specified Sprint and returns the ID of the new story. Parameters:
4545

4646
| Parameter Name | Parameter Type | Description
4747
| --- | --- | --- |
@@ -50,7 +50,7 @@ This microflow creates a new story in the specified sprint and returns the ID of
5050
| Name | String | Name of the new story.
5151
| Points | Enumeration StoryPoints | Number of story points. If left empty will be set to 1\. (_1/_2/_3/_5/_8/_13/_20/_40/_100, optional)
5252
| ProjectID | String | The ID of the project.
53-
| SprintID | Integer/Long | The ID of the sprint.
53+
| SprintID | Integer/Long | The ID of the Sprint.
5454
| StoryType | Enumeration StoryType | The type of the story (Feature or Bug)
5555

5656
* Return value – Integer/Long
@@ -71,19 +71,19 @@ This microflow creates a new task for the specified story and returns the ID of
7171

7272
### 2.4 Microflow GetSprintByID
7373

74-
This microflow retrieves a specific sprint. Parameters:
74+
This microflow retrieves a specific Sprint. Parameters:
7575

7676
| Parameter Name | Parameter Type | Description
7777
| --- | --- | --- |
7878
| ApiKey | String | The API Key the application uses to access the Stories API for this project.
7979
| ProjectID | String | The ID of the project.
80-
| SprintID | Integer/Long | The ID of the sprint.
80+
| SprintID | Integer/Long | The ID of the Sprint.
8181

8282
* Return value – Sprint_Transient
8383

8484
### 2.5 Microflow GetSprints
8585

86-
This microflow retrieves all sprints in a specific project. Parameters:
86+
This microflow retrieves all Sprints in a specific project. Parameters:
8787

8888
| Parameter Name | Parameter Type | Description
8989
| --- | --- | --- |
@@ -94,13 +94,13 @@ This microflow retrieves all sprints in a specific project. Parameters:
9494

9595
### 2.6 Microflow GetStories
9696

97-
This microflow retrieves all stories in a specific sprint. Parameters:
97+
This microflow retrieves all stories in a specific Sprint. Parameters:
9898

9999
| Parameter Name | Parameter Type | Description
100100
| --- | --- | --- |
101101
| ApiKey | String | The API Key the application uses to access the Stories API for this project.
102102
| ProjectID | String | The ID of the project.
103-
| SprintID | Integer/Long | The ID of the sprint for which stories are being retrieved.
103+
| SprintID | Integer/Long | The ID of the Sprint for which stories are being retrieved.
104104

105105
* Return value – List of Story_Transient
106106

@@ -149,7 +149,7 @@ This microflow updates a story with modified information. Parameters:
149149
| ApiKey | String | The API Key the application uses to access the Stories API for this project.
150150
| Description | String | Description of the story (optional)
151151
| Name | String | Name of the story.
152-
| ParentSprintID | Integer/Long | The ID of the sprint the story is in.
152+
| ParentSprintID | Integer/Long | The ID of the Sprint the story is in.
153153
| Points | Enumeration StoryPoints | Number of story points. (_1/_2/_3/_5/_8/_13/_20/_40/_100)
154154
| ProjectID | String | The ID of the project.
155155
| Status | Enumeration BacklogState | Status of the story, (Open/Started/Done)

content/en/docs/refguide7/desktop-modeler/desktop-modeler-overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The table below describes all the available dockable window panes.
4444
| Get Started | Shows useful resources for getting started with the Mendix Modeler. |
4545
| Project Explorer | Shows the complete structure of your project including all documents inside the modules. By default the active document is always selected in the project explorer so you can quickly see where the document you are editing is in the tree. You can change this behavior in the **Edit** > **Preferences** window pane. |
4646
| Properties | Shows properties of the currently selected element. This is where a lot of editing in the Modeler takes place. |
47-
| Stories | For [Team Server](/refguide7/team-server/) enabled projects, this pane shows the stories of the current sprint. |
47+
| Stories | For [Team Server](/refguide7/team-server/) enabled projects, this pane shows the stories of the current Sprint. |
4848
| Toolbox | Shows the tools that can be used in the current editor. For example, in a page you can insert all kinds of widgets (for example, text box and data view) by dragging them from the **Toolbox** to your form. |
4949
| Variables (via Debug Windows) | You can view the current values of variables here when debugging your application. |
5050

content/en/docs/refguide7/version-control/using-version-control-in-the-dm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ In general, it is a good idea to commit after implementing one feature or fixing
100100
Committing results in a new revision in the repository. You can add the following information in the Desktop Modeler when you perform a commit, and this will be attached to the newly created revision:
101101

102102
* A textual message. This should be a summary of the changes you made
103-
* A list of Developer Portal stories that relate to the commit. A small commit will probably relate to one story. The Modeler shows stories that are in the current sprint and do not have a status of *Done*. Adding the story to the commit will not change the state of the Developer Portal story. Setting the status to 'Done' must be done manually and depends on your *definition of done*.
103+
* A list of Developer Portal stories that relate to the commit. A small commit will probably relate to one story. The Modeler shows stories that are in the current Sprint and do not have a status of *Done*. Adding the story to the commit will not change the state of the Developer Portal story. Setting the status to 'Done' must be done manually and depends on your *definition of done*.
104104

105105
{{< figure src="/attachments/refguide7/version-control/using-version-control-in-the-dm/2018-02-21_13-50-03.png" >}}
106106

content/en/docs/refguide8/modeling/menus/view-menu/stories-pane.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ tags: ["Studio Pro", "stories", "stories pane"]
1212

1313
## 1 Introduction
1414

15-
For version control enabled projects (projects with Team Server or other SVN servers), the **Stories** pane displays the stories and tasks of the current [Sprint](/developerportal/collaborate/stories/). Stories, tasks, and sprints are created and managed in the Developer Portal. For more information on stories, see [Stories](/developerportal/collaborate/stories/). For more information on tasks, see the [Adding a Task to a Story](/developerportal/collaborate/stories/#adding-task) section in *Stories*.
15+
For version control enabled projects (projects with Team Server or other SVN servers), the **Stories** pane displays the stories and tasks of the current [Sprint](/developerportal/collaborate/stories/). Stories, tasks, and Sprint are created and managed in the Developer Portal. For more information on stories, see [Stories](/developerportal/collaborate/stories/). For more information on tasks, see the [Adding a Task to a Story](/developerportal/collaborate/stories/#adding-task) section in *Stories*.
1616

17-
In the **Stories** pane, you can view the stories and tasks of the current sprint, show or hide done stories, open their details, change the status of the stories and tasks, and open documents connected to stories.
17+
In the **Stories** pane, you can view the stories and tasks of the current Sprint, show or hide done stories, open their details, change the status of the stories and tasks, and open documents connected to stories.
1818

1919
The **Stories** pane consists of the top bar with various buttons and a table:
2020

content/en/docs/releasenotes/developer-portal/_index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ In Portfolio Management, you can do the following
197197

198198
#### Improvements
199199

200-
* We improved some empty states in the story details dialog box, epics details dialog box, archived sprint details dialog box, and archived story details dialog box in Epics.
200+
* We improved some empty states in the story details dialog box, epics details dialog box, archived Sprint details dialog box, and archived story details dialog box in Epics.
201201

202202
### September 15th, 2022
203203

@@ -269,13 +269,13 @@ In Portfolio Management, you can do the following
269269

270270
* Map your exact development process with fully customizable swimlanes
271271
* Use Scrum or Kanban – we support both!
272-
* Set sprint goals and see all the basic sprint information on the board – if you are using Scrum
272+
* Set Sprint goals and see all the basic Sprint information on the board – if you are using Scrum
273273
* Drag and drop stories on our brand new project board
274274
* Format stories in any way you want – for example, adding headers, links, and code blocks, linking specific stories, and using @ to mention people (notifications for this coming soon!)
275275
* Clone stories
276276
* Create and track the progress of epics
277277
* Archive single stories or whole swimlanes
278-
* Easily search through your completed stories and get an overview of completed sprints in the archive
278+
* Easily search through your completed stories and get an overview of completed Sprints in the archive
279279

280280
You can try it out for any Mendix app. Your Scrum Master just needs to enable Epics in the [General Settings](/developerportal/collaborate/general-settings/#project-management). Please note it is not yet possible to migrate the data from Stories into Epics, so we recommend using it for new projects or iterations first – in this way you do not have to worry about the stories in your current backlog.
281281

@@ -963,7 +963,7 @@ In Portfolio Management, you can do the following
963963

964964
#### Webhooks Available
965965

966-
* We have added the ability to create webhooks for your apps. These webhooks can be configured to send information when sprints change and/or stories change.
966+
* We have added the ability to create webhooks for your apps. These webhooks can be configured to send information when Sprints change and/or stories change.
967967

968968
### April 5th, 2019
969969

content/en/docs/releasenotes/sdk/model-sdk/model-sdk-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ SDK version 2.2.0 and 2.2.1 were unpublished because they were published in a br
105105
| Impact | Description |
106106
| --- | --- |
107107
| Minor | Added support for Mendix 6.4.0 |
108-
| Low | Working copies that are connected to sprintr projects can now be deployed and their runtime status can be requested |
108+
| Low | Working copies that are connected to projects can now be deployed and their runtime status can be requested |
109109
| Low | Unit-loading now has an extra optional forceRefresh option. If set, it will then bypass the Mendix MOdel SDK cache, and get the fresh unit straight from the source/server. |
110110
| Minor | All classes that could be useful for reflection on the model are now exposed through `mendixmodelsdk`, so imports from `mendixmodelsdk/dist/sdk/internal/...` should no longer be needed. |
111111
| Minor | Private members (starting with an underscore `_`) were not available in the docs but were available in the public typings and therefore in the IDEs. This has been fixed. It should never be necessary to access these members. However, if you did access them you now need to access the object to `any` before the typechecker allows you to access these members. The method `allProperties()` is now available on all structures for reflection purposes. |

content/en/docs/studio8/collaboration/collaboration-buzz.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ You will be automatically taken to the Developer Portal. For more information on
4747

4848
You can create a feedback item via the **Buzz** tab. Feedback items allow you to submit ideas, questions, or issues on the app, and let your team work on them in the Developer Portal.
4949

50-
In a thread in Studio Buzz, you and your team may conclude that the subject discussed needs more thorough refinement or needs to be postponed to be picked up in future sprints. In that case, a feedback item is a useful way to bring the item under attention of the product owner in the team. From there it can evolve into a story and be planned for a sprint. For more information on feedback items, see [Feedback Management](/developerportal/collaborate/feedback/), especially the [Adding a Feedback Item to Your Backlog](/developerportal/collaborate/feedback/#adding) section.
50+
In a thread in Studio Buzz, you and your team may conclude that the subject discussed needs more thorough refinement or needs to be postponed to be picked up in future Sprints. In that case, a feedback item is a useful way to bring the item under attention of the product owner in the team. From there it can evolve into a story and be planned for a Sprint. For more information on feedback items, see [Feedback Management](/developerportal/collaborate/feedback/), especially the [Adding a Feedback Item to Your Backlog](/developerportal/collaborate/feedback/#adding) section.
5151

5252
To create a feedback item, do the following:
5353

0 commit comments

Comments
 (0)