From 13bd327e01c5a8e9683d4677d452416931afbf19 Mon Sep 17 00:00:00 2001 From: ajakuma Date: Tue, 20 Jan 2026 00:21:51 +0530 Subject: [PATCH] Add redirect functionality to migrate users to new documentation site Implemented automatic redirect with countdown banner for all 86 HTML pages to notify users about site migration to Adobe Developer Platform. Users see a 10-second countdown before being redirected, providing clear communication about the transition. --- docs/_static/redirect.js | 44 +++++++++++++++++++ docs/acrobat_sign_events/index.html | 1 + docs/acrobat_sign_events/search.html | 1 + docs/acrobat_sign_events/toc.html | 1 + .../webhookeventsagreements.html | 1 + .../webhookeventslibrary.html | 1 + .../webhookeventsmegasign.html | 1 + .../webhookeventswidget.html | 1 + .../webhookpayloadoverview.html | 1 + .../webhooks-oauth-2.0.html | 1 + docs/developer_guide/apiusage.html | 1 + docs/developer_guide/best-practices.html | 1 + docs/developer_guide/events.html | 1 + docs/developer_guide/forms.html | 1 + docs/developer_guide/glossary.html | 1 + docs/developer_guide/gstarted.html | 1 + docs/developer_guide/helloworld.html | 1 + docs/developer_guide/index.html | 1 + docs/developer_guide/migrating.html | 1 + docs/developer_guide/oauth.html | 1 + docs/developer_guide/samples.html | 1 + docs/developer_guide/scenarios.html | 1 + docs/developer_guide/search.html | 1 + docs/developer_guide/temp.html | 1 + docs/developer_guide/toc.html | 1 + .../developer_guide/webhook-endpoint-api.html | 1 + docs/developer_guide/webhookapis.html | 1 + docs/embedpartner/bill_brady_docs.html | 1 + docs/embedpartner/channel_webhooks.html | 1 + docs/embedpartner/embedapi2.html | 1 + docs/embedpartner/gstarted.html | 1 + docs/embedpartner/index.html | 1 + docs/embedpartner/migration_changes.html | 1 + docs/embedpartner/migration_faq.html | 1 + docs/embedpartner/migration_overview.html | 1 + docs/embedpartner/migration_steps.html | 1 + docs/embedpartner/onboarding.html | 1 + docs/embedpartner/onboarding2.html | 1 + docs/embedpartner/partnercertification.html | 1 + docs/embedpartner/partnercertification2.html | 1 + docs/embedpartner/provisioningfaq.html | 1 + docs/embedpartner/search.html | 1 + docs/embedpartner/toc.html | 1 + docs/embedpartner/videos.html | 1 + docs/embedpartner/videos2.html | 1 + docs/index.html | 1 + .../releasenotes/acrobatsignreleasenotes.html | 1 + docs/releasenotes/index.html | 1 + docs/releasenotes/search.html | 1 + docs/releasenotes/toc.html | 1 + docs/releasenotes/v6releasenotes.html | 1 + docs/sdks/csharp.html | 1 + docs/sdks/index.html | 1 + docs/sdks/java.html | 1 + docs/sdks/js.html | 1 + docs/sdks/openapi.html | 1 + docs/sdks/rest.html | 1 + docs/sdks/search.html | 1 + docs/sdks/toc.html | 1 + docs/signgov/apps.html | 1 + docs/signgov/createapp.html | 1 + docs/signgov/diffs.html | 1 + docs/signgov/gstarted.html | 1 + docs/signgov/index.html | 1 + docs/signgov/partnercertification.html | 1 + docs/signgov/samples.html | 1 + docs/signgov/search.html | 1 + docs/signgov/test.html | 1 + docs/signgov/toc.html | 1 + docs/tech_blog/aaron1.html | 1 + docs/tech_blog/agreementstatus..html | 1 + docs/tech_blog/author.html | 1 + docs/tech_blog/faq.html | 1 + docs/tech_blog/index.html | 1 + docs/tech_blog/provisioning.html | 1 + .../qa/general/Email-deliverability..html | 1 + .../general/cant-add-email-to-account..html | 1 + docs/tech_blog/qa/general/custom-email..html | 1 + docs/tech_blog/qa/general/why-email..html | 1 + docs/tech_blog/qa/images/temp..html | 1 + .../qa/partners/Certification-process..html | 1 + docs/tech_blog/qa/partners/tmp..html | 1 + docs/tech_blog/search.html | 1 + .../tldr/api_agreement_statuses..html | 1 + docs/tech_blog/tldr/images/tmp..html | 1 + .../tldr/partner-oauth-walkthrough..html | 1 + .../tldr/webhooks-partner-integrations..html | 1 + 87 files changed, 130 insertions(+) create mode 100644 docs/_static/redirect.js diff --git a/docs/_static/redirect.js b/docs/_static/redirect.js new file mode 100644 index 0000000..ef64464 --- /dev/null +++ b/docs/_static/redirect.js @@ -0,0 +1,44 @@ +/** + * Global redirect script for all documentation pages + * Redirects to the new domain while preserving the path + */ +(function() { + // Create and inject the migration notice banner + var banner = document.createElement('div'); + banner.id = 'migration-notice'; + banner.style.cssText = 'position: fixed; top: 0; left: 0; right: 0; background-color: #ff9800; color: white; padding: 20px; text-align: center; z-index: 9999; font-size: 18px; font-weight: bold;'; + banner.innerHTML = '⚠️ This page has been migrated to Adobe Developer Platform. You will be redirected in 10 seconds...'; + document.body.insertBefore(banner, document.body.firstChild); + + // Configure your new domain + var NEW_DOMAIN = 'https://developer.adobe.com/acrobat-sign'; + + // Get current path + var currentPath = window.location.pathname; + var pathMatch = currentPath.match(/\/acrobat-sign\/(.*)$/); + var relativePath = pathMatch ? pathMatch[1] : currentPath.replace(/^\//, ''); + + // Construct new URL + var newUrl = NEW_DOMAIN; + + // Countdown logic + var secondsLeft = 10; + var countdownElement = document.getElementById('countdown'); + + var countdownInterval = setInterval(function() { + secondsLeft--; + if (countdownElement) { + countdownElement.textContent = secondsLeft; + } + if (secondsLeft <= 0) { + clearInterval(countdownInterval); + } + }, 1000); + + // Redirect after 10 seconds + setTimeout(function () { + window.location.replace(newUrl); + }, 10000); +})(); + + diff --git a/docs/acrobat_sign_events/index.html b/docs/acrobat_sign_events/index.html index 42ab156..6cc0ec9 100644 --- a/docs/acrobat_sign_events/index.html +++ b/docs/acrobat_sign_events/index.html @@ -710,6 +710,7 @@

Reliable notifications: Retry policy \ No newline at end of file diff --git a/docs/acrobat_sign_events/search.html b/docs/acrobat_sign_events/search.html index def7a34..912815c 100644 --- a/docs/acrobat_sign_events/search.html +++ b/docs/acrobat_sign_events/search.html @@ -359,6 +359,7 @@ + \ No newline at end of file diff --git a/docs/acrobat_sign_events/toc.html b/docs/acrobat_sign_events/toc.html index 983bd6a..d56bdc2 100644 --- a/docs/acrobat_sign_events/toc.html +++ b/docs/acrobat_sign_events/toc.html @@ -511,6 +511,7 @@

Webhook Reference \ No newline at end of file diff --git a/docs/acrobat_sign_events/webhookeventsagreements.html b/docs/acrobat_sign_events/webhookeventsagreements.html index 8d896ac..0c60b6e 100644 --- a/docs/acrobat_sign_events/webhookeventsagreements.html +++ b/docs/acrobat_sign_events/webhookeventsagreements.html @@ -6613,6 +6613,7 @@

AGREEMENT_DOCUMENTS_VIEWED_PASSWORD_PROTECTED \ No newline at end of file diff --git a/docs/acrobat_sign_events/webhookeventslibrary.html b/docs/acrobat_sign_events/webhookeventslibrary.html index 45f30b1..53dddd6 100644 --- a/docs/acrobat_sign_events/webhookeventslibrary.html +++ b/docs/acrobat_sign_events/webhookeventslibrary.html @@ -758,6 +758,7 @@

LIBRARY_DOCUMENT_MODIFIED \ No newline at end of file diff --git a/docs/acrobat_sign_events/webhookeventsmegasign.html b/docs/acrobat_sign_events/webhookeventsmegasign.html index 720e5dc..8b5335e 100644 --- a/docs/acrobat_sign_events/webhookeventsmegasign.html +++ b/docs/acrobat_sign_events/webhookeventsmegasign.html @@ -987,6 +987,7 @@

MEGASIGN_REMINDER_SENT + \ No newline at end of file diff --git a/docs/acrobat_sign_events/webhookeventswidget.html b/docs/acrobat_sign_events/webhookeventswidget.html index ea17dc6..0d27f1f 100644 --- a/docs/acrobat_sign_events/webhookeventswidget.html +++ b/docs/acrobat_sign_events/webhookeventswidget.html @@ -1321,6 +1321,7 @@

WIDGET_SHARED \ No newline at end of file diff --git a/docs/acrobat_sign_events/webhookpayloadoverview.html b/docs/acrobat_sign_events/webhookpayloadoverview.html index 48a2083..e980a14 100644 --- a/docs/acrobat_sign_events/webhookpayloadoverview.html +++ b/docs/acrobat_sign_events/webhookpayloadoverview.html @@ -685,6 +685,7 @@

webhookNotificationPayload \ No newline at end of file diff --git a/docs/acrobat_sign_events/webhooks-oauth-2.0.html b/docs/acrobat_sign_events/webhooks-oauth-2.0.html index c066459..ff8a400 100644 --- a/docs/acrobat_sign_events/webhooks-oauth-2.0.html +++ b/docs/acrobat_sign_events/webhooks-oauth-2.0.html @@ -614,6 +614,7 @@

Set up Webhooks OAuth 2.0 \ No newline at end of file diff --git a/docs/developer_guide/apiusage.html b/docs/developer_guide/apiusage.html index 4285afe..3513b26 100644 --- a/docs/developer_guide/apiusage.html +++ b/docs/developer_guide/apiusage.html @@ -1945,6 +1945,7 @@

Recommended Implementation \ No newline at end of file diff --git a/docs/developer_guide/best-practices.html b/docs/developer_guide/best-practices.html index fcbb3ca..d2d4ac9 100644 --- a/docs/developer_guide/best-practices.html +++ b/docs/developer_guide/best-practices.html @@ -1703,6 +1703,7 @@

Bad Pattern \ No newline at end of file diff --git a/docs/developer_guide/events.html b/docs/developer_guide/events.html index c766f7c..8cffdee 100644 --- a/docs/developer_guide/events.html +++ b/docs/developer_guide/events.html @@ -534,6 +534,7 @@

Using events \ No newline at end of file diff --git a/docs/developer_guide/forms.html b/docs/developer_guide/forms.html index 3cd0b8b..f24ef7c 100644 --- a/docs/developer_guide/forms.html +++ b/docs/developer_guide/forms.html @@ -353,6 +353,7 @@ }); + \ No newline at end of file diff --git a/docs/developer_guide/glossary.html b/docs/developer_guide/glossary.html index 36a255d..877a703 100644 --- a/docs/developer_guide/glossary.html +++ b/docs/developer_guide/glossary.html @@ -386,6 +386,7 @@

