Browse Source

Windows PS WIP

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

3
.gitignore

@ -1,3 +1,6 @@
*~
nodejs/*
*\\*.html
node_modules/*
download/*
*.DS_Store

12
LICENSE.md

@ -0,0 +1,12 @@
# Sikuliaq IT Asset Manager License
## [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)
- Author: John Haverlack [jehaverlack@alaska.edu](mailto:jehaverlack@alaska.edu)
- Source: https://github.alaska.edu/skq/skq-it-am.git
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

11
README.md

@ -13,4 +13,13 @@ Cross Platform System Asset Management Data Collection Tool
- Check for Admin Permissions
- Windows PS calls
- Windows PS WGET
- Web Copy
- Web Copy
## Version Files
- package.json
- mkdocs.yml
- skqitam-setup.sh
- skqitam-setup.ps1
-

8
index.js

@ -1,5 +1,6 @@
var path = require('path')
var fs = require('fs')
var ecstatic = require('ecstatic')
const express = require('express')
const app = express()
var skqlib = require('./skq_modules/skq-lib')
@ -28,6 +29,13 @@ app.use('/api/webconfig', function(req, res) {
res.end(JSON.stringify(process['CONFIG']['LOCAL']['WEB'], null, 2))
})
// Downloads
app.use('/download', express.static(path.join(__dirname, 'download'), { index: false }))
// app.use('/download', ecstatic({
// root: path.join(__dirname, 'download'),
// showdir: true,
// // baseDir: '/download'
// }));
// WebUI Admin
app.use('/admin', express.static(path.join(__dirname, process['CONFIG']['GLOBAL']['WEBUI_ADMIN']['WEB_ROOT_DIR'])))

40
package-lock.json

@ -45,6 +45,11 @@
"resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz",
"integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="
},
"charset": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/charset/-/charset-1.0.1.tgz",
"integrity": "sha512-6dVyOOYjpfFcL1Y4qChrAoQLRHvj2ziyhcm0QJlhOcAhykL/k1kTUPbeo+87MNRTRdk2OIIsIXbuF3x2wi5EXg=="
},
"clipboard": {
"version": "2.0.8",
"resolved": "https://registry.npmjs.org/clipboard/-/clipboard-2.0.8.tgz",
@ -113,6 +118,26 @@
"resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz",
"integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA="
},
"ecstatic": {
"version": "4.1.4",
"resolved": "https://registry.npmjs.org/ecstatic/-/ecstatic-4.1.4.tgz",
"integrity": "sha512-8E4ZLK4uRuB9pwywGpy/B9vcz4gCp6IY7u4cMbeCINr/fjb1v+0wf0Ae2XlfSnG8xZYnE4uaJBjFkYI0bqcIdw==",
"requires": {
"charset": "^1.0.1",
"he": "^1.1.1",
"mime": "^2.4.1",
"minimist": "^1.1.0",
"on-finished": "^2.3.0",
"url-join": "^4.0.0"
},
"dependencies": {
"mime": {
"version": "2.5.2",
"resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz",
"integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg=="
}
}
},
"ee-first": {
"version": "1.1.1",
"resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
@ -232,6 +257,11 @@
"delegate": "^3.1.2"
}
},
"he": {
"version": "1.2.0",
"resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz",
"integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="
},
"http-errors": {
"version": "1.7.2",
"resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz",
@ -313,6 +343,11 @@
"mime-db": "1.48.0"
}
},
"minimist": {
"version": "1.2.5",
"resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz",
"integrity": "sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="
},
"ms": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
@ -526,6 +561,11 @@
"resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
"integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
},
"url-join": {
"version": "4.0.1",
"resolved": "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz",
"integrity": "sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA=="
},
"utils-merge": {
"version": "1.0.1",
"resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",

4
package.json

@ -1,11 +1,13 @@
{
"name": "skq-it-am",
"version": "1.0.0",
"version": "0.0.2",
"version_date":"2021-06-07",
"description": "Sikuliaq IT Asset Manager",
"main": "index.js",
"dependencies": {
"bootstrap": "^4.3.1",
"clipboard": "^2.0.8",
"ecstatic": "^4.1.4",
"express": "^4.17.1",
"is-admin": "^3.0.0"
},

1
web/root/.gitignore

@ -1,4 +1,5 @@
*~
*\\*.html
node_modules/*
download/*
*.DS_Store

10
web/root/docs/index.md

@ -1,4 +1,4 @@
## Sikuliaq IT Asset Manager
## <span class="fas fa-clipboard-list"></span> Sikuliaq IT Asset Manager
Welcome to the Sikuliaq IT Asset Manager
@ -6,7 +6,7 @@ Welcome to the Sikuliaq IT Asset Manager
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.
</div>
<div class="alert alert-warning">
<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.
</div>
@ -22,7 +22,7 @@ Welcome to the Sikuliaq IT Asset Manager
---
### <span class="fab fa-linux"></span> Linux and <span class="fab fa-apple"></span> Mac
#### <span class="fab fa-linux"></span> Linux and <span class="fab fa-apple"></span> Mac
From a terminal window at the command line:
@ -35,11 +35,11 @@ or
---
### <span class="fab fa-windows"></span> Windows
#### <span class="fab fa-windows"></span> Windows
From a CMD terminal window at the command line:
<div class="POSIX_WGET_CMD"></div>
<div class="WIN_CMD_CMD"></div>
<div id="debug-config"></div>

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

@ -122,7 +122,7 @@ if (document.getElementsByClassName("POSIX_WGET_CMD")) {
let webconf = JSON.parse(sessionStorage.webconf)
for (e=0; e<document.getElementsByClassName("POSIX_WGET_CMD").length; e++) {
let html = ''
let cmd = 'wget -qO- ' + webconf['BROWSER']['BASE_URL'] + '/downloads/skqitam-setup.sh | bash'
let cmd = 'wget -qO- ' + webconf['BROWSER']['BASE_URL'] + '/download/skqitam-setup.sh | bash -s ' + webconf['BROWSER']['BASE_URL']
// console.log (cmd)
html +='<div class="input-group mb-3">' + "\n"
@ -141,16 +141,43 @@ if (document.getElementsByClassName("POSIX_CURL_CMD")) {
let webconf = JSON.parse(sessionStorage.webconf)
for (e=0; e<document.getElementsByClassName("POSIX_CURL_CMD").length; e++) {
let html = ''
let cmd = 'curl -o- ' + webconf['BROWSER']['BASE_URL'] + '/downloads/skqitam-setup.sh | bash'
let cmd = 'curl -o- ' + webconf['BROWSER']['BASE_URL'] + '/download/skqitam-setup.sh | bash -s ' + webconf['BROWSER']['BASE_URL']
// console.log (cmd)
html +='<div class="input-group mb-3">' + "\n"
html +=' <input type="text" class="form-control" placeholder="WGET Command" aria-label="WGET Command" aria-describedby="button-addon2" value="' + cmd + '" disabled>' + "\n"
html +=' <div class="input-group-append">' + "\n"
html +=' <a title="Copy Command to Clipboard" class="btn btn-default cpcmd" type="button" id="btn-cp-wget" data-clipboard-text="' + cmd + '" onclick="alert(' + "'" + 'Copied Command to Clipboard' +"'" + ')"><span class="far fa-copy"></span></a>' + "\n"
html +=' <a title="Copy Command to Clipboard" class="btn btn-default cpcmd" type="button" id="btn-cp-curl" data-clipboard-text="' + cmd + '" onclick="alert(' + "'" + 'Copied Command to Clipboard' +"'" + ')"><span class="far fa-copy"></span></a>' + "\n"
html +=' </div>' + "\n"
html +='</div>' + "\n"
document.getElementsByClassName("POSIX_CURL_CMD")[e].innerHTML = html
}
}
// Example From: https://chocolatey.org/install
// Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
if (document.getElementsByClassName("WIN_CMD_CMD")) {
let webconf = JSON.parse(sessionStorage.webconf)
for (e=0; e<document.getElementsByClassName("WIN_CMD_CMD").length; e++) {
let html = ''
// let cmd = encodeURIComponent('PowerShell -ExecutionPolicy Unrestricted Invoke-WebRequest \"' + webconf['BROWSER']['BASE_URL'] + '/download/skqitam-setup.ps1\" -Outfile "~\Downloads\skqitam-setup.ps1"; PowerShell -ExecutionPolicy Unrestricted -command "~\Downloads\skqitam-setup.ps1"')
let cmd = 'PowerShell -ExecutionPolicy Unrestricted Invoke-WebRequest \"' + webconf['BROWSER']['BASE_URL'] + '/download/skqitam-setup.ps1\" -Outfile "~\Downloads\skqitam-setup.ps1"; PowerShell -ExecutionPolicy Unrestricted -command "~\Downloads\skqitam-setup.ps1"'
console.log (cmd)
html +='<div class="input-group mb-3">' + "\n"
html +=' <input id="WIN_CMD_CMD" type="text" class="form-control" placeholder="WGET Command" aria-label="WGET Command" aria-describedby="button-addon2" value="' + cmd + '" disabled>' + "\n"
html +=' <div class="input-group-append">' + "\n"
html +=' <a title="Copy Command to Clipboard" class="btn btn-default cpcmd" type="button" id="btn-cp-win" data-clipboard-text="" onclick="alert(' + "'" + 'Copied Command to Clipboard' +"'" + ')"><span class="far fa-copy"></span></a>' + "\n"
html +=' </div>' + "\n"
html +='</div>' + "\n"
document.getElementsByClassName("WIN_CMD_CMD")[e].innerHTML = html
document.getElementById("WIN_CMD_CMD").value = cmd
document.getElementById("btn-cp-win").setAttribute('data-clipboard-text', cmd)
}
}

12
web/root/docs/license.md

@ -0,0 +1,12 @@
# Sikuliaq IT Asset Manager License
## [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)
- 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)
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

4
web/root/docs/versions.md

@ -0,0 +1,4 @@
## Change Log
- 0.0.2_2021-06-07 - Development Release - Building Basic Client Server Framework
- 0.0.1_2021-06-04 - Development Release - Building Basic Website

4
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: 2021-06-04
version: 0.0.2_2021-06-07
repo_url: https://github.alaska.edu/skq/skq-it-am.git
repo_name: <span class="fab fa-git-square"></span>
@ -38,6 +38,8 @@ nav:
# - PDF: pdf.md
- About:
- Contact: contact.md
- License: license.md
- Changelog: versions.md
extra_javascript:
- js/highlight.pack.js

10
web/root/site/404.html

@ -83,6 +83,14 @@
<li>
<a href="/contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="/license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="/versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -128,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/bootstrap.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -205,7 +213,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/build.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -138,7 +146,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/cloning.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -152,7 +160,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/code.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -206,7 +214,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

12
web/root/site/contact.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item active">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -99,7 +107,7 @@
</a>
</li>
<li class="nav-item">
<a rel="next" class="nav-link disabled">
<a rel="next" href="license.html" class="nav-link">
Next <i class="fa fa-arrow-right"></i>
</a>
</li>
@ -138,7 +146,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/editing.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -175,7 +183,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/equations.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -208,7 +216,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/footnotes.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -138,7 +146,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/icons.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -164,7 +172,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

20
web/root/site/index.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -116,13 +124,13 @@
<!-- <div class="col-md-3"></div> -->
<div class="col-md-12" role="main" style="top: -50px;">
<h2 id="sikuliaq-it-asset-manager">Sikuliaq IT Asset Manager</h2>
<h2 id="sikuliaq-it-asset-manager"><span class="fas fa-clipboard-list"></span> Sikuliaq IT Asset Manager</h2>
<p>Welcome to the Sikuliaq IT Asset Manager</p>
<div class="alert alert-primary">
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.
</div>
<div class="alert alert-warning">
<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.
</div>
@ -136,7 +144,7 @@
<h2 id="installation">Installation</h2>
<hr />
<h3 id="linux-and-mac"><span class="fab fa-linux"></span> Linux and <span class="fab fa-apple"></span> Mac</h3>
<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>
<div class="POSIX_CURL_CMD"></div>
@ -144,9 +152,9 @@
<div class="POSIX_WGET_CMD"></div>
<hr />
<h3 id="windows"><span class="fab fa-windows"></span> Windows</h3>
<h4 id="windows"><span class="fab fa-windows"></span> Windows</h4>
<p>From a CMD terminal window at the command line:</p>
<div class="POSIX_WGET_CMD"></div>
<div class="WIN_CMD_CMD"></div>
<div id="debug-config"></div></div>
</div>
@ -165,7 +173,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/install.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -179,7 +187,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

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

@ -122,7 +122,7 @@ if (document.getElementsByClassName("POSIX_WGET_CMD")) {
let webconf = JSON.parse(sessionStorage.webconf)
for (e=0; e<document.getElementsByClassName("POSIX_WGET_CMD").length; e++) {
let html = ''
let cmd = 'wget -qO- ' + webconf['BROWSER']['BASE_URL'] + '/downloads/skqitam-setup.sh | bash'
let cmd = 'wget -qO- ' + webconf['BROWSER']['BASE_URL'] + '/download/skqitam-setup.sh | bash -s ' + webconf['BROWSER']['BASE_URL']
// console.log (cmd)
html +='<div class="input-group mb-3">' + "\n"
@ -141,16 +141,43 @@ if (document.getElementsByClassName("POSIX_CURL_CMD")) {
let webconf = JSON.parse(sessionStorage.webconf)
for (e=0; e<document.getElementsByClassName("POSIX_CURL_CMD").length; e++) {
let html = ''
let cmd = 'curl -o- ' + webconf['BROWSER']['BASE_URL'] + '/downloads/skqitam-setup.sh | bash'
let cmd = 'curl -o- ' + webconf['BROWSER']['BASE_URL'] + '/download/skqitam-setup.sh | bash -s ' + webconf['BROWSER']['BASE_URL']
// console.log (cmd)
html +='<div class="input-group mb-3">' + "\n"
html +=' <input type="text" class="form-control" placeholder="WGET Command" aria-label="WGET Command" aria-describedby="button-addon2" value="' + cmd + '" disabled>' + "\n"
html +=' <div class="input-group-append">' + "\n"
html +=' <a title="Copy Command to Clipboard" class="btn btn-default cpcmd" type="button" id="btn-cp-wget" data-clipboard-text="' + cmd + '" onclick="alert(' + "'" + 'Copied Command to Clipboard' +"'" + ')"><span class="far fa-copy"></span></a>' + "\n"
html +=' <a title="Copy Command to Clipboard" class="btn btn-default cpcmd" type="button" id="btn-cp-curl" data-clipboard-text="' + cmd + '" onclick="alert(' + "'" + 'Copied Command to Clipboard' +"'" + ')"><span class="far fa-copy"></span></a>' + "\n"
html +=' </div>' + "\n"
html +='</div>' + "\n"
document.getElementsByClassName("POSIX_CURL_CMD")[e].innerHTML = html
}
}
// Example From: https://chocolatey.org/install
// Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
if (document.getElementsByClassName("WIN_CMD_CMD")) {
let webconf = JSON.parse(sessionStorage.webconf)
for (e=0; e<document.getElementsByClassName("WIN_CMD_CMD").length; e++) {
let html = ''
// let cmd = encodeURIComponent('PowerShell -ExecutionPolicy Unrestricted Invoke-WebRequest \"' + webconf['BROWSER']['BASE_URL'] + '/download/skqitam-setup.ps1\" -Outfile "~\Downloads\skqitam-setup.ps1"; PowerShell -ExecutionPolicy Unrestricted -command "~\Downloads\skqitam-setup.ps1"')
let cmd = 'PowerShell -ExecutionPolicy Unrestricted Invoke-WebRequest \"' + webconf['BROWSER']['BASE_URL'] + '/download/skqitam-setup.ps1\" -Outfile "~\Downloads\skqitam-setup.ps1"; PowerShell -ExecutionPolicy Unrestricted -command "~\Downloads\skqitam-setup.ps1"'
console.log (cmd)
html +='<div class="input-group mb-3">' + "\n"
html +=' <input id="WIN_CMD_CMD" type="text" class="form-control" placeholder="WGET Command" aria-label="WGET Command" aria-describedby="button-addon2" value="' + cmd + '" disabled>' + "\n"
html +=' <div class="input-group-append">' + "\n"
html +=' <a title="Copy Command to Clipboard" class="btn btn-default cpcmd" type="button" id="btn-cp-win" data-clipboard-text="" onclick="alert(' + "'" + 'Copied Command to Clipboard' +"'" + ')"><span class="far fa-copy"></span></a>' + "\n"
html +=' </div>' + "\n"
html +='</div>' + "\n"
document.getElementsByClassName("WIN_CMD_CMD")[e].innerHTML = html
document.getElementById("WIN_CMD_CMD").value = cmd
document.getElementById("btn-cp-win").setAttribute('data-clipboard-text', cmd)
}
}

248
web/root/site/license.html

@ -0,0 +1,248 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="John Haverlack (jehaverlack@alaska.edu)">
<link rel="shortcut icon" href="img/favicon.ico">
<title>License - Sikuliaq IT Asset Manager</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/base.css" rel="stylesheet">
<link href="js/styles/default.css" rel="stylesheet">
<link href="css/all.min.css" rel="stylesheet">
<link href="css/satnag-icons.css" rel="stylesheet">
<link href="css/uaf.css" rel="stylesheet">
<link href="css/cfos.css" rel="stylesheet">
<link href="css/cfos-theme.css" rel="stylesheet">
<link href="css/jquery.json-viewer.css" rel="stylesheet">
<link href="css/jjsonviewer.css" rel="stylesheet">
<link href="css/cfosgroups.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="js/jquery-1.10.2.min.js" defer></script>
<script src="js/bootstrap.min.js" defer></script>
</head>
<body>
<div id="banner" style="position: relative; top: -70px; width: 100%; z-index:100;">
<div class="row">
<div id="banner-bar" class="col-sm-12">
<div style="width: 100%; padding: 10px;">
<a href="http://uaf.edu/"><img class="uaflogo" alt="UAF logo" src="img/uaflogoBlue.png"></a>
<a class="text-white" style="font-weight: bold; margin-top: auto; margin-bottom: 10px;" href="https://uaf.edu">UNIVERSITY OF ALASKA FAIRBANKS</a>
</div>
</div>
</div>
<div class="row" style="background: #007682; height: 8px;"></div>
<div class="row">
<div id="banner-logo" class="col-sm-12">
<div id="banner-title">
<div class="cfostitle">
<!-- <a href="https://www.sikuliaq.alaska.edu/"><i>R/V Sikuliaq</i></a> -->
<a href="https://www.sikuliaq.alaska.edu/" title="R/V Sikuliaq"><img alt="R/V Sikuliaq" src="img/SKQShipLogo-White.png"> <span style="font-weight: bold; font-style: italic; margin-top: auto; margin-bottom: auto;"></span></a> R/V <i>Sikuliaq</i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="navbar navbar-expand-lg navbar-dark bg-primary" style="top: -70px;">
<div class="container">
<a class="navbar-brand" href=".">Sikuliaq IT Asset Manager</a>
<!-- Expander button -->
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbar-collapse">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Expanded navigation -->
<div id="navbar-collapse" class="navbar-collapse collapse">
<!-- Main navigation -->
<ul class="nav navbar-nav">
<li class="navitem">
<a href="index.html" class="nav-link"><span class="fas fa-home"></span></a>
</li>
<li class="navitem">
<a href="/admin" class="nav-link">Admin</a>
</li>
<li class="dropdown active">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">About <b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item active">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav ml-auto">
<li class="nav-item">
<a href="#" class="nav-link" data-toggle="modal" data-target="#mkdocs_search_modal">
<i class="fa fa-search"></i> Search
</a>
</li>
<li class="nav-item">
<a rel="prev" href="contact.html" class="nav-link">
<i class="fa fa-arrow-left"></i> Previous
</a>
</li>
<li class="nav-item">
<a rel="next" href="versions.html" class="nav-link">
Next <i class="fa fa-arrow-right"></i>
</a>
</li>
<li class="nav-item">
<a href="https://github.alaska.edu/skq/skq-it-am.git" class="nav-link"><span class="fab fa-git-square"></span></a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<!-- <div class="col-md-3"></div> -->
<div class="col-md-12" role="main" style="top: -50px;">
<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>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>
<p>Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.</p>
<p>THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.</p></div>
</div>
</div>
<!-- style="position: relative; top: -100px;" -->
<!-- <div class="alert alert-danger" role="alert">
<p><span class="fas fa-exclamation-circle"></span>
This website is an incomplete and active work in progress. Please send feedback to <a href="mailto:jehaverlack@alaska.edu">jehaverlack@alaska.edu</a>
</p>
</div> -->
<footer class="col-md-12 footer" >
<p class="small">The University of Alaska Fairbanks is <a target="_blank" href="https://uaf.edu/accreditation/">accredited</a> by the Northwest Commission on Colleges and Universities.<br>UAF is an AA/EO employer and educational institution and prohibits illegal discrimination against any individual. Learn more about UA's <a target="_blank" href="https://www.alaska.edu/nondiscrimination" >notice of nondiscrimination</a>.<br>UA is committed to providing accessible websites. Learn more about UA's <a target="_blank" href="https://www.alaska.edu/webaccessibility" >notice of web accessibility</a>.<br><a target="_blank" href="https://www.alaska.edu/records/compliance/gdpr/ua-privacy-statement/index.xml" >Privacy Statement</a></p>
<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.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>
<div class="row" style="margin-right: 20px;">
<div class="col-sm-12" style="text-align: right; valign: middle;">
<a target="_blank" href="https://www.uaf.edu/"><img alt="University of Alaska Fairbanks" title="University of Alaska Fairbanks" style="max-height: 50px;" src="img/UAF.png"></a>
<a target="_blank" href="https://www.uaf.edu/cfos/"><img alt="UAF College of Fisheries and Ocean Sciences" title="UAF College of Fisheries and Ocean Sciences" style="max-height: 50px;" src="img/SMALL-CFOS.jpg"></a>
<a target="_blank" href="https://www.sikuliaq.alaska.edu/"><img alt="R/V Sikuliaq" title="R/V Sikuliaq" style="max-height: 50px;" src="img/sikuliaqlogo.png"></a>
<a target="_blank" href="https://www.unols.org/"><img alt="University-National Laboratory System" title="University-National Laboratory System" style="max-height: 50px;" src="img/unols-logo.png"></a>
<a target="_blank" href="https://www.nsf.gov/"><img alt="National Science Foundation" title="National Science Foundation" style="max-height: 65px;" src="img/NSF.png"></a>
</div>
</div>
<script>
var base_url = ".",
shortcuts = {"help": 191, "next": 78, "previous": 80, "search": 83};
</script>
<script src="js/base.js" defer></script>
<script src="js/highlight.pack.js" defer></script>
<script src="js/highlightinit.js" defer></script>
<script src="js/jquery.json-viewer.js" defer></script>
<script src="js/jquery.event.move.js" defer></script>
<script src="js/jquery.event.swipe.js" defer></script>
<script src="js/MathJax.js?config=TeX-AMS-MML_HTMLorMML" defer></script>
<script src="js/swipenav.js" defer></script>
<script src="js/hometitle.js" defer></script>
<script src="js/clipboard.min.js" defer></script>
<script src="js/skq-it-am.js" defer></script>
<script src="search/main.js" defer></script>
<div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="searchModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="searchModalLabel">Search</h4>
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
</div>
<div class="modal-body">
<p>
From here you can search these documents. Enter
your search terms below.
</p>
<form>
<div class="form-group">
<input type="search" class="form-control" placeholder="Search..." id="mkdocs-search-query" title="Type search term here">
</div>
</form>
<div id="mkdocs-search-results"></div>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div><div class="modal" id="mkdocs_keyboard_modal" tabindex="-1" role="dialog" aria-labelledby="keyboardModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
</div>
<div class="modal-body">
<table class="table">
<thead>
<tr>
<th style="width: 20%;">Keys</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td class="help shortcut"><kbd>?</kbd></td>
<td>Open this help</td>
</tr>
<tr>
<td class="next shortcut"><kbd>n</kbd></td>
<td>Next page</td>
</tr>
<tr>
<td class="prev shortcut"><kbd>p</kbd></td>
<td>Previous page</td>
</tr>
<tr>
<td class="search shortcut"><kbd>s</kbd></td>
<td>Search</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
</body>
</html>

10
web/root/site/menu.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -150,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/optional.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -161,7 +169,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/pdf.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -143,7 +151,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/search.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -134,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</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

8
web/root/site/sitemap.xml

@ -7,5 +7,13 @@
<loc>None</loc>
<lastmod>2021-06-07</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-06-07</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-06-07</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>

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

10
web/root/site/swipe.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -160,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/test.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -175,7 +183,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

10
web/root/site/version.html

@ -83,6 +83,14 @@
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item">Changelog</a>
</li>
</ul>
</li>
</ul>
@ -132,7 +140,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: 2021-06-04</p>
<p class="small">Version: 0.0.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

244
web/root/site/versions.html

@ -0,0 +1,244 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="John Haverlack (jehaverlack@alaska.edu)">
<link rel="shortcut icon" href="img/favicon.ico">
<title>Changelog - Sikuliaq IT Asset Manager</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/base.css" rel="stylesheet">
<link href="js/styles/default.css" rel="stylesheet">
<link href="css/all.min.css" rel="stylesheet">
<link href="css/satnag-icons.css" rel="stylesheet">
<link href="css/uaf.css" rel="stylesheet">
<link href="css/cfos.css" rel="stylesheet">
<link href="css/cfos-theme.css" rel="stylesheet">
<link href="css/jquery.json-viewer.css" rel="stylesheet">
<link href="css/jjsonviewer.css" rel="stylesheet">
<link href="css/cfosgroups.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<script src="js/jquery-1.10.2.min.js" defer></script>
<script src="js/bootstrap.min.js" defer></script>
</head>
<body>
<div id="banner" style="position: relative; top: -70px; width: 100%; z-index:100;">
<div class="row">
<div id="banner-bar" class="col-sm-12">
<div style="width: 100%; padding: 10px;">
<a href="http://uaf.edu/"><img class="uaflogo" alt="UAF logo" src="img/uaflogoBlue.png"></a>
<a class="text-white" style="font-weight: bold; margin-top: auto; margin-bottom: 10px;" href="https://uaf.edu">UNIVERSITY OF ALASKA FAIRBANKS</a>
</div>
</div>
</div>
<div class="row" style="background: #007682; height: 8px;"></div>
<div class="row">
<div id="banner-logo" class="col-sm-12">
<div id="banner-title">
<div class="cfostitle">
<!-- <a href="https://www.sikuliaq.alaska.edu/"><i>R/V Sikuliaq</i></a> -->
<a href="https://www.sikuliaq.alaska.edu/" title="R/V Sikuliaq"><img alt="R/V Sikuliaq" src="img/SKQShipLogo-White.png"> <span style="font-weight: bold; font-style: italic; margin-top: auto; margin-bottom: auto;"></span></a> R/V <i>Sikuliaq</i>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="navbar navbar-expand-lg navbar-dark bg-primary" style="top: -70px;">
<div class="container">
<a class="navbar-brand" href=".">Sikuliaq IT Asset Manager</a>
<!-- Expander button -->
<button type="button" class="navbar-toggler" data-toggle="collapse" data-target="#navbar-collapse">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Expanded navigation -->
<div id="navbar-collapse" class="navbar-collapse collapse">
<!-- Main navigation -->
<ul class="nav navbar-nav">
<li class="navitem">
<a href="index.html" class="nav-link"><span class="fas fa-home"></span></a>
</li>
<li class="navitem">
<a href="/admin" class="nav-link">Admin</a>
</li>
<li class="dropdown active">
<a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown">About <b class="caret"></b></a>
<ul class="dropdown-menu">
<li>
<a href="contact.html" class="dropdown-item">Contact</a>
</li>
<li>
<a href="license.html" class="dropdown-item">License</a>
</li>
<li>
<a href="versions.html" class="dropdown-item active">Changelog</a>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav ml-auto">
<li class="nav-item">
<a href="#" class="nav-link" data-toggle="modal" data-target="#mkdocs_search_modal">
<i class="fa fa-search"></i> Search
</a>
</li>
<li class="nav-item">
<a rel="prev" href="license.html" class="nav-link">
<i class="fa fa-arrow-left"></i> Previous
</a>
</li>
<li class="nav-item">
<a rel="next" class="nav-link disabled">
Next <i class="fa fa-arrow-right"></i>
</a>
</li>
<li class="nav-item">
<a href="https://github.alaska.edu/skq/skq-it-am.git" class="nav-link"><span class="fab fa-git-square"></span></a>
</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<!-- <div class="col-md-3"></div> -->
<div class="col-md-12" role="main" style="top: -50px;">
<h2 id="change-log">Change Log</h2>
<ul>
<li>0.0.2_2021-06-07 - Development Release - Building Basic Client Server Framework</li>
<li>0.0.1_2021-06-04 - Development Release - Building Basic Website</li>
</ul></div>
</div>
</div>
<!-- style="position: relative; top: -100px;" -->
<!-- <div class="alert alert-danger" role="alert">
<p><span class="fas fa-exclamation-circle"></span>
This website is an incomplete and active work in progress. Please send feedback to <a href="mailto:jehaverlack@alaska.edu">jehaverlack@alaska.edu</a>
</p>
</div> -->
<footer class="col-md-12 footer" >
<p class="small">The University of Alaska Fairbanks is <a target="_blank" href="https://uaf.edu/accreditation/">accredited</a> by the Northwest Commission on Colleges and Universities.<br>UAF is an AA/EO employer and educational institution and prohibits illegal discrimination against any individual. Learn more about UA's <a target="_blank" href="https://www.alaska.edu/nondiscrimination" >notice of nondiscrimination</a>.<br>UA is committed to providing accessible websites. Learn more about UA's <a target="_blank" href="https://www.alaska.edu/webaccessibility" >notice of web accessibility</a>.<br><a target="_blank" href="https://www.alaska.edu/records/compliance/gdpr/ua-privacy-statement/index.xml" >Privacy Statement</a></p>
<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.2_2021-06-07</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>
<div class="row" style="margin-right: 20px;">
<div class="col-sm-12" style="text-align: right; valign: middle;">
<a target="_blank" href="https://www.uaf.edu/"><img alt="University of Alaska Fairbanks" title="University of Alaska Fairbanks" style="max-height: 50px;" src="img/UAF.png"></a>
<a target="_blank" href="https://www.uaf.edu/cfos/"><img alt="UAF College of Fisheries and Ocean Sciences" title="UAF College of Fisheries and Ocean Sciences" style="max-height: 50px;" src="img/SMALL-CFOS.jpg"></a>
<a target="_blank" href="https://www.sikuliaq.alaska.edu/"><img alt="R/V Sikuliaq" title="R/V Sikuliaq" style="max-height: 50px;" src="img/sikuliaqlogo.png"></a>
<a target="_blank" href="https://www.unols.org/"><img alt="University-National Laboratory System" title="University-National Laboratory System" style="max-height: 50px;" src="img/unols-logo.png"></a>
<a target="_blank" href="https://www.nsf.gov/"><img alt="National Science Foundation" title="National Science Foundation" style="max-height: 65px;" src="img/NSF.png"></a>
</div>
</div>
<script>
var base_url = ".",
shortcuts = {"help": 191, "next": 78, "previous": 80, "search": 83};
</script>
<script src="js/base.js" defer></script>
<script src="js/highlight.pack.js" defer></script>
<script src="js/highlightinit.js" defer></script>
<script src="js/jquery.json-viewer.js" defer></script>
<script src="js/jquery.event.move.js" defer></script>
<script src="js/jquery.event.swipe.js" defer></script>
<script src="js/MathJax.js?config=TeX-AMS-MML_HTMLorMML" defer></script>
<script src="js/swipenav.js" defer></script>
<script src="js/hometitle.js" defer></script>
<script src="js/clipboard.min.js" defer></script>
<script src="js/skq-it-am.js" defer></script>
<script src="search/main.js" defer></script>
<div class="modal" id="mkdocs_search_modal" tabindex="-1" role="dialog" aria-labelledby="searchModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="searchModalLabel">Search</h4>
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
</div>
<div class="modal-body">
<p>
From here you can search these documents. Enter
your search terms below.
</p>
<form>
<div class="form-group">
<input type="search" class="form-control" placeholder="Search..." id="mkdocs-search-query" title="Type search term here">
</div>
</form>
<div id="mkdocs-search-results"></div>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div><div class="modal" id="mkdocs_keyboard_modal" tabindex="-1" role="dialog" aria-labelledby="keyboardModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
</div>
<div class="modal-body">
<table class="table">
<thead>
<tr>
<th style="width: 20%;">Keys</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td class="help shortcut"><kbd>?</kbd></td>
<td>Open this help</td>
</tr>
<tr>
<td class="next shortcut"><kbd>n</kbd></td>
<td>Next page</td>
</tr>
<tr>
<td class="prev shortcut"><kbd>p</kbd></td>
<td>Previous page</td>
</tr>
<tr>
<td class="search shortcut"><kbd>s</kbd></td>
<td>Search</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
</div>
</div>
</div>
</div>
</body>
</html>
Loading…
Cancel
Save