This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Used to read a delimited file. | |
| */ | |
| public class SSSCsvReader { | |
| private String delim = ','; | |
| // the input data | |
| private String[] buffer; | |
| public SSSCsvReader(String data){ | |
| this.buffer = data.split('\n'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml"> | |
| <head> | |
| <title></title> | |
| <link rel="stylesheet" href="http://code.jquery.com/qunit/git/qunit.css" type="text/css" | |
| media="screen" /> | |
| </head> | |
| <body> | |
| <h1 id="qunit-header"> | |
| QUnit example</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright Strategic Sales Systems 2011 | |
| * Customization to write an email to the selected records on the mainview. | |
| */ | |
| define({ | |
| /** | |
| * Open an email using Outlook automation, if available, falling back to mailto url otherwise. | |
| * @param {Array|String} recipient email address (or addresses) | |
| */ |
NewerOlder