Skip to content

Commit

Permalink
Automated deployment: Tue Jul 25 19:35:46 UTC 2023 105fd9b
Browse files Browse the repository at this point in the history
  • Loading branch information
gowthamsk-arm committed Jul 25, 2023
1 parent 6dc4e34 commit 696d8e8
Show file tree
Hide file tree
Showing 85 changed files with 2,837 additions and 308 deletions.
32 changes: 29 additions & 3 deletions 404.html

Large diffs are not rendered by default.

36 changes: 31 additions & 5 deletions archive/index.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions archive/system_architecture.html

Large diffs are not rendered by default.

20 changes: 7 additions & 13 deletions book.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ function playground_text(playground, hidden = true) {
}

// updates the visibility of play button based on `no_run` class and
// used crates vs ones available on http://play.rust-lang.org
// used crates vs ones available on https://play.rust-lang.org
function update_play_button(pre_block, playground_crates) {
var play_button = pre_block.querySelector(".play-button");

Expand Down Expand Up @@ -179,7 +179,7 @@ function playground_text(playground, hidden = true) {
// even if highlighting doesn't apply
code_nodes.forEach(function (block) { block.classList.add('hljs'); });

Array.from(document.querySelectorAll("code.language-rust")).forEach(function (block) {
Array.from(document.querySelectorAll("code.hljs")).forEach(function (block) {

var lines = Array.from(block.querySelectorAll('.boring'));
// If no lines were hidden, return
Expand Down Expand Up @@ -346,7 +346,7 @@ function playground_text(playground, hidden = true) {
}

setTimeout(function () {
themeColorMetaTag.content = getComputedStyle(document.body).backgroundColor;
themeColorMetaTag.content = getComputedStyle(document.documentElement).backgroundColor;
}, 1);

if (window.ace && window.editors) {
Expand Down Expand Up @@ -551,13 +551,6 @@ function playground_text(playground, hidden = true) {
firstContact = null;
}
}, { passive: true });

// Scroll sidebar to current active section
var activeSection = document.getElementById("sidebar").querySelector(".active");
if (activeSection) {
// https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView
activeSection.scrollIntoView({ block: 'center' });
}
})();

(function chapterNavigation() {
Expand Down Expand Up @@ -676,13 +669,14 @@ function playground_text(playground, hidden = true) {
}, { passive: true });
})();
(function controllBorder() {
menu.classList.remove('bordered');
document.addEventListener('scroll', function () {
function updateBorder() {
if (menu.offsetTop === 0) {
menu.classList.remove('bordered');
} else {
menu.classList.add('bordered');
}
}, { passive: true });
}
updateBorder();
document.addEventListener('scroll', updateBorder, { passive: true });
})();
})();
32 changes: 29 additions & 3 deletions contributing/adding_new_operation_how_to.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions contributing/index.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions contributing/package_management.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions contributing/pr_checklist.html

Large diffs are not rendered by default.

315 changes: 315 additions & 0 deletions contributing/release_checklist.html

Large diffs are not rendered by default.

63 changes: 50 additions & 13 deletions contributing/release_process.html

Large diffs are not rendered by default.

19 changes: 13 additions & 6 deletions css/chrome.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,6 @@

@import 'variables.css';

::-webkit-scrollbar {
background: var(--bg);
}
::-webkit-scrollbar-thumb {
background: var(--scrollbar);
}
html {
scrollbar-color: var(--scrollbar) var(--bg);
}
Expand All @@ -18,6 +12,19 @@ a > .hljs {
color: var(--links);
}

/*
body-container is necessary because mobile browsers don't seem to like
overflow-x on the body tag when there is a <meta name="viewport"> tag.
*/
#body-container {
/*
This is used when the sidebar pushes the body content off the side of
the screen on small screens. Without it, dragging on mobile Safari
will want to reposition the viewport in a weird way.
*/
overflow-x: clip;
}

/* Menu Bar */

#menu-bar,
Expand Down
37 changes: 32 additions & 5 deletions getting_started/docker.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions getting_started/index.html

Large diffs are not rendered by default.

46 changes: 36 additions & 10 deletions getting_started/installation_options.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions getting_started/linux_x86.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions getting_started/opensuse.html

Large diffs are not rendered by default.

45 changes: 39 additions & 6 deletions getting_started/parsec_tool_use.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions index.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions overview.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/api_overview.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/index.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/attest_key.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/attest_key_params.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/can_do_crypto.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/delete_client.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/index.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/list_authenticators.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/list_clients.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/list_keys.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/list_opcodes.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/list_providers.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/ping.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/prepare_key_attestation.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/prepare_key_attestation_params.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_aead_decrypt.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_aead_encrypt.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_algorithm.html

Large diffs are not rendered by default.

38 changes: 35 additions & 3 deletions parsec_client/operations/psa_asymmetric_decrypt.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_asymmetric_encrypt.html

Large diffs are not rendered by default.

39 changes: 36 additions & 3 deletions parsec_client/operations/psa_cipher_decrypt.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_cipher_encrypt.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_destroy_key.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_export_key.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_export_public_key.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_generate_key.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_generate_random.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_hash_compare.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_hash_compute.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_import_key.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_key_attributes.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_mac_compute.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_mac_verify.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_raw_key_agreement.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_sign_hash.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_sign_message.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_verify_hash.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/psa_verify_message.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/operations/service_api_coverage.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/status_codes.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/wire_protocol.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_client/writing_library.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_security/index.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_security/parsec_threat_model/threat_model.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_security/rust_client_threat_model/threat_model.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_security/secure_deployment.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/adding_provider.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/authenticators.html

Large diffs are not rendered by default.

34 changes: 30 additions & 4 deletions parsec_service/build_run.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/configuration.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/converters.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/index.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/install_parsec_linux.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/interfaces_and_dataflow.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/key_info_managers.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/listeners.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/providers.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/source_code_structure.html

Large diffs are not rendered by default.

34 changes: 30 additions & 4 deletions parsec_service/stability.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/tests/existing_tests.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_service/tests/index.html

Large diffs are not rendered by default.

32 changes: 29 additions & 3 deletions parsec_users.html

Large diffs are not rendered by default.

203 changes: 178 additions & 25 deletions print.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion searchindex.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions tomorrow-night.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* Tomorrow Night Theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* https://github.com/jmblog/color-themes-for-highlightjs */
/* Original theme - https://github.com/chriskempson/tomorrow-theme */
/* http://jmblog.github.com/color-themes-for-google-code-highlightjs */
/* https://github.com/jmblog/color-themes-for-highlightjs */

/* Tomorrow Comment */
.hljs-comment {
Expand Down

0 comments on commit 696d8e8

Please sign in to comment.