Skip to content

Commit 2e2bc87

Browse files
committed
rename the module "core" to "system"
1 parent 7e34bd3 commit 2e2bc87

35 files changed

+43
-43
lines changed

src/app/app.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { BrowserModule } from '@angular/platform-browser';
44
import { AppRoutingModule } from './app-routing.module';
55
import { SharedModule } from './shared/shared.module';
66
import { SetupModule } from './setup/setup.module';
7-
import { CoreModule } from './core/core.module';
7+
import { SystemModule } from './system/system.module';
88
import { ConsoleModule } from './console/console.module';
99
import { WebModule } from './web/web.module';
1010
import { EntityModule } from './entity/entity.module';
@@ -25,7 +25,7 @@ import { DocsComponent } from './docs/docs.component';
2525
imports: [
2626
BrowserModule,
2727
SetupModule,
28-
CoreModule,
28+
SystemModule,
2929
ConsoleModule,
3030
WebModule,
3131
EntityModule,

src/app/console/command/command.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ <h5>Output</h5>
150150
</a>
151151
</li>
152152
<li class="nav-page-item">
153-
<a class="nav-page-link" routerLink="/docs/core/overview">
153+
<a class="nav-page-link" routerLink="/docs/system/overview">
154154
Next <i class="chevron right"></i>
155155
</a>
156156
</li>

src/app/docs/docs.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ <h5 class="card-title">Console Application</h5>
2929
<div class="card-body">
3030
<h5 class="card-title">Fundamentals</h5>
3131
<p class="card-text mb-0">Exploring the fundamental features of the core library</p>
32-
<a class="card-link stretched-link" routerLink="/docs/core"></a>
32+
<a class="card-link stretched-link" routerLink="/docs/system"></a>
3333
</div>
3434
</div>
3535
</div>

src/app/shared/sidebar/sidebar.component.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@
3131
</button>
3232
<div class="collapse" id="fundamentals-collapse" data-bs-parent="#menu" routerLinkActive="show">
3333
<ul class="btn-toggle-nav list-unstyled fw-normal pb-1 small">
34-
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/core/overview" routerLinkActive="fw-bold">Overview</a></li>
35-
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/core/properties" routerLinkActive="fw-bold">Accessor Properties</a></li>
36-
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/core/extension" routerLinkActive="fw-bold">Extension Methods</a></li>
37-
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/core/linq" routerLinkActive="fw-bold">LINQ Methods</a></li>
38-
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/core/generics" routerLinkActive="fw-bold">Generic Types</a></li>
39-
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/core/asynchronous" routerLinkActive="fw-bold">Async Operations</a></li>
40-
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/core/delegates" routerLinkActive="fw-bold">Delegates & Events</a></li>
34+
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/system/overview" routerLinkActive="fw-bold">Overview</a></li>
35+
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/system/properties" routerLinkActive="fw-bold">Accessor Properties</a></li>
36+
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/system/extension" routerLinkActive="fw-bold">Extension Methods</a></li>
37+
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/system/linq" routerLinkActive="fw-bold">LINQ Methods</a></li>
38+
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/system/generics" routerLinkActive="fw-bold">Generic Types</a></li>
39+
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/system/asynchronous" routerLinkActive="fw-bold">Async Operations</a></li>
40+
<li><a class="link-dark d-inline-flex text-decoration-none rounded" routerLink="/docs/system/delegates" routerLinkActive="fw-bold">Delegates & Events</a></li>
4141
</ul>
4242
</div>
4343
</li>

src/app/core/asynchronous/asynchronous.component.html renamed to src/app/system/asynchronous/asynchronous.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,12 @@ <h3>Async/Await Pattern</h3>
147147
<nav class="no-print" aria-label="Page navigation">
148148
<ul class="nav-page">
149149
<li class="nav-page-item">
150-
<a class="nav-page-link" routerLink="/docs/core/generics">
150+
<a class="nav-page-link" routerLink="/docs/system/generics">
151151
<i class="chevron left"></i> Previous
152152
</a>
153153
</li>
154154
<li class="nav-page-item">
155-
<a class="nav-page-link" routerLink="/docs/core/delegates">
155+
<a class="nav-page-link" routerLink="/docs/system/delegates">
156156
Next <i class="chevron right"></i>
157157
</a>
158158
</li>

src/app/core/asynchronous/asynchronous.component.ts renamed to src/app/system/asynchronous/asynchronous.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import hljs from 'highlight.js/lib/common';
33

44
@Component({
5-
selector: 'core-asynchronous',
5+
selector: 'system-asynchronous',
66
templateUrl: './asynchronous.component.html',
77
styleUrls: ['./asynchronous.component.css']
88
})

src/app/core/delegates/delegates.component.html renamed to src/app/system/delegates/delegates.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ <h5>Event Handler</h5>
196196
<nav class="no-print" aria-label="Page navigation">
197197
<ul class="nav-page">
198198
<li class="nav-page-item">
199-
<a class="nav-page-link" routerLink="/docs/core/asynchronous">
199+
<a class="nav-page-link" routerLink="/docs/system/asynchronous">
200200
<i class="chevron left"></i> Previous
201201
</a>
202202
</li>

src/app/core/delegates/delegates.component.ts renamed to src/app/system/delegates/delegates.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import hljs from 'highlight.js/lib/common';
33

44
@Component({
5-
selector: 'core-delegates',
5+
selector: 'system-delegates',
66
templateUrl: './delegates.component.html',
77
styleUrls: ['./delegates.component.css']
88
})

src/app/core/extension/extension.component.html renamed to src/app/system/extension/extension.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ <h3>Calling the extension method</h3>
8080
<nav class="no-print" aria-label="Page navigation">
8181
<ul class="nav-page">
8282
<li class="nav-page-item">
83-
<a class="nav-page-link" routerLink="/docs/core/properties">
83+
<a class="nav-page-link" routerLink="/docs/system/properties">
8484
<i class="chevron left"></i> Previous
8585
</a>
8686
</li>
8787
<li class="nav-page-item">
88-
<a class="nav-page-link" routerLink="/docs/core/linq">
88+
<a class="nav-page-link" routerLink="/docs/system/linq">
8989
Next <i class="chevron right"></i>
9090
</a>
9191
</li>

src/app/core/extension/extension.component.ts renamed to src/app/system/extension/extension.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import hljs from 'highlight.js/lib/common';
33

44
@Component({
5-
selector: 'core-extension',
5+
selector: 'system-extension',
66
templateUrl: './extension.component.html',
77
styleUrls: ['./extension.component.css']
88
})

src/app/core/generics/generics.component.html renamed to src/app/system/generics/generics.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,12 +196,12 @@ <h5>Dictionary Example:</h5>
196196
<nav class="no-print" aria-label="Page navigation">
197197
<ul class="nav-page">
198198
<li class="nav-page-item">
199-
<a class="nav-page-link" routerLink="/docs/core/extension">
199+
<a class="nav-page-link" routerLink="/docs/system/extension">
200200
<i class="chevron left"></i> Previous
201201
</a>
202202
</li>
203203
<li class="nav-page-item">
204-
<a class="nav-page-link" routerLink="/docs/core/asynchronous">
204+
<a class="nav-page-link" routerLink="/docs/system/asynchronous">
205205
Next <i class="chevron right"></i>
206206
</a>
207207
</li>

src/app/core/generics/generics.component.ts renamed to src/app/system/generics/generics.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import hljs from 'highlight.js/lib/common';
33

44
@Component({
5-
selector: 'core-generics',
5+
selector: 'system-generics',
66
templateUrl: './generics.component.html',
77
styleUrls: ['./generics.component.css']
88
})

src/app/core/linq/linq.component.html renamed to src/app/system/linq/linq.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,12 @@ <h6>Output:</h6>
157157
<nav class="no-print" aria-label="Page navigation">
158158
<ul class="nav-page">
159159
<li class="nav-page-item">
160-
<a class="nav-page-link" routerLink="/docs/core/extension">
160+
<a class="nav-page-link" routerLink="/docs/system/extension">
161161
<i class="chevron left"></i> Previous
162162
</a>
163163
</li>
164164
<li class="nav-page-item">
165-
<a class="nav-page-link" routerLink="/docs/core/generics">
165+
<a class="nav-page-link" routerLink="/docs/system/generics">
166166
Next <i class="chevron right"></i>
167167
</a>
168168
</li>

src/app/core/linq/linq.component.ts renamed to src/app/system/linq/linq.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import hljs from 'highlight.js/lib/common';
33

44
@Component({
5-
selector: 'core-linq',
5+
selector: 'system-linq',
66
templateUrl: './linq.component.html',
77
styleUrls: ['./linq.component.css']
88
})

src/app/core/overview/overview.component.html renamed to src/app/system/overview/overview.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ <h3>Installation</h3>
3535
</a>
3636
</li>
3737
<li class="nav-page-item">
38-
<a class="nav-page-link" routerLink="/docs/core/properties">
38+
<a class="nav-page-link" routerLink="/docs/system/properties">
3939
Next <i class="chevron right"></i>
4040
</a>
4141
</li>

src/app/core/overview/overview.component.ts renamed to src/app/system/overview/overview.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import hljs from 'highlight.js/lib/common';
33

44
@Component({
5-
selector: 'core-overview',
5+
selector: 'system-overview',
66
templateUrl: './overview.component.html',
77
styleUrls: ['./overview.component.css']
88
})

src/app/core/properties/properties.component.html renamed to src/app/system/properties/properties.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,12 @@ <h3>Setter Accessor</h3>
104104
<nav class="no-print" aria-label="Page navigation">
105105
<ul class="nav-page">
106106
<li class="nav-page-item">
107-
<a class="nav-page-link" routerLink="/docs/core/overview">
107+
<a class="nav-page-link" routerLink="/docs/system/overview">
108108
<i class="chevron left"></i> Previous
109109
</a>
110110
</li>
111111
<li class="nav-page-item">
112-
<a class="nav-page-link" routerLink="/docs/core/extension">
112+
<a class="nav-page-link" routerLink="/docs/system/extension">
113113
Next <i class="chevron right"></i>
114114
</a>
115115
</li>

src/app/core/properties/properties.component.ts renamed to src/app/system/properties/properties.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
22
import hljs from 'highlight.js/lib/common';
33

44
@Component({
5-
selector: 'core-properties',
5+
selector: 'system-properties',
66
templateUrl: './properties.component.html',
77
styleUrls: ['./properties.component.css']
88
})

src/app/core/core-routing.module.ts renamed to src/app/system/system-routing.module.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ import { AsynchronousComponent } from './asynchronous/asynchronous.component';
99
import { DelegatesComponent } from './delegates/delegates.component';
1010

1111
const routes: Routes = [
12-
{ path: 'docs/core/overview', component: OverviewComponent },
13-
{ path: 'docs/core/properties', component: PropertiesComponent },
14-
{ path: 'docs/core/extension', component: ExtensionComponent },
15-
{ path: 'docs/core/linq', component: LinqComponent },
16-
{ path: 'docs/core/generics', component: GenericsComponent },
17-
{ path: 'docs/core/asynchronous', component: AsynchronousComponent },
18-
{ path: 'docs/core/delegates', component: DelegatesComponent },
19-
{ path: 'docs/core', redirectTo: 'docs/core/overview', pathMatch: 'full' }
12+
{ path: 'docs/system/overview', component: OverviewComponent },
13+
{ path: 'docs/system/properties', component: PropertiesComponent },
14+
{ path: 'docs/system/extension', component: ExtensionComponent },
15+
{ path: 'docs/system/linq', component: LinqComponent },
16+
{ path: 'docs/system/generics', component: GenericsComponent },
17+
{ path: 'docs/system/asynchronous', component: AsynchronousComponent },
18+
{ path: 'docs/system/delegates', component: DelegatesComponent },
19+
{ path: 'docs/system', redirectTo: 'docs/system/overview', pathMatch: 'full' }
2020
];
2121

2222
@NgModule({
2323
imports: [RouterModule.forChild(routes)],
2424
exports: [RouterModule]
2525
})
26-
export class CoreRoutingModule { }
26+
export class SystemRoutingModule { }

src/app/core/core.module.ts renamed to src/app/system/system.module.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { NgModule } from '@angular/core';
22
import { CommonModule } from '@angular/common';
3-
import { CoreRoutingModule } from './core-routing.module';
3+
import { SystemRoutingModule } from './system-routing.module';
44
import { SharedModule } from '../shared/shared.module';
55
import { OverviewComponent } from './overview/overview.component';
66
import { PropertiesComponent } from './properties/properties.component';
@@ -22,8 +22,8 @@ import { DelegatesComponent } from './delegates/delegates.component';
2222
],
2323
imports: [
2424
CommonModule,
25-
CoreRoutingModule,
25+
SystemRoutingModule,
2626
SharedModule
2727
]
2828
})
29-
export class CoreModule { }
29+
export class SystemModule { }

src/app/web/start/start.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ <h3>Run the application</h3>
110110
<nav class="no-print" aria-label="Page navigation">
111111
<ul class="nav-page">
112112
<li class="nav-page-item">
113-
<a class="nav-page-link" routerLink="/docs/core/delegates">
113+
<a class="nav-page-link" routerLink="/docs/system/delegates">
114114
<i class="chevron left"></i> Previous
115115
</a>
116116
</li>

0 commit comments

Comments
 (0)