Glossary \ No newline at end of file diff --git a/docs/developer_guide/gstarted.html b/docs/developer_guide/gstarted.html index f8f5671..59917a7 100644 --- a/docs/developer_guide/gstarted.html +++ b/docs/developer_guide/gstarted.html @@ -678,6 +678,7 @@

The customer experience + \ No newline at end of file diff --git a/docs/developer_guide/helloworld.html b/docs/developer_guide/helloworld.html index 6c855c4..8c3718e 100644 --- a/docs/developer_guide/helloworld.html +++ b/docs/developer_guide/helloworld.html @@ -1140,5 +1140,6 @@

Revoking a token \ No newline at end of file diff --git a/docs/developer_guide/index.html b/docs/developer_guide/index.html index da24590..6023e83 100644 --- a/docs/developer_guide/index.html +++ b/docs/developer_guide/index.html @@ -578,6 +578,7 @@

Create an app \ No newline at end of file diff --git a/docs/developer_guide/migrating.html b/docs/developer_guide/migrating.html index 460ad5d..ed8aefd 100644 --- a/docs/developer_guide/migrating.html +++ b/docs/developer_guide/migrating.html @@ -1348,6 +1348,7 @@

User Methods \ No newline at end of file diff --git a/docs/developer_guide/oauth.html b/docs/developer_guide/oauth.html index 1b42b7b..3e66aba 100644 --- a/docs/developer_guide/oauth.html +++ b/docs/developer_guide/oauth.html @@ -481,6 +481,7 @@

