Browse Source

Updating Readme Docs

v0.0.11
John Haverlack 3 years ago
parent
commit
4531fdf34a
  1. 48
      README.md
  2. 4
      package.json
  3. 53
      skqitam-client/index.js
  4. 4
      skqitam-client/package.json
  5. BIN
      skqitam-web.png
  6. 3
      web/root/docs/contact.md
  7. 10
      web/root/docs/index.md
  8. 4
      web/root/docs/js/skq-it-am.js
  9. 2
      web/root/docs/license.md
  10. 1
      web/root/docs/versions.md
  11. 2
      web/root/mkdocs.yml
  12. 2
      web/root/site/404.html
  13. 2
      web/root/site/bootstrap.html
  14. 2
      web/root/site/build.html
  15. 2
      web/root/site/cloning.html
  16. 2
      web/root/site/code.html
  17. 5
      web/root/site/contact.html
  18. 2
      web/root/site/editing.html
  19. 2
      web/root/site/equations.html
  20. 2
      web/root/site/footnotes.html
  21. 2
      web/root/site/icons.html
  22. 11
      web/root/site/index.html
  23. 2
      web/root/site/install.html
  24. 4
      web/root/site/js/skq-it-am.js
  25. 4
      web/root/site/license.html
  26. 2
      web/root/site/menu.html
  27. 2
      web/root/site/optional.html
  28. 2
      web/root/site/pdf.html
  29. 2
      web/root/site/search.html
  30. 2
      web/root/site/search/search_index.json
  31. BIN
      web/root/site/sitemap.xml.gz
  32. 2
      web/root/site/swipe.html
  33. 2
      web/root/site/test.html
  34. 2
      web/root/site/version.html
  35. 3
      web/root/site/versions.html

48
README.md

