This file contains 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
main.js | |
var request = require("request"); | |
var url = require("url"); | |
var querystring = require("querystring"); | |
var jira = {}; | |
module.exports = jira; | |
jira.setServer = function(server){ |
This file contains 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
<!-- @@Formula: | |
String GenerateChartUrl(String prmRawData, String prmLabelData) | |
{ | |
String log = ""; | |
int recentCount = 20; | |
int scaleScope = 4; | |
String urlHeader = "https://chart.googleapis.com/chart?"; | |
String urlCht = "cht=lc"; | |
String urlChs = "chs=800x320"; |