Revoking a token \ No newline at end of file diff --git a/docs/developer_guide/samples.html b/docs/developer_guide/samples.html index 0da3838..f282754 100644 --- a/docs/developer_guide/samples.html +++ b/docs/developer_guide/samples.html @@ -1141,6 +1141,7 @@

Send an Agreement Using a Transient Document \ No newline at end of file diff --git a/docs/developer_guide/scenarios.html b/docs/developer_guide/scenarios.html index 0b92bad..35dac87 100644 --- a/docs/developer_guide/scenarios.html +++ b/docs/developer_guide/scenarios.html @@ -385,6 +385,7 @@

Photo Rights \ No newline at end of file diff --git a/docs/developer_guide/search.html b/docs/developer_guide/search.html index 0ab287c..a0051ea 100644 --- a/docs/developer_guide/search.html +++ b/docs/developer_guide/search.html @@ -365,6 +365,7 @@ + \ No newline at end of file diff --git a/docs/developer_guide/temp.html b/docs/developer_guide/temp.html index 92fc06f..5b0f1f9 100644 --- a/docs/developer_guide/temp.html +++ b/docs/developer_guide/temp.html @@ -370,6 +370,7 @@ }); + \ No newline at end of file diff --git a/docs/developer_guide/toc.html b/docs/developer_guide/toc.html index 0ab22cb..a13c3bc 100644 --- a/docs/developer_guide/toc.html +++ b/docs/developer_guide/toc.html @@ -758,6 +758,7 @@

