Skip to content

Commit

Permalink
fix: Update documentation links to point to the new website #3941 (#3942
Browse files Browse the repository at this point in the history
)

Co-authored-by: Christian Hühn <[email protected]>
  • Loading branch information
2 people authored and BenediktMehl committed Feb 21, 2025
1 parent 2d55892 commit cc0765b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 22 deletions.
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
<mat-toolbar color="primary"
>Custom Views
>Custom Views
<div class="row">
<div class="action-buttons">
<cc-upload-custom-config-button></cc-upload-custom-config-button>
<cc-download-custom-configs-button></cc-download-custom-configs-button>
<cc-add-custom-config-button class="custom-configs-button-in-custom-views"></cc-add-custom-config-button>
</div></div
></mat-toolbar>
</div>
</div
>
</mat-toolbar>

@if (customConfigService.customConfigItemGroups$ | async; as dropDownCustomConfigItemGroups) {
<mat-dialog-content class="content">
<p class="custom-config-documentation-hint">
Custom Views allow you to save and upload your individual configurations for certain maps. Find out more about Custom Views in
the
<a href="https://maibornwolff.github.io/codecharta/docs/custom-view/" target="_blank" rel="noopener noreferrer">documentation</a
<a href="https://codecharta.com/docs/visualization/custom-views" target="_blank" rel="noopener noreferrer">documentation</a
>.
</p>
@if (dropDownCustomConfigItemGroups.applicableItems.size === 0 && dropDownCustomConfigItemGroups.nonApplicableItems.size === 0) {
Expand All @@ -23,7 +25,7 @@
<mat-accordion class="custom-config-container" [multi]="true">
<mat-form-field class="cc-custom-configs-search-field">
<i matPrefix class="fa fa-search custom-config-search-icon"></i>
<mat-label>{{ searchPlaceholder }} </mat-label>
<mat-label>{{ searchPlaceholder }}</mat-label>
<input matInput type="text" (input)="setSearchTermDebounced($event)" [value]="searchTerm" />
</mat-form-field>
<cc-custom-config-item-group
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ <h2>{{ change.key }}</h2>
</div>

<div mat-dialog-actions>
<a href="https://maibornwolff.github.io/codecharta/news/" target="_blank" rel="noopener noreferrer">Know more</a>
<a href="https://codecharta.com/news/" target="_blank" rel="noopener noreferrer">Know more</a>
<button mat-button [mat-dialog-close]="true" cdkFocusInitial>CLOSE</button>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
</mat-dialog-content>

<mat-dialog-actions align="end">
<a href="https://maibornwolff.github.io/codecharta/docs/filter/structure-modifier" target="_blank" rel="noopener noreferrer">Know more</a>
<a href="https://codecharta.com/docs/filter/structure-modifier" target="_blank" rel="noopener noreferrer">Know more</a>
<button mat-flat-button [mat-dialog-close]="true">CLOSE</button>
</mat-dialog-actions>
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
code is placed in files associated with low/high risk in means of maintainability. The separation of code in risk classes like
low or high complexity is based on Java reference metric values and therefore may be inaccurate for other programming languages.
More information can be found in the
<a target="_blank" rel="noopener" href="https://maibornwolff.github.io/codecharta/docs/suspicious-metrics/"
>How-To Article <i class="fa fa-external-link"></i></a
<a target="_blank" rel="noopener" href="https://codecharta.com/docs/visualization/risk-profile"
>How-To Article <i class="fa fa-external-link"></i></a
>.
</div>
<div class="sub-title">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ <h2 mat-dialog-title class="title">Suspicious Metrics Information</h2>
projects. Based on this data suspicious and inconspicuous metrics are identified and corresponding suggestions can be clicked to
view them. Be aware that metrics for other programming languages might not be comparable to Java Reference metric values. More
information can be found in the
<a target="_blank" rel="noopener" href="https://maibornwolff.github.io/codecharta/docs/suspicious-metrics/"
>How-To Article <i class="fa fa-external-link"></i></a
<a target="_blank" rel="noopener" href="https://codecharta.com/docs/visualization/suspicious-metrics"
>How-To Article <i class="fa fa-external-link"></i></a
>.
</mat-dialog-content>
<mat-dialog-actions style="display: flex; justify-content: center">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,16 @@ <h2>Global Configuration</h2>
tooltip="Reset global settings to their defaults"
label="Reset global settings"
></cc-reset-settings-button>

<div class="cc-global-configuration-links-list">
<a
class="weblink"
href="https://github.com/MaibornWolff/codecharta/blob/main/README.md"
target="_blank"
rel="noopener noreferrer"
>
<em class="fa fa-external-link icon-link"></em>How-to
<a class="weblink" href="https://codecharta.com/" target="_blank" rel="noopener noreferrer">
<em class="fa fa-external-link icon-link"></em>Website
</a>
<a class="weblink" href="https://codecharta.com/docs/overview/introduction" target="_blank" rel="noopener noreferrer">
<em class="fa fa-external-link icon-link"></em>Documentation
</a>
<a class="weblink" href="https://github.com/MaibornWolff/codecharta/" target="_blank" rel="noopener noreferrer">
<em class="fa fa-external-link icon-link"></em>Github
</a>
<a class="weblink" href="https://github.com/MaibornWolff/codecharta/wiki" target="_blank" rel="noopener noreferrer">
<em class="fa fa-external-link icon-link"></em>Wiki
</a>
</div>
</div>
</mat-dialog-content>
Expand Down

0 comments on commit cc0765b

Please sign in to comment.