Browse Source

Version .0.5 2021-06-17 - Beta Release - Testing on Sikuliaq

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

2
download/skqitam-setup.ps1

@ -59,8 +59,8 @@ if (-not (test-path $node_bin)) {
Expand-Archive -LiteralPath $node_pkg -DestinationPath $app_dir
}
Remove-Item "$app_dir\skqitam-client" -Recurse
Expand-Archive -LiteralPath "$app_dir\skqitam-client.zip" -DestinationPath $app_dir -Force
Remove-Item "$app_dir\skqitam-client.zip"
# Running client

2
package.json

@ -1,6 +1,6 @@
{
"name": "skq-it-am",
"version": "0.0.4",
"version": "0.0.5",
"version_date": "2021-06-17",
"description": "Sikuliaq IT Asset Manager",
"copyright": "University of Alaska Fairbanks - College of Fisheries and Ocean Science - R/V Sikuliaq",

54
skqitam-client/index.js

@ -171,7 +171,20 @@ switch (process['CONFIG']['LOCAL']['OS']['PLATFORM']) {
break;
case 'darwin':
am_data['SOURCE']['SW'][ sw_source_map[ process['CONFIG']['LOCAL']['OS']['DISTRO'] ] ] = JSON.parse(childProcess.execSync(cmd_sw_list_map[ process['CONFIG']['LOCAL']['OS']['DISTRO'] ], { encoding: 'utf8' }))
am_data['SOURCE']['SYSTEM_PROFILER'] = {}
// am_data['SOURCE']['SYSTEM_PROFILER']['SW'] = JSON.parse(childProcess.execSync(cmd_sw_list_map[ process['CONFIG']['LOCAL']['OS']['DISTRO'] ], { encoding: 'utf8' }))
let sysprof_type = ['SPHardwareDataType', 'SPInstallHistoryDataType', 'SPLegacySoftwareDataType', 'SPApplicationsDataType', 'SPNetworkLocationDataType', 'SPSoftwareDataType']
for (st in sysprof_type) {
let cmd_sys_prof = 'system_profiler -json ' + sysprof_type[st]
try {
am_data['SOURCE']['SYSTEM_PROFILER'][ sysprof_type[st] ] = JSON.parse(childProcess.execSync(cmd_sys_prof, { encoding: 'utf8' }))[ sysprof_type[st] ]
} catch (err) {
console.log("WARNING: Could not run: " + cmd_sys_prof + "\n" + err)
}
}
break;
@ -181,14 +194,31 @@ switch (process['CONFIG']['LOCAL']['OS']['PLATFORM']) {
// console.log (' Testing: ' + cmd_sw_list_map['Microsoft Windows'])
// wincmd = 'systeminfo'
// try {
// line = String(childProcess.execSync(wincmd, { encoding: 'utf8' })).split(/\n/)
// console.log (JSON.stringify(line, null, 2))
// } catch (err) {
// console.log('ERROR: Could not run: ' + wincmd + "\n" + err)
// process.exit(1)
// }
wincmd = 'systeminfo'
sys_info_regx = RegExp(/^(\S+.*):\s+(\S+.*)/)
sys_info_regx2 = RegExp(/^\s(\S+.*)/) // BROKEN FIXME
sys_info = {}
let last_fld = ''
try {
line = String(childProcess.execSync(wincmd, { encoding: 'utf8' })).split(/\r\n/)
for (l in line) {
if (mch = line[l].match(sys_info_regx)) {
sys_info[ mch[1] ] = mch[2]
last_fld = mch[1]
} else if (mch = line[l].match(sys_info_regx2)) {
console.log(last_fld)
sys_info[ last_fld ] += "\n" + mch[1]
}
}
am_data['SOURCE']['SYSTEMINFO'] = sys_info
// console.log (JSON.stringify(line, null, 2))
} catch (err) {
console.log('ERROR: Could not run: ' + wincmd + "\n" + err)
process.exit(1)
}
let get_item_prop_regx1 = RegExp(/^(\S.*\S)\s+:\s+(\S.*)/)
let get_item_prop_regx2 = RegExp(/^(\S.*\S)\s+:/)
@ -197,10 +227,10 @@ switch (process['CONFIG']['LOCAL']['OS']['PLATFORM']) {
let win_sw_list = {}
for (gip=0; gip<get_item_property.length; gip++) {
if (get_item_property[gip]) {
console.log ('DEBUG FOR: [' + get_item_property[gip] + ']')
// console.log ('DEBUG FOR: [' + get_item_property[gip] + ']')
win_sw_item = {}
while ( get_item_property[gip]) {
console.log ('DEBUG WHILE: [' + get_item_property[gip] + ']')
// console.log ('DEBUG WHILE: [' + get_item_property[gip] + ']')
if (mch = get_item_property[gip].match(get_item_prop_regx1)) {
win_sw_item[ mch[1] ] = mch[2]
}
@ -748,7 +778,7 @@ function get_abl_id (cfg) { // Code Source: ABL Rolecall (http://appliedbitlogi
}
wincmd = 'systeminfo'
line = childProcess.execSync(wincmd, { encoding: 'utf8' }).split(/\n/)
line = childProcess.execSync(wincmd, { encoding: 'utf8' }).split(/\r\n/)
for (l in line) {
if (mch = line[l].match(/^OS\s+Name:\s+(.*)/)) {
cfg['OS']['DISTRO'] = mch[1]

2
skqitam-client/package.json

@ -1,6 +1,6 @@
{
"name": "skqitam-client",
"version": "0.0.4",
"version": "0.0.5",
"version_date": "2021-06-17",
"description": "Sikuliaq IT Asset Manager Client Data Collector",
"copyright": "University of Alaska Fairbanks - College of Fisheries and Ocean Science - R/V Sikuliaq",

1
web/root/docs/versions.md

@ -1,5 +1,6 @@
## Change Log
- 0.0.5 2021-06-17 - Beta Release - Testing on Sikuliaq
- 0.0.4_2021-06-15 - 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

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.4 2021-06-17
version: 0.0.5 2021-06-17
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.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/bootstrap.html

@ -213,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/build.html

@ -146,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/cloning.html

@ -160,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/code.html

@ -214,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/contact.html

@ -145,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.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/editing.html

@ -183,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/equations.html

@ -216,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/footnotes.html

@ -146,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/icons.html

@ -172,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/index.html

@ -174,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.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/install.html

@ -187,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/license.html

@ -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.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</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.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/optional.html

@ -169,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/pdf.html

@ -151,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</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.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</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

@ -1,19 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><url>
<loc>None</loc>
<lastmod>2021-06-17</lastmod>
<lastmod>2021-06-18</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-06-17</lastmod>
<lastmod>2021-06-18</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-06-17</lastmod>
<lastmod>2021-06-18</lastmod>
<changefreq>daily</changefreq>
</url><url>
<loc>None</loc>
<lastmod>2021-06-17</lastmod>
<lastmod>2021-06-18</lastmod>
<changefreq>daily</changefreq>
</url>
</urlset>

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.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/test.html

@ -183,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

2
web/root/site/version.html

@ -140,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: 0.0.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</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.5 2021-06-17 - Beta Release - Testing on Sikuliaq</li>
<li>0.0.4_2021-06-15 - 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>
@ -147,7 +148,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.4 2021-06-16</p>
<p class="small">Version: 0.0.5 2021-06-17</p>
<p class="small">Documentation built with <a href="https://www.mkdocs.org/">MkDocs</a>.</p>
</footer>

Loading…
Cancel
Save