Developer Guide \ No newline at end of file diff --git a/docs/developer_guide/webhook-endpoint-api.html b/docs/developer_guide/webhook-endpoint-api.html index 575e2a2..b174efd 100644 --- a/docs/developer_guide/webhook-endpoint-api.html +++ b/docs/developer_guide/webhook-endpoint-api.html @@ -960,6 +960,7 @@

Standard API request error codes \ No newline at end of file diff --git a/docs/developer_guide/webhookapis.html b/docs/developer_guide/webhookapis.html index c514daf..e7d4c5b 100644 --- a/docs/developer_guide/webhookapis.html +++ b/docs/developer_guide/webhookapis.html @@ -1438,6 +1438,7 @@

Get the function’s URL + \ No newline at end of file diff --git a/docs/embedpartner/bill_brady_docs.html b/docs/embedpartner/bill_brady_docs.html index d1b3188..e950290 100644 --- a/docs/embedpartner/bill_brady_docs.html +++ b/docs/embedpartner/bill_brady_docs.html @@ -318,6 +318,7 @@

Partner docs, faqs, etc. + \ No newline at end of file diff --git a/docs/embedpartner/channel_webhooks.html b/docs/embedpartner/channel_webhooks.html index 40347f0..f147a7a 100644 --- a/docs/embedpartner/channel_webhooks.html +++ b/docs/embedpartner/channel_webhooks.html @@ -546,6 +546,7 @@

Configure a webhook and subscribe to events \ No newline at end of file diff --git a/docs/embedpartner/embedapi2.html b/docs/embedpartner/embedapi2.html index a24cb3d..1e88b06 100644 --- a/docs/embedpartner/embedapi2.html +++ b/docs/embedpartner/embedapi2.html @@ -3425,6 +3425,7 @@

ErrorResponse \ No newline at end of file diff --git a/docs/embedpartner/gstarted.html b/docs/embedpartner/gstarted.html index e7e57c8..81db9d9 100644 --- a/docs/embedpartner/gstarted.html +++ b/docs/embedpartner/gstarted.html @@ -766,6 +766,7 @@

The customer experience + \ No newline at end of file diff --git a/docs/embedpartner/index.html b/docs/embedpartner/index.html index beb8758..2016cdd 100644 --- a/docs/embedpartner/index.html +++ b/docs/embedpartner/index.html @@ -530,6 +530,7 @@

