@networkpro/web 0.13.2 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CODE_OF_CONDUCT.md +172 -0
- package/LICENSE.md +4 -4
- package/README.md +13 -12
- package/_headers +2 -0
- package/assets/bin/contact.vcf +13 -0
- package/assets/bin/contact@s.neteng.pro.aexpk +17 -0
- package/assets/bin/contact@s.neteng.pro.asc +17 -0
- package/assets/bin/github@sl.neteng.cc.aexpk +29 -0
- package/assets/bin/github@sl.neteng.cc.asc +29 -0
- package/assets/bin/linksheet.json +8 -0
- package/assets/bin/support@neteng.pro.aexpk +47 -0
- package/assets/bin/support@neteng.pro.asc +47 -0
- package/assets/consulting-terms.pdf +0 -0
- package/eslint.config.mjs +112 -0
- package/jsconfig.json +28 -0
- package/netlify.toml +3 -0
- package/package.json +63 -60
- package/playwright.config.js +79 -0
- package/postcss.config.mjs +14 -0
- package/scripts/bundleCss.js +40 -0
- package/src/app.d.ts +15 -0
- package/src/app.html +83 -0
- package/src/demo.spec.js +14 -0
- package/src/lib/components/Badges.svelte +74 -0
- package/src/lib/components/ContainerSection.svelte +19 -0
- package/src/lib/components/FullWidthSection.svelte +13 -0
- package/src/lib/components/LegalNav.svelte +75 -0
- package/src/lib/components/Logo.svelte +110 -0
- package/src/lib/components/MetaTags.svelte +41 -0
- package/src/lib/components/SocialMedia.svelte +70 -0
- package/src/lib/components/foss/FossFeatures.svelte +24 -0
- package/src/lib/components/foss/FossItemContent.svelte +153 -0
- package/src/lib/components/layout/Footer.svelte +188 -0
- package/src/lib/components/layout/HeaderDefault.svelte +86 -0
- package/src/lib/components/layout/HeaderHome.svelte +84 -0
- package/src/lib/data/fossData.js +233 -0
- package/src/lib/images.js +77 -0
- package/src/lib/img/badges/cc-by-badge.png +0 -0
- package/src/lib/img/badges/gpl-badge.svg +1 -0
- package/src/lib/img/by.svg +1 -0
- package/src/lib/img/cc.svg +1 -0
- package/src/lib/img/logo-web.png +0 -0
- package/src/lib/img/logo-web.webp +0 -0
- package/src/lib/img/obtainium.webp +0 -0
- package/src/lib/img/posts/acode.png +0 -0
- package/src/lib/img/posts/acode.webp +0 -0
- package/src/lib/img/posts/linksheet.png +0 -0
- package/src/lib/img/posts/linksheet.webp +0 -0
- package/src/lib/img/posts/pmx.png +0 -0
- package/src/lib/img/posts/pmx.webp +0 -0
- package/src/lib/img/posts/tosdr.png +0 -0
- package/src/lib/img/posts/tosdr.webp +0 -0
- package/src/lib/img/posts/urlcheck.png +0 -0
- package/src/lib/img/posts/urlcheck.webp +0 -0
- package/src/lib/index.js +43 -0
- package/src/lib/meta.js +73 -0
- package/src/lib/pages/AboutContent.svelte +294 -0
- package/src/lib/pages/FossContent.svelte +109 -0
- package/src/lib/pages/HomeContent.svelte +120 -0
- package/src/lib/pages/LicenseContent.svelte +486 -0
- package/src/lib/pages/PrivacyContent.svelte +249 -0
- package/src/lib/pages/TermsConditionsContent.svelte +240 -0
- package/src/lib/pages/TermsUseContent.svelte +236 -0
- package/src/lib/registerServiceWorker.js +65 -0
- package/src/lib/styles/css/brands.css +76 -0
- package/src/lib/styles/css/brands.min.css +6 -0
- package/src/lib/styles/css/default.css +454 -0
- package/src/lib/styles/css/fontawesome.min.css +9 -0
- package/src/lib/styles/css/global.css +10 -0
- package/src/lib/styles/css/normalize.css +349 -0
- package/src/lib/styles/css/offline.css +120 -0
- package/src/lib/styles/css/solid.min.css +6 -0
- package/src/lib/styles/css/style.css +310 -0
- package/src/lib/styles/fa-global.css +10 -0
- package/src/lib/styles/global.min.css +9 -0
- package/src/lib/styles/index.js +11 -0
- package/src/lib/styles/webfonts/fa-brands-400.ttf +0 -0
- package/src/lib/styles/webfonts/fa-brands-400.woff2 +0 -0
- package/src/lib/styles/webfonts/fa-solid-900.ttf +0 -0
- package/src/lib/styles/webfonts/fa-solid-900.woff2 +0 -0
- package/src/routes/+error.svelte +43 -0
- package/src/routes/+layout.js +38 -0
- package/src/routes/+layout.svelte +113 -0
- package/src/routes/+page.server.js +27 -0
- package/src/routes/+page.svelte +82 -0
- package/src/routes/about/+page.server.js +17 -0
- package/src/routes/about/+page.svelte +66 -0
- package/src/routes/contact/+page.server.js +24 -0
- package/src/routes/example.svx +9 -0
- package/src/routes/foss-spotlight/+page.server.js +17 -0
- package/src/routes/foss-spotlight/+page.svelte +68 -0
- package/src/routes/license/+page.server.js +17 -0
- package/src/routes/license/+page.svelte +68 -0
- package/src/routes/page.svelte.test.js +29 -0
- package/src/routes/privacy-policy/+page.server.js +17 -0
- package/src/routes/privacy-policy/+page.svelte +68 -0
- package/src/routes/privacy-rights/+page.server.js +24 -0
- package/src/routes/terms-conditions/+page.server.js +17 -0
- package/src/routes/terms-conditions/+page.svelte +68 -0
- package/src/routes/terms-of-use/+page.server.js +17 -0
- package/src/routes/terms-of-use/+page.svelte +68 -0
- package/src/service-worker.d.ts +4 -0
- package/src/service-worker.js +90 -0
- package/static/icon-512x512-maskable.png +0 -0
- package/static/icon-contact.png +0 -0
- package/static/icon-services.png +0 -0
- package/static/img/qr/pgp-github.png +0 -0
- package/static/img/svelte.png +0 -0
- package/static/manifest.json +64 -0
- package/static/offline.html +79 -0
- package/static/offline.min.css +7 -0
- package/{robots.txt → static/robots.txt} +0 -2
- package/static/sitemap.xml +102 -0
- package/stylelint.config.js +118 -0
- package/svelte.config.js +56 -0
- package/tests/app.spec.js +67 -0
- package/tests/mobile.spec.js +58 -0
- package/tests-examples/demo-todo-app.spec.js +504 -0
- package/tsconfig.custom.json +39 -0
- package/vite.config.js +19 -0
- package/vitest-setup-client.js +33 -0
- package/vitest.config.client.js +34 -0
- package/vitest.config.server.js +30 -0
- package/404.html +0 -84
- package/about.html +0 -334
- package/about.html.br +0 -0
- package/about.html.gz +0 -0
- package/css/default.css +0 -1
- package/css/normalize.css +0 -1
- package/css/style.css +0 -1
- package/docs/404.html +0 -1187
- package/docs/assets/external/avatars.githubusercontent.com/u/170266279.png +0 -0
- package/docs/assets/external/img.shields.io/badge/GitHub_Package_Registry-white.ed8def48.svg +0 -1
- package/docs/assets/external/img.shields.io/badge/npmjs-white.681714c1.svg +0 -1
- package/docs/assets/external/mirrors.creativecommons.org/presskit/icons/by.svg +0 -20
- package/docs/assets/external/mirrors.creativecommons.org/presskit/icons/cc.svg +0 -27
- package/docs/assets/external/unpkg.com/mermaid@11/dist/mermaid.min.js +0 -2607
- package/docs/assets/images/favicon.png +0 -0
- package/docs/assets/javascripts/bundle.c8b220af.min.js +0 -16
- package/docs/assets/javascripts/bundle.c8b220af.min.js.map +0 -7
- package/docs/assets/javascripts/lunr/min/lunr.ar.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.da.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.de.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.du.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.el.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.es.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.fi.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.fr.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.he.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.hi.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.hu.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.hy.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.it.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.ja.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.jp.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.kn.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.ko.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.multi.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.nl.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.no.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.pt.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.ro.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.ru.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.sa.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.stemmer.support.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.sv.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.ta.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.te.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.th.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.tr.min.js +0 -18
- package/docs/assets/javascripts/lunr/min/lunr.vi.min.js +0 -1
- package/docs/assets/javascripts/lunr/min/lunr.zh.min.js +0 -1
- package/docs/assets/javascripts/lunr/tinyseg.js +0 -206
- package/docs/assets/javascripts/lunr/wordcut.js +0 -6708
- package/docs/assets/javascripts/workers/search.f8cc74c7.min.js +0 -42
- package/docs/assets/javascripts/workers/search.f8cc74c7.min.js.map +0 -7
- package/docs/assets/stylesheets/main.2afb09e1.min.css +0 -1
- package/docs/assets/stylesheets/main.2afb09e1.min.css.map +0 -1
- package/docs/assets/stylesheets/palette.06af60db.min.css +0 -1
- package/docs/assets/stylesheets/palette.06af60db.min.css.map +0 -1
- package/docs/blog/2015/01/04/secure-secure-shell/index.html +0 -1771
- package/docs/blog/2025/04/30/our-blog-is-live/index.html +0 -1436
- package/docs/blog/archive/2015/index.html +0 -1303
- package/docs/blog/archive/2025/index.html +0 -1291
- package/docs/blog/category/security/index.html +0 -1303
- package/docs/blog/index.html +0 -1350
- package/docs/conduct/index.html +0 -1509
- package/docs/feed_json_created.json +0 -1
- package/docs/feed_json_updated.json +0 -1
- package/docs/feed_rss_created.xml +0 -1
- package/docs/feed_rss_updated.xml +0 -1
- package/docs/fontawesome/LICENSE.txt +0 -165
- package/docs/fontawesome/brands/facebook.svg +0 -1
- package/docs/fontawesome/brands/instagram.svg +0 -1
- package/docs/fontawesome/brands/linkedin.svg +0 -1
- package/docs/fontawesome/brands/mastodon.svg +0 -1
- package/docs/fontawesome/solid/at.svg +0 -1
- package/docs/index.html +0 -1395
- package/docs/legal/index.html +0 -1740
- package/docs/privacy/index.html +0 -1615
- package/docs/search/search_index.json +0 -1
- package/docs/sitemap.xml +0 -55
- package/docs/sitemap.xml.gz +0 -0
- package/docs/tags/index.html +0 -2084
- package/docs/terms-conditions/index.html +0 -1655
- package/docs/terms-use/index.html +0 -1584
- package/favicon-192.png +0 -0
- package/favicon-512.png +0 -0
- package/favicon.svg.br +0 -0
- package/favicon.svg.gz +0 -0
- package/html/spotlight.html +0 -516
- package/html/spotlight.html.br +0 -0
- package/html/spotlight.html.gz +0 -0
- package/img/banner-1440.png +0 -0
- package/img/favicon-template.png +0 -0
- package/img/fb-cover.png +0 -0
- package/img/fb-cover2.png +0 -0
- package/img/fsf-member.png +0 -0
- package/img/gh-logo.png +0 -0
- package/img/gpl3-small.png +0 -0
- package/img/gpl3.png +0 -0
- package/img/linkedin-banner-new.png +0 -0
- package/img/linkedin-banner.png +0 -0
- package/img/linkedin-banner2.png +0 -0
- package/img/logo-1024x1024.png +0 -0
- package/img/logo-alt.png +0 -0
- package/img/logo-elevated.png +0 -0
- package/img/logo-light-elevated.png +0 -0
- package/img/logo-light-slogan.png +0 -0
- package/img/logo-light.png +0 -0
- package/img/logo-slogan.png +0 -0
- package/img/logo-transparent-black-small.png +0 -0
- package/img/logo-transparent-black.png +0 -0
- package/img/logo-transparent-elevated.png +0 -0
- package/img/logo-transparent-slogan.png +0 -0
- package/img/mastodon-banner.png +0 -0
- package/img/netpro-logo-transparent.png +0 -0
- package/img/posts/acode.png +0 -0
- package/img/posts/linksheet.png +0 -0
- package/img/posts/pmx.png +0 -0
- package/img/posts/tosdr.png +0 -0
- package/img/posts/urlcheck.png +0 -0
- package/img/sd311.png +0 -0
- package/img/shield.png +0 -0
- package/img/shield.svg +0 -1
- package/img/shield.svg.br +0 -0
- package/img/shield.svg.gz +0 -0
- package/img/shield2.png +0 -0
- package/img/shield3-2000x2000.png +0 -0
- package/img/shield3-black-1024x1024.png +0 -0
- package/img/shield3-black.png +0 -0
- package/img/shield3-white.png +0 -0
- package/img/trademark.jpg +0 -0
- package/index.html +0 -268
- package/index.html.br +0 -0
- package/index.html.gz +0 -0
- package/js/app.d544156ea2ba85a7d486.mjs +0 -1
- package/js/runtime.52b1ac291305b90de3df.mjs +0 -1
- package/js/vendor/.gitkeep +0 -0
- package/legal.html +0 -535
- package/legal.html.br +0 -0
- package/legal.html.gz +0 -0
- package/privacy.html +0 -404
- package/privacy.html.br +0 -0
- package/privacy.html.gz +0 -0
- package/site.webmanifest +0 -25
- package/sitemap.xml +0 -177
- package/terms-and-conditions.html +0 -409
- package/terms-and-conditions.html.br +0 -0
- package/terms-and-conditions.html.gz +0 -0
- package/terms-of-use.html +0 -380
- package/terms-of-use.html.br +0 -0
- package/terms-of-use.html.gz +0 -0
- /package/{docs/assets/external/raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master/assets → assets}/nsa-happy-dance.png +0 -0
- /package/{favicon.svg → src/lib/img/favicon.svg} +0 -0
- /package/{favicon-180.png → src/lib/img/icon-180x180.png} +0 -0
- /package/{img/badge_obtainium.png → src/lib/img/obtainium.png} +0 -0
- /package/{docs/assets/external/raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master → src/lib}/img/qr/pgp-contact.png +0 -0
- /package/{img → src/lib/img}/qr/pgp-github.png +0 -0
- /package/{docs/assets/external/raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master → src/lib}/img/qr/pgp-support.png +0 -0
- /package/{docs/assets/external/raw.githubusercontent.com/netwk-pro/netwk-pro.github.io/refs/heads/master → src/lib}/img/qr/vcard.png +0 -0
- /package/{CNAME → static/CNAME} +0 -0
- /package/{favicon.ico → static/favicon.ico} +0 -0
- /package/{docs/img/favicon.png → static/icon-192x192.png} +0 -0
- /package/{docs/img/logo.png → static/icon-512x512.png} +0 -0
- /package/{favicon-splash.png → static/icon-splash.png} +0 -0
- /package/{img → static/img}/banner-1280x640.png +0 -0
- /package/{img → static/img}/banner-og-1200x630.png +0 -0
- /package/{img → static/img}/logo-transparent.png +0 -0
- /package/{img → static/img}/logo.png +0 -0
- /package/{img → static/img}/qr/pgp-contact.png +0 -0
- /package/{img → static/img}/qr/pgp-support.png +0 -0
- /package/{img → static/img}/qr/vcard.png +0 -0
|
@@ -0,0 +1,486 @@
|
|
|
1
|
+
<!-- ==========================================================================
|
|
2
|
+
src/lib/pages/LicenseContent.svelte
|
|
3
|
+
|
|
4
|
+
SPDX-License-Identifier: CC-BY-4.0 OR GPL-3.0-or-later
|
|
5
|
+
This file is part of Network Pro.
|
|
6
|
+
========================================================================== -->
|
|
7
|
+
|
|
8
|
+
<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
|
+
|
|
27
|
+
/**
|
|
28
|
+
* Table of Contents Links
|
|
29
|
+
* @type {{ id: string, text: string }[]}
|
|
30
|
+
*/
|
|
31
|
+
const tocLinks = [
|
|
32
|
+
{ id: "copyright", text: "Copyright" },
|
|
33
|
+
{ id: "trademark", text: "Trademark Ownership" },
|
|
34
|
+
{ id: "branding", text: "Restrictions on Branding and Graphics" },
|
|
35
|
+
{ id: "lmaterial", text: "Licensed Material Definition" },
|
|
36
|
+
{ id: "lterms", text: "License Terms" },
|
|
37
|
+
{ id: "dlnotes", text: "Dual Licensing Notes" },
|
|
38
|
+
{ id: "cc-by", text: "Creative Commons License (CC BY 4.0)" },
|
|
39
|
+
{ id: "gnu-gpl", text: "GNU General Public License (GPL)" },
|
|
40
|
+
{ id: "third-party", text: "Third-Party Code and Licenses" },
|
|
41
|
+
{ id: "prohibited-uses", text: "Prohibited Uses" },
|
|
42
|
+
{ id: "disclaimer", text: "Modifications and Liability Disclaimer" },
|
|
43
|
+
{ id: "contact", text: "Contact" },
|
|
44
|
+
{ id: "revisions", text: "Revisions" },
|
|
45
|
+
];
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Constants for reusable content
|
|
49
|
+
* @type {{ company: string, effectiveDate: string, classSmall: string, rel: string, hrefTop: string, targetBlank: string, targetSelf: string }}
|
|
50
|
+
*/
|
|
51
|
+
const constants = {
|
|
52
|
+
company: "Network Pro Strategies",
|
|
53
|
+
effectiveDate: "May 18, 2025",
|
|
54
|
+
classSmall: "small-text",
|
|
55
|
+
rel: "noopener noreferrer",
|
|
56
|
+
hrefTop: "#top",
|
|
57
|
+
targetBlank: "_blank",
|
|
58
|
+
targetSelf: "_self",
|
|
59
|
+
};
|
|
60
|
+
</script>
|
|
61
|
+
|
|
62
|
+
<!-- BEGIN TITLE -->
|
|
63
|
+
<section id="top">
|
|
64
|
+
<span class={constants.classSmall}>
|
|
65
|
+
<a
|
|
66
|
+
rel={constants.rel}
|
|
67
|
+
href="https://spdx.dev/learn/handling-license-info"
|
|
68
|
+
target={constants.targetBlank}>
|
|
69
|
+
SPDX License Identifier
|
|
70
|
+
</a>
|
|
71
|
+
: <code>CC-BY-4.0 OR GPL-3.0-or-later</code>
|
|
72
|
+
</span>
|
|
73
|
+
</section>
|
|
74
|
+
|
|
75
|
+
<section id="page-title">
|
|
76
|
+
<h1>Legal, Copyright, and Licensing</h1>
|
|
77
|
+
<p>
|
|
78
|
+
<strong>{constants.company}</strong><br />
|
|
79
|
+
<strong>Effective Date:</strong>
|
|
80
|
+
{constants.effectiveDate}
|
|
81
|
+
</p>
|
|
82
|
+
</section>
|
|
83
|
+
<!-- END TITLE -->
|
|
84
|
+
|
|
85
|
+
|
|
86
|
+
|
|
87
|
+
<!-- BEGIN LEGAL, LICENSING, AND COPYRIGHT -->
|
|
88
|
+
<nav id="toc">
|
|
89
|
+
<h3>Table of Contents</h3>
|
|
90
|
+
<ol>
|
|
91
|
+
{#each tocLinks as link}
|
|
92
|
+
<li><a href={"#" + link.id}>{link.text}</a></li>
|
|
93
|
+
{/each}
|
|
94
|
+
</ol>
|
|
95
|
+
</nav>
|
|
96
|
+
|
|
97
|
+
<hr />
|
|
98
|
+
|
|
99
|
+
<section id="formats">
|
|
100
|
+
<p>
|
|
101
|
+
<sup>
|
|
102
|
+
<strong>Formats Available:</strong> <span class="visited"
|
|
103
|
+
>HTML</span>
|
|
104
|
+
|
|
|
105
|
+
<a href={legalLink} target={constants.targetSelf}>Markdown</a>
|
|
106
|
+
</sup>
|
|
107
|
+
</p>
|
|
108
|
+
</section>
|
|
109
|
+
|
|
110
|
+
<!-- POLICY SECTIONS -->
|
|
111
|
+
{#each tocLinks as link, i}
|
|
112
|
+
<section id={link.id}>
|
|
113
|
+
<h2>{i + 1}. {link.text}</h2>
|
|
114
|
+
|
|
115
|
+
{#if link.id === "copyright"}
|
|
116
|
+
<p>
|
|
117
|
+
All content—including text, software, logos, graphics, documentation,
|
|
118
|
+
and other materials—provided by
|
|
119
|
+
<strong>{constants.company}</strong> (“Network Pro”, “Company”, “Licensor”)
|
|
120
|
+
is protected by U.S. and international copyright laws.
|
|
121
|
+
</p>
|
|
122
|
+
<p>
|
|
123
|
+
Copyright © 2025
|
|
124
|
+
<strong>
|
|
125
|
+
<a href={homeLink} target={constants.targetBlank}>
|
|
126
|
+
Network Pro Strategies
|
|
127
|
+
</a>
|
|
128
|
+
</strong>
|
|
129
|
+
(Network Pro™)
|
|
130
|
+
</p>
|
|
131
|
+
{:else if link.id === "trademark"}
|
|
132
|
+
<p>The following trademarks are the exclusive property of the Company:</p>
|
|
133
|
+
<ul>
|
|
134
|
+
<li><strong>Brand Name:</strong> Network Pro™</li>
|
|
135
|
+
<li><strong>Domain Names:</strong> netwk.pro, neteng.pro, neteng.cc</li>
|
|
136
|
+
<li
|
|
137
|
+
><strong>Logo:</strong> The shield logo displayed on our homepage</li>
|
|
138
|
+
<li
|
|
139
|
+
><strong>Slogan:</strong> "Locking Down Networks, Unlocking Confidence™"</li>
|
|
140
|
+
</ul>
|
|
141
|
+
<p
|
|
142
|
+
>Unauthorized use—including use likely to cause confusion,
|
|
143
|
+
misrepresentation, or disparagement—is strictly prohibited.</p>
|
|
144
|
+
{:else if link.id === "branding"}
|
|
145
|
+
<p>
|
|
146
|
+
Licensing under CC BY 4.0 or the GNU GPL <strong
|
|
147
|
+
>expressly excludes</strong> any rights to use the Company's trademarks,
|
|
148
|
+
trade dress, logos, visual branding, or other proprietary identifiers.
|
|
149
|
+
</p>
|
|
150
|
+
<p>
|
|
151
|
+
<strong
|
|
152
|
+
>Such elements are not part of the Licensed Material and remain the
|
|
153
|
+
exclusive property of the Company.</strong>
|
|
154
|
+
Any use of these elements—including within derivative works or promotional
|
|
155
|
+
content—requires the Company's
|
|
156
|
+
<strong>prior written consent</strong>.
|
|
157
|
+
</p>
|
|
158
|
+
{:else if link.id === "lmaterial"}
|
|
159
|
+
<p>
|
|
160
|
+
“Licensed Material” refers solely to the publicly available code and
|
|
161
|
+
documentation distributed through the Company's open repositories and
|
|
162
|
+
websites. It expressly excludes all third-party content, proprietary
|
|
163
|
+
brand assets (including logos, trademarks, and visual designs), and any
|
|
164
|
+
internal or commercial backend systems.
|
|
165
|
+
</p>
|
|
166
|
+
<p>
|
|
167
|
+
For clarity, the Company itself is not licensed under, nor subject to,
|
|
168
|
+
the terms of the open-source or content licenses described in this
|
|
169
|
+
document.
|
|
170
|
+
</p>
|
|
171
|
+
{:else if link.id === "lterms"}
|
|
172
|
+
<p>This work is dual-licensed under:</p>
|
|
173
|
+
<ul>
|
|
174
|
+
<li>
|
|
175
|
+
<a href="#cc-by"
|
|
176
|
+
>Creative Commons Attribution 4.0 International (CC BY 4.0)</a>
|
|
177
|
+
</li>
|
|
178
|
+
<li>
|
|
179
|
+
<a href="#gnu-gpl"
|
|
180
|
+
>GNU General Public License v3.0 or later (GNU GPL)</a>
|
|
181
|
+
</li>
|
|
182
|
+
</ul>
|
|
183
|
+
{:else if link.id === "dlnotes"}
|
|
184
|
+
<ul>
|
|
185
|
+
<li>
|
|
186
|
+
You may choose to use the work under either license, or both where
|
|
187
|
+
appropriate.
|
|
188
|
+
</li>
|
|
189
|
+
<li>
|
|
190
|
+
See Creative Commons FAQ:
|
|
191
|
+
<a
|
|
192
|
+
rel={constants.rel}
|
|
193
|
+
href="https://creativecommons.org/faq/#can-i-enter-into-separate-or-supplemental-agreements-with-users-of-my-work"
|
|
194
|
+
target={constants.targetBlank}>
|
|
195
|
+
Separate agreements
|
|
196
|
+
</a>
|
|
197
|
+
</li>
|
|
198
|
+
<li>
|
|
199
|
+
See GPL compatibility:
|
|
200
|
+
<a
|
|
201
|
+
rel={constants.rel}
|
|
202
|
+
href="https://www.gnu.org/licenses/gpl-faq.html#WhatDoesCompatMean"
|
|
203
|
+
target={constants.targetBlank}>
|
|
204
|
+
GPL FAQ
|
|
205
|
+
</a>
|
|
206
|
+
</li>
|
|
207
|
+
</ul>
|
|
208
|
+
{:else if link.id === "cc-by"}
|
|
209
|
+
<p class={constants.classSmall}>
|
|
210
|
+
Formats:
|
|
211
|
+
<a
|
|
212
|
+
rel={constants.rel}
|
|
213
|
+
href="https://legal.netwk.pro/html/CC-BY-4.0.html"
|
|
214
|
+
target={constants.targetSelf}>HTML</a>
|
|
215
|
+
|
|
|
216
|
+
<a
|
|
217
|
+
rel={constants.rel}
|
|
218
|
+
href="https://github.com/netwk-pro/netwk-pro-legal/blob/master/assets/license/CC-BY-4.0.md"
|
|
219
|
+
target={constants.targetBlank}>Markdown</a>
|
|
220
|
+
|
|
|
221
|
+
<a
|
|
222
|
+
rel={constants.rel}
|
|
223
|
+
href="https://github.com/netwk-pro/netwk-pro-legal/blob/master/assets/license/CC-BY-4.0.txt"
|
|
224
|
+
target={constants.targetBlank}>Text</a>
|
|
225
|
+
|
|
|
226
|
+
<a
|
|
227
|
+
rel={constants.rel}
|
|
228
|
+
download
|
|
229
|
+
href="https://raw.githubusercontent.com/netwk-pro/netwk-pro-legal/refs/heads/master/assets/license/CC-BY-4.0-rdfa.xml"
|
|
230
|
+
target={constants.targetBlank}>RDFa</a>
|
|
231
|
+
|
|
|
232
|
+
<a
|
|
233
|
+
rel={constants.rel}
|
|
234
|
+
download
|
|
235
|
+
href="https://raw.githubusercontent.com/netwk-pro/netwk-pro-legal/refs/heads/master/assets/license/CC-BY-4.0.xml"
|
|
236
|
+
target={constants.targetBlank}>XMP</a>
|
|
237
|
+
</p>
|
|
238
|
+
|
|
239
|
+
<p>
|
|
240
|
+
Network Pro™ (the "Licensed Material") is licensed under
|
|
241
|
+
<strong>Creative Commons Attribution 4.0 International</strong> (CC BY
|
|
242
|
+
4.0)
|
|
243
|
+
<a
|
|
244
|
+
rel={constants.rel}
|
|
245
|
+
href="https://creativecommons.org/licenses/by/4.0/"
|
|
246
|
+
target={constants.targetBlank}>
|
|
247
|
+
<img
|
|
248
|
+
decoding="async"
|
|
249
|
+
loading="lazy"
|
|
250
|
+
style="
|
|
251
|
+
display: inline-block;
|
|
252
|
+
height: 18px !important;
|
|
253
|
+
margin-left: 3px;
|
|
254
|
+
text-decoration: none;
|
|
255
|
+
vertical-align: text-bottom;
|
|
256
|
+
"
|
|
257
|
+
src="https://mirrors.creativecommons.org/presskit/icons/cc.svg"
|
|
258
|
+
alt="Creative Commons BY" />
|
|
259
|
+
</a>
|
|
260
|
+
<a
|
|
261
|
+
rel={constants.rel}
|
|
262
|
+
href="https://creativecommons.org/licenses/by/4.0/"
|
|
263
|
+
target={constants.targetBlank}>
|
|
264
|
+
<img
|
|
265
|
+
decoding="async"
|
|
266
|
+
loading="lazy"
|
|
267
|
+
style="
|
|
268
|
+
display: inline-block;
|
|
269
|
+
height: 18px !important;
|
|
270
|
+
margin-left: 3px;
|
|
271
|
+
text-decoration: none;
|
|
272
|
+
vertical-align: text-bottom;
|
|
273
|
+
"
|
|
274
|
+
src="https://mirrors.creativecommons.org/presskit/icons/by.svg"
|
|
275
|
+
alt="Creative Commons BY" />
|
|
276
|
+
</a>.
|
|
277
|
+
</p>
|
|
278
|
+
|
|
279
|
+
<p>
|
|
280
|
+
Per the terms of the License, you are free to distribute, remix, adapt,
|
|
281
|
+
and build upon the Licensed Material for any purpose, even commercially.
|
|
282
|
+
You must give appropriate credit, provide a link to the License, and
|
|
283
|
+
indicate if changes were made.
|
|
284
|
+
</p>
|
|
285
|
+
|
|
286
|
+
<p>
|
|
287
|
+
Permissions beyond the scope of this License—or instead of those
|
|
288
|
+
permitted by this License—may be available as further defined within
|
|
289
|
+
this document.
|
|
290
|
+
</p>
|
|
291
|
+
|
|
292
|
+
<code class="block">
|
|
293
|
+
<p>
|
|
294
|
+
SPDX Reference:<br />
|
|
295
|
+
<a
|
|
296
|
+
rel={constants.rel}
|
|
297
|
+
href="https://spdx.org/licenses/CC-BY-4.0.html"
|
|
298
|
+
target={constants.targetBlank}>
|
|
299
|
+
https://spdx.org/licenses/CC-BY-4.0.html
|
|
300
|
+
</a>
|
|
301
|
+
</p>
|
|
302
|
+
|
|
303
|
+
<p>
|
|
304
|
+
Canonical URL:<br />
|
|
305
|
+
<a
|
|
306
|
+
rel={constants.rel}
|
|
307
|
+
href="https://creativecommons.org/licenses/by/4.0/"
|
|
308
|
+
target={constants.targetBlank}>
|
|
309
|
+
https://creativecommons.org/licenses/by/4.0/
|
|
310
|
+
</a>
|
|
311
|
+
</p>
|
|
312
|
+
</code>
|
|
313
|
+
{:else if link.id === "gnu-gpl"}
|
|
314
|
+
<p class={constants.classSmall}>
|
|
315
|
+
Formats:
|
|
316
|
+
<a
|
|
317
|
+
rel={constants.rel}
|
|
318
|
+
href="https://legal.netwk.pro/html/COPYING.html"
|
|
319
|
+
target={constants.targetSelf}>HTML</a>
|
|
320
|
+
|
|
|
321
|
+
<a
|
|
322
|
+
rel={constants.rel}
|
|
323
|
+
href="https://github.com/netwk-pro/netwk-pro-legal/blob/master/assets/license/COPYING.md"
|
|
324
|
+
target={constants.targetBlank}>Markdown</a>
|
|
325
|
+
|
|
|
326
|
+
<a
|
|
327
|
+
rel={constants.rel}
|
|
328
|
+
href="https://github.com/netwk-pro/netwk-pro-legal/blob/master/assets/license/COPYING.txt"
|
|
329
|
+
target={constants.targetBlank}>Text</a>
|
|
330
|
+
|
|
|
331
|
+
<a
|
|
332
|
+
rel={constants.rel}
|
|
333
|
+
download
|
|
334
|
+
href="https://raw.githubusercontent.com/netwk-pro/netwk-pro-legal/refs/heads/master/assets/license/COPYING-rdfa.xml"
|
|
335
|
+
target={constants.targetBlank}>RDFa</a>
|
|
336
|
+
|
|
|
337
|
+
<a
|
|
338
|
+
rel={constants.rel}
|
|
339
|
+
download
|
|
340
|
+
href="https://raw.githubusercontent.com/netwk-pro/netwk-pro-legal/refs/heads/master/assets/license/COPYING.odt"
|
|
341
|
+
target={constants.targetBlank}>ODT</a>
|
|
342
|
+
</p>
|
|
343
|
+
|
|
344
|
+
<p>
|
|
345
|
+
Network Pro™ is free software: you can redistribute it and/or
|
|
346
|
+
modify it under the terms of the
|
|
347
|
+
<strong>GNU General Public License</strong> (GNU GPL) as published by
|
|
348
|
+
the
|
|
349
|
+
<a
|
|
350
|
+
rel={constants.rel}
|
|
351
|
+
href="https://fsf.org"
|
|
352
|
+
target={constants.targetBlank}>Free Software Foundation</a
|
|
353
|
+
>, either version 3 of the License, or (at your option) any later
|
|
354
|
+
version.
|
|
355
|
+
</p>
|
|
356
|
+
|
|
357
|
+
<p>
|
|
358
|
+
You should have received a copy of the GNU General Public License along
|
|
359
|
+
with this material. If not, see <
|
|
360
|
+
<a
|
|
361
|
+
rel={constants.rel}
|
|
362
|
+
href="https://www.gnu.org/licenses"
|
|
363
|
+
target={constants.targetBlank}>https://www.gnu.org/licenses/</a
|
|
364
|
+
>>.
|
|
365
|
+
</p>
|
|
366
|
+
|
|
367
|
+
<code class="block">
|
|
368
|
+
<p>
|
|
369
|
+
SPDX Reference:<br />
|
|
370
|
+
<a
|
|
371
|
+
rel={constants.rel}
|
|
372
|
+
href="https://spdx.org/licenses/GPL-3.0-or-later.html"
|
|
373
|
+
target={constants.targetBlank}>
|
|
374
|
+
https://spdx.org/licenses/GPL-3.0-or-later.html
|
|
375
|
+
</a>
|
|
376
|
+
</p>
|
|
377
|
+
|
|
378
|
+
<p>
|
|
379
|
+
Canonical URL:<br />
|
|
380
|
+
<a
|
|
381
|
+
rel={constants.rel}
|
|
382
|
+
href="https://www.gnu.org/licenses/gpl-3.0.html"
|
|
383
|
+
target={constants.targetBlank}>
|
|
384
|
+
https://gnu.org/licenses/gpl-3.0.html
|
|
385
|
+
</a>
|
|
386
|
+
</p>
|
|
387
|
+
</code>
|
|
388
|
+
{:else if link.id === "third-party"}
|
|
389
|
+
<p>
|
|
390
|
+
Some components of the Licensed Material may include or interface with
|
|
391
|
+
third-party libraries, frameworks, or assets.
|
|
392
|
+
<strong>
|
|
393
|
+
Each third-party component is governed solely by its own license terms
|
|
394
|
+
</strong>
|
|
395
|
+
and is expressly excluded from the scope of this document.
|
|
396
|
+
</p>
|
|
397
|
+
|
|
398
|
+
<p>
|
|
399
|
+
The inclusion, reference, or linking of any third-party content
|
|
400
|
+
<strong>
|
|
401
|
+
does not constitute endorsement, approval, or warranty
|
|
402
|
+
</strong>
|
|
403
|
+
by the Company.
|
|
404
|
+
</p>
|
|
405
|
+
|
|
406
|
+
<p>
|
|
407
|
+
<strong>It is the user's responsibility</strong> to review, understand, and
|
|
408
|
+
comply with all applicable third-party licenses before use, modification,
|
|
409
|
+
or distribution.
|
|
410
|
+
</p>
|
|
411
|
+
{:else if link.id === "prohibited-uses"}
|
|
412
|
+
<p>
|
|
413
|
+
<strong>
|
|
414
|
+
The following activities are strictly prohibited and may constitute
|
|
415
|
+
infringement or unfair competition under applicable law, unless
|
|
416
|
+
explicitly authorized in writing by the Company:
|
|
417
|
+
</strong>
|
|
418
|
+
</p>
|
|
419
|
+
|
|
420
|
+
<ul>
|
|
421
|
+
<li>
|
|
422
|
+
Use of any Company trademarks, logos, domain names, slogans, or brand
|
|
423
|
+
identifiers
|
|
424
|
+
</li>
|
|
425
|
+
<li>
|
|
426
|
+
Any representation—explicit or implied—suggesting endorsement,
|
|
427
|
+
affiliation, or partnership with the Company
|
|
428
|
+
</li>
|
|
429
|
+
<li>
|
|
430
|
+
Misuse, misappropriation, or unauthorized use of any intellectual
|
|
431
|
+
property owned by the Company
|
|
432
|
+
</li>
|
|
433
|
+
<li>
|
|
434
|
+
Incorporation of any Company branding or protected identifiers into
|
|
435
|
+
derivative works or redistributed content
|
|
436
|
+
</li>
|
|
437
|
+
</ul>
|
|
438
|
+
{:else if link.id === "disclaimer"}
|
|
439
|
+
<p>
|
|
440
|
+
Modifications, redistribution, or any use of the Licensed Material are
|
|
441
|
+
performed entirely at your own risk.
|
|
442
|
+
</p>
|
|
443
|
+
|
|
444
|
+
<blockquote>
|
|
445
|
+
<strong>
|
|
446
|
+
THE LICENSED MATERIAL IS PROVIDED “AS IS” AND “AS AVAILABLE,” WITHOUT
|
|
447
|
+
ANY EXPRESS OR IMPLIED WARRANTIES. TO THE MAXIMUM EXTENT PERMITTED BY
|
|
448
|
+
LAW, THE COMPANY DISCLAIMS ALL WARRANTIES, INCLUDING BUT NOT LIMITED
|
|
449
|
+
TO IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
|
450
|
+
PURPOSE, NON-INFRINGEMENT, AND ACCURACY.
|
|
451
|
+
</strong>
|
|
452
|
+
</blockquote>
|
|
453
|
+
|
|
454
|
+
<p>
|
|
455
|
+
<strong>
|
|
456
|
+
The Company shall not be liable for any direct, indirect, incidental,
|
|
457
|
+
consequential, special, exemplary, or punitive damages arising from or
|
|
458
|
+
related to the use, reproduction, modification, or distribution of the
|
|
459
|
+
Licensed Material
|
|
460
|
+
</strong>
|
|
461
|
+
—including, without limitation, any claims or disputes brought by third parties,
|
|
462
|
+
whether in contract, tort, or otherwise.
|
|
463
|
+
</p>
|
|
464
|
+
{:else if link.id === "contact"}
|
|
465
|
+
<p>
|
|
466
|
+
The Company can be contacted via our
|
|
467
|
+
<a rel={constants.rel} href={contactLink} target={constants.targetBlank}
|
|
468
|
+
>contact form</a>
|
|
469
|
+
or by email at:<br />
|
|
470
|
+
📧 <code>contact (at) s.neteng.pro</code>
|
|
471
|
+
</p>
|
|
472
|
+
{:else if link.id === "revisions"}
|
|
473
|
+
<p>
|
|
474
|
+
This legal page may be updated to comply with legal or operational
|
|
475
|
+
changes. The current effective date is listed at the top of this
|
|
476
|
+
document.
|
|
477
|
+
</p>
|
|
478
|
+
{/if}
|
|
479
|
+
|
|
480
|
+
<span class={constants.classSmall}>
|
|
481
|
+
<a href={constants.hrefTop}>Back to top</a>
|
|
482
|
+
</span>
|
|
483
|
+
</section>
|
|
484
|
+
{/each}
|
|
485
|
+
<!-- END POLICY SECTIONS -->
|
|
486
|
+
<!-- END LEGAL, LICENSING, AND COPYRIGHT -->
|