Skip to content

Commit 75b8aa6

Browse files
Devdocs 16158 (#15)
* sample app rename * update artifact ID * remove copyright * remove empty blue box * add OG image * update image path
1 parent 7ce02d9 commit 75b8aa6

File tree

12 files changed

+19
-35
lines changed

12 files changed

+19
-35
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Introduction
2-
MyMedicalRecords is a sample app showcasing integration between the Docusign eSignature REST API and an Electronic Medical Records System. Each scenario in the sample app illustrates a different use case, such as creating and sending an envelope through SMS messaging and embedded signing of a templated form and consists of a series of API calls.
2+
The EMR Sample App is a sample app showcasing integration between the Docusign eSignature REST API and an Electronic Medical Records System. Each scenario in the sample app illustrates a different use case, such as creating and sending an envelope through SMS messaging and embedded signing of a templated form and consists of a series of API calls.
33

44

55
# Hosted instance
6-
To run the hosted instance of MyMedicalRecords, visit https://mymedicalrecords.sampleapps.docusign.com/.
6+
To run the hosted instance of the EMR Sample App, visit https://emr.sampleapps.docusign.com/.
77

88
# License information
99
This repository uses the MIT License. See [LICENSE](./LICENSE) for more information.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
</parent>
1313

1414
<groupId>com.tally-medical</groupId>
15-
<artifactId>MyMedicalRecords</artifactId>
15+
<artifactId>EMRSampleApp</artifactId>
1616
<version>1.0-SNAPSHOT</version>
1717
<packaging>war</packaging>
1818

19-
<name>MyMedicalRecords Sample App</name>
19+
<name>EMR Sample App</name>
2020

2121
<properties>
2222
<java.version>15</java.version>

pom.xml.versionsBackup

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<version>1.0-SNAPSHOT</version>
1515
<packaging>war</packaging>
1616

17-
<name>MyMedicalRecords Sample App</name>
17+
<name>EMR Sample App</name>
1818

1919
<properties>
2020
<java.version>15</java.version>
176 KB
Loading
-13 KB
Binary file not shown.

src/main/resources/public/assets/style.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,6 @@ div.arrow img {
341341
position: relative;
342342
bottom: 0;
343343
left: 0;
344-
background: #001730;
345344
padding-bottom: 5.5rem;
346345
}
347346

src/main/webapp/WEB-INF/templates/views/error.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<p><em>Dump: </em><span style="color:#00BAA1;">${done.stackTrace}</span></p>
1717

1818

19-
<p>Please check your account configuration. If you are unable to resolve the problem, <a href="https://github.com/docusign/sample-app-mymedicalrecords-java/issues/new" target="_blank" rel="nofollow noopener noreferrer">open a new issue on GitHub</a>.</p>
19+
<p>Please check your account configuration. If you are unable to resolve the problem, <a href="https://github.com/docusign/sample-app-emr-java/issues/new" target="_blank" rel="nofollow noopener noreferrer">open a new issue on GitHub</a>.</p>
2020

2121

2222
<p><a class="startBox" href="/">Continue</a></p>

src/main/webapp/WEB-INF/templates/views/index.jsp

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
<div class="logo"></div>
2424

2525
<div class="hero-banner">
26-
<p class="hero">MyMedicalRecords Sample Application</p>
26+
<p class="hero">EMR Sample App</p>
2727
<p class="tagline">This is a sample application showcasing an integration between the Docusign eSignature REST API and an Electronic Medical Records system. This application is open source and all of the code is located in our GitHub repository.</p>
2828
</div>
2929

3030
</div>
3131

3232
<div class="buttonGroup">
3333
<button type="button" class="tryIt" onclick="window.location.href='/patientdocs'"> Try the App </button>
34-
<button type="button" class="tryItSrc" onclick=" window.open('http://github.com/docusign/sample-app-mymedicalrecords-java','_blank')"> More Info</button>
34+
<button type="button" class="tryItSrc" onclick=" window.open('http://github.com/docusign/sample-app-emr-java','_blank')"> More Info</button>
3535
</div>
3636

3737

@@ -66,10 +66,4 @@
6666
</div>
6767
</div>
6868
</div>
69-
</div>
70-
71-
72-
73-
<p class="bottomCopy" style="text-align:center">&#169;
74-
<c:out value="${currentYear}" /> Docusign Inc.
75-
</p>
69+
</div>

src/main/webapp/WEB-INF/templates/views/pages/examples/consentforms.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
<h4>Code Flow:</h4>
8080

8181

82-
<p>View source files <a style="color:#00BAA1;" target="_blank" href="https://github.com/docusign/sample-app-mymedicalrecords-java/blob/master/src/main/java/com/docusign/controller/examples/ConsentForms.java">ConsentForms.java</a> and <a style="color:#00BAA1;" href="https://github.com/docusign/sample-app-mymedicalrecords-java/blob/master/src/main/java/com/docusign/controller/common/ds/EnvelopeHelpers.java" target="_blank" >EnvelopeHelpers.java</a> on GitHub.
82+
<p>View source files <a style="color:#00BAA1;" target="_blank" href="https://github.com/docusign/sample-app-emr-java/blob/master/src/main/java/com/docusign/controller/examples/ConsentForms.java">ConsentForms.java</a> and <a style="color:#00BAA1;" href="https://github.com/docusign/sample-app-emr-java/blob/master/src/main/java/com/docusign/controller/common/ds/EnvelopeHelpers.java" target="_blank" >EnvelopeHelpers.java</a> on GitHub.
8383

8484

8585

src/main/webapp/WEB-INF/templates/views/pages/examples/financialforms.jsp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<h4>Code Flow:</h4>
4545

4646

47-
<p>View source file <a style="color:#00BAA1;" target="_blank" href="https://github.com/docusign/sample-app-mymedicalrecords-java/blob/master/src/main/java/com/docusign/controller/examples/FinancialForms.java">FinancialForms.java</a> on GitHub.
47+
<p>View source file <a style="color:#00BAA1;" target="_blank" href="https://github.com/docusign/sample-app-emr-java/blob/master/src/main/java/com/docusign/controller/examples/FinancialForms.java">FinancialForms.java</a> on GitHub.
4848

4949

5050
<h4>Step 1</h4>

0 commit comments

Comments
 (0)