Build and deploy in four easy steps \ No newline at end of file diff --git a/docs/embedpartner/migration_changes.html b/docs/embedpartner/migration_changes.html index 6d7275e..5436b2a 100644 --- a/docs/embedpartner/migration_changes.html +++ b/docs/embedpartner/migration_changes.html @@ -668,6 +668,7 @@

Changes in the Acrobat Sign API \ No newline at end of file diff --git a/docs/embedpartner/migration_faq.html b/docs/embedpartner/migration_faq.html index 2a137b8..bd1b869 100644 --- a/docs/embedpartner/migration_faq.html +++ b/docs/embedpartner/migration_faq.html @@ -867,6 +867,7 @@

Request Form parameters + \ No newline at end of file diff --git a/docs/embedpartner/migration_overview.html b/docs/embedpartner/migration_overview.html index 9e285dd..b4be57f 100644 --- a/docs/embedpartner/migration_overview.html +++ b/docs/embedpartner/migration_overview.html @@ -520,6 +520,7 @@

What is the upgrade timeline? \ No newline at end of file diff --git a/docs/embedpartner/migration_steps.html b/docs/embedpartner/migration_steps.html index 96cb428..67e7666 100644 --- a/docs/embedpartner/migration_steps.html +++ b/docs/embedpartner/migration_steps.html @@ -532,6 +532,7 @@

Phase 4 - Adobe and Partner review the status after cutover. Partner retires }); + \ No newline at end of file diff --git a/docs/embedpartner/onboarding.html b/docs/embedpartner/onboarding.html index 4f338f1..05a1770 100644 --- a/docs/embedpartner/onboarding.html +++ b/docs/embedpartner/onboarding.html @@ -455,6 +455,7 @@

Build and deploy in 4 easy steps \ No newline at end of file diff --git a/docs/embedpartner/onboarding2.html b/docs/embedpartner/onboarding2.html index e1d9d5e..b681cd8 100644 --- a/docs/embedpartner/onboarding2.html +++ b/docs/embedpartner/onboarding2.html @@ -811,6 +811,7 @@

Provide account info to Adobe \ No newline at end of file diff --git a/docs/embedpartner/partnercertification.html b/docs/embedpartner/partnercertification.html index 53cbdde..8859ee3 100644 --- a/docs/embedpartner/partnercertification.html +++ b/docs/embedpartner/partnercertification.html @@ -494,6 +494,7 @@

Post “certification” + \ No newline at end of file diff --git a/docs/embedpartner/partnercertification2.html b/docs/embedpartner/partnercertification2.html index a92e813..6bdc96f 100644 --- a/docs/embedpartner/partnercertification2.html +++ b/docs/embedpartner/partnercertification2.html @@ -487,6 +487,7 @@

Post “certification” + \ No newline at end of file diff --git a/docs/embedpartner/provisioningfaq.html b/docs/embedpartner/provisioningfaq.html index e01a26e..945ac2a 100644 --- a/docs/embedpartner/provisioningfaq.html +++ b/docs/embedpartner/provisioningfaq.html @@ -585,6 +585,7 @@

New account provisioning flow \ No newline at end of file diff --git a/docs/embedpartner/search.html b/docs/embedpartner/search.html index 557168d..b209153 100644 --- a/docs/embedpartner/search.html +++ b/docs/embedpartner/search.html @@ -451,6 +451,7 @@ + \ No newline at end of file diff --git a/docs/embedpartner/toc.html b/docs/embedpartner/toc.html index 04711fd..344d131 100644 --- a/docs/embedpartner/toc.html +++ b/docs/embedpartner/toc.html @@ -577,6 +577,7 @@

OEM/Embed Partner Documentation \ No newline at end of file diff --git a/docs/embedpartner/videos.html b/docs/embedpartner/videos.html index 107275e..fe86426 100644 --- a/docs/embedpartner/videos.html +++ b/docs/embedpartner/videos.html @@ -393,6 +393,7 @@

