Skip to content

Commit 04d6f87

Browse files
all there.
1 parent 0b02252 commit 04d6f87

36 files changed

+916
-69
lines changed

_includes/tags.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
<h3> <a href="{{tag_path | relative_url}}"> {{tag.name}}</a>: {{tag.size}}</h3>
2020

2121
<ul>
22-
{%- for doc in site_pages -%}
22+
{%- assign sorted_docs = site_pages | sort: "title" -%}
23+
{%- for doc in sorted_docs -%}
2324
{%- if doc.tags contains tag.name -%}
2425
<li><a href="{{doc.url | relative_url}}">{{doc.title}}{%- if doc.description -%}: {{doc.description}}{%- endif -%}</a></li>
2526
{%- endif -%}

_plugins/tags.rb

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,16 @@ def initialize(site, group, count, counter)
5151
@content = "<div>" + group + ": " + count.to_s + "</div>"
5252

5353
@content += "<div><ul>"
54-
site.collections['safs'].docs.each do |saf|
54+
55+
safs = site.collections['safs'].docs
56+
sorted_safs = safs.sort_by {|title| title.data['title'].downcase}
57+
sorted_safs.each do |saf|
5558
if saf.data['tags'].include? group
56-
@content += "<li><a href=\"..#{saf.url}\">#{saf.data['title']}</a></li>"
59+
title = saf.data['title']
60+
if saf.data['description'] != nil
61+
title += ": " + saf.data['description']
62+
end
63+
@content += "<li><a href=\"..#{saf.url}\">#{title}</a></li>"
5764
end
5865
end
5966
@content += "</ul></div>"

_saf_dimensions/choices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: choices
33
code: T
44
title: Technology Choices
5-
description: Are we making the right technology choices in line with our technology radar and other strategic choices?
5+
description: Strategic choices
66
nav_order: 3.4
77
---
88

_saf_dimensions/decisions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: decisions
33
code: DM
44
title: Decision Making & Governance
5-
description: Are we following governance processes, managing risk and issues, communicating with our stakeholders? Are we managing technical debt? Do we have a framework in place to make decisions which is based are based on understanding need, options analysis, clear rationale, and management of trade-offs? Are we communicating those decisions?
5+
description: Governance processes
66
nav_order: 3.2
77
---
88

_saf_dimensions/documentation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: documentation
33
code: D
44
title: Documentation
5-
description: Are we documenting the architectures to an appropriate level of detail, are we following our standards around Enterprise Architecture tooling. Is documentation open and shared?
5+
description: Documenting the architectures
66
nav_order: 3.6
77
---
88

_saf_dimensions/non_functional.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: non functional
33
code: NF
44
title: Non-Functional Design
5-
description: Do we understand the non-functional needs of the service, are we creating a solution which can meet those need and be flexible, without over engineering?
5+
description: Understand non-functional needs
66
nav_order: 3.4
77
---
88
Do we understand the non-functional needs of the service, are we creating a solution which can meet those need and be flexible, without over engineering?

_saf_dimensions/reuse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: reuse
33
code: RU
44
title: Re Use Principles and Development of Shared Services
5-
description: Are we building re-useable components, are we reusing what we have already in an effective manner?
5+
description: Reusing what we have already
66
nav_order: 3.5
77
---
88

_saf_dimensions/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: solution
33
code: SD
44
title: Solution Design & Methods
5-
description: Are we following recognised industry best practice in our designs e.g. separation of concerns? Are we giving sufficient focus to ensure interoperability / integration is built into our designs from day 1, using the right patterns and standards?
5+
description: Following recognised industry best practice
66
nav_order: 3.3
77
---
88

_saf_dimensions/strategic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name: strategic
33
code: S
44
title: Strategic Alignment, Vision, and Roadmap
5-
description: Describes how well the solution architecture aligns with our strategic direction, our policies, and principles.
5+
description: Alignment with our strategic direction
66
nav_order: 3.1
77
---
88

_safs/d/d01.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: D01
3-
description: Documentation
3+
description: Documentation Stores
44
dimension: documentation
55
tags: [documentation,knowledge]
66
nav_order: 2.71

0 commit comments

Comments
 (0)