Skip to content

Commit 979a75c

Browse files
committed
Matt edits to index files
1 parent 48c73f3 commit 979a75c

File tree

37 files changed

+280
-253
lines changed

37 files changed

+280
-253
lines changed

launcher-csharp/Monitor/Views/Home/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<div class="container" style="margin-top: 40px" id="index-page">
2323

24-
<h2>Monitor Examples</h2>
24+
<h2>Monitor examples</h2>
2525

2626
<h4 id="monitorExample001">1. <a href="Monitor/monitorExample001">Get monitoring data</a></h4>
2727
<p>

launcher-csharp/Views/Eg001EmbeddedSigning/eg001.cshtml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<h4>1. Request a signature through your app (embedded signing)</h4>
2-
<p>Sends an envelope, then uses embedded signing for the first signer. With embedded signing, DocuSign signing is initiated from your website.</p>
2+
<p>This example sends an envelope and then uses embedded signing for the first signer.
3+
With embedded signing, the DocuSign signing experience is initiated from your website.</p>
34

45
@if (ViewBag.showDoc == true)
56
{
6-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
7+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
78
}
89

910
<p>

launcher-csharp/Views/Home/Index.cshtml

Lines changed: 125 additions & 60 deletions
Large diffs are not rendered by default.

launcher-csharp/eSignature/Views/Eg002SigningViaEmail/eg002.cshtml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11