How-to Video Tutorials + \ No newline at end of file diff --git a/docs/embedpartner/videos2.html b/docs/embedpartner/videos2.html index 2878716..ed516c1 100644 --- a/docs/embedpartner/videos2.html +++ b/docs/embedpartner/videos2.html @@ -377,6 +377,7 @@

How-to Video Tutorials 2.0 \ No newline at end of file diff --git a/docs/index.html b/docs/index.html index 81fd570..b2c0167 100644 --- a/docs/index.html +++ b/docs/index.html @@ -328,6 +328,7 @@ + \ No newline at end of file diff --git a/docs/releasenotes/acrobatsignreleasenotes.html b/docs/releasenotes/acrobatsignreleasenotes.html index e61f919..2929b56 100644 --- a/docs/releasenotes/acrobatsignreleasenotes.html +++ b/docs/releasenotes/acrobatsignreleasenotes.html @@ -764,6 +764,7 @@

January 2022 \ No newline at end of file diff --git a/docs/releasenotes/index.html b/docs/releasenotes/index.html index 06a93d3..5fba722 100644 --- a/docs/releasenotes/index.html +++ b/docs/releasenotes/index.html @@ -268,6 +268,7 @@

Acrobat Sign API Release Notes \ No newline at end of file diff --git a/docs/releasenotes/search.html b/docs/releasenotes/search.html index 1c1549f..2e59156 100644 --- a/docs/releasenotes/search.html +++ b/docs/releasenotes/search.html @@ -275,6 +275,7 @@ + \ No newline at end of file diff --git a/docs/releasenotes/toc.html b/docs/releasenotes/toc.html index 9e20acf..eff44ec 100644 --- a/docs/releasenotes/toc.html +++ b/docs/releasenotes/toc.html @@ -306,6 +306,7 @@

Acrobat Sign API Release Notes \ No newline at end of file diff --git a/docs/releasenotes/v6releasenotes.html b/docs/releasenotes/v6releasenotes.html index 2784822..a2e99f2 100644 --- a/docs/releasenotes/v6releasenotes.html +++ b/docs/releasenotes/v6releasenotes.html @@ -1202,6 +1202,7 @@

Removed APIs \ No newline at end of file diff --git a/docs/sdks/csharp.html b/docs/sdks/csharp.html index 14e1985..7ab324a 100644 --- a/docs/sdks/csharp.html +++ b/docs/sdks/csharp.html @@ -446,6 +446,7 @@

Reporting issues \ No newline at end of file diff --git a/docs/sdks/index.html b/docs/sdks/index.html index f532c2d..543478d 100644 --- a/docs/sdks/index.html +++ b/docs/sdks/index.html @@ -313,6 +313,7 @@

Acrobat Sign SDK Downloads \ No newline at end of file diff --git a/docs/sdks/java.html b/docs/sdks/java.html index 83b8a35..ebfaa91 100644 --- a/docs/sdks/java.html +++ b/docs/sdks/java.html @@ -472,6 +472,7 @@

Reporting issues \ No newline at end of file diff --git a/docs/sdks/js.html b/docs/sdks/js.html index 8cfaed5..79aee42 100644 --- a/docs/sdks/js.html +++ b/docs/sdks/js.html @@ -414,6 +414,7 @@

Reporting issues \ No newline at end of file diff --git a/docs/sdks/openapi.html b/docs/sdks/openapi.html index 5ae7757..d8aed92 100644 --- a/docs/sdks/openapi.html +++ b/docs/sdks/openapi.html @@ -388,6 +388,7 @@

Reporting issues \ No newline at end of file diff --git a/docs/sdks/rest.html b/docs/sdks/rest.html index c7ce466..0765dbb 100644 --- a/docs/sdks/rest.html +++ b/docs/sdks/rest.html @@ -351,6 +351,7 @@

Downloads \ No newline at end of file diff --git a/docs/sdks/search.html b/docs/sdks/search.html index 033e42c..05fa7e3 100644 --- a/docs/sdks/search.html +++ b/docs/sdks/search.html @@ -309,6 +309,7 @@ + \ No newline at end of file diff --git a/docs/sdks/toc.html b/docs/sdks/toc.html index 2f5285e..719acdc 100644 --- a/docs/sdks/toc.html +++ b/docs/sdks/toc.html @@ -377,6 +377,7 @@

