Skip to content

Commit fcea4e7

Browse files
authored
Updated all remaining references to dev.netwk.pro, including the CNAM… (#19)
Updated all remaining references to dev.netwk.pro, including the CNAME file. Updated documentation links to new subdomain.
1 parent f25186a commit fcea4e7

File tree

8 files changed

+48
-27
lines changed

8 files changed

+48
-27
lines changed

.github/workflows/build-and-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ jobs:
141141
142142
- name: Update package name for GPR
143143
run: |
144-
sed -i 's/"name": ".*"/"name": "@netwk-pro\/dev-sveltekit"/' package.json
144+
sed -i 's/"name": ".*"/"name": "@netwk-pro\/web"/' package.json
145145
146146
- name: Publish package to GPR
147147
run: npm publish

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "@networkpro/dev-sveltekit",
2+
"name": "@networkpro/web",
33
"private": false,
44
"sideEffects": false,
5-
"version": "0.11.0",
5+
"version": "1.0.0",
66
"description": "Locking Down Networks, Unlocking Confidence | Security, Networking, Privacy — Network Pro Strategies",
77
"keywords": [
88
"security",

src/lib/pages/LicenseContent.svelte

Lines changed: 31 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,24 @@ This file is part of Network Pro.
66
========================================================================== -->
77

88
<script>
9+
import { base } from "$app/paths";
10+
11+
// Log the base path to verify its value
12+
//console.log("Base path:", base);
13+
14+
/**
15+
* URLs using the base path
16+
* @type {string}
17+
*/
18+
const homeLink = base || "/";
19+
const contactLink = `${base}/contact`;
20+
21+
/**
22+
* URL to the internal MkDocs documentation
23+
* @type {string}
24+
*/
25+
const legalLink = "https://docs.netwk.pro/legal";
26+
927
/**
1028
* Table of Contents Links
1129
* @type {{ id: string, text: string }[]}
@@ -32,7 +50,7 @@ This file is part of Network Pro.
3250
*/
3351
const constants = {
3452
company: "Network Pro Strategies",
35-
effectiveDate: "May 8, 2025",
53+
effectiveDate: "May 18, 2025",
3654
classSmall: "small-text",
3755
rel: "noopener noreferrer",
3856
hrefTop: "#top",
@@ -84,8 +102,7 @@ This file is part of Network Pro.
84102
<strong>Formats Available:</strong> &nbsp;<span class="visited"
85103
>HTML</span>
86104
|
87-
<a href="https://network.pro/docs/legal" target={constants.targetSelf}
88-
>Markdown</a>
105+
<a href={legalLink} target={constants.targetSelf}>Markdown</a>
89106
</sup>
90107
</p>
91108
</section>
@@ -105,7 +122,7 @@ This file is part of Network Pro.
105122
<p>
106123
Copyright &copy; 2025
107124
<strong>
108-
<a href="https://netwk.pro" target={constants.targetBlank}>
125+
<a href={homeLink} target={constants.targetBlank}>
109126
Network Pro Strategies
110127
</a>
111128
</strong>
@@ -208,12 +225,14 @@ This file is part of Network Pro.
208225
|
209226
<a
210227
rel={constants.rel}
211-
href="https://github.com/netwk-pro/netwk-pro-legal/blob/master/assets/license/CC-BY-4.0-rdfa.xml"
228+
download
229+
href="https://raw.githubusercontent.com/netwk-pro/netwk-pro-legal/refs/heads/master/assets/license/CC-BY-4.0-rdfa.xml"
212230
target={constants.targetBlank}>RDFa</a>
213231
|
214232
<a
215233
rel={constants.rel}
216-
href="https://github.com/netwk-pro/netwk-pro-legal/blob/master/assets/license/CC-BY-4.0.xml"
234+
download
235+
href="https://raw.githubusercontent.com/netwk-pro/netwk-pro-legal/refs/heads/master/assets/license/CC-BY-4.0.xml"
217236
target={constants.targetBlank}>XMP</a>
218237
</p>
219238

@@ -311,11 +330,13 @@ This file is part of Network Pro.
311330
|
312331
<a
313332
rel={constants.rel}
314-
href="https://github.com/netwk-pro/netwk-pro-legal/blob/master/assets/license/COPYING-rdfa.xml"
333+
download
334+
href="https://raw.githubusercontent.com/netwk-pro/netwk-pro-legal/refs/heads/master/assets/license/COPYING-rdfa.xml"
315335
target={constants.targetBlank}>RDFa</a>
316336
|
317337
<a
318338
rel={constants.rel}
339+
download
319340
href="https://raw.githubusercontent.com/netwk-pro/netwk-pro-legal/refs/heads/master/assets/license/COPYING.odt"
320341
target={constants.targetBlank}>ODT</a>
321342
</p>
@@ -443,12 +464,10 @@ This file is part of Network Pro.
443464
{:else if link.id === "contact"}
444465
<p>
445466
The Company can be contacted via our
446-
<a
447-
rel={constants.rel}
448-
href="https://contact.neteng.pro"
449-
target={constants.targetBlank}>contact form</a>
467+
<a rel={constants.rel} href={contactLink} target={constants.targetBlank}
468+
>contact form</a>
450469
or by email at:<br />
451-
📧 <code>support (at) neteng.pro</code>
470+
📧 <code>contact (at) s.neteng.pro</code>
452471
</p>
453472
{:else if link.id === "revisions"}
454473
<p>

src/lib/pages/PrivacyContent.svelte

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This file is part of Network Pro.
2121
* URL to the privacy policy in Markdown format
2222
* @type {string}
2323
*/
24-
const privacyLink = "https://netwk.pro/docs/privacy";
24+
const privacyLink = "https://docs.netwk.pro/privacy";
2525
2626
/**
2727
* Table of Contents Links
@@ -43,13 +43,14 @@ This file is part of Network Pro.
4343
4444
/**
4545
* Contact Information
46-
* @type {{ company: string, email: string, phone: string, effectiveDate: string }}
46+
* @type {{ company: string, email: string, secure: string, phone: string, effectiveDate: string }}
4747
*/
4848
const contactInfo = {
4949
company: "Network Pro Strategies",
5050
email: "support (at) neteng.pro",
51+
secure: "contact (at) s.neteng.pro",
5152
phone: "(623) 252-4350",
52-
effectiveDate: "May 8, 2025",
53+
effectiveDate: "May 18, 2025",
5354
};
5455
5556
/**
@@ -210,7 +211,7 @@ This file is part of Network Pro.
210211
rel={constants.rel}
211212
href={prightsLink}
212213
target={constants.targetBlank}>Privacy Rights Request Form</a>
213-
or email us at <code>{contactInfo.email}</code>.
214+
or email us at <code>{contactInfo.secure}</code>.
214215
</p>
215216
{:else if link.id === "third-party"}
216217
<p>
@@ -232,7 +233,8 @@ This file is part of Network Pro.
232233
<p>For questions, contact:</p>
233234
<p>
234235
<strong>{contactInfo.company}</strong><br />
235-
📧 Email: <code>{contactInfo.email}</code><br />
236+
📧 General Inquiries: <code>{contactInfo.email}</code><br />
237+
🔐 Secure Contact: <code>{contactInfo.secure}</code><br />
236238
📞 Phone: {contactInfo.phone}
237239
</p>
238240
{/if}

src/lib/pages/TermsConditionsContent.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This file is part of Network Pro.
2121
* Markdown version of the Terms and Conditions document
2222
* @type {string}
2323
*/
24-
const tandcLink = "https://netwk.pro/docs/terms-conditions";
24+
const tandcLink = "https://docs.netwk.pro/terms-conditions";
2525
2626
/**
2727
* Common constants used throughout the component

src/lib/pages/TermsUseContent.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This file is part of Network Pro.
3333
* Markdown version of the Terms of Use document
3434
* @type {string}
3535
*/
36-
const termsLink = "https://netwk.pro/docs/terms-use";
36+
const termsLink = "https://docs.netwk.pro/terms-use";
3737
3838
/**
3939
* Table of Contents Links

static/CNAME

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
dev.netwk.pro
1+
netwk.pro

0 commit comments

Comments
 (0)