Skip to content

Commit

Permalink
Merge pull request #879 from WildMeOrg/docs-link-updates
Browse files Browse the repository at this point in the history
Docs and email link updates
  • Loading branch information
naknomum authored Nov 7, 2024
2 parents c23ccf3 + 56fa162 commit e346ca1
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ allowAdoptions = false

#email addresses and parameters
sendEmailNotifications=true
autoEmailAddress=info@wildbook.org
newSubmissionEmail=donotreply@wildbook.org
autoEmailAddress=info@wildme.org
newSubmissionEmail=donotreply@wildme.org
mailHost=localhost
removeEmailString=Do you want to REMOVE your email address from this database? Click the link below to remove it. You will no longer receive updates on your encounters.

Expand Down
3 changes: 1 addition & 2 deletions src/main/java/org/ecocean/ImageProcessor.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
public final class ImageProcessor implements Runnable {
private static Logger log = LoggerFactory.getLogger(ImageProcessor.class);


private String context = "context0";
private String command = null;
private String imageSourcePath = null;
Expand Down Expand Up @@ -95,7 +94,7 @@ public void run() {
return;
}
String comment = CommonConfiguration.getProperty("imageComment", this.context);
if (comment == null) comment = "%year All rights reserved. | wildbook.org";
if (comment == null) comment = "%year All rights reserved. | wildme.org";
String cname = ContextConfiguration.getNameForContext(this.context);
if (cname != null) comment += " | " + cname;
String maId = "unknown";
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/bundles/commonConfiguration.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ GlobalUniqueIdentifierPrefix=MyGroup:MyStudy:

#email addresses and parameters
sendEmailNotifications=true
autoEmailAddress=info@wildbook.org
newSubmissionEmail=donotreply@wildbook.org
autoEmailAddress=info@wildme.org
newSubmissionEmail=donotreply@wildme.org
mailHost=localhost
removeEmailString=Do you want to REMOVE your email address from this database? Click the link below to remove it. You will no longer receive updates on your encounters.

Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/emails/en/passwordReset.html
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ <h5 style="Margin:0;Margin-bottom:10px;color:inherit;font-family:Helvetica,Arial

align="center"

href="http://www.wildbook.org/">Wildbook.org</a></center>
href="http://www.wildme.org/">wildme.org</a></center>
</td>
</tr>
</tbody>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/servletResponseTemplate.htm
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
<li><a href="appadmin/admin.jsp">Library Administration</a></li>
<li><a href="appadmin/logs.jsp">Logs</a></li>
<li><a href="appadmin/kwAdmin.jsp">Photo Keywords</a></li>
<li><a href="product-docs/en/wildbook/introduction/">Software Documentation</a></li>
<li><a href="https://wildbook.docs.wildme.org">Software Documentation</a></li>
<li><a href="appadmin/dataIntegrity.jsp">Data Integrity</a></li>
<li><a href="imports.jsp">Bulk Import Logs</a></li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp/header.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ if(request.getUserPrincipal()!=null){
<li><a href="<%=urlLoc %>/appadmin/admin.jsp"><%=props.getProperty("libraryAdministration")%></a></li>
<li><a href="<%=urlLoc %>/appadmin/logs.jsp"><%=props.getProperty("logs")%></a></li>
<li><a href="<%=urlLoc %>/appadmin/kwAdmin.jsp"><%=props.getProperty("photoKeywords")%></a></li>
<li><a href="<%=urlLoc %>/product-docs/en/wildbook/introduction/"><%=props.getProperty("softwareDocumentation")%></a></li>
<li><a href="https://wildbook.docs.wildme.org"><%=props.getProperty("softwareDocumentation")%></a></li>
<li><a href="<%=urlLoc %>/appadmin/dataIntegrity.jsp"><%=props.getProperty("dataIntegrity")%></a></li>
<li><a href="<%=urlLoc %>/imports.jsp"><%=props.getProperty("bulkImportLogs")%></a></li>

Expand Down

0 comments on commit e346ca1

Please sign in to comment.