Skip to content

Commit 50a04d1

Browse files
remove 'ceremony' from all references to embedded signing (#6)
1 parent 2ace0e0 commit 50a04d1

File tree

15 files changed

+42
-42
lines changed

15 files changed

+42
-42
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ This repo is a Python 3 application that demonstrates:
1111

1212
## eSignature API
1313

14-
1. **Embedded Signing Ceremony.**
14+
1. **Use embedded signing.**
1515
[Source.](./app/eg001_embedded_signing/controller.py)
16-
This example sends an envelope, and then uses an embedded signing ceremony for the first signer.
17-
With embedded signing, the DocuSign signing ceremony is initiated from your website.
16+
This example sends an envelope, and then uses embedded signing for the first signer.
17+
With embedded signing, the DocuSign signing is initiated from your website.
1818
1. **Send an envelope with a remote (email) signer and cc recipient.**
1919
[Source.](./app/eSignature/examples/eg002_signing_via_email/controller.py)
2020
The envelope includes a pdf, Word, and HTML document.
@@ -41,13 +41,13 @@ This repo is a Python 3 application that demonstrates:
4141
1. **Send an envelope and upload its documents with multipart binary transfer.**
4242
[Source.](./app/eSignature/examples/eg010_send_binary_docs/controller.py)
4343
Binary transfer is 33% more efficient than using Base64 encoding.
44-
1. **Embedded sending.**
44+
1. **Use embedded sending.**
4545
[Source.](./app/eSignature/examples/eg011_embedded_sending/controller.py)
4646
Embeds the DocuSign web tool (NDSE) in your web app to finalize or update
4747
the envelope and documents before they are sent.
4848
1. **Embedded DocuSign web tool (NDSE).**
4949
[Source.](./app/eSignature/examples/eg012_embedded_console/controller.py)
50-
1. **Embedded Signing Ceremony from a template with an added document.**
50+
1. **Use embedded signing from a template with an added document.**
5151
[Source.](./app/eSignature/examples/eg013_add_doc_to_template/controller.py)
5252
This example sends an envelope based on a template.
5353
In addition to the template's document(s), the example adds an

app/consts.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Pattern for validating signer name and email
77
pattern = re.compile("([^\w \-\@\.\,])+")
88

9-
signer_client_id = 1000 # Used to indicate that the signer will use an embedded
10-
# Signing Ceremony. Represents the signer"s userId within
9+
signer_client_id = 1000 # Used to indicate that the signer will use embedded
10+
# signing. Represents the signer"s userId within
1111
# your application.
1212

1313
authentication_method = "None" # How is this application authenticating

app/eSignature/examples/eg013_add_doc_to_template/controller.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ def get_args():
4444
@classmethod
4545
def worker(cls, args):
4646
"""
47-
Create the envelope and the embedded Signing Ceremony
47+
Create the envelope and the embedded signing
4848
1. Create the envelope request object using composite template to
4949
add the new document
5050
2. Send the envelope
5151
3. Make the recipient view request object
52-
4. Get the recipient view (Signing Ceremony) url
52+
4. Get the recipient view (embedded signing) url
5353
"""
5454
envelope_args = args["envelope_args"]
5555
# 1. Create the envelope request object
@@ -75,7 +75,7 @@ def worker(cls, args):
7575
user_name=envelope_args["signer_name"],
7676
email=envelope_args["signer_email"]
7777
)
78-
# 4. Obtain the recipient_view_url for the signing ceremony
78+
# 4. Obtain the recipient_view_url for the embedded signing
7979
# Exceptions will be caught by the calling function
8080
results = envelope_api.create_recipient_view(
8181
account_id=args["account_id"],

app/eSignature/examples/eg013_add_doc_to_template/views.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Example 013: Embedded Signing Ceremony from template with added document"""
1+
"""Example 013: Embedded Signing from template with added document"""
22

33
from os import path
44

@@ -33,15 +33,15 @@ def add_doc_template():
3333
except ApiException as err:
3434
return process_error(err)
3535

36-
# 4. Redirect the user to the Signing Ceremony
36+
# 4. Redirect the user to the embedded signing
3737
# Don"t use an iFrame!
3838
# State can be stored/recovered using the framework"s session
3939
return redirect(results["redirect_url"])
4040

4141
else:
4242
return render_template(
4343
"eg013_add_doc_to_template.html",
44-
title="Embedded Signing Ceremony from template and extra doc",
44+
title="Use embedded signing from template and extra doc",
4545
template_ok=False,
4646
source_file=path.basename(path.dirname(__file__)) + "/controller.py",
4747
source_url=DS_CONFIG["github_example_url"] + path.basename(path.dirname(__file__)) + "/controller.py",
@@ -57,7 +57,7 @@ def get_view():
5757

5858
return render_template(
5959
"eg013_add_doc_to_template.html",
60-
title="Embedded Signing Ceremony from template and extra doc",
60+
title="Use embedded signing from template and extra doc",
6161
template_ok="template_id" in session,
6262
source_file=path.basename(path.dirname(__file__)) + "/controller.py",
6363
source_url=DS_CONFIG["github_example_url"] + path.basename(path.dirname(__file__)) + "/controller.py",

app/eSignature/examples/eg016_set_tab_values/controller.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def worker(cls, args):
3838
1. Create the envelope request object
3939
2. Send the envelope
4040
3. Create the Recipient View request object
41-
4. Obtain the recipient_view_url for the signing ceremony
41+
4. Obtain the recipient_view_url for the embedded signing
4242
"""
4343
envelope_args = args["envelope_args"]
4444
# 1. Create the envelope request object
@@ -65,7 +65,7 @@ def worker(cls, args):
6565
return_url=envelope_args["ds_return_url"],
6666
user_name=envelope_args["signer_name"], email=envelope_args["signer_email"]
6767
)
68-
# 4. Obtain the recipient view URL for the signing ceremony
68+
# 4. Obtain the recipient view URL for the embedded signing
6969
# Exceptions will be caught by the calling function
7070
results = envelopes_api.create_recipient_view(
7171
account_id=args["account_id"],

app/eSignature/examples/eg016_set_tab_values/views.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def set_tab_values():
2424
"""
2525
1. Get required arguments
2626
2. Call the worker method
27-
3. Redirect the user to the signing ceremony
27+
3. Redirect the user to the embedded signing
2828
"""
2929

3030
# 1. Get required arguments
@@ -38,7 +38,7 @@ def set_tab_values():
3838

3939
session["envelope_id"] = results["envelope_id"] # Save for use by other examples
4040
# that need an envelope ID
41-
# 3. Redirect the user to the signing ceremony
41+
# 3. Redirect the user to the embedded signing
4242
# Don"t use an iframe!
4343
# State can be stored/recovered using the framework"s session or a
4444
# query parameter on the return URL (see the makeRecipientViewRequest method)

app/eSignature/examples/eg017_set_template_tab_values/controller.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def worker(cls, args):
3939
1. Create the envelope request object
4040
2. Send the envelope
4141
3. Create the Recipient View request object
42-
4. Obtain the recipient_view_url for the signing ceremony
42+
4. Obtain the recipient_view_url for the embedded signing
4343
"""
4444
envelope_args = args["envelope_args"]
4545
# 1. Create the envelope request object
@@ -63,7 +63,7 @@ def worker(cls, args):
6363
return_url=envelope_args["ds_return_url"],
6464
user_name=envelope_args["signer_name"], email=envelope_args["signer_email"]
6565
)
66-
# 4. Obtain the recipient_view_url for the signing ceremony
66+
# 4. Obtain the recipient_view_url for the embedded signing
6767
# Exceptions will be caught by the calling function
6868
results = envelopes_api.create_recipient_view(
6969
account_id=args["account_id"],

app/eSignature/examples/eg017_set_template_tab_values/views.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def set_template_tab_values():
2424
"""
2525
1. Get required arguments
2626
2. Call the worker method
27-
3. Redirect the user to the signing ceremony
27+
3. Redirect the user to the embedded signing
2828
"""
2929

3030
# 1. Get required arguments
@@ -38,7 +38,7 @@ def set_template_tab_values():
3838

3939
session["envelope_id"] = results["envelope_id"] # Save for use by other examples
4040
# which need an envelopeId
41-
# 3. Redirect the user to the Signing Ceremony
41+
# 3. Redirect the user to the embedded signing
4242
# Don"t use an iFrame!
4343
# State can be stored/recovered using the framework"s session or a
4444
# query parameter on the returnUrl (see the makeRecipientViewRequest method)

app/eg001_embedded_signing/controller.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def worker(cls, args):
3939
1. Create the envelope request object
4040
2. Send the envelope
4141
3. Create the Recipient View request object
42-
4. Obtain the recipient_view_url for the signing ceremony
42+
4. Obtain the recipient_view_url for the embedded signing
4343
"""
4444
envelope_args = args["envelope_args"]
4545
# 1. Create the envelope request object
@@ -63,7 +63,7 @@ def worker(cls, args):
6363
user_name=envelope_args["signer_name"],
6464
email=envelope_args["signer_email"]
6565
)
66-
# 4. Obtain the recipient_view_url for the signing ceremony
66+
# 4. Obtain the recipient_view_url for the embedded signing
6767
# Exceptions will be caught by the calling function
6868
results = envelope_api.create_recipient_view(
6969
account_id=args["account_id"],

app/eg001_embedded_signing/views.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Example 001: Embedded Signing Ceremony"""
1+
"""Example 001: Use embedded signing"""
22

33
from os import path
44

@@ -20,7 +20,7 @@ def embedded_signing():
2020
"""
2121
1. Get required arguments
2222
2. Call the worker method
23-
3. Redirect the user to the signing ceremony
23+
3. Redirect the user to the embedded signing
2424
"""
2525
try:
2626
# 1. Get required arguments
@@ -30,7 +30,7 @@ def embedded_signing():
3030
except ApiException as err:
3131
return process_error(err)
3232

33-
# 3. Redirect the user to the Signing Ceremony
33+
# 3. Redirect the user to the embedded signing
3434
# Don"t use an iFrame!
3535
# State can be stored/recovered using the framework"s session or a
3636
# query parameter on the returnUrl (see the makeRecipientViewRequest method)
@@ -43,7 +43,7 @@ def get_view():
4343
"""responds with the form for the example"""
4444
return render_template(
4545
"eg001_embedded_signing.html",
46-
title="Embedded Signing Ceremony",
46+
title="Use embedded signing",
4747
source_file=path.basename(path.dirname(__file__)) + "/controller.py",
4848
source_url="https://github.com/docusign/code-examples-python/tree/master/app/" + path.basename(path.dirname(__file__)) + "/controller.py",
4949
documentation=DS_CONFIG["documentation"] + eg,

app/templates/eg001_embedded_signing.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<!-- extend base layout --> {% extends "base.html" %} {% block content %}
22

3-
<h4>1. Embedded Signing Ceremony</h4>
4-
<p>This example sends an envelope, and then uses an embedded signing ceremony for the first signer.</p>
5-
<p>Embedded signing provides a smoother user experience for the signer: the DocuSign signing ceremony is initiated from your website.</p>
3+
<h4>1. Use embedded signing</h4>
4+
<p>This example sends an envelope, and then uses embedded signing for the first signer.</p>
5+
<p>Embedded signing provides a smoother user experience for the signer: the DocuSign signing is initiated from your website.</p>
66

77
{% if show_doc %}
88
<p><a target='_blank' href='{{ documentation | safe }}'>Documentation</a> about this example.</p>

app/templates/eg011_embedded_sending.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- extend base layout --> {% extends "base.html" %} {% block content %}
22

3-
<h4>11. Embedded Sending</h4>
3+
<h4>11. Use embedded sending</h4>
44
<p>An envelope will be created in draft mode. Your browser will then be redirected to
55
the DocuSign web tool where the envelope can be (optionally) updated and then sent.</p>
66
<p>The envelope includes a pdf, Word, and HTML document. Anchor text

app/templates/eg013_add_doc_to_template.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- extend base layout --> {% extends "base.html" %} {% block content %}
22

3-
<h4>13. Embedded Signing Ceremony from a template with an added document</h4>
3+
<h4>13. Use embedded signing from a template with an added document</h4>
44

55
{% if template_ok %}
66
<p>This example sends an envelope based on a template.</p>
@@ -13,7 +13,7 @@ <h4>13. Embedded Signing Ceremony from a template with an added document</h4>
1313
<p>This example then enables you to sign the envelope using embedded signing.</p>
1414
<p>Embedded signing provides a smoother user experience for a signer who is
1515
already logged into your web application since the DocuSign
16-
signing ceremony is initiated from your website.</p>
16+
signing is initiated from your website.</p>
1717
{% endif %}
1818

1919
{% if show_doc %}

app/templates/home.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ <h2>Welcome</h2>
3636

3737
<h2>Basic Examples</h2>
3838

39-
<h4 id="example001">1. <a href="eg001">Embedded Signing Ceremony</a></h4>
40-
<p>This example sends an envelope, and then uses an embedded signing ceremony for the first signer.
41-
With embedded signing, the DocuSign signing ceremony is initiated from your website.
39+
<h4 id="example001">1. <a href="eg001">Use embedded signing</a></h4>
40+
<p>This example sends an envelope, and then uses embedded signing for the first signer.
41+
With embedded signing, the DocuSign signing is initiated from your website.
4242
</p>
4343
<p>API methods used:
4444
<a target ='_blank' href="https://developers.docusign.com/esign-rest-api/reference/Envelopes/Envelopes/create">Envelopes::create</a> and
@@ -116,7 +116,7 @@ <h4 id="example010">10. <a href="eg010">Send an envelope using binary document t
116116
<a target ='_blank' href="https://developers.docusign.com/esign-rest-api/reference/Envelopes/Envelopes/create">Envelopes::create</a>.
117117
</p>
118118

119-
<h4 id="example011">11. <a href="eg011">Embedded sending</a></h4>
119+
<h4 id="example011">11. <a href="eg011">Use embedded sending</a></h4>
120120
<p>An envelope will be created in draft mode. The DocuSign
121121
web tool (NDSE) will then be shown, enabling further updates
122122
to the envelope before it is sent.
@@ -131,7 +131,7 @@ <h4 id="example012">12. <a href="eg012">Embedded DocuSign web tool</a></h4>
131131
<a target ='_blank' href="https://developers.docusign.com/esign-rest-api/reference/Envelopes/EnvelopeViews/createConsole">EnvelopeViews::createConsole</a>.
132132
</p>
133133

134-
<h4 id="example013">13. <a href="eg013">Embedded Signing Ceremony from a template with an added document</a></h4>
134+
<h4 id="example013">13. <a href="eg013">Use embedded Signing from a template with an added document</a></h4>
135135
<p>This example sends an envelope based on a template.</p>
136136
<p>In addition to the template's document(s), the example adds an
137137
additional document to the envelope by using the

app/templates/quickstarthome.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ <h2>Welcome</h2>
3636

3737
<h2>Basic Examples</h2>
3838

39-
<h4 id="example001">1. <a href="eg001">Embedded Signing Ceremony</a></h4>
40-
<p>This example sends an envelope, and then uses an embedded signing ceremony for the first signer.
41-
With embedded signing, the DocuSign signing ceremony is initiated from your website.
39+
<h4 id="example001">1. <a href="eg001">Use embedded signing</a></h4>
40+
<p>This example sends an envelope, and then uses embedded signing for the first signer.
41+
With embedded signing, the DocuSign signing is initiated from your website.
4242
</p>
4343
<p>API methods used:
4444
<a target ='_blank' href="https://developers.docusign.com/esign-rest-api/reference/Envelopes/Envelopes/create">Envelopes::create</a> and

0 commit comments

Comments
 (0)