-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from nkdAgility/UpdateProfessionalScrum
Updatearounie with 404 fixes
- Loading branch information
Showing
33 changed files
with
245 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,30 @@ | ||
{% assign collection = site.collections | where: "label", include.collection | first %} | ||
<li class="mb-1"> | ||
<strong class="bd-links-heading d-flex w-100 align-items-center fw-semibold">{{ include.collection | capitalize_all }}</strong> | ||
<a href="#" class="navbar-toggler btn btn-toggle link-body-emphasis d-inline-flex text-decoration-none rounded border-0 collapsed" | ||
data-bs-toggle="collapse" | ||
data-bs-target="#{{include.collection}}-collapse" | ||
aria-expanded="false"><strong class="bd-links-heading d-flex w-100 align-items-center fw-semibold"><i class="fa-sharp fa-solid fa-chevron-down"></i> {{ include.collection | capitalize_all }}</strong></a> | ||
<div class="collapse" id="{{include.collection}}-collapse"> | ||
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 ms-2 small"> | ||
{% assign overview = site.pages | where: "pageType", "index" | where: "indexForCollection", include.collection | first %} | ||
{% if overview != null %} | ||
<a href="{{ site.baseurl }}{{overview.url}}">Overview</a> | ||
<li class="align-items-center"> | ||
<a href="{{ site.baseurl }}{{overview.url}}" class="link-body-emphasis d-inline-flex text-decoration-none rounded">Overview</a> | ||
</li> | ||
{% endif %} | ||
{% if collection != null %} | ||
{% assign items = collection.docs | where: "category", null | where: "pageStatus", "published" | sort: "importance" | reverse %} | ||
|
||
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 small"> | ||
{% for item in items %} | ||
{% if item.pageStatus != "draft" %} | ||
<li class="align-items-center"> | ||
<a href="{{ site.baseurl }}{{ item.url }}" class="link-body-emphasis d-inline-flex text-decoration-none rounded"> | ||
{{ item.title }} | ||
</a> | ||
</li> | ||
{% endif %} | ||
{% endfor %} | ||
{% assign items = collection.docs | except: "pageStatus", "published" | where: "category", null | sort: "importance" | reverse %} | ||
{% assign items = collection.docs | where: "pageStatus", "published" | where: "category", null | sort: "importance" | reverse %} | ||
{% if items != empty %} | ||
<li class="align-items-center"> | ||
<small> | ||
<a | ||
href="#" | ||
class="link-body-emphasis d-inline-flex text-decoration-none rounded" | ||
data-bs-toggle="collapse" | ||
data-bs-target="#{{include.collection}}-collapse" | ||
aria-expanded="false">Preview Content</a> | ||
<div class="collapse" id="{{include.collection}}-collapse"> | ||
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 ms-2 small"> | ||
{% for item in items %} | ||
<li class="align-items-center"> | ||
<a href="{{ site.baseurl }}{{ item.url }}" class="link-body-emphasis d-inline-flex text-decoration-none rounded">{{ item.title }}</a> <small> | ||
{% if item.pageStatus != "production" %} | ||
<i class="fa-regular {% if item.pageStatus == null %}fa-triangle-exclamation{% else %}fa-circle-exclamation{% endif %}"></i> | ||
{% endif %} | ||
</small> | ||
<a href="{{ site.baseurl }}{{ item.url }}" class="link-body-emphasis d-inline-flex text-decoration-none rounded">{{ item.title }}</a> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</small> | ||
</li> | ||
{% endif %} | ||
</ul> | ||
{% else %} | ||
<p>No items in collection</p> | ||
<li>No items in collection</li> | ||
{% endif %} | ||
</ul> | ||
</div> | ||
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
src/collections/_faq/is-having-a-definition-of-ready-a-good-idea.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
--- | ||
title: Does having a definition of ready a good idea? | ||
layout: default | ||
toc: true | ||
pdf: true | ||
pageType: faq | ||
pageStatus: published | ||
discussionId: | ||
references: | ||
- title: Scrum Glossary - Scrum.org | ||
url: https://www.scrum.org/resources/scrum-glossary | ||
recommendedContent: | ||
- collection: guides | ||
path: _guides/scrum-guide.md | ||
- collection: practices | ||
path: _practices/definition-of-ready-dor.md | ||
--- | ||
|
||
## Question | ||
|
||
Does having a definition of ready a good idea? | ||
|
||
## Short Answer | ||
|
||
No. Having a definition of ready can lead to gating of work for a team. | ||
|
||
## Long Answer | ||
|
||
In the Scrum Guide there is the idea of "ready" that is associated with the [Product Backlog](../_guides/scrum-guide.md#product-backlog). | ||
|
||
> [!Quote] | ||
> Product Backlog items that can be Done by the Scrum Team within one Sprint are deemed ready for selection in a Sprint Planning event.\\ | ||
> --<cite>[Scrum Glossary - Scrum.org](https://www.scrum.org/resources/scrum-glossary)</cite> | ||
{: .blockquote} | ||
|
||
This reflects the shared understand that is necessary for a Scrum Team to take on work. | ||
|
||
> [!Quote] | ||
> Ready: a shared understanding by the Product Owner and the Developers regarding the preferred level of description of Product Backlog items introduced at Sprint Planning.\\ | ||
> --<cite>[Scrum Guide](../_guides/scrum-guide.md#product-backlog)</cite> | ||
{: .blockquote} | ||
|
||
While the intent behind a definition of ready is laudable the outcome is mostly an "us vs them" attitude between the Developers and the Stakeholders, or worse the Product Owner. Rather than having a checklist, definition of ready, or DOD, just get the Scrum Team together and come to an agreement of which items in the Backlog are "ready" for us to attempt. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.