Acrobat Sign SDK Downloads \ No newline at end of file diff --git a/docs/signgov/apps.html b/docs/signgov/apps.html index 7c80a64..ebcd4ea 100644 --- a/docs/signgov/apps.html +++ b/docs/signgov/apps.html @@ -1272,6 +1272,7 @@

Signer authentication mechanisms \ No newline at end of file diff --git a/docs/signgov/createapp.html b/docs/signgov/createapp.html index 1e5c775..21fe32e 100644 --- a/docs/signgov/createapp.html +++ b/docs/signgov/createapp.html @@ -589,6 +589,7 @@

The customer experience + \ No newline at end of file diff --git a/docs/signgov/diffs.html b/docs/signgov/diffs.html index 25fc30c..9985aeb 100644 --- a/docs/signgov/diffs.html +++ b/docs/signgov/diffs.html @@ -418,6 +418,7 @@

Web app user interface + \ No newline at end of file diff --git a/docs/signgov/gstarted.html b/docs/signgov/gstarted.html index 789d2d5..8f7652f 100644 --- a/docs/signgov/gstarted.html +++ b/docs/signgov/gstarted.html @@ -401,6 +401,7 @@

Deploy and build \ No newline at end of file diff --git a/docs/signgov/index.html b/docs/signgov/index.html index b885554..f1b72b0 100644 --- a/docs/signgov/index.html +++ b/docs/signgov/index.html @@ -325,6 +325,7 @@

Sign for Government: Developer Overview \ No newline at end of file diff --git a/docs/signgov/partnercertification.html b/docs/signgov/partnercertification.html index ca1ac6f..ebaff95 100644 --- a/docs/signgov/partnercertification.html +++ b/docs/signgov/partnercertification.html @@ -302,5 +302,6 @@

Post “certification” + \ No newline at end of file diff --git a/docs/signgov/samples.html b/docs/signgov/samples.html index c18debb..a20b05b 100644 --- a/docs/signgov/samples.html +++ b/docs/signgov/samples.html @@ -308,6 +308,7 @@

Acrobat Sign for Government: API Samples \ No newline at end of file diff --git a/docs/signgov/search.html b/docs/signgov/search.html index 1a043a5..46f624c 100644 --- a/docs/signgov/search.html +++ b/docs/signgov/search.html @@ -318,6 +318,7 @@ + \ No newline at end of file diff --git a/docs/signgov/test.html b/docs/signgov/test.html index 091150f..55ca3e4 100644 --- a/docs/signgov/test.html +++ b/docs/signgov/test.html @@ -1495,5 +1495,6 @@

Signer Authentication + \ No newline at end of file diff --git a/docs/signgov/toc.html b/docs/signgov/toc.html index 9c80977..9a9f9ef 100644 --- a/docs/signgov/toc.html +++ b/docs/signgov/toc.html @@ -364,6 +364,7 @@

GovCloud API Documentation \ No newline at end of file diff --git a/docs/tech_blog/aaron1.html b/docs/tech_blog/aaron1.html index 4c01ae9..0c67315 100644 --- a/docs/tech_blog/aaron1.html +++ b/docs/tech_blog/aaron1.html @@ -259,6 +259,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/agreementstatus..html b/docs/tech_blog/agreementstatus..html index a74bd16..a70327b 100644 --- a/docs/tech_blog/agreementstatus..html +++ b/docs/tech_blog/agreementstatus..html @@ -250,6 +250,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/author.html b/docs/tech_blog/author.html index 2c15a1d..602ec5e 100644 --- a/docs/tech_blog/author.html +++ b/docs/tech_blog/author.html @@ -304,5 +304,6 @@

Build the Docs \ No newline at end of file diff --git a/docs/tech_blog/faq.html b/docs/tech_blog/faq.html index 8352b38..452264b 100644 --- a/docs/tech_blog/faq.html +++ b/docs/tech_blog/faq.html @@ -251,6 +251,7 @@

Agreement Status Updates and Webhooks \ No newline at end of file diff --git a/docs/tech_blog/index.html b/docs/tech_blog/index.html index 5c627e8..3ee79c9 100644 --- a/docs/tech_blog/index.html +++ b/docs/tech_blog/index.html @@ -281,6 +281,7 @@