22
<h4>2. Send an envelope with a remote (email) signer and cc recipient</h4>
33
<p>
4-
The envelope includes a pdf, Word, and HTML document. Anchor text
5-
(<a href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/auto-place/">AutoPlace</a>)
6-
is used to position the signing fields in the documents.
4+
The envelope includes three documents: one each in PDF, Word, and HTML format. Anchor text (<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/auto-place/">AutoPlace</a>) is used to position the signing fields in the documents.
75
</p>
86
<p>
97
This is a general example of creating and sending an envelope (a signing request) to multiple recipients,
@@ -12,7 +10,7 @@
1210

1311
@if (ViewBag.showDoc == true)
1412
{
15-
<p><a target='_blank' href='<%= documentation %>'>Documentation</a> about this example.</p>
13+
<p><a target='_blank' href='<%= documentation %>'>Documentation</a> about this example</p>
1614
}
1715

1816
<p>

launcher-csharp/eSignature/Views/Eg003ListEnvelopes/eg003.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
<h4>3. List envelopes in the user's account</h4>
2-
<p>List the envelopes created in the last 30 days.</p>
1+
<h4>3. List envelopes whose status has changed</h4>
2+
<p>This example lists the envelopes whose status has changes within the last 30 days.</p>
33
<p>This example demonstrates how to query DocuSign about envelopes sent by the current user.</p>
44

55
@if (@ViewBag.showDoc) {
6-
<p><a target='_blank' href='<%= documentation %>'>Documentation</a> about this example.</p>
6+
<p><a target='_blank' href='<%= documentation %>'>Documentation</a> about this example</p>
77
}
88

99
<p>

launcher-csharp/eSignature/Views/Eg004EnvelopeInfo/eg004.cshtml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
<h4>4. Get an envelope's basic information and status</h4>
22
<p>
3-
List the basic information about an envelope, including its overall status.
4-
Additional API/SDK methods may be used to get additional information about the
5-
envelope, its documents, recipients, etc.
3+
This example lists the basic information about an envelope, including its overall status. Additional API/SDK methods may be used to get additional information about the envelope, its documents, recipients, and more.
64
</p>
75

86
<p>
9-
This example demonstrates how to obtain the latest information about
10-
an envelope from DocuSign. Often an alternative is to use Connect
11-
to enable DocuSign to proactively send your application updates when the
12-
status of an envelope changes.
7+
This example demonstrates how to obtain the latest information about an envelope from DocuSign. Often an alternative is to use <a target='_blank' href="https://developers.docusign.com/platform/webhooks/connect/">Connect</a> to enable DocuSign to send your application updates proactively when the status of an envelope changes.
138
</p>
149

1510
@if (ViewBag.showDoc) {
16-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
11+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
1712
}
1813

1914
<p>

launcher-csharp/eSignature/Views/Eg005EnvelopeRecipients/eg005.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
<h4>5. List an envelope's recipients and their status</h4>
3-
<p>List the envelope's recipients, including their current status.</p>
3+
<p>This example lists the envelope's recipients, including their current status.</p>
44

55
@if (ViewBag.showDoc) {
6-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
6+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
77
}
88

99
<p>

launcher-csharp/eSignature/Views/Eg006EnvelopeDocs/eg006.cshtml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
<h4>6. List an envelope's documents</h4>
22
<p>
3-
List the envelope's documents. A <i>Certificate of Completion</i> document
4-
is also associated with every envelope.
3+
This example lists the envelope's documents. A <i>Certificate of Completion</i> document is also associated with every envelope.
54
</p>
65

76
<p>
8-
This method is often used to dynamically create a list of an envelope's documents
7+
This method is often used to create a list of an envelope's documents dynamically
98
in preparation for enabling your user to download one or more of the documents.
109
</p>
1110

1211
@if (ViewBag.showDoc) {
13-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
12+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
1413
}
1514

1615
<p>

launcher-csharp/eSignature/Views/Eg007EnvelopeGetDoc/eg007.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
certificate
88
</li>
99
<li>
10-
<b>Zip Archive</b>: a ZIP archive that contains all of the PDF documents,
10+
<b>ZIP archive</b>: a ZIP archive that contains all of the PDF documents,
1111
the certificate, and any .WAV files used for voice authentication.
1212
</li>
1313
<li>The envelope's individual documents</li>
1414
<li>The envelope's Certificate of Completion</li>
1515
</ul>
1616

1717
@if (ViewBag.showDoc) {
18-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
18+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
1919
}
2020

2121
<p>

launcher-csharp/eSignature/Views/Eg008CreateTemplate/eg008.cshtml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<h4>8. Create a template</h4>
22
<p>
3-
Create a template with two roles, <b>signer</b> and <b>cc</b>.
3+
This example creates a template with two roles, <b>signer</b> and <b>cc</b>.
44
The template includes three documents.
55
</p>
66

@@ -14,7 +14,7 @@
1414
</p>
1515

1616
@if (ViewBag.showDoc) {
17-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
17+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
1818
}
1919

2020
<p>

launcher-csharp/eSignature/Views/Eg009UseTemplate/eg009.cshtml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,17 @@
11
<h4>9. Send an envelope using a template</h4>
22
<p>
3-
The envelope is defined by the template.
4-
The signer and cc recipient name and email are used to fill in the template's <i>roles</i>.
3+
The envelope is defined by the template. The signer and cc recipient name and email are used to fill in the template's <i>roles</i>.
54
</p>
65

76
<p>
87
This example demonstrates a common pattern for DocuSign integrations: envelopes will
98
be sent programmatically, based on a template. If the template definition needs to be
10-
updated, the DocuSign web tool can be used to easily update the template, thus
9+
updated, the DocuSign web UI can be used to easily update the template, thus
1110
avoiding the need to make software changes.
1211
</p>
1312

1413
@if (ViewBag.showDoc) {
15-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
14+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
1615
}
1716

1817
<p>
@@ -56,8 +55,7 @@
5655

5756
} else {
5857
<p>
59-
Problem: please first create the template using <a href="eg008">example 8.</a> <br />
60-
Thank you.
58+
Prerequisite: Please first create the template using <a href="eg008">example 8</a>.
6159
</p>
6260

6361
<form class="eg" action="eg008" method="get">

launcher-csharp/eSignature/Views/Eg010SendBinaryDocs/eg010.cshtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<h4>10. Send an envelope using binary document transfer</h4>
2-
<p>The envelope includes a pdf, Word, and HTML document.</p>
2+
<p>The envelope includes three documents: one each in PDF, Word, and HTML format.</p>
33
<p>
44
Multipart data transfer is used to send the documents in binary format to DocuSign.
5-
Binary transfer is 33% more efficient than base64 encoding and is recommended for documents over 15M Bytes.
5+
Binary transfer is 33% more efficient than Base64 encoding and is recommended for documents over 15M Bytes.
66
</p>
77

88
<p>
@@ -11,7 +11,7 @@
1111
</p>
1212

1313
@if (ViewBag.showDoc) {
14-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
14+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
1515
}
1616

1717
<p>

launcher-csharp/eSignature/Views/Eg011EmbeddedSending/eg011.cshtml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,18 @@
11
<h4>11. Embedded Sending</h4>
22
<p>
3-
An envelope will be created in draft mode. Your browser will then be redirected to
4-
the DocuSign web tool where the envelope can be (optionally) updated and then sent.
3+
An envelope will be created in draft mode. The DocuSign UI will then be shown, enabling further updates to the envelope before it is sent.
54
</p>
65
<p>
7-
The envelope includes a pdf, Word, and HTML document. Anchor text
6+
The envelope includes three documents: one each in PDF, Word, and HTML format. Anchor text
87
(<a href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/auto-place/">AutoPlace</a>)
98
is used to position the signing fields in the documents.
109
</p>
1110
<p>
12-
DocuSign recommends that you enhance your application as needed to avoid the need
13-
for the embedded sender view.
14-
</p>
15-
<p>
16-
For example, if the sender view is used to optionally
17-
add additional documents to the envelope, enhance your app to provide the
18-
needed feature (see example 13 for adding additional documents programmatically).
11+
DocuSign recommends that you enhance your application as needed to avoid the need for the embedded sender view. For example, if the sender view is used to optionally add additional documents to the envelope, enhance your app to provide the needed feature (see example 13 for adding additional documents programmatically).
1912
</p>
2013

2114
@if (ViewBag.showDoc) {
22-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
15+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
2316
}
2417

2518
<p>

launcher-csharp/eSignature/Views/Eg012EmbeddedConsole/eg012.cshtml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
1-
<h4>12. Embedded DocuSign web tool</h4>
2-
<p>Redirect the user to the DocuSign web tool.</p>
1+
<h4>12. Embedded DocuSign UI</h4>
2+
<p>Redirect the user to the DocuSign UI.</p>
33
<p>
4-
Use this API call to open the DocuSign web tool, the NDSE (New DocuSign Signing Experience),
5-
with the user already logged in.
6-
</p>
7-
<p>The starting view can be either an envelope's documents or the web tool's front page.</p>
4+
Use this API call to open the DocuSign UI with the user already logged in. The starting view can be either an envelope's documents or the web tool's front page.</p>
85
<p>
9-
The user does not necessarily return from the NDSE, so using this API call is often a final
10-
step for your application.
11-
Or you can open the NDSE in a new tab for the user.
6+
The user does not necessarily return from the DocuSign UI, so using this API call is often a final
7+
step for your application; or you can open the DocuSign UI in a new tab for the user.
128
</p>
139

1410
@if (ViewBag.showDoc) {
15-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
11+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
1612
}
1713

1814
<p>
@@ -26,17 +22,17 @@
2622

2723
@if (!ViewBag.envelopeOk) {
2824
<p>
29-
<b>Optional:</b> to use the <i>Envelope's document view</i> please first create an envelope using
30-
<a href="eg002">example 2.</a>
25+
<b>Optional:</b> To use the <i>envelope's Documents view,</i> please first create an envelope using
26+
<a href="eg002">example 2</a>.
3127
</p>
3228
}
3329

3430
<form class="eg" action="" method="post" data-busy="form">
3531
<div class="form-group">
36-
<label for="startingView">Starting View</label>
32+
<label for="startingView">Starting view</label>
3733
<select id="startingView" name="startingView" class="form-control">
3834
<option value="frontPage" selected>Front page</option>
39-
<!option value="envelope" @ViewBag.envelopeOk ? "" : 'disabled="true"'> The envelope's documents view</!option>
35+
<!option value="envelope" @ViewBag.envelopeOk ? "" : 'disabled="true"'> The envelope's Documents view</!option>
4036
</select>
4137
</div>
4238
<input type="hidden" name="_csrf" value="@ViewBag.csrfToken">

launcher-csharp/eSignature/Views/Eg013AddDocToTemplate/eg013.cshtml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1-
<h4>13. Embedded Signing Ceremony from a template with an added document</h4>
1+
<h4>13. Use embedded signing from a template with an added document</h4>
22

33
@if (ViewBag.templateOk) {
4-
<p>This example sends an envelope based on a template.</p>
4+
<p>This example sends an envelope based on a template. In addition to the template's document(s), the example adds an
5+
additional document to the envelope by using the <a target='_blank'
6+
href='https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/templates/composite/'>Composite
7+
Templates</a> feature.
8+
</p>
9+
<p>
10+
In this example, the additional document is an HTML document that includes order details with information from the form below. This example then enables you to sign the envelope using embedded signing.</p>
511
<p>
612
In addition to the template's document(s), the example adds an
713
additional document to the envelope by using the
@@ -21,7 +27,7 @@
2127
}
2228

2329
@if (ViewBag.showDoc) {
24-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
30+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
2531
}
2632

2733
<p>
@@ -90,8 +96,7 @@
9096

9197
} else {
9298
<p>
93-
Problem: please first create the template using <a href="eg008">example 8.</a> <br />
94-
Thank you.
99+
Prerequisite: Please first create the template using <a href="eg008">example 8</a>.
95100
</p>
96101

97102
<form class="eg" action="eg008" method="get">

launcher-csharp/eSignature/Views/Eg014CollectPayment/eg014.cshtml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h4>14. Send an envelope with an order form, including a payment field.</h4>
1+
<h4>14. Send an envelope with an order form and payment field</h4>
22

33
<h5 style="color: purple;">
44
Note: This example will only work if the sender's DocuSign account
@@ -7,14 +7,11 @@
77
own instance of this project to set it.
88
</h5>
99

10-
<p>
11-
Anchor strings
12-
(<a href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/auto-place/">AutoPlace</a>)
13-
are used to position the fields in the documents.
10+
<p>Anchor text (<a target='_blank' href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/auto-place/">AutoPlace</a>) is used to position the fields in the documents.
1411
</p>
1512

1613
@if (ViewBag.showDoc) {
17-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
14+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
1815
}
1916

2017
<p>
@@ -55,6 +52,6 @@
5552
<button type="submit" class="btn btn-primary">Submit</button>
5653
</form>
5754
} else {
58-
<p>Problem: please set the <b>DS_PAYMENT_GATEWAY_ID</b> value in the configuration file.</p>
55+
<p>Prerequisite: Please set the <b>DS_PAYMENT_GATEWAY_ID</b> value in the configuration file.</p>
5956
}
6057

launcher-csharp/eSignature/Views/Eg015EnvelopeTabData/eg015.cshtml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</p>
99

1010
@if (ViewBag.showDoc) {
11-
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example.</p>
11+
<p><a target='_blank' href='@ViewBag.documentation'>Documentation</a> about this example</p>
1212
}
1313

1414

@@ -24,7 +24,7 @@
2424
@if (ViewBag.envelopeOk) {
2525
<p>
2626
The last envelope you created with this example launcher will be queried.
27-
Recommendation: use example 9, then this example, since example 9 includes many tabs of different types.
27+
Recommendation: Use example 9, then this example, since example 9 includes many tabs of different types.
2828
</p>
2929

3030
<form class="eg" action="" method="post" data-busy="form">
@@ -33,8 +33,7 @@
3333
</form>
3434
} else {
3535
<p>
36-
Problem: please first create an envelope using <a href="eg009">example 9.</a> <br />
37-
Thank you.
36+
Prerequisite: Please first create an envelope using <a href="eg009">example 9</a>.
3837
</p>
3938

4039
<form class="eg" action="eg009" method="get">

launcher-csharp/eSignature/Views/Eg016SetTabValues/eg016.cshtml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11

22
<h4>16. Set tab values for a envelope</h4>
3-
<p>
4-
This example creates an envelope with both read-only tabs (fields) and tabs that can
5-
be updated by the recipient.
6-
</p>
3+
4+
<p>This example sets the <a target="_blank"
5+
href="https://developers.docusign.com/docs/esign-rest-api/esign101/concepts/tabs/">tab</a> (field) values for an
6+
envelope, including tabs that can and cannot be changed by the signer.</p>
7+
78
<p>The example also sets custom metadata in the envelope via the envelope custom fields feature.</p>
89

910

1011
@if (ViewBag.showDoc == true)
1112
{
12-
<p><a target='_blank' href='<%= documentation %>'>Documentation</a> about this example.</p>
13+
<p><a target='_blank' href='<%= documentation %>'>Documentation</a> about this example</p>
1314
}
1415

1516
<p>

0 commit comments

Comments
 (0)