Skip to content

Commit

Permalink
updating help email
Browse files Browse the repository at this point in the history
  • Loading branch information
jdeck88 committed Aug 9, 2022
1 parent 0ff2fdc commit b08f44b
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public String getErrors() {
if(errors != null) {
return "<p>The server configuration file is located at: " +
LIMSInitializationListener.getPropertiesFile().getAbsolutePath() + "</p>" +
"<p>Please report any errors to [email protected]</p>" +
"<p>Please report any errors to [email protected]</p>" +
"<p>" + errors + "</p>";
}
return "";
Expand Down
2 changes: 1 addition & 1 deletion biocode-server/web/partials/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
A user community, and technical support is available from <a href="http://connect.barcodeoflife.org/group/lims">http://connect.barcodeoflife.org/group/lims</a>
Here, you can engage with the wider community, get help from experienced users, and make suggestions about how to improve the software.
If you have and questions or suggestions that you don't want to post to the community, you can email
<a href="mailto:[email protected]">[email protected]</a>
<a href="mailto:[email protected]">[email protected]</a>
</p>
</div>
</div>
2 changes: 1 addition & 1 deletion development.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ depends on some Geneious core classes and this is not reflected in the Ivy confi
In the gradle build, the complete Geneious runtime is downloaded and the required libraries are extracted from it.

## Contributing
Please contact [email protected]
Please contact [email protected]

## Biocode LIMS Server
The Biocode LIMS server is an extension to the original LIMS that adds security, user management, access control and
Expand Down
2 changes: 1 addition & 1 deletion doc/readme.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ <h2>Getting Help</h2>
<p>
A great source of help can be found on the discussion forum at
<a href="http://connect.barcodeoflife.net/group/lims">http://connect.barcodeoflife.net/group/lims</a> or you can email
<a href="mailto:[email protected]">[email protected]</a>.</p>
<a href="mailto:[email protected]">[email protected]</a>.</p>
</body>
</html>
2 changes: 1 addition & 1 deletion doc/release_notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Beta release of 2.8.11.
'''Additional Notes'''
This version will apply a schema fix to MySQL LIMS databases which may take anywhere between a minute and an hour to perform.
The amount of time depends on the number of traces stored in the database. If your database has over 30,000 traces
then it is recommended that an administrator perform it beforehand. Contact [email protected] for instructions.
then it is recommended that an administrator perform it beforehand. Contact [email protected] for instructions.

==Biocode Plugin 2.7.1 - 18 July 2014==
* Fixed a problem where seqeunces could be downloaded without annotated FIMS data.
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The Biocode LIMS is a Geneious plugin that comprises everything you need to mana
* Official releases are available from our [releases page](https://github.com/biocodellc/biocode-lims/releases)
* Official [Wiki Page](https://github.com/biocodellc/biocode-lims/wiki) for more information
including the user guide.
* Support email [email protected]
* Support email [email protected]
* Information for developers on contributing to the Biocode LIMS plugin is on our [development page](https://github.com/biocodellc/biocode-lims/blob/develop/development.md)


Expand Down
2 changes: 1 addition & 1 deletion src/com/biomatters/plugins/biocode/BiocodePlugin.java
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class BiocodePlugin extends GeneiousPlugin {

private static GeneiousActionOptions superBiocodeAction;
public static final String PLUGIN_VERSION = "3.0.15";
public static final String SUPPORT_EMAIL = "[email protected]";
public static final String SUPPORT_EMAIL = "[email protected]";

public static GeneiousActionOptions getSuperBiocodeAction() {
if (superBiocodeAction == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ public void fromXML(Element element) throws XMLSerializationException {
e1.printStackTrace(writer);
Dialogs.DialogOptions dialogOptions = new Dialogs.DialogOptions(Dialogs.OK_ONLY, "Error restoring Connection");
dialogOptions.setMoreOptionsButtonText("Show details", "Hide details");
Dialogs.showMoreOptionsDialog(dialogOptions, "There was an error restoring one or more of your saved connections from disk. The affected connections will not be loaded. Please send the detailed report to [email protected]", stringWriter.toString());
Dialogs.showMoreOptionsDialog(dialogOptions, "There was an error restoring one or more of your saved connections from disk. The affected connections will not be loaded. Please send the detailed report to [email protected]", stringWriter.toString());
}
}
selectedConnection = Integer.parseInt(element.getChildText("SelectedConnection"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ public void run() {
BiocodeUtilities.displayExceptionDialog("Error creating Chart", "<html>There has been an " +
"error creating your report:<br><br>"+e1.getMessage()+"<br><br><b>If you believe " +
"that this is a bug, please click <i>Show Details</i> below, and send the text along " +
"with a screenshot of your report options to [email protected].</b></html>", e1, reportCombo);
"with a screenshot of your report options to [email protected].</b></html>", e1, reportCombo);
setReportPanel(null);
progress.setComplete();
} catch(Throwable e1) {
Expand Down

0 comments on commit b08f44b

Please sign in to comment.