Acrobat Sign FAQs, Tips, and Tricks \ No newline at end of file diff --git a/docs/tech_blog/provisioning.html b/docs/tech_blog/provisioning.html index 7fbf22e..b3bbeaa 100644 --- a/docs/tech_blog/provisioning.html +++ b/docs/tech_blog/provisioning.html @@ -276,6 +276,7 @@

Implications for you and your customers \ No newline at end of file diff --git a/docs/tech_blog/qa/general/Email-deliverability..html b/docs/tech_blog/qa/general/Email-deliverability..html index f8aba1f..0ee7c42 100644 --- a/docs/tech_blog/qa/general/Email-deliverability..html +++ b/docs/tech_blog/qa/general/Email-deliverability..html @@ -247,6 +247,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/qa/general/cant-add-email-to-account..html b/docs/tech_blog/qa/general/cant-add-email-to-account..html index b20f3d8..524f506 100644 --- a/docs/tech_blog/qa/general/cant-add-email-to-account..html +++ b/docs/tech_blog/qa/general/cant-add-email-to-account..html @@ -246,6 +246,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/qa/general/custom-email..html b/docs/tech_blog/qa/general/custom-email..html index 4fa23bd..50082f8 100644 --- a/docs/tech_blog/qa/general/custom-email..html +++ b/docs/tech_blog/qa/general/custom-email..html @@ -246,6 +246,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/qa/general/why-email..html b/docs/tech_blog/qa/general/why-email..html index f266183..0a758cf 100644 --- a/docs/tech_blog/qa/general/why-email..html +++ b/docs/tech_blog/qa/general/why-email..html @@ -262,6 +262,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/qa/images/temp..html b/docs/tech_blog/qa/images/temp..html index 4fb8d98..2d1d75a 100644 --- a/docs/tech_blog/qa/images/temp..html +++ b/docs/tech_blog/qa/images/temp..html @@ -241,6 +241,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/qa/partners/Certification-process..html b/docs/tech_blog/qa/partners/Certification-process..html index 85239c9..ccb35fa 100644 --- a/docs/tech_blog/qa/partners/Certification-process..html +++ b/docs/tech_blog/qa/partners/Certification-process..html @@ -257,6 +257,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/qa/partners/tmp..html b/docs/tech_blog/qa/partners/tmp..html index fdbee99..040d991 100644 --- a/docs/tech_blog/qa/partners/tmp..html +++ b/docs/tech_blog/qa/partners/tmp..html @@ -241,6 +241,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/search.html b/docs/tech_blog/search.html index 1ecbc83..6fab250 100644 --- a/docs/tech_blog/search.html +++ b/docs/tech_blog/search.html @@ -260,6 +260,7 @@ + \ No newline at end of file diff --git a/docs/tech_blog/tldr/api_agreement_statuses..html b/docs/tech_blog/tldr/api_agreement_statuses..html index a246b13..b6f712a 100644 --- a/docs/tech_blog/tldr/api_agreement_statuses..html +++ b/docs/tech_blog/tldr/api_agreement_statuses..html @@ -377,6 +377,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/tldr/images/tmp..html b/docs/tech_blog/tldr/images/tmp..html index 5599f75..ba7bfc6 100644 --- a/docs/tech_blog/tldr/images/tmp..html +++ b/docs/tech_blog/tldr/images/tmp..html @@ -241,6 +241,7 @@ }); + \ No newline at end of file diff --git a/docs/tech_blog/tldr/partner-oauth-walkthrough..html b/docs/tech_blog/tldr/partner-oauth-walkthrough..html index 83ca26c..f7ced81 100644 --- a/docs/tech_blog/tldr/partner-oauth-walkthrough..html +++ b/docs/tech_blog/tldr/partner-oauth-walkthrough..html @@ -758,5 +758,6 @@

} }); + \ No newline at end of file diff --git a/docs/tech_blog/tldr/webhooks-partner-integrations..html b/docs/tech_blog/tldr/webhooks-partner-integrations..html index 35e307a..b0cfbc3 100644 --- a/docs/tech_blog/tldr/webhooks-partner-integrations..html +++ b/docs/tech_blog/tldr/webhooks-partner-integrations..html @@ -253,6 +253,7 @@ }); + \ No newline at end of file