@ -1,25 +1,43 @@
# skq-it-am
Sikuliaq IT Asset Management
# Sikuliaq IT Asset Manager (skqitam)
Cross Platform System Asset Management Data Collection Tool
- Code: [https://github.alaska.edu/skq/skq-it-am.git](https://github.alaska.edu/skq/skq-it-am.git)
- Copyright © 2021 [University of Alaska Fairbanks](https://www.uaf.edu) - [College of Fisheries and Ocean Science](https://www.uaf.edu/cfos/) - [R/V Sikuliaq](https://www.sikuliaq.alaska.edu)
- Proposed Open Source License: [ISC License (ISC)](https://opensource.org/licenses/ISC)
- Status: Under Development, anticipated release June 2021
The Sikuliaq IT Asset Manager is a non-invasive tool that can be safely run on Windows, Mac, and Linux hosts to collect and report hardware and software information for IT Cybersecurity Auditing purposes.
# Goals
- Minimally invasive installation using Native system calls
- Runs without Admin Privileges
-
- Facilitates centralized data collection of an organizations computers
# Installation
## Server Setup
- Currently Requires UA GitHub Access, not published openly on the Internet.
- Tested on Debian Linux but should work on other Linux or OS X platforms. Windows powershell setup scripts should be relatively easy to add.
#### Clone Code Base
```
git clone https://github.alaska.edu/skq/skq-it-am.git
```
# TODO
- Check for Admin Permissions
- Windows PS calls
- Windows PS WGET
- Web Copy
#### Run Server Setup
```
cd skq-it-am
./server-setup.sh
```
#### Start Server
```
./start-server.sh
```
## Version Files
Point your browser to:
- [http://localhost:8411]
- Follow the directions to run the skqitam client on Windows, Mac, and Linux hosts
- package.json
- mkdocs.yml
- skqitam-setup.sh
- skqitam-setup.ps1
-
![sqkitam-web](skqitam-web.png)

4
package.json

@ -1,7 +1,7 @@
{
"name": "skq-it-am",
"version": "0.0.3",
"version_date": "2021-06-10",
"version": "0.0.4",
"version_date": "2021-06-11",
"description": "Sikuliaq IT Asset Manager",
"main": "index.js",
"dependencies": {

53
skqitam-client/index.js

@ -35,7 +35,7 @@ if (process.argv[2] == "INIT" && process.argv[3].match(baseurlregx)) {
}
process['CONFIG']['LOCAL'] = it_am_init()
// console.log (JSON.stringify(process['CONFIG'], null, 2))
console.log (JSON.stringify(process['CONFIG'], null, 2))
console.log ("")
console.log ("Sikuliaq IT Asset Manager Client")
@ -62,7 +62,58 @@ console.log ("")
// console.log (" Home: " + os.homedir())
// ------------ Collect System Data ------------ //
var am_data = {}
let ts = tell_time()
am_data['ITAM']= {}
am_data['ITAM']['ID'] = process['CONFIG']['LOCAL']['HOST']['HOST_ID']
am_data['ITAM']['USERNAME'] = process['CONFIG']['LOCAL']['USER']['USERNAME']
am_data['ITAM']['APP_DIR'] = app_dir
am_data['ITAM']['TIMESTAMP'] = ts['UTC']['ISO8601']
// am_data['DATA_EVENT'] = {}
// am_data['DATA_EVENT']['TIMESTAMP'] = ts['UTC']['ISO8601']
am_data['SOURCE'] = {}
am_data['SOURCE']['NODEJS'] = {}
am_data['SOURCE']['NODEJS']['HOST'] = {}
am_data['SOURCE']['NODEJS']['HOST']['HOSTNAME'] = process['CONFIG']['LOCAL']['HOST']['HOSTNAME']
am_data['SOURCE']['NODEJS']['HOST']['IP_ADDR'] = []
for (n in process['CONFIG']['LOCAL']['HOST']['HW']['NETWORK']) {
for (i in process['CONFIG']['LOCAL']['HOST']['HW']['NETWORK'][n]) {
if (!process['CONFIG']['LOCAL']['HOST']['HW']['NETWORK'][n][i]['internal'] && !process['CONFIG']['LOCAL']['HOST']['HW']['NETWORK'][n][i]['netmask'].match('ffff:ffff')) {
let ipaddr = process['CONFIG']['LOCAL']['HOST']['HW']['NETWORK'][n][i]
ipaddr['nic'] = n
am_data['SOURCE']['NODEJS']['HOST']['IP_ADDR'].push(ipaddr)
}
}
}
am_data['SOURCE']['NODEJS']['HW'] = {}
am_data['SOURCE']['NODEJS']['HW']['CPU'] = {}
am_data['SOURCE']['NODEJS']['HW']['CPU']['CORES'] = process['CONFIG']['LOCAL']['HOST']['HW']['CPUS'].length
am_data['SOURCE']['NODEJS']['HW']['CPU']['MODEL'] = process['CONFIG']['LOCAL']['HOST']['HW']['CPUS'][0]['model']
am_data['SOURCE']['NODEJS']['HW']['RAM_MEMORY'] = {}
am_data['SOURCE']['NODEJS']['HW']['RAM_MEMORY']['BYTES'] = process['CONFIG']['LOCAL']['HOST']['HW']['MEMORY_BYTES']
am_data['SOURCE']['NODEJS']['HW']['RAM_MEMORY']['MB'] = Math.round(Number(process['CONFIG']['LOCAL']['HOST']['HW']['MEMORY_BYTES'])/(1024*1024))
am_data['SOURCE']['NODEJS']['HW']['RAM_MEMORY']['GB'] = Math.round(Number(process['CONFIG']['LOCAL']['HOST']['HW']['MEMORY_BYTES'])/(1024*1024*1024))
am_data['SOURCE']['NODEJS']['OS'] = {}
am_data['SOURCE']['NODEJS']['OS']['DISTRO'] = process['CONFIG']['LOCAL']['OS']['DISTRO']
am_data['SOURCE']['NODEJS']['OS']['DISTRO_VERSION'] = process['CONFIG']['LOCAL']['OS']['DISTRO_VERSION']
am_data['SOURCE']['NODEJS']['OS']['PLATFORM'] = process['CONFIG']['LOCAL']['OS']['PLATFORM']
am_data['SOURCE']['NODEJS']['OS']['KERNEL'] = process['CONFIG']['LOCAL']['OS']['TYPE']
am_data['SOURCE']['NODEJS']['OS']['KERNEL_VERSION'] = process['CONFIG']['LOCAL']['OS']['RELEASE']
am_data['SOURCE']['NODEJS']['OS']['ARCH'] = process['CONFIG']['LOCAL']['OS']['ARCH']
am_data['SOURCE']['NODEJS']['OS']['ENDIAN'] = process['CONFIG']['LOCAL']['OS']['ENDIAN']
console.log (JSON.stringify(am_data, null, 2))
// ------------ Functions Libraries --------------------//

4
skqitam-client/package.json

@ -1,7 +1,7 @@
{
"name": "skqitam-client",
"version": "0.0.2",
"version_date": "2021-06-09",
"version": "0.0.4",
"version_date": "2021-06-11",
"description": "Sikuliaq IT Asset Manager Client Data Collector",
"main": "skqitam-client.js",
"dependencies": {

BIN
skqitam-web.png

After

Width: 803  |  Height: 1125  |  Size: 172 KiB

3
web/root/docs/contact.md

@ -3,6 +3,3 @@
For questions contact John Haverlack
- [jehaverlack@alaska.edu](mailto:jehaverlack@alaska.edu)
<div id="debug-config"></div>

10
web/root/docs/index.md

@ -8,7 +8,7 @@ Welcome to the Sikuliaq IT Asset Manager
<div class="alert alert-danger">
<span class="fas fa-warning"></span>
For security purposes the following installation commands should be run with a non-administrative user account. And the SKQ IT Asset manager collect data without administrative purposes.
For security purposes the following installation commands should be run with a <b>non-administrative user</b> account. And the SKQ IT Asset manager collect data without administrative purposes.
</div>
<!--
@ -18,13 +18,15 @@ Welcome to the Sikuliaq IT Asset Manager
- BASE URL <span class="BASE_URL"></span>
-->
## Installation
## Client Installation
Running the following commands will install, setup, and run the **skqitam** client in your home directory on respective client host operating systems. And report baseline data back to the **skqitam** server.
---
#### <span class="fab fa-linux"></span> Linux and <span class="fab fa-apple"></span> Mac
From a terminal window at the command line:
From a terminal window at the command line run the curl for OS X, and curl or wget commands on Linux systems:
<div class="POSIX_CURL_CMD"></div>
@ -35,7 +37,7 @@ or
---
#### <span class="fab fa-windows"></span> Windows
#### <span class="fab fa-windows"></span> Windows 7, 10
From a CMD terminal window at the command line:

4
web/root/docs/js/skq-it-am.js

@ -1,4 +1,4 @@
var itam_debug = true // Disable for Distribution
var itam_debug = false // Disable for Distribution
var HttpClient = function() {
this.get = function(aUrl, aCallback) {
@ -66,7 +66,7 @@ function it_am_var_parser() {
if (itam_debug) {
if (document.getElementById('debug-config')) {
let webconf = JSON.parse(sessionStorage.webconf)
// console.log(JSON.stringify(webconf, null, 2))
console.log(JSON.stringify(webconf, null, 2))
let html = ''
html += "<hr>"

2
web/root/docs/license.md

@ -2,7 +2,7 @@
## [ISC License (ISC)](https://opensource.org/licenses/ISC)
- Copyright: <span class="far fa-copyright"></span> 2021 [University of Alaska Fairbanks](https://www.uaf.edu) / [R/V Sikuliaq](https://www.sikuliaq.alaska.edu)
- Copyright: <span class="far fa-copyright"></span> 2021 [University of Alaska Fairbanks](https://www.uaf.edu) - [College of Fisheries and Ocean Science](https://www.uaf.edu/cfos/) - [R/V Sikuliaq](https://www.sikuliaq.alaska.edu)
- Author: John Haverlack [jehaverlack@alaska.edu](mailto:jehaverlack@alaska.edu)
- Source: [https://github.alaska.edu/skq/skq-it-am.git](https://github.alaska.edu/skq/skq-it-am.git)

1
web/root/docs/versions.md

@ -1,5 +1,6 @@
## Change Log
- 0.0.4_2021-06-11 - Development Release -Data Logger
- 0.0.3_2021-06-10 - Development Release - Win/Mac/Linux Clients Baseline
- 0.0.2_2021-06-09 - Development Release - Building Basic Client Server Framework
- 0.0.1_2021-06-04 - Development Release - Building Basic Website

2
web/root/mkdocs.yml

@ -5,7 +5,7 @@ copyright: <p class="small">Copyright &copy; 2021 <a target="_blank" href="https
use_directory_urls: false
extra:
version: 0.0.3_2021-06-10
version: 0.0.4_2021-06-11
repo_url: https://github.alaska.edu/skq/skq-it-am.git
repo_name: <span class="fab fa-git-square"></span>

2
web/root/site/404.html

@ -136,7 +136,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/bootstrap.html

@ -223,7 +223,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/build.html

@ -148,7 +148,7 @@ Each time you edit the site source content files you will need to run the <code>
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/cloning.html

@ -163,7 +163,7 @@ A UA Github (<a href="https://github.alaska.edu">https://github.alaska.edu</a>)
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/code.html

@ -220,7 +220,7 @@ echo "Hello World"
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

5
web/root/site/contact.html

@ -128,8 +128,7 @@
<p>For questions contact John Haverlack</p>
<ul>
<li><a href="mailto:jehaverlack@alaska.edu">jehaverlack@alaska.edu</a></li>
</ul>
<div id="debug-config"></div></div>
</ul></div>
</div>
</div>
@ -146,7 +145,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/editing.html

@ -184,7 +184,7 @@ Markdown files can contain inline HTML, or pure Markdown code.
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/equations.html

@ -219,7 +219,7 @@ Markdown supports inline [LaTeX](https://en.wikipedia.org/wiki/LaTeX) equations
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/footnotes.html

@ -147,7 +147,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/icons.html

@ -175,7 +175,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

11
web/root/site/index.html

@ -132,7 +132,7 @@
<div class="alert alert-danger">
<span class="fas fa-warning"></span>
For security purposes the following installation commands should be run with a non-administrative user account. And the SKQ IT Asset manager collect data without administrative purposes.
For security purposes the following installation commands should be run with a <b>non-administrative user</b> account. And the SKQ IT Asset manager collect data without administrative purposes.
</div>
<!--
@ -142,17 +142,18 @@
- BASE URL <span class="BASE_URL"></span>
-->
<h2 id="installation">Installation</h2>
<h2 id="client-installation">Client Installation</h2>
<p>Running the following commands will install, setup, and run the <strong>skqitam</strong> client in your home directory on respective client host operating systems. And report baseline data back to the <strong>skqitam</strong> server.</p>
<hr />
<h4 id="linux-and-mac"><span class="fab fa-linux"></span> Linux and <span class="fab fa-apple"></span> Mac</h4>
<p>From a terminal window at the command line:</p>
<p>From a terminal window at the command line run the curl for OS X, and curl or wget commands on Linux systems:</p>
<div class="POSIX_CURL_CMD"></div>
<p>or</p>
<div class="POSIX_WGET_CMD"></div>
<hr />
<h4 id="windows"><span class="fab fa-windows"></span> Windows</h4>
<h4 id="windows-7-10"><span class="fab fa-windows"></span> Windows 7, 10</h4>
<p>From a CMD terminal window at the command line:</p>
<div class="WIN_CMD_CMD"></div>
@ -173,7 +174,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/install.html

@ -189,7 +189,7 @@ mkdocs, version 1.1 from /usr/local/lib/python3.6/site-packages/mkdocs (Python 3
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

4
web/root/site/js/skq-it-am.js

@ -1,4 +1,4 @@
var itam_debug = true // Disable for Distribution
var itam_debug = false // Disable for Distribution
var HttpClient = function() {
this.get = function(aUrl, aCallback) {
@ -66,7 +66,7 @@ function it_am_var_parser() {
if (itam_debug) {
if (document.getElementById('debug-config')) {
let webconf = JSON.parse(sessionStorage.webconf)
// console.log(JSON.stringify(webconf, null, 2))
console.log(JSON.stringify(webconf, null, 2))
let html = ''
html += "<hr>"

4
web/root/site/license.html

@ -127,7 +127,7 @@
<h1 id="sikuliaq-it-asset-manager-license">Sikuliaq IT Asset Manager License</h1>
<h2 id="isc-license-isc"><a href="https://opensource.org/licenses/ISC">ISC License (ISC)</a></h2>
<ul>
<li>Copyright: <span class="far fa-copyright"></span> 2021 <a href="https://www.uaf.edu">University of Alaska Fairbanks</a> / <a href="https://www.sikuliaq.alaska.edu">R/V Sikuliaq</a></li>
<li>Copyright: <span class="far fa-copyright"></span> 2021 <a href="https://www.uaf.edu">University of Alaska Fairbanks</a> - <a href="https://www.uaf.edu/cfos/">College of Fisheries and Ocean Science</a> - <a href="https://www.sikuliaq.alaska.edu">R/V Sikuliaq</a></li>
<li>Author: John Haverlack <a href="mailto:jehaverlack@alaska.edu">jehaverlack@alaska.edu</a></li>
<li>Source: <a href="https://github.alaska.edu/skq/skq-it-am.git">https://github.alaska.edu/skq/skq-it-am.git</a></li>
</ul>
@ -149,7 +149,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/menu.html

@ -158,7 +158,7 @@ However both top and sub nav menu items can also be both Markdown or URL links.
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/optional.html

@ -173,7 +173,7 @@ v12.14.1
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/pdf.html

@ -152,7 +152,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/search.html

@ -142,7 +142,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/search/search_index.json
File diff suppressed because it is too large
View File

BIN
web/root/site/sitemap.xml.gz

2
web/root/site/swipe.html

@ -168,7 +168,7 @@ $(&quot;body&quot;).on('swiperight', function(e) {
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/test.html

@ -186,7 +186,7 @@ In modern web browsers (Firefox, Chrome, etc) you can right click in the backgro
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/version.html

@ -141,7 +141,7 @@ A custom site <b>version</b> date has been added to the <code>mkdocs.yml</code>
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

3
web/root/site/versions.html

@ -126,6 +126,7 @@
<h2 id="change-log">Change Log</h2>
<ul>
<li>0.0.4_2021-06-11 - Development Release -Data Logger</li>
<li>0.0.3_2021-06-10 - Development Release - Win/Mac/Linux Clients Baseline</li>
<li>0.0.2_2021-06-09 - Development Release - Building Basic Client Server Framework</li>
<li>0.0.1_2021-06-04 - Development Release - Building Basic Website</li>
@ -146,7 +147,7 @@
<p class="small"><p class="small">Copyright &copy; 2021 <a target="_blank" href="https://www.uaf.edu">University of Alaska Fairbanks</a> <a target="_blank" href="https://www.uaf.edu/cfos">College of Fisheries and Ocean Sciences</a> - <a target="_blank" href="https://www.sikuliaq.alaska.edu"><i>R/V Sikuliaq</i></a></p></p>
<p class="small">For questions or comments regarding this page, contact <a href="mailto:uaf-skq-science-support@alaska.edu">uaf-skq-science-support@alaska.edu</a></p>
<p class="small">Version: 0.0.3_2021-06-10</p>
<p class="small">Version: 0.0.4_2021-06-11</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

Loading…
Cancel
Save